1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
//! Vision Datasets — Dataset Module Re-exports
//!
//! Module hub for vision datasets. Re-exports `CIFAR10`, `CIFAR100`, and
//! `SyntheticCIFAR` from the cifar module; `MNIST`, `FashionMNIST`, and
//! `SyntheticMNIST` from the mnist module; `CocoDataset` and `CocoAnnotation`
//! from the coco module; and `WiderFaceDataset` from the wider_face module.
//!
//! # File
//! `crates/axonml-vision/src/datasets/mod.rs`
//!
//! # Author
//! Andrew Jewell Sr. — AutomataNexus LLC
//! ORCID: 0009-0005-2158-7060
//!
//! # Updated
//! April 16, 2026 11:15 PM EST
//!
//! # Disclaimer
//! Use at own risk. This software is provided "as is", without warranty of any
//! kind, express or implied. The author and AutomataNexus shall not be held
//! liable for any damages arising from the use of this software.
// =============================================================================
// Sub-Modules
// =============================================================================
// =============================================================================
// Re-Exports
// =============================================================================
pub use ;
pub use ;
pub use ;
pub use WiderFaceDataset;