-
- Description:
RLLib
(C++ Template Library to Learn Behaviors and Represent Learnable Knowledge using On/Off Policy Reinforcement Learning)
RLLib is a lightweight C++ template library that implements
incremental,standard, andgradient temporal-differencelearning algorithms in Reinforcement Learning. It is a highly optimized library that is designed and written specifically for robotic applications. The implementation of the RLLib library is inspired by the RLPark API, which is a library of temporal-difference learning algorithms written in Java.Features
-
Off-policy prediction algorithms:
GTD(lambda)GQ(lambda) -
Off-policy control algorithms:
Greedy-GQ(lambda)Softmax-GQ(lambda)Off-PAC(can be used in on-policy setting) -
On-policy algorithms:
TD(lambda)SARSA(lambda)Expected-SARSA(lambda)Actor-Critic (continuous and discrete actions, discounted, averaged reward settings, etc.) -
Supervised learning algorithms:
AdalineIDBDSemiLinearIDBDAutostep -
Policies:
RandomRandom50%BiasGreedyEpsilon-greedyBoltzmannNormalSoftmax - Dot product: An efficient implementation of the dot product for tile coding based feature representations (with culling traces).
-
Benchmarking environments:
Mountain CarMountain Car 3DSwinging PendulumHelicopterContinuous Grid World -
Optimization:
Optimized for very fast duty cycles (e.g., with culling traces, RLLib has been tested on
the Robocup 3D simulator agent, and onthe NAO V4 (cognition thread)). - Usage: The algorithm usage is very much similar to RLPark, therefore, swift learning curve.
- Examples: There are a plethora of examples demonstrating on-policy and off-policy control experiments.
-
Visualization:
We provide a Qt4 based application to visualize benchmark problems.
Usage
RLLib is a C++ template library. The header files are located in the
srcdirectly. You can simply include this directory from your projects, e.g.,-I./src, to access the algorithms.To access the control algorithms:
#include "ControlAlgorithm.h"To access the predication algorithms:
#include "PredictorAlgorithm"To access the supervised learning algorithms:
#include "SupervisedAlgorithm.h"RLLib uses the namespace:
using namespace RLLibTesting
RLLib provides a flexible testing framework. Follow these steps to quickly write a test case.
-
To access the testing framework:
#include "HeaderTest.h"
#include "HeaderTest.h"
RLLIB_TEST(YourTest)
class YourTest Test: public YourTestBase
{
public:
YourTestTest() {} virtual ~Test() {} void run();private:
void testYourMethod();};
void YourTestBase::testYourMethod() {/* Your test code /}
void YourTestBase::run() { testYourMethod(); }
-
Add
YourTestto thetest/test.cfgfile.
Test Configuration
The test cases are executed using:
./configure make ./RLLibTestDocumentation
Contact
Saminda Abeyruwan (saminda@cs.miami.edu)
-
Off-policy prediction algorithms:
- Changes to previous version:
Current release version is v1.0.1.
- BibTeX Entry: Download
- Corresponding Paper BibTeX Entry: Download
- Supported Operating Systems: Linux, Platform Independent, Windows Under Cygwin
- Data Formats: Bin
- Tags: Lightweight, Off Policy, On Policy, Reinforcement Learning Library, Standard
- Archive: download here
Comments
No one has posted any comments yet. Perhaps you'd like to be the first?
Leave a comment
You must be logged in to post comments.