mirror of https://github.com/tracel-ai/burn.git
27 lines
577 B
TOML
27 lines
577 B
TOML
[package]
|
|
authors = ["nathanielsimard <nathaniel.simard.42@gmail.com>"]
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
name = "text-generation"
|
|
publish = false
|
|
version.workspace = true
|
|
|
|
[features]
|
|
default = ["burn/dataset", "burn/sqlite-bundled"]
|
|
f16 = []
|
|
|
|
[dependencies]
|
|
# Burn
|
|
burn = {path = "../../crates/burn", features=["train", "tch"]}
|
|
|
|
# Tokenizer
|
|
tokenizers = {version = "0.20.0", default-features = false, features = [
|
|
"onig",
|
|
"http",
|
|
]}
|
|
|
|
# Utils
|
|
derive-new = {workspace = true}
|
|
log = {workspace = true}
|
|
serde = {workspace = true, features = ["std", "derive"]}
|