mirror of
https://github.com/saymrwulf/stable-baselines3.git
synced 2026-06-08 00:23:22 +00:00
Release v1.6.2 (#1103)
* Release v1.6.2 * Remove Gitlab CI, no more minutes
This commit is contained in:
parent
d8a430e088
commit
e2f81bb70b
5 changed files with 20 additions and 7 deletions
|
|
@ -1,6 +1,8 @@
|
|||
<img src="docs/\_static/img/logo.png" align="right" width="40%"/>
|
||||
|
||||
[](https://gitlab.com/araffin/stable-baselines3/-/commits/master) [](https://stable-baselines3.readthedocs.io/en/master/?badge=master) [](https://gitlab.com/araffin/stable-baselines3/-/commits/master)
|
||||
<!-- [](https://gitlab.com/araffin/stable-baselines3/-/commits/master) -->
|
||||

|
||||
[](https://stable-baselines3.readthedocs.io/en/master/?badge=master) [](https://gitlab.com/araffin/stable-baselines3/-/commits/master)
|
||||
[](https://github.com/psf/black)
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -33,6 +33,11 @@ Installation
|
|||
You can remove the ``--recursive`` option if you don't want to download the trained agents
|
||||
|
||||
|
||||
.. note::
|
||||
|
||||
If you only need the training/plotting scripts and additional callbacks/wrappers from the RL Zoo, you can also install it via pip: ``pip install rl_zoo3``
|
||||
|
||||
|
||||
2. Install dependencies
|
||||
::
|
||||
|
||||
|
|
@ -57,7 +62,7 @@ For example (with evaluation and checkpoints):
|
|||
|
||||
::
|
||||
|
||||
python train.py --algo ppo2 --env CartPole-v1 --eval-freq 10000 --save-freq 50000
|
||||
python train.py --algo ppo --env CartPole-v1 --eval-freq 10000 --save-freq 50000
|
||||
|
||||
|
||||
Continue training (here, load pretrained agent for Breakout and continue
|
||||
|
|
|
|||
|
|
@ -2,8 +2,11 @@
|
|||
|
||||
Changelog
|
||||
==========
|
||||
Release 1.6.2a0 (WIP)
|
||||
---------------------------
|
||||
|
||||
Release 1.6.2 (2022-10-10)
|
||||
--------------------------
|
||||
|
||||
**Progress bar in the learn() method, RL Zoo3 is now a package**
|
||||
|
||||
Breaking Changes:
|
||||
^^^^^^^^^^^^^^^^^
|
||||
|
|
@ -12,6 +15,7 @@ New Features:
|
|||
^^^^^^^^^^^^^
|
||||
- Added ``progress_bar`` argument in the ``learn()`` method, displayed using TQDM and rich packages
|
||||
- Added progress bar callback
|
||||
- The `RL Zoo <https://github.com/DLR-RM/rl-baselines3-zoo>`_ can now be installed as a package (``pip install rl_zoo3``)
|
||||
|
||||
SB3-Contrib
|
||||
^^^^^^^^^^^
|
||||
|
|
@ -19,6 +23,7 @@ SB3-Contrib
|
|||
Bug Fixes:
|
||||
^^^^^^^^^^
|
||||
- ``self.num_timesteps`` was initialized properly only after the first call to ``on_step()`` for callbacks
|
||||
- Set importlib-metadata version to ``~=4.13`` to be compatible with ``gym=0.21``
|
||||
|
||||
Deprecations:
|
||||
^^^^^^^^^^^^^
|
||||
|
|
@ -32,6 +37,7 @@ Documentation:
|
|||
^^^^^^^^^^^^^^
|
||||
- Extended docstring of the ``wrapper_class`` parameter in ``make_vec_env`` (@AlexPasqua)
|
||||
|
||||
|
||||
Release 1.6.1 (2022-09-29)
|
||||
---------------------------
|
||||
|
||||
|
|
|
|||
4
setup.py
4
setup.py
|
|
@ -82,6 +82,8 @@ setup(
|
|||
"pandas",
|
||||
# Plotting learning curves
|
||||
"matplotlib",
|
||||
# gym and flake8 not compatible with importlib-metadata>5.0
|
||||
"importlib-metadata~=4.13",
|
||||
],
|
||||
extras_require={
|
||||
"tests": [
|
||||
|
|
@ -94,8 +96,6 @@ setup(
|
|||
"pytype",
|
||||
# Lint code
|
||||
"flake8>=3.8",
|
||||
# flake8 not compatible with importlib-metadata>5.0
|
||||
"importlib-metadata~=4.13",
|
||||
# Find likely bugs
|
||||
"flake8-bugbear",
|
||||
# Sort imports
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
1.6.2a0
|
||||
1.6.2
|
||||
|
|
|
|||
Loading…
Reference in a new issue