2023-09-03 01:09:03 +08:00
|
|
|
[package]
|
|
|
|
authors = ["nathanielsimard <nathaniel.simard.42@gmail.com>"]
|
2023-12-12 22:39:07 +08:00
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
2023-09-03 01:09:03 +08:00
|
|
|
name = "custom-training-loop"
|
|
|
|
publish = false
|
2023-12-12 22:39:07 +08:00
|
|
|
version.workspace = true
|
2023-09-03 01:09:03 +08:00
|
|
|
|
|
|
|
[dependencies]
|
2024-02-21 02:57:55 +08:00
|
|
|
burn = {path = "../../crates/burn", features=["autodiff", "wgpu", "vision"]}
|
2023-09-03 01:09:03 +08:00
|
|
|
guide = {path = "../guide"}
|
|
|
|
|
|
|
|
# Serialization
|
|
|
|
log = {workspace = true}
|
|
|
|
serde = {workspace = true, features = ["std", "derive"]}
|
|
|
|
|
|
|
|
# Wgpu internal dependencies
|
|
|
|
derive-new = { workspace = true }
|
|
|
|
bytemuck = { workspace = true }
|