Crates.io | fann-sys |
lib.rs | fann-sys |
version | 0.1.8 |
source | src |
created_at | 2015-06-25 07:23:10.007369 |
updated_at | 2024-02-02 10:34:29.824027 |
description | Low-level bindings to the Fast Artificial Neural Networks library |
homepage | |
repository | https://github.com/afck/fann-sys-rs |
max_upload_size | |
id | 2464 |
size | 108,730 |
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;