Skip to content

HerveFrezza-Buet/RLlib

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

73 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.