Skip to content
/ rusty_ai Public

A small Rust Library for Creating and Training Artificial Neural Networks.

License

Notifications You must be signed in to change notification settings

Qwox0/rusty_ai

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

151 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

rusty_ai

A small Rust Library for Creating and Training Artificial Neural Networks.

This is a personal project and might not be useful for you.

Needed feature

#![feature(generic_const_exprs)]

Binaries using this library require the generic_const_exprs feature annotation because the feature is incomplete.

Add as a dependency

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" }

nightly Note

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 nightly

If you'd like to use nightly only in your project however, add rust-toolchain.toml file with the following content:

[toolchain]
channel = "nightly"

Examples

Run an example:

cargo run --example [<NAME>]

List available examples:

cargo run --example

Tests

Run a test:

cargo test --test [<NAME>] -- --nocapture

List available tests:

cargo test --test

About

A small Rust Library for Creating and Training Artificial Neural Networks.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages