mirror of
https://github.com/huggingface/candle.git
synced 2025-06-17 11:08:52 +00:00

* Move the vision datasets to a separate crate. * Move the batcher bits. * Update the readme. * Move the tiny-stories bits. --------- Co-authored-by: Jane Doe <jane.doe@example.org>
7 lines
111 B
Rust
7 lines
111 B
Rust
//! Datasets & Dataloaders for Candle
|
|
pub mod batcher;
|
|
pub mod nlp;
|
|
pub mod vision;
|
|
|
|
pub use batcher::Batcher;
|