-
Notifications
You must be signed in to change notification settings - Fork 2
/
configs.yaml
55 lines (48 loc) · 956 Bytes
/
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
48
49
50
51
52
53
54
55
name: Dreamer
env: quadruped_run
seed: 42
ckpt_callback:
save_top_k: 2
mode: min
monitor: loss
save_on_train_epoch_end: True
save_last: True
trainer_params:
default_root_dir: None
gpus: 1
gradient_clip_val: 100.0
val_check_interval: 5
max_epochs: 1000
dreamer:
td_model_lr: 5.0e-4
actor_lr: 8.0e-5
critic_lr: 8.0e-5
default_lr: 5.0e-4
weight_decay: 1.0e-6
batch_size: 50
batch_length: 50
length: 50
prefill_timesteps: 5000
explore_noise: 0.3
max_episode_length: 1000
collect_interval: 100
max_experience_size: 1000
save_episodes: False
discount: 0.99
lambda: 0.95
clip_actions: False
horizon: 1000
imagine_horizon: 15
free_nats: 3.0
kl_coeff: 1.0
dreamer_model:
obs_space: [3, 64, 64]
num_outputs: 1
custom_model: DreamerModel
deter_size: 200
stoch_size: 30
depth_size: 32
hidden_size: 400
action_init_std: 5.0
env_config:
action_repeat: 2