forked from ray-project/ray
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[rllib] Expose algorithm parameters and tune policy gradient paramete…
…rs for humanoid (ray-project#753) * parameters for humanoid * fix
- Loading branch information
1 parent
ade6d80
commit d356dd3
Showing
2 changed files
with
14 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
#!/bin/bash | ||
|
||
python train.py --env Walker2d-v1 --alg PolicyGradient --upload-dir s3://bucketname/ | ||
python train.py --env Humanoid-v1 --alg PolicyGradient --config '{"kl_coeff": 1.0, "num_sgd_iter": 20, "sgd_stepsize": 1e-4, "sgd_batchsize": 32768, "devices": ["/gpu:0", "/gpu:1", "/gpu:2", "/gpu:3"], "tf_session_args": {"device_count": {"GPU": 4}, "log_device_placement": false, "allow_soft_placement": true}, "timesteps_per_batch": 320000, "num_agents": 64}' --upload-dir s3://bucketname/ | ||
python train.py --env PongNoFrameskip-v0 --alg DQN --upload-dir s3://bucketname/ | ||
python train.py --env PongDeterministic-v0 --alg A3C --upload-dir s3://bucketname/ | ||
python train.py --env Humanoid-v1 --alg EvolutionStrategies --upload-dir s3://bucketname/ |
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