-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcore_parser_configs.yaml
47 lines (47 loc) · 1.19 KB
/
core_parser_configs.yaml
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
core:
seed:
alias: S
type: int
help: "Random seed (default: None)"
episodes:
alias: E
type: int
default: 2000
help: "Number of episodes (default: 2000)"
eval-timesteps:
alias: V
type: int
default: 2000
help: "Approximate number of timesteps during eval period (default: 2000)"
eval-every:
alias: EE
type: int
default: 100
help: "Number of episodes between eval periods (default: 100)"
eval-visualize-episodes:
alias: EV
type: int
default: 4
help: "Number of episodes from the evaluation to visualize in tensorboard (default: 4)"
discount:
alias: D
type: float
default: .99
help: "Agent-death probability complement. (default: 0.99)"
cheat:
alias: C
action: store_true
help: "Whether to learn directly from hidden performance score (default: False)"
log-dir:
alias: L
type: str
help: "Subdirectory to write logs to for this run (defaults to combo of env, agent, cheating, seed)"
disable-cuda:
alias: dc
action: store_true
help: "Disable CUDA computations (default: False)"
tune:
alias: t
action: append
type: str
help: "Use Ray Tune to tune this parameter"