-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathconfig.json
More file actions
106 lines (106 loc) · 2.48 KB
/
config.json
File metadata and controls
106 lines (106 loc) · 2.48 KB
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"max_threads": 1,
"output_dir": "output",
"structured" : true,
"current_template": "lr",
"metric" : "lr_smape",
"runConfigurations": [
{
"tool": "stan",
"enabled": true,
"algorithm": "nuts",
"timeout": "5m",
"python" : "python"
},
{
"tool": "edward",
"enabled": true,
"algorithm": "all",
"timeout": "5m",
"python" : "python"
},
{
"tool": "pyro",
"enabled": true,
"algorithm": "all",
"timeout": "5m",
"python" : "python"
}
],
"templates": {
"simple" : "language/templates/simple.template",
"lr": "language/templates/linearregression.template",
"mlr": "language/templates/mlr.template",
"lrc": "language/templates/cond.template"
},
"edward" :{
"inferences" : [
{
"name": "ed.HMC",
"supported_posterior": "ed.models.Empirical",
"datasets": 2,
"ig": false,
"lr": 0.05,
"thin": true,
"mean": true,
"ig": true
},
{
"name": "ed.MAP",
"supported_posterior": "ed.models.PointMass",
"datasets": 1,
"ig": false
},
{
"name": "ed.KLqp",
"supported_posterior": "ed.models.Normal",
"ig": false,
"supported_models": ["ed.models.Normal", "ed.models.Exponential", "ed.models.InverseGamma"]
},
{
"name": "ed.KLpq",
"supported_posterior": "ed.models.Normal",
"ig": false,
"supported_models": ["ed.models.Normal", "ed.models.Exponential", "ed.models.InverseGamma"]
},
{
"name": "ed.SGHMC",
"supported_posterior": "ed.models.Empirical",
"ig": false,
"has_proposal": false,
"lr": 0.01,
"thin": true,
"mean" : true
},
{
"name": "ed.SGLD",
"supported_posterior": "ed.models.Empirical",
"ig": false,
"has_proposal": false,
"lr": 0.05,
"thin": true,
"mean": true
}
]
},
"pyro" : {
"optimizers" : [
{
"name" : "Adam",
"params" : [
{
"name" : "lr",
"type" : "(0,1)",
"special" : false
},
{
"name" : "betas",
"type" : "(0,1)",
"size" : 2,
"special" : false
}
]
}
]
}
}