fann 0.1.6

Wrapper for the Fast Artificial Neural Networks library
Documentation

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:

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

and this to your crate root:

extern crate fann;
extern crate libc;

Usage examples are included in the Documentation.