mirror of https://github.com/tracel-ai/burn.git
22 lines
535 B
TOML
22 lines
535 B
TOML
[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]
|
|
burn = {path = "../../crates/burn"}
|
|
|
|
# File download
|
|
reqwest = {workspace = true, features = ["blocking"]}
|
|
|
|
# CSV parsing
|
|
csv = {workspace = true}
|
|
serde = {workspace = true, features = ["std", "derive"]}
|