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.
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.