Skip to content

Commit

Permalink
First Stable version
Browse files Browse the repository at this point in the history
  • Loading branch information
araffin committed Aug 20, 2018
1 parent 25540bc commit 07e2393
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 4 deletions.
21 changes: 21 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -426,6 +426,13 @@ More thorough tutorial on virtualenvs and options can be found [here](https://vi

## Installation
Install the Stable Baselines package

Using pip from pypi:
```
pip install stable-baselines
```

From source:
```bash
pip install git+https://github.com/hill-a/stable-baselines
```
Expand Down Expand Up @@ -453,6 +460,20 @@ pytest --cov-config .coveragerc --cov-report html --cov-report term --cov=.
- [TRPO](stable_baselines/trpo_mpi)


To cite this repository in publications:

```
@misc{stable-baselines,
author = {Hill, Ashley and Raffin, Antonin and Traore, Rene and Dhariwal, Prafulla and Hesse, Christopher and Klimov, Oleg and Nichol, Alex and Plappert, Matthias and Radford, Alec and Schulman, John and Sidor, Szymon and Wu, Yuhuai},
title = {Stable Baselines},
year = {2018},
publisher = {GitHub},
journal = {GitHub repository},
howpublished = {\url{https://github.com/hill-a/stable-baselines}},
}
```


## Bonus

Make a gif of a trained agent (you need to install imageio):
Expand Down
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@
'seaborn',
'glob2'
],
description='A fork of OpenAI Baselines, implementations of reinforcement learning algorithms ',
author='OpenAI',
description='A fork of OpenAI Baselines, implementations of reinforcement learning algorithms.',
author='Ashley Hill',
url='https://github.com/openai/stable_baselines',
author_email='[email protected]',
version='0.2.0')
author_email='[email protected]',
version='1.0.0')

0 comments on commit 07e2393

Please sign in to comment.