fann-sys 0.1.5

Low-level bindings to the Fast Artificial Neural Networks library
Documentation

fann-sys-rs

Build Status Crates.io

Low-level Rust bindings to the Fast Artificial Neural Networks library. The wrapper fann-rs provides a safe interface on top of these.

Documentation

Usage

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

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

and this to your crate root:

extern crate fann;
extern crate libc;