Skip to content

Reference implementation for function approximation in RL

Notifications You must be signed in to change notification settings

pucrs-automated-planning/fa-rl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 

Repository files navigation

fa-rl

Open In Colab

Reference implementation for function approximation in RL

Environment Set Up

For Anaconda Python, we recommend you create a separate environment as follows:

$ conda create -n rl python=3.9
$ conda activate rl
$ conda install --file requirements.txt

For pip, run the following command:

$ cd fa-rl
$ pip install -r requirements.txt

For pip + venv, run the following commands:

$ cd fa-rl
$ python3.9 -m venv venv
$ source venv/bin/activate
$ pip install -r requirements.txt

Then run Jupyter notebook from the src folder:

$ cd src
$ jupyter notebook

About

Reference implementation for function approximation in RL

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published