-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript_experiment_5_hill.py
89 lines (73 loc) · 2.36 KB
/
script_experiment_5_hill.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
#imports
import subprocess
import csv
from matplotlib import pyplot as plt
import numpy as np
#Configuration of the experiment
seed_c = 1234
seed_s = 4321
num_c = 4
num_s = 100
operant_id = 1
initial_solution_id = 1
#Search Alianning parameters
k = 10
l = 0.01
i = 3000
s = 30
program = []
program.append("java")
program.append("-jar")
program.append("CodiPractica/out/artifacts/CodiPractica_jar/CodiPractica.jar")
program.append(str(num_c))
program.append(str(num_s))
program.append(str(seed_c))
program.append(str(seed_s))
program.append(str(operant_id))
program.append(str(initial_solution_id))
program.append(str(k))
program.append(str(l))
program.append(str(i))
program.append(str(s))
#Init of script
#print("Launching experiment 1 with the next configuration:")
#print("seed_c =", seed_c)
#print("seed_s =", seed_s)
#print("num_c =", num_c)
#print("num_s =", num_s)
#print("operant_id =", operant_id)
#print("initial_solution_id =", initial_solution_id)
#numc nums seedc seeds opid genid
seeds_s = [1313, 1122, 2233, 3344, 4455, 5566, 6677, 7788, 8899, 9900]
seeds_c = [1100, 2211, 3322, 4433, 5544, 6655, 7766, 8877, 9988, 3141]
listaHeurist = [[],[],[],[],[],[],[],[],[],[]]
listaCoste = [[],[],[],[]]
listaDatos = [[],[],[],[]]
listaMilis = [[],[],[],[]]
listaExpanded= [[],[],[],[]]
listaUnusedCenters = [[],[],[],[],[],[],[],[],[],[]]
for rep in range(10):
print 'rep',rep
program[5] = str(seeds_c[rep])
program[6] = str(seeds_s[rep])
for ite in range(1):
output = subprocess.Popen(program, stdout=subprocess.PIPE).communicate()[0]
#file = open("./experiment2/"+ str(rep) + "-"+ str(op) +".out","w")
#file.write(output)
#file.close()
#print output
reader = csv.reader(output.splitlines())
listaCsv = list(reader)
listaUnusedCenters[rep].append(eval(listaCsv[-3][3]))
# listaHeurist[ite].append(eval(listaCsv[-3][2]))
# listaCoste[ite].append(eval(listaCsv[-3][1]))
# listaDatos[ite].append(eval(listaCsv[-3][0]))
# listaMilis[ite].append(eval(listaCsv[-2][0]))
# listaExpanded[ite].append(eval(listaCsv[-1][0]))
plt.boxplot(listaUnusedCenters)
plt.autoscale()
plt.suptitle('Centros no usados')
plt.xlabel('Diferentes semillas Hill Climbing')
plt.ylabel('#Centros inutilizados')
plt.savefig('./experiment5/centrosInutilizadosHill.png',bbox_inches='tight')
plt.clf()