mirror of https://github.com/tracel-ai/burn.git
21 lines
671 B
TOML
21 lines
671 B
TOML
[package]
|
|
authors = ["nathanielsimard <nathaniel.simard.42@gmail.com>", "Ankitects Pty Ltd"]
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
name = "custom-renderer"
|
|
description = "Example of how to render training progress outside of the tui"
|
|
publish = false
|
|
version.workspace = true
|
|
|
|
[dependencies]
|
|
burn = {path = "../../crates/burn", features=["autodiff", "wgpu", "train", "dataset", "vision"], default-features=false}
|
|
guide = {path = "../guide", default-features=false}
|
|
|
|
# Serialization
|
|
log = {workspace = true}
|
|
serde = {workspace = true, features = ["std", "derive"]}
|
|
|
|
# Wgpu internal dependencies
|
|
derive-new = { workspace = true }
|
|
bytemuck = { workspace = true }
|