concision-transformer 0.2.4

this crate implements the transformer model using the concision framework
[dependencies.anyhow]
default-features = false
optional = true
version = "1"

[dependencies.approx]
optional = true
version = "0.5"

[dependencies.concision]
default-features = false
features = ["neural"]
version = "0.2.4"

[dependencies.ndarray]
default-features = false
version = "0.16"

[dependencies.num-traits]
default-features = false
version = "0.2"

[dependencies.tracing]
default-features = false
features = ["attributes", "log"]
optional = true
version = "0.1"

[features]
anyhow = ["dep:anyhow", "concision/anyhow"]
approx = ["dep:approx", "concision/approx", "ndarray/approx"]
blas = ["concision/blas", "ndarray/blas"]
default = ["std"]
full = ["default", "rand", "serde", "tracing"]
rand = ["concision/rand"]
rayon = ["concision/rayon", "ndarray/rayon"]
serde = ["concision/serde"]
std = ["concision/std", "ndarray/std", "num-traits/std", "tracing/std"]
tracing = ["dep:tracing", "concision/tracing"]
wasi = ["concision/wasi"]
wasm = ["concision/wasm"]

[lib]
bench = false
crate-type = ["cdylib", "rlib"]
doc = true
doctest = true
name = "concision_transformer"
path = "src/lib.rs"
test = true

[package]
authors = ["FL03 <jo3mccain@icloud.com> (https://github.com/FL03)", "Scattered-Systems <support@scsys.io> (https://github.com/scattered-systems)"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = "build.rs"
categories = ["science"]
description = "this crate implements the transformer model using the concision framework"
edition = "2024"
homepage = "https://github.com/FL03/concision/wiki"
keywords = ["data-science", "machine-learning", "scsys", "toolkit"]
license = "Apache-2.0"
name = "concision-transformer"
readme = "README.md"
repository = "https://github.com/FL03/concision.git"
rust-version = "1.85.0"
version = "0.2.4"

[package.metadata.docs.rs]
all-features = false
features = ["full"]
rustc-args = ["--cfg", "docsrs"]
version = "v{{version}}"

[package.metadata.release]
no-dev-version = true
tag-name = "{{version}}"