Skip to content

Commit

Permalink
Skip the continous SQIL test with TD3 since it is unstable.
Browse files Browse the repository at this point in the history
  • Loading branch information
ernestum committed Oct 9, 2023
1 parent 9343344 commit e19ffc2
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/algorithms/test_sqil.py
Original file line number Diff line number Diff line change
Expand Up @@ -246,6 +246,9 @@ def test_sqil_performance_continuous(
pendulum_single_venv: vec_env.VecEnv,
rl_algo_class: Type[off_policy_algorithm.OffPolicyAlgorithm],
):
if rl_algo_class == td3.TD3:
pytest.skip("TD3 is unstable on Pendulum-v1")

rl_kwargs = dict(
learning_starts=500,
learning_rate=0.001,
Expand Down

0 comments on commit e19ffc2

Please sign in to comment.