easy-ml 2.2.0

Machine learning library providing matrices, named tensors, linear algebra and automatic differentiation aimed at being easy to use
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "easy-ml"
version = "2.2.0"
authors = ["Skeletonxf <skeletonxf@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Machine learning library providing matrices, named tensors, linear algebra and automatic differentiation aimed at being easy to use"
readme = "README.md"
keywords = [
    "machine-learning",
    "tensors",
    "matrices",
    "linear-algebra",
]
categories = [
    "science",
    "wasm",
]
license = "MPL-2.0"
repository = "https://github.com/Skeletonxf/easy-ml"

[features]
default = []
serde = [
    "dep:serde",
    "dep:serde_arrays",
]

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

[[example]]
name = "cliff"
path = "examples/cliff.rs"

[[example]]
name = "cliff_tensors"
path = "examples/cliff_tensors.rs"

[[test]]
name = "bayesian_regression"
path = "tests/bayesian_regression.rs"

[[test]]
name = "container_record"
path = "tests/container_record.rs"

[[test]]
name = "differentiation"
path = "tests/differentiation.rs"

[[test]]
name = "differentiation_nn"
path = "tests/differentiation_nn.rs"

[[test]]
name = "distributions"
path = "tests/distributions.rs"

[[test]]
name = "einsum"
path = "tests/einsum.rs"

[[test]]
name = "linear_algebra"
path = "tests/linear_algebra.rs"

[[test]]
name = "matrices"
path = "tests/matrices.rs"

[[test]]
name = "regression"
path = "tests/regression.rs"

[[test]]
name = "slices"
path = "tests/slices.rs"

[[test]]
name = "tensor_iterators"
path = "tests/tensor_iterators.rs"

[[test]]
name = "tensors"
path = "tests/tensors.rs"

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

[dependencies.serde_arrays]
version = "0.2.0"
optional = true

[dev-dependencies.js-sys]
version = "0.3"

[dev-dependencies.num-bigint]
version = "0.4"

[dev-dependencies.num-traits]
version = "0.2"

[dev-dependencies.rand]
version = "0.9"

[dev-dependencies.rand_chacha]
version = "0.9"

[dev-dependencies.rgb]
version = "0.8"

[dev-dependencies.serde_json]
version = "1.0"

[dev-dependencies.textplots]
version = "0.8"

[dev-dependencies.toml]
version = "0.9"

[lints.clippy]
doc_lazy_continuation = "allow"