fann

Crates.iofann
lib.rsfann
version0.1.8
sourcesrc
created_at2015-06-27 11:29:06.00526
updated_at2024-02-02 14:19:09.740529
descriptionWrapper for the Fast Artificial Neural Networks library
homepage
repositoryhttps://github.com/afck/fann-rs
max_upload_size
id2474
size95,416
Andreas Fackler (afck)

documentation

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

README

fann-rs

Build Status Crates.io

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.

Documentation

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.

Commit count: 57

cargo fmt