[package]
edition = "2024"
name = "multiscreen-rs"
version = "0.2.4"
build = false
include = [
"src/**",
"examples/chat_with_tokenizer.rs",
"examples/train_with_tokenizer.rs",
"examples/plot_loss.py",
"examples/data/.gitkeep",
"tests/**",
"Cargo.toml",
"README.md",
"CONTRIBUTING.md",
"LICENSE",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Rust implementation of the Multiscreen neural language model — training and inference powered by Burn."
documentation = "https://docs.rs/multiscreen-rs"
readme = "README.md"
keywords = [
"multiscreen",
"neural-network",
"language-model",
"burn",
]
categories = [
"science",
"text-processing",
]
license = "MIT"
repository = "https://github.com/Rayato159/multiscreen-rs"
[features]
cuda = ["burn/cuda"]
default = []
[lib]
name = "multiscreen_rs"
path = "src/lib.rs"
[[example]]
name = "chat_with_tokenizer"
path = "examples/chat_with_tokenizer.rs"
[[example]]
name = "train_with_tokenizer"
path = "examples/train_with_tokenizer.rs"
[[test]]
name = "config_tests"
path = "tests/config_tests.rs"
[[test]]
name = "inference_tests"
path = "tests/inference_tests.rs"
[[test]]
name = "layout_tests"
path = "tests/layout_tests.rs"
[[test]]
name = "model_tests"
path = "tests/model_tests.rs"
[[test]]
name = "train_tests"
path = "tests/train_tests.rs"
[dependencies.burn]
version = "0.21"
features = [
"std",
"autodiff",
"flex",
]
default-features = false
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dev-dependencies.anyhow]
version = "1"
[dev-dependencies.clap]
version = "4"
features = ["derive"]
[dev-dependencies.rand]
version = "0.8"
[dev-dependencies.sentencepiece-rs]
version = "0.1.0"
[dev-dependencies.tempfile]
version = "3"