axonml 0.2.2

A complete ML/AI framework in pure Rust - PyTorch-equivalent functionality
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 = "2021"
rust-version = "1.75"
name = "axonml"
version = "0.2.2"
authors = ["AutomataNexus Development Team"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A complete ML/AI framework in pure Rust - PyTorch-equivalent functionality"
readme = "README.md"
license = "MIT OR Apache-2.0"

[features]
audio = [
    "nn",
    "data",
    "dep:axonml-audio",
]
core = [
    "dep:axonml-core",
    "dep:axonml-tensor",
    "dep:axonml-autograd",
]
data = [
    "core",
    "dep:axonml-data",
]
default = ["full"]
distributed = [
    "nn",
    "dep:axonml-distributed",
]
full = [
    "core",
    "nn",
    "data",
    "vision",
    "text",
    "audio",
    "distributed",
    "profile",
    "llm",
    "jit",
]
jit = [
    "core",
    "dep:axonml-jit",
]
llm = [
    "nn",
    "dep:axonml-llm",
]
nn = [
    "core",
    "dep:axonml-nn",
    "dep:axonml-optim",
]
profile = [
    "core",
    "dep:axonml-profile",
]
text = [
    "nn",
    "data",
    "dep:axonml-text",
]
vision = [
    "nn",
    "data",
    "dep:axonml-vision",
]

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

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

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

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

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

[dependencies.axonml-audio]
version = "0.2.1"
optional = true

[dependencies.axonml-autograd]
version = "0.2.1"
optional = true

[dependencies.axonml-core]
version = "0.2.1"
optional = true

[dependencies.axonml-data]
version = "0.2.1"
optional = true

[dependencies.axonml-distributed]
version = "0.2.1"
optional = true

[dependencies.axonml-jit]
version = "0.2.1"
optional = true

[dependencies.axonml-llm]
version = "0.2.1"
optional = true

[dependencies.axonml-nn]
version = "0.2.1"
optional = true

[dependencies.axonml-optim]
version = "0.2.1"
optional = true

[dependencies.axonml-profile]
version = "0.2.1"
optional = true

[dependencies.axonml-tensor]
version = "0.2.1"
optional = true

[dependencies.axonml-text]
version = "0.2.1"
optional = true

[dependencies.axonml-vision]
version = "0.2.1"
optional = true