2024-01-11 22:24:25 +08:00
|
|
|
[package]
|
|
|
|
authors = ["guillaumelagrange <lagrange.guillaume.1@gmail.com>"]
|
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
|
|
|
name = "custom-csv-dataset"
|
|
|
|
description = "Example implementation for loading a custom CSV dataset from disk"
|
|
|
|
publish = false
|
|
|
|
version.workspace = true
|
|
|
|
|
|
|
|
[features]
|
|
|
|
default = ["burn/dataset"]
|
|
|
|
|
|
|
|
[dependencies]
|
2024-02-21 02:57:55 +08:00
|
|
|
burn = {path = "../../crates/burn"}
|
2024-01-11 22:24:25 +08:00
|
|
|
|
|
|
|
# File download
|
|
|
|
reqwest = {workspace = true, features = ["blocking"]}
|
|
|
|
|
|
|
|
# CSV parsing
|
|
|
|
csv = {workspace = true}
|
2024-06-20 05:03:02 +08:00
|
|
|
serde = {workspace = true, features = ["std", "derive"]}
|