Bayonet contains utilities for doing probability inference.
Prerequisite software:
- Java SDK 1.6+
- Gradle version 1.9+ (not tested on Gradle 2.0)
There are several options available to install the package:
Simply add the following lines (replacing 1.0.0 by the current version (see git tags)):
repositories {
mavenCentral()
jcenter()
maven {
url "http://www.stat.ubc.ca/~bouchard/maven/"
}
}
dependencies {
compile group: 'ca.ubc.stat', name: 'bayonet', version: '1.0.0'
}
- Check out the source
git clone [email protected]:alexandrebouchard/bayonet.git
- Compile using
gradle installApp
- Add the jars in
build/install/bayonet/lib/
into your classpath
- Check out the source
git clone [email protected]:alexandrebouchard/bayonet.git
- Type
gradle eclipse
from the root of the repository - From eclipse:
Import
inFile
menuImport existing projects into workspace
- Select the root
- Deselect
Copy projects into workspace
to avoid having duplicates
Note: the probabilistic programming functionalities of this repository have been moved to separate repos (blangDSL and blangSDK).