-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathexample.sh
22 lines (15 loc) · 1.95 KB
/
example.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/bash
## Humanoid
# OCEAN w/ rnn
python3.5 launch_experiment.py ./configs/humanoid-multi-dir.json --logdir log --gpu 0 --kl_lambda 10 --n_iteration 500 --seed 4 --global_latent 0.0.0.2.3 --constraint dirichlet --alpha 0.8 --unitkl --recurrent --vrnn_latent 0.0.0.2.3 --rnn rnn --temp_res 20 --rnn_sample batch_sampling --traj_batch_size 1 --vrnn_constraint dirichlet --vrnn_alpha 0.8 --weighted_sample
# OCEAN w/ vrnn (can be slow, run rnn version for a quick try)
python3.5 launch_experiment.py ./configs/humanoid-multi-dir.json --logdir log --gpu 0 --kl_lambda 10 --n_iteration 500 --seed 4 --global_latent 0.0.0.2.3 --constraint dirichlet --alpha 0.8 --unitkl --recurrent --vrnn_latent 0.0.0.2.3 --rnn vrnn --temp_res 50 --rnn_sample single_sampling --traj_batch_size 1 --vrnn_constraint dirichlet --vrnn_alpha 0.8 --weighted_sample
# PEARL
python3.5 launch_experiment.py ./configs/humanoid-multi-dir.json --logdir log --gpu 0 --kl_lambda 10 --n_iteration 500 --seed 4 --global_latent 12.0.0.0.0 --weighted_sample
## Cheetah
# OCEAN w/ rnn
python3.5 launch_experiment.py ./configs/cheetah-multi-dir-complex.json --logdir log --gpu 0 --kl_lambda 10 --n_iteration 500 --seed 4 --global_latent 0.0.0.2.3 --constraint dirichlet --alpha 0.8 --recurrent --vrnn_latent 0.0.0.2.3 --rnn rnn --temp_res 100 --rnn_sample batch_sampling --traj_batch_size 1 --vrnn_constraint dirichlet --vrnn_alpha 0.8 --weighted_sample
# OCEAN w/ vrnn
python3.5 launch_experiment.py ./configs/cheetah-multi-dir-complex.json --logdir log --gpu 0 --kl_lambda 10 --n_iteration 500 --seed 4 --global_latent 0.0.0.2.3 --constraint dirichlet --alpha 0.8 --recurrent --vrnn_latent 0.0.0.2.3 --rnn vrnn --temp_res 100 --rnn_sample batch_sampling --traj_batch_size 1 --vrnn_constraint dirichlet --vrnn_alpha 0.8 --weighted_sample
# PEARL
python3.5 launch_experiment.py ./configs/cheetah-multi-dir-complex.json --logdir log --gpu 0 --kl_lambda 10 --n_iteration 500 --seed 4 --global_latent 12.0.0.0.0 --weighted_sample