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
40
41
42
43
44
45
46
47
48
49
50
51
//! Dataset generators
//!
//! This module provides comprehensive dataset generation functionality for machine learning
//! and data science applications. It includes:
//!
//! - **Basic generators**: Classification, regression, clustering, and time series datasets
//! - **Manifold generators**: Swiss roll, S-curve, torus, and other manifold datasets
//! - **Noise injection**: Missing data and outlier injection utilities
//! - **GPU acceleration**: GPU-accelerated versions of basic generators
//! - **Configuration**: Types and utilities for generator configuration
//! - **Time series generators**: Sine wave, random walk, AR process, seasonal signals
//! - **Graph generators**: Karate club, Erdos-Renyi, Barabasi-Albert, Watts-Strogatz
//! - **Sparse matrix generators**: SPD, banded, Laplacian matrices
/// Advanced classification generators (multi-label, Hastie, enhanced n-class)
/// Time series with concept drift
/// Graph dataset generators (karate club, random graph, Barabasi-Albert, Watts-Strogatz)
/// Mixed numeric/categorical feature generators
/// Low-rank matrix completion benchmark generator
/// Advanced multi-label classification with label dependencies
/// Advanced regression generators (Friedman benchmarks, sparse uncorrelated, low-rank)
/// Sparse matrix dataset generators (SPD, banded, Laplacian)
/// High-dimensional sparse classification generator
/// Structured data generators (biclusters, checkerboard, SPD matrices, sparse coded signals)
/// Time series dataset generators (sine wave, random walk, AR process, seasonal)
// Re-export all public functions and types for backward compatibility
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;