Crates.io | fann |
lib.rs | fann |
version | 0.1.8 |
source | src |
created_at | 2015-06-27 11:29:06.00526 |
updated_at | 2024-02-02 14:19:09.740529 |
description | Wrapper for the Fast Artificial Neural Networks library |
homepage | |
repository | https://github.com/afck/fann-rs |
max_upload_size | |
id | 2474 |
size | 95,416 |
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.