mirror of https://github.com/tracel-ai/burn.git
45 lines
1.3 KiB
TOML
45 lines
1.3 KiB
TOML
[package]
|
|
authors = ["nathanielsimard <nathaniel.simard.42@gmail.com>"]
|
|
categories = ["science"]
|
|
description = "Training crate for the Burn framework"
|
|
edition.workspace = true
|
|
keywords = ["deep-learning", "machine-learning", "tensor", "pytorch", "ndarray"]
|
|
license.workspace = true
|
|
name = "burn-train"
|
|
readme.workspace = true
|
|
repository = "https://github.com/tracel-ai/burn/tree/main/crates/burn-train"
|
|
version.workspace = true
|
|
|
|
[features]
|
|
default = ["metrics", "tui"]
|
|
doc = ["default"]
|
|
metrics = ["nvml-wrapper", "sysinfo", "systemstat"]
|
|
tui = ["ratatui", "crossterm"]
|
|
|
|
[dependencies]
|
|
burn-core = { path = "../burn-core", version = "0.14.0", features = ["dataset"] }
|
|
|
|
log = { workspace = true }
|
|
tracing-subscriber = { workspace = true }
|
|
tracing-appender = { workspace = true }
|
|
tracing-core = { workspace = true }
|
|
|
|
# Metrics
|
|
nvml-wrapper = { workspace = true, optional = true }
|
|
sysinfo = { workspace = true, optional = true }
|
|
systemstat = { workspace = true, optional = true }
|
|
|
|
# Text UI
|
|
ratatui = { workspace = true, optional = true, features = ["all-widgets"] }
|
|
crossterm = { workspace = true, optional = true }
|
|
|
|
# Utilities
|
|
derive-new = { workspace = true }
|
|
serde = { workspace = true, features = ["std", "derive"] }
|
|
|
|
[dev-dependencies]
|
|
burn-ndarray = { path = "../burn-ndarray", version = "0.14.0" }
|
|
|
|
[package.metadata.docs.rs]
|
|
features = ["doc"]
|