ML-KULeuven / JSDD

Java wrapper for the sdd 2.0 c library

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

JSDD

Java wrapper for the sdd library version 2.0.

This wrapper provides access to the sdd library through Java or Scala.

Dependencies and System Requirements

sdd 2.0 library: Download from http://reasoning.cs.ucla.edu/sdd/

The sdd library and its java wrapper work on linux and OS X.

Quickstart

  1. Make sure that the variables OS and JNI_DIR are set correctly in the makefile.
  2. From the sdd package, copy the sdd library (libsdd.so for linux or libsdd.dylib for osx) to lib/
  3. Make sure that the c libraries can be found by adding lib/ to the ld library path
    export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:lib/
    

Run examples

  1. Run an example of your choice (1-7) by executing:
    make example1
    ...
    make example7
    

Compile from source

  1. From the sdd package, copy the header of the sdd library (sddapi.h) to include/

  2. Clean first so that the the binaries and jars will be recompiled

    make clean
    
  3. Compile

    make
    

Run unit tests

  1. Run the tests
    make test
    

Use JSDD in your own code

  1. Make sure that the c libraries (libsdd.so/.dylib, libsdd-2_wrap.so/.dylib) can be found by adding lib/ to the ld library path and the java.library.path
  2. Add the JSDD.jar to the java classpath
  3. Start coding!

API

You can find the documentation of JSDD in the directory ./doc/index.html. The main classes are in the package sdd:

  • SddManager
  • Sdd
  • Vtree
  • WmcManager

Garbarge Collection

Although Java has built-in garbage collection, garbage collection of SDDs still needs to be done manually. It was decided not to use the built-in garbage collection because it is lazy and does not collect objects before they take up too much memory. But Java does not take the memory of the underlying C program into account, therefore it will probably wait to long to do garbage collaction and is thus not optimal for SDDs.

The techniques for garbage collection remain the same as in the C library. You have to refer/derefer SDDs and you can use automatic or manual garbage collection.

For debugging purpose, when a Java object of the class Sdd is finalized, it checks whether that object has been dereferenced as many times as it has been referenced. If this is not the case, a warning is printed to inform the user that there might be a memory leak.

Examples

Some examples can be found in the ./examples/ directory. These examples are the same as the ones packaged with the C library. There is one extra example about using the WmcManager. The examples use the ./input/ and ./output/ folders for their input and output.

Common issue: Segfaults when operating large SDDs

When operating on large SDDs (eg size >500), you may run into segfaults. This very criptic error can be due to no enough memory being available for the underlying c library. This can be solved by increasing the JVM's stack size limit, e.g. to 256MB, using the -Xss option:

java -Xss256m <your program>

Contact

If you have further questions, do not hesitate to contact Jessa Bekker (https://people.cs.kuleuven.be/~jessa.bekker/)

Cite

Please cite the original paper that this wrapper was developed for, when you use it:

@inproceedings{bekker2015tractable,
  title={Tractable learning for complex probability queries},
  author={Bekker, Jessa and Davis, Jesse and Choi, Arthur and Darwiche, Adnan and Van den Broeck, Guy},
  booktitle={Advances in Neural Information Processing Systems},
  pages={2242--2250},
  year={2015}
} 

About

Java wrapper for the sdd 2.0 c library

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:Java 65.3%Language:C 33.5%Language:Makefile 1.1%