2021-09-16 20:16:40 -07:00
|
|
|
-r requirements_dl.txt
|
2021-05-17 18:24:13 +02:00
|
|
|
|
|
|
|
# Environment adapters.
|
|
|
|
# ---------------------
|
|
|
|
# Atari
|
[RLlib] Upgrade gym version to 0.21 and deprecate pendulum-v0. (#19535)
* Fix QMix, SAC, and MADDPA too.
* Unpin gym and deprecate pendulum v0
Many tests in rllib depended on pendulum v0,
however in gym 0.21, pendulum v0 was deprecated
in favor of pendulum v1. This may change reward
thresholds, so will have to potentially rerun
all of the pendulum v1 benchmarks, or use another
environment in favor. The same applies to frozen
lake v0 and frozen lake v1
Lastly, all of the RLlib tests and have
been moved to python 3.7
* Add gym installation based on python version.
Pin python<= 3.6 to gym 0.19 due to install
issues with atari roms in gym 0.20
* Reformatting
* Fixing tests
* Move atari-py install conditional to req.txt
* migrate to new ale install method
* Fix QMix, SAC, and MADDPA too.
* Unpin gym and deprecate pendulum v0
Many tests in rllib depended on pendulum v0,
however in gym 0.21, pendulum v0 was deprecated
in favor of pendulum v1. This may change reward
thresholds, so will have to potentially rerun
all of the pendulum v1 benchmarks, or use another
environment in favor. The same applies to frozen
lake v0 and frozen lake v1
Lastly, all of the RLlib tests and have
been moved to python 3.7
* Add gym installation based on python version.
Pin python<= 3.6 to gym 0.19 due to install
issues with atari roms in gym 0.20
Move atari-py install conditional to req.txt
migrate to new ale install method
Make parametric_actions_cartpole return float32 actions/obs
Adding type conversions if obs/actions don't match space
Add utils to make elements match gym space dtypes
Co-authored-by: Jun Gong <jungong@anyscale.com>
Co-authored-by: sven1977 <svenmika1977@gmail.com>
2021-11-03 08:24:00 -07:00
|
|
|
autorom[accept-rom-license]
|
2022-04-18 23:33:31 -07:00
|
|
|
gym[atari]==0.21.0; python_version >= '3.7'
|
[RLlib] Upgrade gym version to 0.21 and deprecate pendulum-v0. (#19535)
* Fix QMix, SAC, and MADDPA too.
* Unpin gym and deprecate pendulum v0
Many tests in rllib depended on pendulum v0,
however in gym 0.21, pendulum v0 was deprecated
in favor of pendulum v1. This may change reward
thresholds, so will have to potentially rerun
all of the pendulum v1 benchmarks, or use another
environment in favor. The same applies to frozen
lake v0 and frozen lake v1
Lastly, all of the RLlib tests and have
been moved to python 3.7
* Add gym installation based on python version.
Pin python<= 3.6 to gym 0.19 due to install
issues with atari roms in gym 0.20
* Reformatting
* Fixing tests
* Move atari-py install conditional to req.txt
* migrate to new ale install method
* Fix QMix, SAC, and MADDPA too.
* Unpin gym and deprecate pendulum v0
Many tests in rllib depended on pendulum v0,
however in gym 0.21, pendulum v0 was deprecated
in favor of pendulum v1. This may change reward
thresholds, so will have to potentially rerun
all of the pendulum v1 benchmarks, or use another
environment in favor. The same applies to frozen
lake v0 and frozen lake v1
Lastly, all of the RLlib tests and have
been moved to python 3.7
* Add gym installation based on python version.
Pin python<= 3.6 to gym 0.19 due to install
issues with atari roms in gym 0.20
Move atari-py install conditional to req.txt
migrate to new ale install method
Make parametric_actions_cartpole return float32 actions/obs
Adding type conversions if obs/actions don't match space
Add utils to make elements match gym space dtypes
Co-authored-by: Jun Gong <jungong@anyscale.com>
Co-authored-by: sven1977 <svenmika1977@gmail.com>
2021-11-03 08:24:00 -07:00
|
|
|
gym[atari]==0.19.0; python_version < '3.7'
|
2021-05-17 18:24:13 +02:00
|
|
|
# Kaggle envs.
|
|
|
|
kaggle_environments==1.7.11
|
|
|
|
# Unity3D testing
|
2022-02-25 21:58:16 +01:00
|
|
|
#TODO(sven): Add this back to requirements_rllib.txt once mlagents no longer pins torch<1.9.0 version.
|
|
|
|
#mlagents==0.28.0
|
|
|
|
mlagents_envs==0.28.0
|
2021-05-17 18:24:13 +02:00
|
|
|
# For tests on PettingZoo's multi-agent envs.
|
2022-03-01 05:23:27 -05:00
|
|
|
pettingzoo==1.15.0; python_version >= '3.7'
|
2021-08-11 04:19:19 -04:00
|
|
|
pymunk==6.0.0
|
2022-03-01 05:23:27 -05:00
|
|
|
supersuit==3.3.3; python_version >= '3.7'
|
2021-05-17 18:24:13 +02:00
|
|
|
# For testing in MuJoCo-like envs (in PyBullet).
|
2021-11-17 10:27:00 -08:00
|
|
|
pybullet==3.2.0
|
2021-05-17 18:24:13 +02:00
|
|
|
# For tests on RecSim and Kaggle envs.
|
|
|
|
recsim==0.2.4
|
2021-10-30 21:50:39 +02:00
|
|
|
tensorflow_estimator==2.6.0
|
2022-02-08 16:43:00 +01:00
|
|
|
# DeepMind's OpenSpiel
|
|
|
|
open-spiel==1.0.2
|
2021-05-17 18:24:13 +02:00
|
|
|
|
|
|
|
# Other.
|
|
|
|
# ------
|
|
|
|
# For MAML on PyTorch.
|
|
|
|
higher==0.2.1
|
|
|
|
# For auto-generating an env-rendering Window.
|
2021-09-24 19:32:55 +02:00
|
|
|
pyglet==1.5.15
|
2022-01-24 19:38:21 +01:00
|
|
|
imageio-ffmpeg==0.4.5
|
2021-05-17 18:24:13 +02:00
|
|
|
# Ray Serve example
|
2021-10-23 18:34:14 -07:00
|
|
|
starlette==0.16.0
|
2021-07-13 18:38:11 +02:00
|
|
|
# ONNX
|
|
|
|
onnx==1.9.0
|
2021-11-04 23:34:48 -07:00
|
|
|
onnxruntime==1.9.0
|
2021-07-13 18:38:11 +02:00
|
|
|
tf2onnx==1.8.5
|