rustyml 0.10.0

A high-performance machine learning & deep learning library in pure Rust, offering statistical utilities, ML algorithms, and future support for transformer architectures.
Documentation
[dependencies.ahash]
features = ["serde"]
optional = true
version = "0.8.12"

[dependencies.indicatif]
optional = true
version = "0.18.3"

[dependencies.nalgebra]
optional = true
version = "0.34.1"

[dependencies.ndarray]
features = ["rayon", "serde"]
optional = true
version = "0.17.2"

[dependencies.ndarray-rand]
optional = true
version = "0.16.0"

[dependencies.rand]
optional = true
version = "0.9.2"

[dependencies.rayon]
optional = true
version = "1.11.0"

[dependencies.serde]
features = ["derive"]
optional = true
version = "1.0.228"

[dependencies.serde_json]
optional = true
version = "1.0.149"

[dev-dependencies.approx]
version = "0.5.1"

[features]
dataset = ["dep:ndarray"]
default = ["machine_learning", "neural_network"]
full = ["dataset", "machine_learning", "neural_network", "utility", "math", "metric"]
machine_learning = ["math", "utility", "dep:ndarray", "dep:rayon", "dep:ahash", "dep:ndarray-rand", "dep:indicatif", "dep:serde", "dep:serde_json"]
math = ["dep:ndarray", "dep:ahash"]
metric = ["dep:ndarray", "dep:ahash"]
neural_network = ["dep:ndarray", "dep:rayon", "dep:ndarray-rand", "dep:rand", "dep:indicatif", "dep:serde", "dep:serde_json"]
utility = ["math", "dep:ndarray", "dep:rand", "dep:nalgebra", "dep:rayon", "dep:ahash", "dep:indicatif", "dep:serde", "dep:serde_json", "dep:ndarray-rand"]

[lib]
name = "rustyml"
path = "src/lib.rs"

[package]
authors = ["SomeB1oody <stanyin64@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["mathematics", "science", "algorithms"]
description = "A high-performance machine learning & deep learning library in pure Rust, offering statistical utilities, ML algorithms, and future support for transformer architectures."
documentation = "https://docs.rs/crate/rustyml"
edition = "2024"
keywords = ["machine-learning", "ML", "Deep-learning", "DL", "AI"]
license = "MIT"
name = "rustyml"
readme = "README.md"
repository = "https://github.com/SomeB1oody/RustyML"
rust-version = "1.85.0"
version = "0.10.0"

[package.metadata.docs.rs]
features = ["full"]
rustdoc-args = ["--cfg", "docsrs"]

[profile.dev]
opt-level = 0

[profile.release]
opt-level = 3