Low-level Rust bindings to the Fast Artificial Neural Networks library. The wrapper fann-rs provides a safe interface on top of these.
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;