-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathgame_config.py
More file actions
32 lines (32 loc) · 755 Bytes
/
Copy pathgame_config.py
File metadata and controls
32 lines (32 loc) · 755 Bytes
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
VERSIONS = {
'v0': {
'obs_type': 'image',
'frameskip': (2, 5),
'repeat_action_probability': 0.25
},
'v3': {
'obs_type': 'image',
'frameskip': (2, 5),
'repeat_action_probability': 0.
},
'deterministic-v0': {
'obs_type': 'image',
'frameskip': 4,
'repeat_action_probability': 0.25
},
'deterministic-v3': {
'obs_type': 'image',
'frameskip': 4,
'repeat_action_probability': 0.
},
'noframeskip-v0': {
'obs_type': 'image',
'frameskip': 1,
'repeat_action_probability': 0.25
},
'noframeskip-v3': {
'obs_type': 'image',
'frameskip': 1,
'repeat_action_probability': 0.
},
}