torsh-data 0.1.0

Data loading and preprocessing utilities for ToRSh
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Standard vision datasets
//!
//! This module provides implementations of commonly used computer vision datasets
//! including MNIST, CIFAR-10, and ImageNet.

pub mod cifar;
pub mod imagenet;
pub mod mnist;

// Re-export dataset types
pub use cifar::CIFAR10;
pub use imagenet::ImageNet;
pub use mnist::MNIST;