Recent Releases of open-rl
open-rl - Open RL - 0.2.0
Release Note
Significant updates were made in this release and it's recommended that all users pull down and use this version in place of the previous version.
Highlights
✔️ Complete refactor and reorganization of the repo. ✔️ Consolidate significant amount of code in higher-level directories to avoid code duplication ✔️ Make code more consistent across different algorithms ✔️ Fix several bugs throughout code base ✔️ Update imports ✔️ Clarify the difference between state dimensions, action dimensions, and number of discrete actions ✔️ Update plotting for most algorithms ✔️ Create BaseAgent interface and extend with most algorithms
Enjoy 😄
- Python
Published by natetsang over 4 years ago
open-rl - Open RL - 0.1.0
First release!
See README.md for details.
Installation
- Make sure you have Python 3.7 or higher installed
- Clone the repo ``` # Clone repo from github git clone --depth 1 https://github.com/natetsang/open-rl
Navigate to root folder
cd open-rl
- Create a virtual environment (Windows 10). Showing instructions from `virtualenv` but there are other options too!
If not already installed, you might need to run this next line
pip install virtualenv
Create virtual environment called 'venv' in the root of the project
virtualenv venv
Activate environment
venv\Scripts\activate
- Download requirements
pip install -r requirements.txt
```
Enjoy 😄
- Python
Published by natetsang over 4 years ago