jwinder1 / burlap

Repository for the ongoing development of the Brown-UMBC Reinforcement Learning And Planning (BURLAP) java library

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Snap CI branch Maven Central Hex.pm java6 java7 java8

BURLAP

Repository for the ongoing development of the Brown-UMBC Reinforcement Learning And Planning (BURLAP) java library.

BURLAP is a java code library for the use and development of single or multi-agent planning and learning algorithms and domains to accompany them. The library uses a highly flexible state/observation representation where you define states with your own Java classes, enabling support for domains that discrete, continuous, relational, or anything else. Planning and learning algorithms range from classic forward search planning to value function-based stochastic planning and learning algorithms. Also included is a set of tools such as an extendable experiment shell and a common framework for the visualization of domains and agent performance.

Important Links

Linking

BURLAP now fully supports Maven and is indexed on Maven Central, so all you need to do to have your Maven project link to BURLAP is add the following to the <dependencies> section of your project's pom.xml file:

<dependency>
  <groupId>edu.brown.cs.burlap</groupId>
  <artifactId>burlap</artifactId>
  <version>3.0.0</version>
</dependency>

Alternatively, you can compile from the source using either Maven or, for the time being Ant. Eventually we may be phasing out Ant support to minimize keeping track of local dependencies.

Compiling

BURLAP uses Maven. If you have Maven intalled already, then use the following commands for the desired operation from the same directory as the code.

Create a jar file with sources and Java doc in the target directory (will be created):

mvn package

Install to your local Maven repository:

mvn install

If you want to install and skip the tests, use

mvn -DskipTests install

Older versions

Github branches contain older versions of the code repository. Some are also available on Maven Central.

About

Repository for the ongoing development of the Brown-UMBC Reinforcement Learning And Planning (BURLAP) java library

License:Apache License 2.0


Languages

Language:Java 100.0%