A fork of OpenAI Baselines, implementations of reinforcement learning algorithms.
Project description
WARNING: This package is in maintenance mode, please use Stable-Baselines3 (SB3) for an up-to-date version. You can find a migration guide in SB3 documentation.
Stable Baselines
Stable Baselines is a set of improved implementations of reinforcement learning algorithms based on OpenAI Baselines.
These algorithms will make it easier for the research community and industry to replicate, refine, and identify new ideas, and will create good baselines to build projects on top of. We expect these tools will be used as a base around which new ideas can be added, and as a tool for comparing a new approach against existing ones. We also hope that the simplicity of these tools will allow beginners to experiment with a more advanced toolset, without being buried in implementation details.
Main differences with OpenAI Baselines
This toolset is a fork of OpenAI Baselines, with a major structural refactoring, and code cleanups:
- Unified structure for all algorithms
- PEP8 compliant (unified code style)
- Documented functions and classes
- More tests & more code coverage
- Additional algorithms: SAC and TD3 (+ HER support for DQN, DDPG, SAC and TD3)
Links
Repository: https://github.com/hill-a/stable-baselines
Medium article: https://medium.com/@araffin/df87c4b2fc82
Documentation: https://stable-baselines.readthedocs.io/en/master/
RL Baselines Zoo: https://github.com/araffin/rl-baselines-zoo
Quick example
Most of the library tries to follow a sklearn-like syntax for the Reinforcement Learning algorithms using Gym.
Here is a quick example of how to train and run PPO2 on a cartpole environment:
import gym
from stable_baselines.common.policies import MlpPolicy
from stable_baselines.common.vec_env import DummyVecEnv
from stable_baselines import PPO2
env = gym.make('CartPole-v1')
# Optional: PPO2 requires a vectorized environment to run
# the env is now wrapped automatically when passing it to the constructor
# env = DummyVecEnv([lambda: env])
model = PPO2(MlpPolicy, env, verbose=1)
model.learn(total_timesteps=10000)
obs = env.reset()
for i in range(1000):
action, _states = model.predict(obs)
obs, rewards, dones, info = env.step(action)
env.render()
Or just train a model with a one liner if the environment is registered in Gym and if the policy is registered:
from stable_baselines import PPO2
model = PPO2('MlpPolicy', 'CartPole-v1').learn(10000)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file stable_baselines-2.10.2.tar.gz
.
File metadata
- Download URL: stable_baselines-2.10.2.tar.gz
- Upload date:
- Size: 199.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.23.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.6.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 82491c8028edd5ae17186b8c8b3963368b45a37c9a0a00841ce26990b381f556 |
|
MD5 | 49490e2d25fe01fb046f6c7f4e4c9c29 |
|
BLAKE2b-256 | bae5b59ee753d93632fd28d15acaf5043e8cd1d14385191f0ab843f277c00a5d |
File details
Details for the file stable_baselines-2.10.2-py3-none-any.whl
.
File metadata
- Download URL: stable_baselines-2.10.2-py3-none-any.whl
- Upload date:
- Size: 240.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.23.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.6.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 59d7657723e73be15f4f3eacf957ffb4954cec03d1a9ee6c3a452bd1b1273191 |
|
MD5 | 29cbda6feaf543aaecbae96c20198e87 |
|
BLAKE2b-256 | a2c5a60adb848f86219d19dd2d2bc4223b80e8d42802cc9e816955b6cfeffbdb |