burn/crates/burn-train/Cargo.toml

45 lines
1.4 KiB
TOML
Raw Permalink Normal View History

2023-01-02 08:21:08 +08:00
[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
2023-01-02 08:21:08 +08:00
2023-09-02 23:26:40 +08:00
[features]
2023-09-13 22:45:14 +08:00
default = ["metrics", "tui"]
doc = ["default"]
2023-12-02 03:33:28 +08:00
metrics = ["nvml-wrapper", "sysinfo", "systemstat"]
tui = ["ratatui", "crossterm"]
2023-09-02 23:26:40 +08:00
2023-01-02 08:21:08 +08:00
[dependencies]
2024-08-28 02:12:54 +08:00
burn-core = { path = "../burn-core", version = "0.15.0", features = ["dataset", "std"], default-features = false }
2023-01-02 08:21:08 +08:00
2023-12-02 03:33:28 +08:00
log = { workspace = true }
tracing-subscriber = { workspace = true }
tracing-appender = { workspace = true }
tracing-core = { workspace = true }
2023-01-02 08:21:08 +08:00
# Metrics
nvml-wrapper = { workspace = true, optional = true }
sysinfo = { workspace = true, optional = true }
systemstat = { workspace = true, optional = true }
2023-09-02 23:26:40 +08:00
# Text UI
2024-02-01 00:26:09 +08:00
ratatui = { workspace = true, optional = true, features = ["all-widgets"] }
crossterm = { workspace = true, optional = true }
2023-01-02 08:21:08 +08:00
# Utilities
2023-12-02 03:33:28 +08:00
derive-new = { workspace = true }
serde = { workspace = true, features = ["std", "derive"] }
2023-04-12 05:18:45 +08:00
[dev-dependencies]
2024-08-28 02:12:54 +08:00
burn-ndarray = { path = "../burn-ndarray", version = "0.15.0" }
[package.metadata.docs.rs]
features = ["doc"]