-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(exp): fix CompOscillator learning length (#424)
This commit changed the CompOscillator learning length from 1e5 to 2e5. This was done to deal with an inconsistency in Han et al.'s reserach.
- Loading branch information
Showing
36 changed files
with
330 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
48 changes: 48 additions & 0 deletions
48
..._reproduction_lac_oscillator_complicated_alpha3_tune_experiment_extra_seed26000_short.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
alg_name: lac | ||
exp_name: han2020_reproduction_lac_oscillator_complicated_alpha3_tune_exp_short | ||
env_name: "stable_gym:OscillatorComplicated-v1" | ||
ac_kwargs: | ||
hidden_sizes: | ||
actor: [256, 256] # NOTE: Using [256, 256] for consistency with the article. | ||
critic: [256, 256, 16] # NOTE: Using [256, 256, 16] for consistency with the article. | ||
activation: | ||
actor: "nn.ReLU" | ||
critic: "nn.ReLU" | ||
output_activation: | ||
actor: "nn.ReLU" | ||
opt_type: "minimize" | ||
max_ep_len: 400 | ||
epochs: 49 | ||
steps_per_epoch: 2048 | ||
start_steps: 0 | ||
update_every: 100 | ||
update_after: 1000 | ||
steps_per_update: 80 | ||
num_test_episodes: 10 | ||
alpha: 2.0 | ||
alpha3: 0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 1.0 1.1 1.2 1.3 1.4 1.5 # NOTE: Tuning alpha3. | ||
labda: 0.99 # NOTE: Decreased from 1.0 to 0.99 for stability. | ||
# gamma: 0.995 # NOTE: Not used for finite horizon tasks. | ||
polyak: 0.995 | ||
adaptive_temperature: True | ||
lr_a: "1e-4" | ||
lr_c: "3e-4" | ||
lr_alpha: "1e-4" | ||
lr_labda: "3e-4" | ||
lr_a_final: "1e-9" # NOTE: Not in Han et al. 2020, but aligned with original code. | ||
lr_c_final: "3e-9" # NOTE: Not in Han et al. 2020, but aligned with original code. | ||
lr_alpha_final: "1e-9" # NOTE: Not in Han et al. 2020, but aligned with original code. | ||
lr_labda_final: "3e-9" # NOTE: Not in Han et al. 2020, but aligned with original code. | ||
lr_a_decay_type: "linear" | ||
lr_c_decay_type: "linear" | ||
lr_alpha_decay_type: "linear" | ||
lr_labda_decay_type: "constant" | ||
lr_decay_ref: "step" | ||
batch_size: 256 | ||
replay_size: "int(1e6)" | ||
horizon_length: 5 | ||
seed: 26000 # 49672 858762 388389 # NOTE: Using 5 seeds for tuning. | ||
save_freq: 10 | ||
use_wandb: True | ||
wandb_group: "han2020_reproduction_extra_seeds_short" | ||
device: "gpu:1" |
48 changes: 48 additions & 0 deletions
48
...reproduction_lac_oscillator_complicated_alpha3_tune_experiment_extra_seed388389_short.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
alg_name: lac | ||
exp_name: han2020_reproduction_lac_oscillator_complicated_alpha3_tune_exp_short | ||
env_name: "stable_gym:OscillatorComplicated-v1" | ||
ac_kwargs: | ||
hidden_sizes: | ||
actor: [256, 256] # NOTE: Using [256, 256] for consistency with the article. | ||
critic: [256, 256, 16] # NOTE: Using [256, 256, 16] for consistency with the article. | ||
activation: | ||
actor: "nn.ReLU" | ||
critic: "nn.ReLU" | ||
output_activation: | ||
actor: "nn.ReLU" | ||
opt_type: "minimize" | ||
max_ep_len: 400 | ||
epochs: 49 | ||
steps_per_epoch: 2048 | ||
start_steps: 0 | ||
update_every: 100 | ||
update_after: 1000 | ||
steps_per_update: 80 | ||
num_test_episodes: 10 | ||
alpha: 2.0 | ||
alpha3: 0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 1.0 1.1 1.2 1.3 1.4 1.5 # NOTE: Tuning alpha3. | ||
labda: 0.99 # NOTE: Decreased from 1.0 to 0.99 for stability. | ||
# gamma: 0.995 # NOTE: Not used for finite horizon tasks. | ||
polyak: 0.995 | ||
adaptive_temperature: True | ||
lr_a: "1e-4" | ||
lr_c: "3e-4" | ||
lr_alpha: "1e-4" | ||
lr_labda: "3e-4" | ||
lr_a_final: "1e-9" # NOTE: Not in Han et al. 2020, but aligned with original code. | ||
lr_c_final: "3e-9" # NOTE: Not in Han et al. 2020, but aligned with original code. | ||
lr_alpha_final: "1e-9" # NOTE: Not in Han et al. 2020, but aligned with original code. | ||
lr_labda_final: "3e-9" # NOTE: Not in Han et al. 2020, but aligned with original code. | ||
lr_a_decay_type: "linear" | ||
lr_c_decay_type: "linear" | ||
lr_alpha_decay_type: "linear" | ||
lr_labda_decay_type: "constant" | ||
lr_decay_ref: "step" | ||
batch_size: 256 | ||
replay_size: "int(1e6)" | ||
horizon_length: 5 | ||
seed: 388389 # NOTE: Using 5 seeds for tuning. | ||
save_freq: 10 | ||
use_wandb: True | ||
wandb_group: "han2020_reproduction_extra_seeds_short" | ||
device: "gpu:1" |
48 changes: 48 additions & 0 deletions
48
...reproduction_lac_oscillator_complicated_alpha3_tune_experiment_extra_seed408660_short.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
alg_name: lac | ||
exp_name: han2020_reproduction_lac_oscillator_complicated_alpha3_tune_exp_short | ||
env_name: "stable_gym:OscillatorComplicated-v1" | ||
ac_kwargs: | ||
hidden_sizes: | ||
actor: [256, 256] # NOTE: Using [256, 256] for consistency with the article. | ||
critic: [256, 256, 16] # NOTE: Using [256, 256, 16] for consistency with the article. | ||
activation: | ||
actor: "nn.ReLU" | ||
critic: "nn.ReLU" | ||
output_activation: | ||
actor: "nn.ReLU" | ||
opt_type: "minimize" | ||
max_ep_len: 400 | ||
epochs: 49 | ||
steps_per_epoch: 2048 | ||
start_steps: 0 | ||
update_every: 100 | ||
update_after: 1000 | ||
steps_per_update: 80 | ||
num_test_episodes: 10 | ||
alpha: 2.0 | ||
alpha3: 0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 1.0 1.1 1.2 1.3 1.4 1.5 # NOTE: Tuning alpha3. | ||
labda: 0.99 # NOTE: Decreased from 1.0 to 0.99 for stability. | ||
# gamma: 0.995 # NOTE: Not used for finite horizon tasks. | ||
polyak: 0.995 | ||
adaptive_temperature: True | ||
lr_a: "1e-4" | ||
lr_c: "3e-4" | ||
lr_alpha: "1e-4" | ||
lr_labda: "3e-4" | ||
lr_a_final: "1e-9" # NOTE: Not in Han et al. 2020, but aligned with original code. | ||
lr_c_final: "3e-9" # NOTE: Not in Han et al. 2020, but aligned with original code. | ||
lr_alpha_final: "1e-9" # NOTE: Not in Han et al. 2020, but aligned with original code. | ||
lr_labda_final: "3e-9" # NOTE: Not in Han et al. 2020, but aligned with original code. | ||
lr_a_decay_type: "linear" | ||
lr_c_decay_type: "linear" | ||
lr_alpha_decay_type: "linear" | ||
lr_labda_decay_type: "constant" | ||
lr_decay_ref: "step" | ||
batch_size: 256 | ||
replay_size: "int(1e6)" | ||
horizon_length: 5 | ||
seed: 408660 # 26000 49672 858762 388389 # NOTE: Using 5 seeds for tuning. | ||
save_freq: 10 | ||
use_wandb: True | ||
wandb_group: "han2020_reproduction_extra_seeds_short" | ||
device: "gpu:1" |
48 changes: 48 additions & 0 deletions
48
..._reproduction_lac_oscillator_complicated_alpha3_tune_experiment_extra_seed49672_short.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
alg_name: lac | ||
exp_name: han2020_reproduction_lac_oscillator_complicated_alpha3_tune_exp_short | ||
env_name: "stable_gym:OscillatorComplicated-v1" | ||
ac_kwargs: | ||
hidden_sizes: | ||
actor: [256, 256] # NOTE: Using [256, 256] for consistency with the article. | ||
critic: [256, 256, 16] # NOTE: Using [256, 256, 16] for consistency with the article. | ||
activation: | ||
actor: "nn.ReLU" | ||
critic: "nn.ReLU" | ||
output_activation: | ||
actor: "nn.ReLU" | ||
opt_type: "minimize" | ||
max_ep_len: 400 | ||
epochs: 49 | ||
steps_per_epoch: 2048 | ||
start_steps: 0 | ||
update_every: 100 | ||
update_after: 1000 | ||
steps_per_update: 80 | ||
num_test_episodes: 10 | ||
alpha: 2.0 | ||
alpha3: 0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 1.0 1.1 1.2 1.3 1.4 1.5 # NOTE: Tuning alpha3. | ||
labda: 0.99 # NOTE: Decreased from 1.0 to 0.99 for stability. | ||
# gamma: 0.995 # NOTE: Not used for finite horizon tasks. | ||
polyak: 0.995 | ||
adaptive_temperature: True | ||
lr_a: "1e-4" | ||
lr_c: "3e-4" | ||
lr_alpha: "1e-4" | ||
lr_labda: "3e-4" | ||
lr_a_final: "1e-9" # NOTE: Not in Han et al. 2020, but aligned with original code. | ||
lr_c_final: "3e-9" # NOTE: Not in Han et al. 2020, but aligned with original code. | ||
lr_alpha_final: "1e-9" # NOTE: Not in Han et al. 2020, but aligned with original code. | ||
lr_labda_final: "3e-9" # NOTE: Not in Han et al. 2020, but aligned with original code. | ||
lr_a_decay_type: "linear" | ||
lr_c_decay_type: "linear" | ||
lr_alpha_decay_type: "linear" | ||
lr_labda_decay_type: "constant" | ||
lr_decay_ref: "step" | ||
batch_size: 256 | ||
replay_size: "int(1e6)" | ||
horizon_length: 5 | ||
seed: 49672 # 858762 388389 # NOTE: Using 5 seeds for tuning. | ||
save_freq: 10 | ||
use_wandb: True | ||
wandb_group: "han2020_reproduction_extra_seeds_short" | ||
device: "gpu:1" |
48 changes: 48 additions & 0 deletions
48
...reproduction_lac_oscillator_complicated_alpha3_tune_experiment_extra_seed858762_short.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
alg_name: lac | ||
exp_name: han2020_reproduction_lac_oscillator_complicated_alpha3_tune_exp_short | ||
env_name: "stable_gym:OscillatorComplicated-v1" | ||
ac_kwargs: | ||
hidden_sizes: | ||
actor: [256, 256] # NOTE: Using [256, 256] for consistency with the article. | ||
critic: [256, 256, 16] # NOTE: Using [256, 256, 16] for consistency with the article. | ||
activation: | ||
actor: "nn.ReLU" | ||
critic: "nn.ReLU" | ||
output_activation: | ||
actor: "nn.ReLU" | ||
opt_type: "minimize" | ||
max_ep_len: 400 | ||
epochs: 49 | ||
steps_per_epoch: 2048 | ||
start_steps: 0 | ||
update_every: 100 | ||
update_after: 1000 | ||
steps_per_update: 80 | ||
num_test_episodes: 10 | ||
alpha: 2.0 | ||
alpha3: 0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 1.0 1.1 1.2 1.3 1.4 1.5 # NOTE: Tuning alpha3. | ||
labda: 0.99 # NOTE: Decreased from 1.0 to 0.99 for stability. | ||
# gamma: 0.995 # NOTE: Not used for finite horizon tasks. | ||
polyak: 0.995 | ||
adaptive_temperature: True | ||
lr_a: "1e-4" | ||
lr_c: "3e-4" | ||
lr_alpha: "1e-4" | ||
lr_labda: "3e-4" | ||
lr_a_final: "1e-9" # NOTE: Not in Han et al. 2020, but aligned with original code. | ||
lr_c_final: "3e-9" # NOTE: Not in Han et al. 2020, but aligned with original code. | ||
lr_alpha_final: "1e-9" # NOTE: Not in Han et al. 2020, but aligned with original code. | ||
lr_labda_final: "3e-9" # NOTE: Not in Han et al. 2020, but aligned with original code. | ||
lr_a_decay_type: "linear" | ||
lr_c_decay_type: "linear" | ||
lr_alpha_decay_type: "linear" | ||
lr_labda_decay_type: "constant" | ||
lr_decay_ref: "step" | ||
batch_size: 256 | ||
replay_size: "int(1e6)" | ||
horizon_length: 5 | ||
seed: 858762 # 388389 # NOTE: Using 5 seeds for tuning. | ||
save_freq: 10 | ||
use_wandb: True | ||
wandb_group: "han2020_reproduction_extra_seeds_short" | ||
device: "gpu:1" |
48 changes: 48 additions & 0 deletions
48
...2020_reproduction_lac_oscillator_complicated_alpha3_tune_experiment_extra_seeds_short.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
alg_name: lac | ||
exp_name: han2020_reproduction_lac_oscillator_complicated_alpha3_tune_exp_short | ||
env_name: "stable_gym:OscillatorComplicated-v1" | ||
ac_kwargs: | ||
hidden_sizes: | ||
actor: [256, 256] # NOTE: Using [256, 256] for consistency with the article. | ||
critic: [256, 256, 16] # NOTE: Using [256, 256, 16] for consistency with the article. | ||
activation: | ||
actor: "nn.ReLU" | ||
critic: "nn.ReLU" | ||
output_activation: | ||
actor: "nn.ReLU" | ||
opt_type: "minimize" | ||
max_ep_len: 400 | ||
epochs: 49 | ||
steps_per_epoch: 2048 | ||
start_steps: 0 | ||
update_every: 100 | ||
update_after: 1000 | ||
steps_per_update: 80 | ||
num_test_episodes: 10 | ||
alpha: 2.0 | ||
alpha3: 0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 1.0 1.1 1.2 1.3 1.4 1.5 # NOTE: Tuning alpha3. | ||
labda: 0.99 # NOTE: Decreased from 1.0 to 0.99 for stability. | ||
# gamma: 0.995 # NOTE: Not used for finite horizon tasks. | ||
polyak: 0.995 | ||
adaptive_temperature: True | ||
lr_a: "1e-4" | ||
lr_c: "3e-4" | ||
lr_alpha: "1e-4" | ||
lr_labda: "3e-4" | ||
lr_a_final: "1e-9" # NOTE: Not in Han et al. 2020, but aligned with original code. | ||
lr_c_final: "3e-9" # NOTE: Not in Han et al. 2020, but aligned with original code. | ||
lr_alpha_final: "1e-9" # NOTE: Not in Han et al. 2020, but aligned with original code. | ||
lr_labda_final: "3e-9" # NOTE: Not in Han et al. 2020, but aligned with original code. | ||
lr_a_decay_type: "linear" | ||
lr_c_decay_type: "linear" | ||
lr_alpha_decay_type: "linear" | ||
lr_labda_decay_type: "constant" | ||
lr_decay_ref: "step" | ||
batch_size: 256 | ||
replay_size: "int(1e6)" | ||
horizon_length: 5 | ||
seed: 408660 26000 49672 858762 388389 # NOTE: Using 5 seeds for tuning. | ||
save_freq: 10 | ||
use_wandb: True | ||
wandb_group: "han2020_reproduction_extra_seeds_short" | ||
device: "gpu:1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.