-
Notifications
You must be signed in to change notification settings - Fork 123
/
sample_spec.yaml
43 lines (40 loc) · 1.07 KB
/
sample_spec.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
training:
runs: 1
baselines: ['linear', 'mlp']
algorithms:
- name: centralized
cmd: >
python simple.py --baseline_type {baseline_type}
--discount {discount}
--gae_lambda {gae_lambda}
--rectangle {rectangle}
--n_evaders {n_evaders}
--n_pursuers {n_pursuers}
--obs_range {obs_range}
--n_catch {n_catch}
--log {log}
--no-debug
- name: decentralized
cmd: >
python simple.py --baseline_type {baseline_type}
--control decentralized
--discount {discount}
--gae_lambda {gae_lambda}
--rectangle {rectangle}
--n_evaders {n_evaders}
--n_pursuers {n_pursuers}
--obs_range {obs_range}
--n_catch {n_catch}
--log {log}
--no-debug
rectangles: ['10,10', '16,16', '32,32']
n_evaders: [5, 10, 15]
n_pursuers: [2, 5, 10]
obs_ranges: [3, 5, 7, 9]
n_catches: [2, 3]
discounts: [0.99, 0.95]
gae_lambdas: [1, 0.99, 0.97]
options:
storagedir: /tmp/spec/
checkpt_subdir: checkpoints
n_workers: 4