Release v1.5.0 (#64)
This commit is contained in:
parent
f5c1aaa194
commit
9d7e33d213
|
|
@ -3,14 +3,13 @@
|
||||||
Changelog
|
Changelog
|
||||||
==========
|
==========
|
||||||
|
|
||||||
Release 1.4.1a1 (WIP)
|
Release 1.5.0 (2022-03-25)
|
||||||
-------------------------------
|
-------------------------------
|
||||||
|
|
||||||
|
|
||||||
Breaking Changes:
|
Breaking Changes:
|
||||||
^^^^^^^^^^^^^^^^^
|
^^^^^^^^^^^^^^^^^
|
||||||
- Switched minimum Gym version to 0.21.0.
|
- Switched minimum Gym version to 0.21.0.
|
||||||
- Upgraded to Stable-Baselines3 >= 1.4.1a1
|
- Upgraded to Stable-Baselines3 >= 1.5.0
|
||||||
|
|
||||||
New Features:
|
New Features:
|
||||||
^^^^^^^^^^^^^
|
^^^^^^^^^^^^^
|
||||||
|
|
@ -28,7 +27,7 @@ Others:
|
||||||
|
|
||||||
Release 1.4.0 (2022-01-19)
|
Release 1.4.0 (2022-01-19)
|
||||||
-------------------------------
|
-------------------------------
|
||||||
**Add Trust Region Policy Optimization (TRPO) and Augmented Random Search (ARS) algorithms**
|
**Add Trust Region Policy Optimization (TRPO) and Augmented Random Search (ARS) algorithms**
|
||||||
|
|
||||||
Breaking Changes:
|
Breaking Changes:
|
||||||
^^^^^^^^^^^^^^^^^
|
^^^^^^^^^^^^^^^^^
|
||||||
|
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
1.4.1a1
|
1.5.0
|
||||||
|
|
|
||||||
4
setup.py
4
setup.py
|
|
@ -33,6 +33,8 @@ See documentation for the full list of included features.
|
||||||
- [Truncated Quantile Critics (TQC)](https://arxiv.org/abs/2005.04269)
|
- [Truncated Quantile Critics (TQC)](https://arxiv.org/abs/2005.04269)
|
||||||
- [Quantile Regression DQN (QR-DQN)](https://arxiv.org/abs/1710.10044)
|
- [Quantile Regression DQN (QR-DQN)](https://arxiv.org/abs/1710.10044)
|
||||||
- [PPO with invalid action masking (MaskablePPO)](https://arxiv.org/abs/2006.14171)
|
- [PPO with invalid action masking (MaskablePPO)](https://arxiv.org/abs/2006.14171)
|
||||||
|
- [Trust Region Policy Optimization (TRPO)](https://arxiv.org/abs/1502.05477)
|
||||||
|
- [Augmented Random Search (ARS)](https://arxiv.org/abs/1803.07055)
|
||||||
|
|
||||||
**Gym Wrappers**:
|
**Gym Wrappers**:
|
||||||
- [Time Feature Wrapper](https://arxiv.org/abs/1712.00378)
|
- [Time Feature Wrapper](https://arxiv.org/abs/1712.00378)
|
||||||
|
|
@ -63,7 +65,7 @@ setup(
|
||||||
packages=[package for package in find_packages() if package.startswith("sb3_contrib")],
|
packages=[package for package in find_packages() if package.startswith("sb3_contrib")],
|
||||||
package_data={"sb3_contrib": ["py.typed", "version.txt"]},
|
package_data={"sb3_contrib": ["py.typed", "version.txt"]},
|
||||||
install_requires=[
|
install_requires=[
|
||||||
"stable_baselines3>=1.4.1a1",
|
"stable_baselines3>=1.5.0",
|
||||||
],
|
],
|
||||||
description="Contrib package of Stable Baselines3, experimental code.",
|
description="Contrib package of Stable Baselines3, experimental code.",
|
||||||
author="Antonin Raffin",
|
author="Antonin Raffin",
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue