Skip to content

HerveFrezza-Buet/RLlib

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
doc
 
 
 
 
 
 
src
 
 
 
 
 
 
 
 
 
 

RLlib

C++ library for reinforcement learning

Published in JMLR

A C++ Template-Based Reinforcement Learning Library: Fitting the Code to the Mathematics Hervé Frezza-Buet, Matthieu Geist; JMLR, 14(Feb):625−628, 2013.

Installation

First, get the files.

git clone https://github.com/HerveFrezza-Buet/RLlib

The library consists of header files only. So you can put them somewhere your compiler can access them, and it is ok. Nevertheless, a cleaner install can be done as follows with cmake.

cd <your_path_here>/RLlib
mkdir -p build
cd build
cmake .. -DCMAKE_INSTALL_PREFIX=/usr
sudo make install

Documentation

Read examples in the suggested order. Doxygen pages are accessible from the RLlib/html/index.html file.