fann-sys

Crates.iofann-sys
lib.rsfann-sys
version0.1.8
sourcesrc
created_at2015-06-25 07:23:10.007369
updated_at2024-02-02 10:34:29.824027
descriptionLow-level bindings to the Fast Artificial Neural Networks library
homepage
repositoryhttps://github.com/afck/fann-sys-rs
max_upload_size
id2464
size108,730
Andreas Fackler (afck)

documentation

https://afck.github.io/docs/fann-sys-rs/fann_sys

README

fann-sys-rs

Build Status Crates.io

Low-level Rust bindings to the Fast Artificial Neural Networks library. The wrapper fann-rs provides a safe interface on top of these.

Documentation

Usage

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;
Commit count: 51

cargo fmt