forked from Stable-Baselines-Team/stable-baselines3-contrib
-
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.
Release v1.6.0 and bug fix for TRPO (Stable-Baselines-Team#84)
- Loading branch information
Showing
7 changed files
with
61 additions
and
11 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
1.5.1a9 | ||
1.6.0 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
import numpy as np | ||
import pytest | ||
from stable_baselines3.common.envs import IdentityEnv, IdentityEnvMultiBinary, IdentityEnvMultiDiscrete | ||
from stable_baselines3.common.evaluation import evaluate_policy | ||
from stable_baselines3.common.vec_env import DummyVecEnv | ||
|
||
from sb3_contrib import QRDQN, TRPO | ||
|
||
DIM = 4 | ||
|
||
|
||
@pytest.mark.parametrize("model_class", [QRDQN, TRPO]) | ||
@pytest.mark.parametrize("env", [IdentityEnv(DIM), IdentityEnvMultiDiscrete(DIM), IdentityEnvMultiBinary(DIM)]) | ||
def test_discrete(model_class, env): | ||
env_ = DummyVecEnv([lambda: env]) | ||
kwargs = {} | ||
n_steps = 1500 | ||
if model_class == QRDQN: | ||
kwargs = dict( | ||
learning_starts=0, | ||
policy_kwargs=dict(n_quantiles=25, net_arch=[32]), | ||
target_update_interval=10, | ||
train_freq=2, | ||
batch_size=256, | ||
) | ||
n_steps = 1500 | ||
# DQN only support discrete actions | ||
if isinstance(env, (IdentityEnvMultiDiscrete, IdentityEnvMultiBinary)): | ||
return | ||
elif n_steps == TRPO: | ||
kwargs = dict(n_steps=256, cg_max_steps=5) | ||
|
||
model = model_class("MlpPolicy", env_, learning_rate=1e-3, gamma=0.4, seed=1, **kwargs).learn(n_steps) | ||
|
||
evaluate_policy(model, env_, n_eval_episodes=20, reward_threshold=90, warn=False) | ||
obs = env.reset() | ||
|
||
assert np.shape(model.predict(obs)[0]) == np.shape(obs) |