Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
araffin committed Aug 20, 2018
1 parent c9d0725 commit afd31eb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@
author='OpenAI',
url='https://github.com/openai/baselines',
author_email='[email protected]',
version='0.1.7')
version='0.2.0')
2 changes: 1 addition & 1 deletion tests/test_identity.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
n_steps=1, replay_ratio=1).learn(total_timesteps=10000, seed=0),
lambda e: ACKTR(policy=MlpPolicy, env=e, learning_rate=5e-4, n_steps=1).learn(total_timesteps=20000, seed=0),
lambda e: DeepQ(policy=deepq_models.mlp([16]), batch_size=16, gamma=0.1,
exploration_fraction=0.001, env=e).learn(total_timesteps=20000, seed=0),
exploration_fraction=0.001, env=e).learn(total_timesteps=30000, seed=0),
lambda e: PPO1(policy=MlpPolicy, env=e, lam=0.7,
optim_batchsize=16, optim_stepsize=1e-3).learn(total_timesteps=10000, seed=0),
lambda e: PPO2(policy=MlpPolicy, env=e, learning_rate=1.5e-3,
Expand Down

0 comments on commit afd31eb

Please sign in to comment.