burn/examples/custom-renderer/Cargo.toml

21 lines
671 B
TOML
Raw Normal View History

[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}
2023-12-01 22:48:28 +08:00
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 }