-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdefault.yaml
57 lines (40 loc) · 1000 Bytes
/
default.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
56
57
defaults:
- _self_
- env: "dag_gfn"
- algorithm: "db"
replay:
_target_: "gfn_maxent_rl.data.ReplayBuffer"
# Capacity of the replay buffer
capacity: 100_000
# Number of parallel environments
num_envs: 8
env_wrapper:
_target_: "gfn_maxent_rl.envs.wrappers.RewardCorrection"
alpha: 1.0
# Number of iterations with a random policy to prefill the replay buffer
prefill: 1000
exploration:
# Minimum value of epsilon-exploration
min_exploration: 0.1
# Number of steps for warming up exploration
warmup: 50_000 # 100_000 / 2
# Learning rate
lr: 1e-4
# Batch size
batch_size: 128
# Number of iterations
num_iterations: 100_000
# Random seed
seed: 0
# Frequency for logging
log_every: 500
# Frequency for evaluation
evaluation_every: 500
# Evaluation batch size
evaluation_batch_size: 128
# Name of the group for Wandb
group_name: "default_1"
experiment_name: "default"
reward_correction: false
# Upload the logs to Wandb, mode="disabled" or "online"
upload: "online"