A small Rust Library for Creating and Training Artificial Neural Networks.
This is a personal project and might not be useful for you.
#![feature(generic_const_exprs)]Binaries using this library require the generic_const_exprs feature annotation because the feature is incomplete.
Add the rusty_ai crate to your project's Cargo.toml:
[dependencies]
rusty_ai = { git = "https://github.com/Qwox0/rusty_ai", version = "0.1.0" }This library requires the nightly version of Rust. To use nightly Rust, you can either set your toolchain globally or on per-project basis.
To set nightly as a default toolchain for all projects:
rustup toolchain install nightly
rustup default nightlyIf you'd like to use nightly only in your project however, add rust-toolchain.toml file with the following content:
[toolchain]
channel = "nightly"Run an example:
cargo run --example [<NAME>]List available examples:
cargo run --exampleRun a test:
cargo test --test [<NAME>] -- --nocaptureList available tests:
cargo test --test