meuron 0.4.0

Meuron is a modular neural network library written in rust for training simple neural networks.
Documentation
[package]
name = "meuron"
version = "0.4.0"
edition = "2024"
authors = ["NLion74 <nlion@nlion.nl>"]
license = "Unlicense"
description = "Meuron is a modular neural network library written in rust for training simple neural networks."
repository = "https://github.com/NLion74/Meuron"
homepage = "https://github.com/NLion74/Meuron"
documentation = "https://github.com/NLion74/Meuron/blob/master/README.md"
readme = "README.md"
keywords = ["neural-network", "deep-learning", "machine-learning", "ai", "ml"]
categories = ["science", "algorithms"]
include = [
    "src/**/*",
    "Cargo.toml",
    "README.md",
    "LICENSE*",
    "examples/mnist/cpu.rs",
    "examples/mnist/gpu.rs",
]


[features]
default = []
gpu     = ["dep:wgpu", "dep:pollster", "dep:bytemuck"]

[dependencies]
ndarray = { version = "0.17.2", features = ["serde"] }
ndarray-rand = "0.16.0"
rand = "0.10.0"
serde = { version = "1.0.228", features = ["derive"] }
postcard = { version = "1.1.3", features = ["alloc"] }
wgpu     = { version = "28.0.0", optional = true }
bytemuck = { version = "1.25.0", features = ["derive"], optional = true }
pollster = { version = "0.4.0", optional = true }

[dev-dependencies]
ureq = "3.2.0"
flate2 = "1.1.9"
egui = "0.33.3"
egui_plot  = "0.34.1"
eframe = "0.33.3"

[[example]]
name = "mnist-mlp-cpu"
path = "examples/mnist/cpu.rs"

[[example]]
name = "mnist-mlp-gpu"
path = "examples/mnist/gpu.rs"
required-features = ["gpu"]

[[example]]
name              = "mnist-draw"
path              = "examples/mnist/draw.rs"
required-features = ["gpu"]

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