scirs2_datasets/lib.rs
1//! Datasets module for SciRS2
2//!
3//! This module provides dataset loading utilities similar to scikit-learn's datasets module.
4//! It includes toy datasets, sample datasets, data generators, and utilities for loading
5//! and processing datasets.
6
7#![warn(missing_docs)]
8
9pub mod cache;
10pub mod error;
11pub mod generators;
12pub mod loaders;
13pub mod sample;
14pub mod toy;
15/// Core utilities for working with datasets
16///
17/// This module provides the Dataset struct and helper functions for
18/// manipulating and transforming datasets.
19pub mod utils;
20
21// Re-export commonly used functionality
22pub use generators::*;
23pub use sample::*;
24pub use toy::*;
25pub use utils::Dataset;