attnres 0.1.1

Attention Residuals (MoonshotAI/Kimi) implementation in Rust using burn
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"
name = "attnres"
version = "0.1.1"
authors = ["Abdel <@AbdelStark>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Attention Residuals (MoonshotAI/Kimi) implementation in Rust using burn"
readme = "README.md"
keywords = [
    "deep-learning",
    "transformer",
    "attention",
    "pytorch",
    "burn",
]
categories = [
    "science",
    "algorithms",
]
license = "MIT"
repository = "https://github.com/AbdelStark/attnres"

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

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

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

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

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

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

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

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

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

[[bench]]
name = "attn_res_benchmark"
path = "benches/attn_res_benchmark.rs"
harness = false

[dependencies.burn]
version = "0.20.1"
features = [
    "ndarray",
    "autodiff",
    "train",
]

[dependencies.burn-ndarray]
version = "0.20.1"

[dependencies.burn-wgpu]
version = "0.20.1"

[dependencies.serde]
version = "1"
features = ["derive"]

[dependencies.serde_json]
version = "1"

[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]

[dev-dependencies.crossterm]
version = "0.28"

[dev-dependencies.proptest]
version = "1"

[dev-dependencies.ratatui]
version = "0.29"