mirror of https://github.com/tracel-ai/burn.git
chore(infra): Share some properties across workspace (#1039)
This commit is contained in:
parent
3066196297
commit
71d3c1d142
|
@ -31,6 +31,12 @@ members = [
|
||||||
|
|
||||||
exclude = ["examples/notebook"]
|
exclude = ["examples/notebook"]
|
||||||
|
|
||||||
|
[workspace.package]
|
||||||
|
edition = "2021"
|
||||||
|
version = "0.12.0"
|
||||||
|
readme = "README.md"
|
||||||
|
license = "MIT OR Apache-2.0"
|
||||||
|
|
||||||
[workspace.dependencies]
|
[workspace.dependencies]
|
||||||
async-trait = "0.1.74"
|
async-trait = "0.1.74"
|
||||||
bytemuck = "1.14"
|
bytemuck = "1.14"
|
||||||
|
|
|
@ -2,12 +2,12 @@
|
||||||
authors = ["louisfd <louisfd94@gmail.com>"]
|
authors = ["louisfd <louisfd94@gmail.com>"]
|
||||||
categories = ["science"]
|
categories = ["science"]
|
||||||
description = "This crate is used to time the execution of various computations, from operation kernels to complex model scenarios."
|
description = "This crate is used to time the execution of various computations, from operation kernels to complex model scenarios."
|
||||||
edition = "2021"
|
edition.workspace = true
|
||||||
license = "MIT OR Apache-2.0"
|
license.workspace = true
|
||||||
name = "backend-comparison"
|
name = "backend-comparison"
|
||||||
readme = "README.md"
|
readme.workspace = true
|
||||||
repository = "https://github.com/tracel-ai/burn/tree/main/backend-comparison"
|
repository = "https://github.com/tracel-ai/burn/tree/main/backend-comparison"
|
||||||
version = "0.12.0"
|
version.workspace = true
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["std"]
|
default = ["std"]
|
||||||
|
|
|
@ -2,13 +2,13 @@
|
||||||
authors = ["nathanielsimard <nathaniel.simard.42@gmail.com>"]
|
authors = ["nathanielsimard <nathaniel.simard.42@gmail.com>"]
|
||||||
categories = ["science"]
|
categories = ["science"]
|
||||||
description = "Automatic differentiation backend for the Burn framework"
|
description = "Automatic differentiation backend for the Burn framework"
|
||||||
edition = "2021"
|
edition.workspace = true
|
||||||
keywords = ["deep-learning", "machine-learning", "data"]
|
keywords = ["deep-learning", "machine-learning", "data"]
|
||||||
license = "MIT OR Apache-2.0"
|
license.workspace = true
|
||||||
name = "burn-autodiff"
|
name = "burn-autodiff"
|
||||||
readme = "README.md"
|
readme.workspace = true
|
||||||
repository = "https://github.com/tracel-ai/burn/tree/main/burn-autodiff"
|
repository = "https://github.com/tracel-ai/burn/tree/main/burn-autodiff"
|
||||||
version = "0.12.0"
|
version.workspace = true
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["export_tests"]
|
default = ["export_tests"]
|
||||||
|
|
|
@ -2,13 +2,13 @@
|
||||||
authors = ["louisfd <louisfd94@gmail.com>"]
|
authors = ["louisfd <louisfd94@gmail.com>"]
|
||||||
categories = ["science"]
|
categories = ["science"]
|
||||||
description = "Candle backend for the Burn framework"
|
description = "Candle backend for the Burn framework"
|
||||||
edition = "2021"
|
edition.workspace = true
|
||||||
keywords = ["deep-learning", "machine-learning", "data"]
|
keywords = ["deep-learning", "machine-learning", "data"]
|
||||||
license = "MIT OR Apache-2.0"
|
license.workspace = true
|
||||||
name = "burn-candle"
|
name = "burn-candle"
|
||||||
readme = "README.md"
|
readme.workspace = true
|
||||||
repository = "https://github.com/tracel-ai/burn/tree/main/burn-candle"
|
repository = "https://github.com/tracel-ai/burn/tree/main/burn-candle"
|
||||||
version = "0.12.0"
|
version.workspace = true
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["std"]
|
default = ["std"]
|
||||||
|
|
|
@ -2,13 +2,13 @@
|
||||||
authors = ["Dilshod Tadjibaev (@antimora)"]
|
authors = ["Dilshod Tadjibaev (@antimora)"]
|
||||||
categories = []
|
categories = []
|
||||||
description = "Common crate for the Burn framework"
|
description = "Common crate for the Burn framework"
|
||||||
edition = "2021"
|
edition.workspace = true
|
||||||
keywords = []
|
keywords = []
|
||||||
license = "MIT OR Apache-2.0"
|
license.workspace = true
|
||||||
name = "burn-common"
|
name = "burn-common"
|
||||||
readme = "README.md"
|
readme.workspace = true
|
||||||
repository = "https://github.com/tracel-ai/burn/tree/main/burn-common"
|
repository = "https://github.com/tracel-ai/burn/tree/main/burn-common"
|
||||||
version = "0.12.0"
|
version.workspace = true
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["std"]
|
default = ["std"]
|
||||||
|
|
|
@ -2,13 +2,13 @@
|
||||||
authors = ["louisfd <louisfd94@gmail.com>", "Nathaniel Simard"]
|
authors = ["louisfd <louisfd94@gmail.com>", "Nathaniel Simard"]
|
||||||
categories = ["science"]
|
categories = ["science"]
|
||||||
description = "Compute crate that helps creating high performance async backends."
|
description = "Compute crate that helps creating high performance async backends."
|
||||||
edition = "2021"
|
edition.workspace = true
|
||||||
keywords = ["deep-learning", "machine-learning", "data"]
|
keywords = ["deep-learning", "machine-learning", "data"]
|
||||||
license = "MIT OR Apache-2.0"
|
license.workspace = true
|
||||||
name = "burn-compute"
|
name = "burn-compute"
|
||||||
readme = "README.md"
|
readme.workspace = true
|
||||||
repository = "https://github.com/tracel-ai/burn/tree/main/burn-compute"
|
repository = "https://github.com/tracel-ai/burn/tree/main/burn-compute"
|
||||||
version = "0.12.0"
|
version.workspace = true
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = [
|
default = [
|
||||||
|
|
|
@ -2,13 +2,13 @@
|
||||||
authors = ["nathanielsimard <nathaniel.simard.42@gmail.com>"]
|
authors = ["nathanielsimard <nathaniel.simard.42@gmail.com>"]
|
||||||
categories = ["science", "no-std", "embedded", "wasm"]
|
categories = ["science", "no-std", "embedded", "wasm"]
|
||||||
description = "Flexible and Comprehensive Deep Learning Framework in Rust"
|
description = "Flexible and Comprehensive Deep Learning Framework in Rust"
|
||||||
edition = "2021"
|
edition.workspace = true
|
||||||
keywords = ["deep-learning", "machine-learning", "tensor", "pytorch", "ndarray"]
|
keywords = ["deep-learning", "machine-learning", "tensor", "pytorch", "ndarray"]
|
||||||
license = "MIT OR Apache-2.0"
|
license.workspace = true
|
||||||
name = "burn-core"
|
name = "burn-core"
|
||||||
readme = "README.md"
|
readme.workspace = true
|
||||||
repository = "https://github.com/tracel-ai/burn/tree/main/burn-core"
|
repository = "https://github.com/tracel-ai/burn/tree/main/burn-core"
|
||||||
version = "0.12.0"
|
version.workspace = true
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = [
|
default = [
|
||||||
|
|
|
@ -2,13 +2,13 @@
|
||||||
authors = ["nathanielsimard <nathaniel.simard.42@gmail.com>"]
|
authors = ["nathanielsimard <nathaniel.simard.42@gmail.com>"]
|
||||||
categories = ["science"]
|
categories = ["science"]
|
||||||
description = "Library with simple dataset APIs for creating ML data pipelines"
|
description = "Library with simple dataset APIs for creating ML data pipelines"
|
||||||
edition = "2021"
|
edition.workspace = true
|
||||||
keywords = ["deep-learning", "machine-learning", "data"]
|
keywords = ["deep-learning", "machine-learning", "data"]
|
||||||
license = "MIT OR Apache-2.0"
|
license.workspace = true
|
||||||
name = "burn-dataset"
|
name = "burn-dataset"
|
||||||
readme = "README.md"
|
readme.workspace = true
|
||||||
repository = "https://github.com/tracel-ai/burn/tree/main/burn-dataset"
|
repository = "https://github.com/tracel-ai/burn/tree/main/burn-dataset"
|
||||||
version = "0.12.0"
|
version.workspace = true
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["sqlite-bundled"]
|
default = ["sqlite-bundled"]
|
||||||
|
|
|
@ -2,13 +2,13 @@
|
||||||
authors = ["nathanielsimard <nathaniel.simard.42@gmail.com>"]
|
authors = ["nathanielsimard <nathaniel.simard.42@gmail.com>"]
|
||||||
categories = ["science"]
|
categories = ["science"]
|
||||||
description = "Derive crate for the Burn framework"
|
description = "Derive crate for the Burn framework"
|
||||||
edition = "2021"
|
edition.workspace = true
|
||||||
keywords = []
|
keywords = []
|
||||||
license = "MIT OR Apache-2.0"
|
license.workspace = true
|
||||||
name = "burn-derive"
|
name = "burn-derive"
|
||||||
readme = "README.md"
|
readme.workspace = true
|
||||||
repository = "https://github.com/tracel-ai/burn/tree/main/burn-derive"
|
repository = "https://github.com/tracel-ai/burn/tree/main/burn-derive"
|
||||||
version = "0.12.0"
|
version.workspace = true
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
proc-macro = true
|
proc-macro = true
|
||||||
|
|
|
@ -2,13 +2,13 @@
|
||||||
authors = ["nathanielsimard <nathaniel.simard.42@gmail.com>"]
|
authors = ["nathanielsimard <nathaniel.simard.42@gmail.com>"]
|
||||||
categories = ["science"]
|
categories = ["science"]
|
||||||
description = "Kernel fusion backend decorator for the Burn framework"
|
description = "Kernel fusion backend decorator for the Burn framework"
|
||||||
edition = "2021"
|
edition.workspace = true
|
||||||
keywords = ["deep-learning", "machine-learning", "data"]
|
keywords = ["deep-learning", "machine-learning", "data"]
|
||||||
license = "MIT OR Apache-2.0"
|
license.workspace = true
|
||||||
name = "burn-fusion"
|
name = "burn-fusion"
|
||||||
readme = "README.md"
|
readme.workspace = true
|
||||||
repository = "https://github.com/tracel-ai/burn/tree/main/burn-fusion"
|
repository = "https://github.com/tracel-ai/burn/tree/main/burn-fusion"
|
||||||
version = "0.12.0"
|
version.workspace = true
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["std"]
|
default = ["std"]
|
||||||
|
|
|
@ -4,13 +4,13 @@ authors = [
|
||||||
"Nathaniel Simard (@nathanielsimard)",
|
"Nathaniel Simard (@nathanielsimard)",
|
||||||
]
|
]
|
||||||
description = "Library for importing datamodels into the Burn framework"
|
description = "Library for importing datamodels into the Burn framework"
|
||||||
edition = "2021"
|
edition.workspace = true
|
||||||
license = "MIT OR Apache-2.0"
|
license.workspace = true
|
||||||
name = "burn-import"
|
name = "burn-import"
|
||||||
readme = "README.md"
|
readme.workspace = true
|
||||||
repository = "https://github.com/tracel-ai/burn/tree/main/burn-import"
|
repository = "https://github.com/tracel-ai/burn/tree/main/burn-import"
|
||||||
|
|
||||||
version = "0.12.0"
|
version.workspace = true
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["onnx"]
|
default = ["onnx"]
|
||||||
|
@ -33,8 +33,8 @@ serde_json = { workspace = true, features = ["std"] }
|
||||||
strum = { workspace = true }
|
strum = { workspace = true }
|
||||||
strum_macros = { workspace = true }
|
strum_macros = { workspace = true }
|
||||||
syn = { workspace = true, features = ["parsing"] }
|
syn = { workspace = true, features = ["parsing"] }
|
||||||
tracing-subscriber.workspace = true
|
tracing-subscriber = { workspace = true }
|
||||||
tracing-core.workspace = true
|
tracing-core = { workspace = true }
|
||||||
|
|
||||||
[build-dependencies]
|
[build-dependencies]
|
||||||
protobuf-codegen = { workspace = true }
|
protobuf-codegen = { workspace = true }
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
[package]
|
[package]
|
||||||
name = "onnx-tests"
|
name = "onnx-tests"
|
||||||
version = "0.12.0"
|
version.workspace = true
|
||||||
edition = "2021"
|
edition.workspace = true
|
||||||
license = "MIT OR Apache-2.0"
|
license.workspace = true
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
burn = { path = "../../burn" }
|
burn = { path = "../../burn" }
|
||||||
|
|
|
@ -2,13 +2,13 @@
|
||||||
authors = ["nathanielsimard <nathaniel.simard.42@gmail.com>"]
|
authors = ["nathanielsimard <nathaniel.simard.42@gmail.com>"]
|
||||||
categories = ["science", "no-std", "embedded", "wasm"]
|
categories = ["science", "no-std", "embedded", "wasm"]
|
||||||
description = "Ndarray backend for the Burn framework"
|
description = "Ndarray backend for the Burn framework"
|
||||||
edition = "2021"
|
edition.workspace = true
|
||||||
keywords = ["deep-learning", "machine-learning", "data"]
|
keywords = ["deep-learning", "machine-learning", "data"]
|
||||||
license = "MIT OR Apache-2.0"
|
license.workspace = true
|
||||||
name = "burn-ndarray"
|
name = "burn-ndarray"
|
||||||
readme = "README.md"
|
readme.workspace = true
|
||||||
repository = "https://github.com/tracel-ai/burn/tree/main/burn-ndarray"
|
repository = "https://github.com/tracel-ai/burn/tree/main/burn-ndarray"
|
||||||
version = "0.12.0"
|
version.workspace = true
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["std"]
|
default = ["std"]
|
||||||
|
|
|
@ -3,12 +3,12 @@ authors = [
|
||||||
"nathanielsimard <nathaniel.simard.42@gmail.com>",
|
"nathanielsimard <nathaniel.simard.42@gmail.com>",
|
||||||
"Dilshod Tadjibaev (@antimora)",
|
"Dilshod Tadjibaev (@antimora)",
|
||||||
]
|
]
|
||||||
edition = "2021"
|
edition.workspace = true
|
||||||
license = "MIT OR Apache-2.0"
|
license.workspace = true
|
||||||
name = "burn-no-std-tests"
|
name = "burn-no-std-tests"
|
||||||
readme = "README.md"
|
readme.workspace = true
|
||||||
repository = "https://github.com/tracel-ai/burn/tree/main/burn-no-std-tests"
|
repository = "https://github.com/tracel-ai/burn/tree/main/burn-no-std-tests"
|
||||||
version = "0.12.0"
|
version.workspace = true
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
|
|
||||||
|
|
|
@ -2,13 +2,13 @@
|
||||||
authors = ["nathanielsimard <nathaniel.simard.42@gmail.com>"]
|
authors = ["nathanielsimard <nathaniel.simard.42@gmail.com>"]
|
||||||
categories = ["science"]
|
categories = ["science"]
|
||||||
description = "Tch backend for the Burn framework"
|
description = "Tch backend for the Burn framework"
|
||||||
edition = "2021"
|
edition.workspace = true
|
||||||
keywords = ["deep-learning", "machine-learning", "data"]
|
keywords = ["deep-learning", "machine-learning", "data"]
|
||||||
license = "MIT OR Apache-2.0"
|
license.workspace = true
|
||||||
name = "burn-tch"
|
name = "burn-tch"
|
||||||
readme = "README.md"
|
readme.workspace = true
|
||||||
repository = "https://github.com/tracel-ai/burn/tree/main/burn-tch"
|
repository = "https://github.com/tracel-ai/burn/tree/main/burn-tch"
|
||||||
version = "0.12.0"
|
version.workspace = true
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = []
|
default = []
|
||||||
|
|
|
@ -1,12 +1,12 @@
|
||||||
[package]
|
[package]
|
||||||
authors = ["nathanielsimard <nathaniel.simard.42@gmail.com>"]
|
authors = ["nathanielsimard <nathaniel.simard.42@gmail.com>"]
|
||||||
description = "Test generation crate for burn-tensor"
|
description = "Test generation crate for burn-tensor"
|
||||||
edition = "2021"
|
edition.workspace = true
|
||||||
license = "MIT OR Apache-2.0"
|
license.workspace = true
|
||||||
name = "burn-tensor-testgen"
|
name = "burn-tensor-testgen"
|
||||||
readme = "README.md"
|
readme.workspace = true
|
||||||
repository = "https://github.com/tracel-ai/burn/tree/main/burn-tensor-testgen"
|
repository = "https://github.com/tracel-ai/burn/tree/main/burn-tensor-testgen"
|
||||||
version = "0.12.0"
|
version.workspace = true
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
proc-macro = true
|
proc-macro = true
|
||||||
|
|
|
@ -2,13 +2,13 @@
|
||||||
authors = ["nathanielsimard <nathaniel.simard.42@gmail.com>"]
|
authors = ["nathanielsimard <nathaniel.simard.42@gmail.com>"]
|
||||||
categories = ["science", "no-std", "embedded", "wasm"]
|
categories = ["science", "no-std", "embedded", "wasm"]
|
||||||
description = "Tensor library with user-friendly APIs and automatic differentiation support"
|
description = "Tensor library with user-friendly APIs and automatic differentiation support"
|
||||||
edition = "2021"
|
edition.workspace = true
|
||||||
keywords = ["deep-learning", "machine-learning", "tensor", "pytorch", "ndarray"]
|
keywords = ["deep-learning", "machine-learning", "tensor", "pytorch", "ndarray"]
|
||||||
license = "MIT OR Apache-2.0"
|
license.workspace = true
|
||||||
name = "burn-tensor"
|
name = "burn-tensor"
|
||||||
readme = "README.md"
|
readme.workspace = true
|
||||||
repository = "https://github.com/tracel-ai/burn/tree/main/burn-tensor"
|
repository = "https://github.com/tracel-ai/burn/tree/main/burn-tensor"
|
||||||
version = "0.12.0"
|
version.workspace = true
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["std"]
|
default = ["std"]
|
||||||
|
|
|
@ -2,13 +2,13 @@
|
||||||
authors = ["nathanielsimard <nathaniel.simard.42@gmail.com>"]
|
authors = ["nathanielsimard <nathaniel.simard.42@gmail.com>"]
|
||||||
categories = ["science"]
|
categories = ["science"]
|
||||||
description = "Training crate for the Burn framework"
|
description = "Training crate for the Burn framework"
|
||||||
edition = "2021"
|
edition.workspace = true
|
||||||
keywords = ["deep-learning", "machine-learning", "tensor", "pytorch", "ndarray"]
|
keywords = ["deep-learning", "machine-learning", "tensor", "pytorch", "ndarray"]
|
||||||
license = "MIT OR Apache-2.0"
|
license.workspace = true
|
||||||
name = "burn-train"
|
name = "burn-train"
|
||||||
readme = "README.md"
|
readme.workspace = true
|
||||||
repository = "https://github.com/tracel-ai/burn/tree/main/burn-train"
|
repository = "https://github.com/tracel-ai/burn/tree/main/burn-train"
|
||||||
version = "0.12.0"
|
version.workspace = true
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["metrics", "tui"]
|
default = ["metrics", "tui"]
|
||||||
|
@ -19,9 +19,9 @@ tui = ["ratatui", "crossterm"]
|
||||||
burn-core = { path = "../burn-core", version = "0.12.0", features = ["dataset"] }
|
burn-core = { path = "../burn-core", version = "0.12.0", features = ["dataset"] }
|
||||||
|
|
||||||
log = { workspace = true }
|
log = { workspace = true }
|
||||||
tracing-subscriber.workspace = true
|
tracing-subscriber = { workspace = true }
|
||||||
tracing-appender.workspace = true
|
tracing-appender = { workspace = true }
|
||||||
tracing-core.workspace = true
|
tracing-core = { workspace = true }
|
||||||
|
|
||||||
# Metrics
|
# Metrics
|
||||||
nvml-wrapper = { version = "0.9.0", optional = true }
|
nvml-wrapper = { version = "0.9.0", optional = true }
|
||||||
|
|
|
@ -2,13 +2,13 @@
|
||||||
authors = ["nathanielsimard <nathaniel.simard.42@gmail.com>"]
|
authors = ["nathanielsimard <nathaniel.simard.42@gmail.com>"]
|
||||||
categories = ["science"]
|
categories = ["science"]
|
||||||
description = "WGPU backend for the Burn framework"
|
description = "WGPU backend for the Burn framework"
|
||||||
edition = "2021"
|
edition.workspace = true
|
||||||
keywords = ["deep-learning", "machine-learning", "gpu", "wgpu", "webgpu"]
|
keywords = ["deep-learning", "machine-learning", "gpu", "wgpu", "webgpu"]
|
||||||
license = "MIT OR Apache-2.0"
|
license.workspace = true
|
||||||
name = "burn-wgpu"
|
name = "burn-wgpu"
|
||||||
readme = "README.md"
|
readme.workspace = true
|
||||||
repository = "https://github.com/tracel-ai/burn/tree/main/burn-wgpu"
|
repository = "https://github.com/tracel-ai/burn/tree/main/burn-wgpu"
|
||||||
version = "0.12.0"
|
version.workspace = true
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["autotune", "std"]
|
default = ["autotune", "std"]
|
||||||
|
|
|
@ -2,13 +2,13 @@
|
||||||
authors = ["nathanielsimard <nathaniel.simard.42@gmail.com>"]
|
authors = ["nathanielsimard <nathaniel.simard.42@gmail.com>"]
|
||||||
categories = ["science", "no-std", "embedded", "wasm"]
|
categories = ["science", "no-std", "embedded", "wasm"]
|
||||||
description = "Flexible and Comprehensive Deep Learning Framework in Rust"
|
description = "Flexible and Comprehensive Deep Learning Framework in Rust"
|
||||||
edition = "2021"
|
edition.workspace = true
|
||||||
keywords = ["deep-learning", "machine-learning", "tensor", "pytorch", "ndarray"]
|
keywords = ["deep-learning", "machine-learning", "tensor", "pytorch", "ndarray"]
|
||||||
license = "MIT OR Apache-2.0"
|
license.workspace = true
|
||||||
name = "burn"
|
name = "burn"
|
||||||
readme = "README.md"
|
readme.workspace = true
|
||||||
repository = "https://github.com/tracel-ai/burn"
|
repository = "https://github.com/tracel-ai/burn"
|
||||||
version = "0.12.0"
|
version.workspace = true
|
||||||
rust-version = "1.71"
|
rust-version = "1.71"
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
[package]
|
[package]
|
||||||
authors = ["nathanielsimard <nathaniel.simard.42@gmail.com>", "Ankitects Pty Ltd"]
|
authors = ["nathanielsimard <nathaniel.simard.42@gmail.com>", "Ankitects Pty Ltd"]
|
||||||
edition = "2021"
|
edition.workspace = true
|
||||||
license = "MIT OR Apache-2.0"
|
license.workspace = true
|
||||||
name = "custom-renderer"
|
name = "custom-renderer"
|
||||||
description = "Example of how to render training progress outside of the tui"
|
description = "Example of how to render training progress outside of the tui"
|
||||||
publish = false
|
publish = false
|
||||||
version = "0.12.0"
|
version.workspace = true
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
burn = {path = "../../burn", features=["autodiff", "wgpu", "train", "dataset"], default-features=false}
|
burn = {path = "../../burn", features=["autodiff", "wgpu", "train", "dataset"], default-features=false}
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
[package]
|
[package]
|
||||||
authors = ["nathanielsimard <nathaniel.simard.42@gmail.com>"]
|
authors = ["nathanielsimard <nathaniel.simard.42@gmail.com>"]
|
||||||
edition = "2021"
|
edition.workspace = true
|
||||||
license = "MIT OR Apache-2.0"
|
license.workspace = true
|
||||||
name = "custom-training-loop"
|
name = "custom-training-loop"
|
||||||
publish = false
|
publish = false
|
||||||
version = "0.12.0"
|
version.workspace = true
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
burn = {path = "../../burn", features=["autodiff", "wgpu"]}
|
burn = {path = "../../burn", features=["autodiff", "wgpu"]}
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
[package]
|
[package]
|
||||||
authors = ["nathanielsimard <nathaniel.simard.42@gmail.com>"]
|
authors = ["nathanielsimard <nathaniel.simard.42@gmail.com>"]
|
||||||
edition = "2021"
|
edition.workspace = true
|
||||||
license = "MIT OR Apache-2.0"
|
license.workspace = true
|
||||||
name = "custom-wgpu-kernel"
|
name = "custom-wgpu-kernel"
|
||||||
publish = false
|
publish = false
|
||||||
version = "0.12.0"
|
version.workspace = true
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
burn = {path = "../../burn", features=["autodiff", "wgpu"]}
|
burn = {path = "../../burn", features=["autodiff", "wgpu"]}
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
[package]
|
[package]
|
||||||
authors = ["nathanielsimard <nathaniel.simard.42@gmail.com>"]
|
authors = ["nathanielsimard <nathaniel.simard.42@gmail.com>"]
|
||||||
edition = "2021"
|
edition.workspace = true
|
||||||
license = "MIT OR Apache-2.0"
|
license.workspace = true
|
||||||
name = "guide"
|
name = "guide"
|
||||||
publish = false
|
publish = false
|
||||||
version = "0.12.0"
|
version.workspace = true
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["burn/default"]
|
default = ["burn/default"]
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
[package]
|
[package]
|
||||||
authors = ["Dilshod Tadjibaev (@antimora)"]
|
authors = ["Dilshod Tadjibaev (@antimora)"]
|
||||||
edition = "2021"
|
edition.workspace = true
|
||||||
license = "MIT OR Apache-2.0"
|
license.workspace = true
|
||||||
name = "image-classification-web"
|
name = "image-classification-web"
|
||||||
publish = false
|
publish = false
|
||||||
version = "0.12.0"
|
version.workspace = true
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
crate-type = ["cdylib"]
|
crate-type = ["cdylib"]
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
[package]
|
[package]
|
||||||
authors = ["Dilshod Tadjibaev (@antimora)"]
|
authors = ["Dilshod Tadjibaev (@antimora)"]
|
||||||
edition = "2021"
|
edition.workspace = true
|
||||||
license = "MIT OR Apache-2.0"
|
license.workspace = true
|
||||||
name = "mnist-inference-web"
|
name = "mnist-inference-web"
|
||||||
publish = false
|
publish = false
|
||||||
version = "0.12.0"
|
version.workspace = true
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
crate-type = ["cdylib"]
|
crate-type = ["cdylib"]
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
[package]
|
[package]
|
||||||
authors = ["nathanielsimard <nathaniel.simard.42@gmail.com>"]
|
authors = ["nathanielsimard <nathaniel.simard.42@gmail.com>"]
|
||||||
edition = "2021"
|
edition.workspace = true
|
||||||
license = "MIT OR Apache-2.0"
|
license.workspace = true
|
||||||
name = "mnist"
|
name = "mnist"
|
||||||
publish = false
|
publish = false
|
||||||
version = "0.12.0"
|
version.workspace = true
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["burn/dataset", "burn/sqlite-bundled"]
|
default = ["burn/dataset", "burn/sqlite-bundled"]
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
[package]
|
[package]
|
||||||
authors = ["nathanielsimard <nathaniel.simard.42@gmail.com>"]
|
authors = ["nathanielsimard <nathaniel.simard.42@gmail.com>"]
|
||||||
edition = "2021"
|
edition.workspace = true
|
||||||
license = "MIT OR Apache-2.0"
|
license.workspace = true
|
||||||
name = "named-tensor"
|
name = "named-tensor"
|
||||||
publish = false
|
publish = false
|
||||||
version = "0.12.0"
|
version.workspace = true
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
burn = {path = "../../burn", features = ["experimental-named-tensor", "ndarray"]}
|
burn = {path = "../../burn", features = ["experimental-named-tensor", "ndarray"]}
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
[package]
|
[package]
|
||||||
authors = ["Dilshod Tadjibaev (@antimora)"]
|
authors = ["Dilshod Tadjibaev (@antimora)"]
|
||||||
edition = "2021"
|
edition.workspace = true
|
||||||
license = "MIT OR Apache-2.0"
|
license.workspace = true
|
||||||
name = "onnx-inference"
|
name = "onnx-inference"
|
||||||
publish = false
|
publish = false
|
||||||
version = "0.12.0"
|
version.workspace = true
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["embedded-model"]
|
default = ["embedded-model"]
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
[package]
|
[package]
|
||||||
authors = ["nathanielsimard <nathaniel.simard.42@gmail.com>"]
|
authors = ["nathanielsimard <nathaniel.simard.42@gmail.com>"]
|
||||||
edition = "2021"
|
edition.workspace = true
|
||||||
license = "MIT OR Apache-2.0"
|
license.workspace = true
|
||||||
name = "text-classification"
|
name = "text-classification"
|
||||||
publish = false
|
publish = false
|
||||||
version = "0.12.0"
|
version.workspace = true
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["burn/dataset", "burn/sqlite-bundled"]
|
default = ["burn/dataset", "burn/sqlite-bundled"]
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
[package]
|
[package]
|
||||||
authors = ["nathanielsimard <nathaniel.simard.42@gmail.com>"]
|
authors = ["nathanielsimard <nathaniel.simard.42@gmail.com>"]
|
||||||
edition = "2021"
|
edition.workspace = true
|
||||||
license = "MIT OR Apache-2.0"
|
license.workspace = true
|
||||||
name = "text-generation"
|
name = "text-generation"
|
||||||
publish = false
|
publish = false
|
||||||
version = "0.12.0"
|
version.workspace = true
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["burn/dataset", "burn/sqlite-bundled"]
|
default = ["burn/dataset", "burn/sqlite-bundled"]
|
||||||
|
|
Loading…
Reference in New Issue