fann-rs

Build Status Crates.io

Rust wrapper for the Fast Artificial Neural Network (FANN) library. This crate provides a safe interface to FANN on top of the low-level bindings fann-sys-rs.

Documentation

Usage

Add fann and libc to the list of dependencies in your Cargo.toml:

toml [dependencies] fann = "*" libc = "*"

and this to your crate root:

rust extern crate fann; extern crate libc;

Usage examples are included in the Documentation.