2022-08-21 21:42:42 +08:00
|
|
|
[package]
|
|
|
|
authors = ["nathanielsimard <nathaniel.simard.42@gmail.com>"]
|
2023-02-25 22:38:01 +08:00
|
|
|
categories = ["science"]
|
2023-06-15 21:20:53 +08:00
|
|
|
description = "Library with simple dataset APIs for creating ML data pipelines"
|
2023-12-12 22:39:07 +08:00
|
|
|
edition.workspace = true
|
2022-08-21 21:42:42 +08:00
|
|
|
keywords = ["deep-learning", "machine-learning", "data"]
|
2023-12-12 22:39:07 +08:00
|
|
|
license.workspace = true
|
2023-02-25 22:38:01 +08:00
|
|
|
name = "burn-dataset"
|
2023-12-12 22:39:07 +08:00
|
|
|
readme.workspace = true
|
2024-05-10 03:40:05 +08:00
|
|
|
repository = "https://github.com/tracel-ai/burn/tree/main/crates/burn-dataset"
|
2024-10-09 21:15:02 +08:00
|
|
|
documentation = "https://docs.rs/burn-dataset"
|
2023-12-12 22:39:07 +08:00
|
|
|
version.workspace = true
|
2022-08-21 21:42:42 +08:00
|
|
|
|
2022-08-22 23:21:22 +08:00
|
|
|
[features]
|
2023-09-06 21:16:36 +08:00
|
|
|
default = ["sqlite-bundled"]
|
2024-02-02 01:47:46 +08:00
|
|
|
doc = ["default"]
|
2023-12-02 03:33:28 +08:00
|
|
|
audio = ["hound"]
|
2022-08-22 23:21:22 +08:00
|
|
|
fake = ["dep:fake"]
|
2023-08-29 22:50:01 +08:00
|
|
|
sqlite = ["__sqlite-shared", "dep:rusqlite"]
|
|
|
|
sqlite-bundled = ["__sqlite-shared", "rusqlite/bundled"]
|
2024-09-02 05:03:37 +08:00
|
|
|
vision = ["dep:flate2", "dep:globwalk", "dep:burn-common", "dep:image"]
|
2023-08-29 22:50:01 +08:00
|
|
|
# internal
|
2023-12-02 03:33:28 +08:00
|
|
|
__sqlite-shared = [
|
2024-08-01 06:22:49 +08:00
|
|
|
"dep:r2d2",
|
|
|
|
"dep:r2d2_sqlite",
|
|
|
|
"dep:serde_rusqlite",
|
|
|
|
"dep:image",
|
|
|
|
"dep:gix-tempfile",
|
2023-12-02 03:33:28 +08:00
|
|
|
]
|
2024-08-01 06:22:49 +08:00
|
|
|
dataframe = ["dep:polars"]
|
|
|
|
|
2022-08-21 21:42:42 +08:00
|
|
|
[dependencies]
|
2024-10-29 04:41:58 +08:00
|
|
|
burn-common = { path = "../burn-common", version = "0.16.0", optional = true, features = [
|
2024-08-01 06:22:49 +08:00
|
|
|
"network",
|
2024-02-11 00:54:33 +08:00
|
|
|
] }
|
2023-12-02 03:33:28 +08:00
|
|
|
csv = { workspace = true }
|
|
|
|
derive-new = { workspace = true }
|
|
|
|
dirs = { workspace = true }
|
|
|
|
fake = { workspace = true, optional = true }
|
2024-01-26 05:16:39 +08:00
|
|
|
flate2 = { workspace = true, optional = true }
|
2023-12-02 03:33:28 +08:00
|
|
|
gix-tempfile = { workspace = true, optional = true }
|
2024-02-11 00:54:33 +08:00
|
|
|
globwalk = { workspace = true, optional = true }
|
2024-02-01 03:47:02 +08:00
|
|
|
hound = { workspace = true, optional = true }
|
2024-02-03 05:32:38 +08:00
|
|
|
image = { workspace = true, optional = true }
|
2024-08-01 06:22:49 +08:00
|
|
|
polars = { workspace = true, optional = true }
|
2023-12-02 03:33:28 +08:00
|
|
|
r2d2 = { workspace = true, optional = true }
|
|
|
|
r2d2_sqlite = { workspace = true, optional = true }
|
|
|
|
rand = { workspace = true, features = ["std"] }
|
|
|
|
rmp-serde = { workspace = true }
|
|
|
|
rusqlite = { workspace = true, optional = true }
|
|
|
|
sanitize-filename = { workspace = true }
|
|
|
|
serde = { workspace = true, features = ["std", "derive"] }
|
|
|
|
serde_json = { workspace = true, features = ["std"] }
|
|
|
|
serde_rusqlite = { workspace = true, optional = true }
|
|
|
|
strum = { workspace = true }
|
|
|
|
strum_macros = { workspace = true }
|
|
|
|
tempfile = { workspace = true }
|
|
|
|
thiserror = { workspace = true }
|
2022-08-21 21:42:42 +08:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-12-02 03:33:28 +08:00
|
|
|
rayon = { workspace = true }
|
|
|
|
rstest = { workspace = true }
|
|
|
|
fake = { workspace = true }
|
2023-11-19 23:35:03 +08:00
|
|
|
|
|
|
|
[package.metadata.cargo-udeps.ignore]
|
|
|
|
normal = ["strum", "strum_macros"]
|
2024-02-02 01:47:46 +08:00
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
2024-02-11 00:54:33 +08:00
|
|
|
features = ["doc"]
|
2024-10-09 21:15:02 +08:00
|
|
|
rustdoc-args = ["--cfg", "docsrs"]
|