My favorites | Sign in
Project Home Downloads Wiki Issues Source
Project Information
Members
Featured
Downloads
Wiki pages
Links

FannJ

A Java binding to the Fast Artificial Neural Network (FANN) C library.

Overview

Use FannJ if you have an existing ANN from the FANN project that you would like to access from Java. There are several GUI tools that will help you create and train an ANN.

Installation

Before using FannJ, you must build and install the FANN C library. FannJ has been tested on FANN 2.1.0 beta. See the FANN site for instructions and help: http://leenissen.dk/fann

Code Example

    Fann fann = new Fann( "/path/to/file" );
    float[] inputs = new float[]{ -1, 1 };
    float[] outputs = fann.run( inputs );
    fann.close();

Dependencies

Maven 2 Support

This project is now in the Maven Central Repository. If you use Maven 2 for your builds, here is the stuff to put in your pom.xml

    <dependencies>
        <dependency>
          <groupId>com.googlecode.fannj</groupId>
          <artifactId>fannj</artifactId>
          <version>0.6</version>
        </dependency>
    </dependencies>

Running

JNA provides the binding from Java to the FANN C library via JNI. You must set the jna.library.path system property to the path to the FANN Library. This property is similar to java.library.path but only applies to libraries loaded by JNA. You should also change the appropriate library access environment variable before launching the VM. This is PATH on Windows, LD_LIBRARY_PATH on Linux, and DYLD_LIBRARY_PATH on OSX.

Linux something like:

LD_LIBRARY_PATH=/usr/local/lib

java -Djna.library.path=/usr/local/lib -cp fannj-0.2.jar:jna-3.2.2.jar YourClass

Future Development

If you would like expanded functionality in FannJ, please discuss on the Google Group: http://groups.google.com/group/FannJ

Powered by Google Project Hosting