mirror of https://github.com/tracel-ai/burn.git
25 lines
527 B
TOML
25 lines
527 B
TOML
[package]
|
|
authors = ["Dilshod Tadjibaev (@antimora)"]
|
|
edition = "2021"
|
|
license = "MIT OR Apache-2.0"
|
|
name = "pytorch-import"
|
|
publish = false
|
|
version = "0.15.0"
|
|
|
|
[dependencies]
|
|
burn = { path = "../../crates/burn", features = [
|
|
"ndarray",
|
|
"dataset",
|
|
"vision",
|
|
] }
|
|
|
|
model = { path = "./model" }
|
|
|
|
|
|
[build-dependencies]
|
|
model = { path = "./model" }
|
|
burn = { path = "../../crates/burn", features = ["ndarray"] }
|
|
burn-import = { path = "../../crates/burn-import", features = [
|
|
"pytorch",
|
|
], default-features = false }
|