-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscenarios.json
62 lines (50 loc) · 1.3 KB
/
scenarios.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
{
"B1": {
"type": "BKT",
"params": { "init": 0.15, "learn": 0.35, "slip": 0.18, "guess": 0.25 }
},
"B2": {
"type": "BKT",
"params": { "init": 0.25, "learn": 0.08, "slip": 0.12, "guess": 0.3 }
},
"B3": {
"type": "BKT",
"params": { "init": 0.1, "learn": 0.2, "slip": 0.1, "guess": 0.15 }
},
"B4": {
"type": "BKT",
"params": { "init": 0.1, "learn": 0.3, "slip": 0.4, "guess": 0.05 }
},
"B5": {
"type": "BKT",
"params": { "init": 0.05, "learn": 0.1, "slip": 0.06, "guess": 0.2 }
},
"B6": {
"type": "BKT",
"params": { "init": 0.1, "learn": 0.05, "slip": 0.1, "guess": 0.5 }
},
"L1": {
"type": "Logistic",
"params": { "init": -1, "init_var":1, "learn": 0.4, "learn_var": 0 }
},
"L2": {
"type": "Logistic",
"params": { "init": -0.4, "init_var":2, "learn": 0.1, "learn_var": 0 }
},
"L3": {
"type": "Logistic",
"params": { "init": -2, "init_var":2, "learn": 0.15, "learn_var": 0 }
},
"L4": {
"type": "Logistic",
"params": { "init": 0, "init_var": 0.7, "learn": 0.15, "learn_var": 0.1 }
},
"L5": {
"type": "Logistic",
"params": { "init": -2, "init_var": 1.3, "learn": 0.45, "learn_var": 0.15 }
},
"L6": {
"type": "Logistic",
"params": { "init": -0.7, "init_var": 1.5, "learn": 0.6, "learn_var": 0.3 }
}
}