-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathxtrack2_spearmint.json
65 lines (65 loc) · 1.43 KB
/
xtrack2_spearmint.json
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
{
"language" : "PYTHON",
"experiment-name" : "xtrack2spear",
"variables" : {
"n_cells" : {
"type" : "int",
"size" : 1,
"min": 5,
"max": 30
},
"n_epochs" : {
"type": "int",
"size": 1,
"min": 200,
"max": 200
},
"emb_size" : {
"type" : "int",
"size" : 1,
"min": 5,
"max": 20
},
"opt_type" : {
"type" : "ENUM",
"size" : 1,
"options": ["sgd"]
},
"lr" : {
"type" : "float",
"size" : 1,
"min": 0.01,
"max": 0.3
},
"p_drop" : {
"type" : "float",
"size" : 1,
"min": 0.0,
"max": 0.5
},
"mb_size" : {
"type" : "int",
"size" : 1,
"min": 1,
"max": 20
}
},
"database": {
"address": "10.10.24.131"
},
"resources" : {
"cluster" : {
"scheduler" : "SGE",
"max-concurrent" : 500,
"max-finished-jobs" : 10000
}
},
"tasks": {
"xtrack2" : {
"type": "OBJECTIVE",
"likelihood" : "GAUSSIAN",
"main-file" : "xtrack2_spearmint.py",
"resources" : ["cluster"]
}
}
}