Skip to content

Latest commit

 

History

History
27 lines (21 loc) · 561 Bytes

README.md

File metadata and controls

27 lines (21 loc) · 561 Bytes

rl-utils

A library for reinforcement learning algorithms, including REPS.

Installation

Optional: Create and source virtual environment

Create virtual environment for this application. Note that Python3 is the expected Python version used for this library.

python3.7 -m venv ~/envs/rl_utils

Activate virtual environment

source ~/envs/rl_utils/bin/activate

Install package (optional: in editable mode)

pip install -e .

Test

All unit tests should pass. Run unit tests through the following command:

pytest