-
Notifications
You must be signed in to change notification settings - Fork 1
/
hyperparams.py
96 lines (91 loc) · 1.67 KB
/
hyperparams.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
90
91
92
93
94
95
96
value_epoch = {
'plunder': 1,
'chaser': 1,
'miner': 9,
'climber': 9,
'bigfish': 9,
'dodgeball': 9,
'maze': 9,
'leaper': 9,
'fruitbot': 9,
'bossfight': 9,
'jumper': 9,
'ninja': 9,
'starpilot': 9,
'coinrun': 9,
'heist': 9,
'caveflyer': 9,
}
value_freq = {
'plunder': 8,
'chaser': 1,
'miner': 32,
'climber': 1,
'bigfish': 32,
'dodgeball': 32,
'maze': 1,
'leaper': 1,
'fruitbot': 1,
'bossfight': 1,
'jumper': 1,
'ninja': 1,
'starpilot': 1,
'coinrun': 1,
'heist': 1,
'caveflyer': 1,
}
adv_loss_coef = {
'plunder': 0.3,
'chaser': 0.15,
'miner': 0.25,
'climber': 0.05,
'bigfish': 0.05,
'dodgeball': 0.25,
'maze': 0.25,
'leaper': 0.25,
'fruitbot': 0.25,
'bossfight': 0.25,
'jumper': 0.25,
'ninja': 0.25,
'starpilot': 0.25,
'coinrun': 0.25,
'heist': 0.25,
'caveflyer': 0.25,
}
order_loss_coef = {
'plunder': 0.1,
'chaser': 0.001,
'miner': 0.1,
'climber': 0.001,
'bigfish': 0.01,
'dodgeball': 0.001,
'maze': 0.001,
'leaper': 0.001,
'fruitbot': 0.001,
'bossfight': 0.001,
'jumper': 0.001,
'ninja': 0.001,
'starpilot': 0.001,
'coinrun': 0.001,
'heist': 0.001,
'caveflyer': 0.001,
}
clf_hidden_size = {
'plunder': 4,
'chaser': 4,
'miner': 64,
'climber': 64,
'bigfish': 4,
'dodgeball': 64,
'maze': 4,
'leaper': 4,
'fruitbot': 4,
'bossfight': 4,
'jumper': 4,
'ninja': 4,
'starpilot': 4,
'coinrun': 4,
'heist': 4,
'caveflyer': 4,
}
nonlin_envs = ['miner', 'bigfish', 'dodgeball', 'climber']