Last active
July 7, 2020 06:38
-
-
Save ceteri/07979d0fc68f7f79fed2b71347e598ea to your computer and use it in GitHub Desktop.
Revisions
-
ceteri renamed this gist
Jul 7, 2020 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
ceteri revised this gist
Jul 7, 2020 . 1 changed file with 4 additions and 4 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -3,9 +3,9 @@ config = ppo.DEFAULT_CONFIG.copy() config["log_level"] = "WARN" config["num_workers"] = 4 # default = 2 config["train_batch_size"] = 10000 # default = 4000 config["sgd_minibatch_size"] = 256 # default = 128 config["evaluation_num_episodes"] = 50 # default = 10 agent = ppo.PPOTrainer(config, env=SELECT_ENV) -
ceteri created this gist
Jul 7, 2020 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,11 @@ SELECT_ENV = "MountainCar-v0" config = ppo.DEFAULT_CONFIG.copy() config["log_level"] = "WARN" config["num_workers"] = 4 # default = 2 config["train_batch_size"] = 10000 # default = 4000 config["sgd_minibatch_size"] = 256 # default = 128 config["evaluation_num_episodes"] = 50 # default = 10 agent = ppo.PPOTrainer(config, env=SELECT_ENV)