2022-07-19 07:19:13 +08:00
|
|
|
[package]
|
|
|
|
name = "burn"
|
|
|
|
version = "0.1.0"
|
2022-07-28 04:42:38 +08:00
|
|
|
authors = ["nathanielsimard <nathaniel.simard.42@gmail.com>"]
|
|
|
|
description = "BURN: Burn Unstoppable Rusty Neurons"
|
|
|
|
repository = "https://github.com/nathanielsimard/burn"
|
|
|
|
readme="README.md"
|
|
|
|
keywords = ["deep-learning", "machine-learning", "tensor", "pytorch", "ndarray"]
|
|
|
|
categories = ["science"]
|
|
|
|
license = "MIT"
|
2022-07-19 07:19:13 +08:00
|
|
|
edition = "2021"
|
|
|
|
|
2022-08-08 05:28:08 +08:00
|
|
|
[features]
|
|
|
|
default = ["tch", "ndarray"]
|
|
|
|
tch = ["burn-tensor/tch"]
|
|
|
|
ndarray = ["burn-tensor/ndarray"]
|
|
|
|
|
2022-07-19 07:19:13 +08:00
|
|
|
[dependencies]
|
2022-08-08 05:28:08 +08:00
|
|
|
burn-tensor = { path = "./burn-tensor", version = "0.1.0", default-features = false }
|
2022-08-22 23:21:22 +08:00
|
|
|
burn-dataset = { path = "./burn-dataset", version = "0.1.0", default-features = false }
|
2022-08-06 09:14:44 +08:00
|
|
|
burn-derive = { path = "./burn-derive", version = "0.1.0" }
|
2022-08-22 23:21:22 +08:00
|
|
|
|
2022-08-23 23:47:21 +08:00
|
|
|
# Metrics
|
|
|
|
nvml-wrapper = "0.8"
|
2022-08-24 04:39:30 +08:00
|
|
|
textplots = "0.8"
|
2022-08-23 23:47:21 +08:00
|
|
|
|
|
|
|
# Console
|
|
|
|
indicatif = "0.17"
|
|
|
|
|
2022-08-22 23:21:22 +08:00
|
|
|
num-traits = "0.2"
|
|
|
|
derive-new = "0.5"
|
2022-07-26 21:45:13 +08:00
|
|
|
rand = "0.8"
|
2022-08-06 09:14:44 +08:00
|
|
|
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
serde_json = "1.0"
|
2022-08-22 23:21:22 +08:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
burn-dataset = { path = "./burn-dataset", version = "0.1.0", features = ["fake"] }
|