fann-rs
fann-rs copied to clipboard
Rust wrapper for the Fast Artificial Neural Network library
fann-rs
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.
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.