//! Standard dataset parsers (MNIST, CIFAR-10, Shakespeare).
//!
//! Pure parsers: accept raw bytes, return tensors. No I/O or download logic.
//! Implement [`super::BatchDataSet`] for direct use with [`super::DataLoader`].
pub use Mnist;
pub use Cifar10;
pub use Shakespeare;