burn/examples/custom-image-dataset/Cargo.toml

21 lines
522 B
TOML
Raw Permalink Normal View History

2024-02-03 05:32:38 +08:00
[package]
authors = ["guillaumelagrange <lagrange.guillaume.1@gmail.com>"]
edition.workspace = true
license.workspace = true
name = "custom-image-dataset"
description = "Example implementation for loading a custom image dataset from disk"
publish = false
version.workspace = true
[features]
default = ["burn/default"]
tch-gpu = ["burn/tch"]
wgpu = ["burn/wgpu"]
[dependencies]
burn = { path = "../../crates/burn", features = ["train", "vision", "network"] }
2024-02-03 05:32:38 +08:00
# File download
flate2 = { workspace = true }
Combined PRs (#1874) * Bump cudarc from 0.11.0 to 0.11.4 Bumps [cudarc](https://github.com/coreylowman/cudarc) from 0.11.0 to 0.11.4. - [Release notes](https://github.com/coreylowman/cudarc/releases) - [Commits](https://github.com/coreylowman/cudarc/compare/v0.11.0...v0.11.4) --- updated-dependencies: - dependency-name: cudarc dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> * Bump clap from 4.5.4 to 4.5.6 Bumps [clap](https://github.com/clap-rs/clap) from 4.5.4 to 4.5.6. - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/clap_complete-v4.5.4...v4.5.6) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> * Bump tar from 0.4.40 to 0.4.41 Bumps [tar](https://github.com/alexcrichton/tar-rs) from 0.4.40 to 0.4.41. - [Commits](https://github.com/alexcrichton/tar-rs/compare/0.4.40...0.4.41) --- updated-dependencies: - dependency-name: tar dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> * Bump strum_macros from 0.26.2 to 0.26.4 Bumps [strum_macros](https://github.com/Peternator7/strum) from 0.26.2 to 0.26.4. - [Release notes](https://github.com/Peternator7/strum/releases) - [Changelog](https://github.com/Peternator7/strum/blob/master/CHANGELOG.md) - [Commits](https://github.com/Peternator7/strum/commits) --- updated-dependencies: - dependency-name: strum_macros dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> * Bump zip from 2.1.2 to 2.1.3 Bumps [zip](https://github.com/zip-rs/zip2) from 2.1.2 to 2.1.3. - [Release notes](https://github.com/zip-rs/zip2/releases) - [Changelog](https://github.com/zip-rs/zip2/blob/master/CHANGELOG.md) - [Commits](https://github.com/zip-rs/zip2/compare/v2.1.2...v2.1.3) --- updated-dependencies: - dependency-name: zip dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2024-06-11 04:22:08 +08:00
tar = "0.4.41"