rustyml 0.14.0

A high-performance machine learning & deep learning library in pure Rust, offering ML algorithms and neural network support
Documentation
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
//! Standardization that remembers its training statistics
//!
//! Provides [`StandardScaler`], the fit and transform counterpart to the stateless
//! [`standardize`](crate::utils::standardize::standardize) function. It learns the per-feature
//! mean and standard deviation once, on the training matrix. It reuses those frozen numbers
//! for every later batch: the test split, a validation fold, or a single sample arriving at
//! inference time. This is the scikit-learn `StandardScaler` contract, and it keeps a
//! train-test boundary honest. Rescaling a test set by its own column statistics applies a
//! different linear map than the one the model was trained under

use super::{fitted, for_each_row, validate_matrix, validate_transform_matrix};
use crate::error::Error;
use crate::parallel_gates::scan_f64_parallel_min_elems;
use crate::utils::standardize::{WelfordState, scale_from_variance, welford_merge, welford_step};
use crate::{Deserialize, Serialize};
use ndarray::{Array1, Array2, ArrayBase, ArrayView1, ArrayView2, Axis, Data, Ix2};
use rayon::iter::{IntoParallelIterator, ParallelIterator};

/// Standardizes features by removing the mean and scaling to unit variance
///
/// Rows are samples and columns are features. [`fit`](Self::fit) computes each feature's mean
/// and population standard deviation and stores them. [`transform`](Self::transform) applies
/// `(x - mean) / scale` using those stored values, whatever data it is handed. A feature whose
/// spread is within floating-point noise gets a scale of `1.0`, so a constant column maps to
/// zeros instead of `NaN`
///
/// The divisor is the **population** standard deviation, variance divided by `n` rather than
/// `n - 1`, matching scikit-learn's `StandardScaler` (`ddof=0`). The statistics come from the
/// same numerically stable Welford pass that
/// [`standardize`](crate::utils::standardize::standardize) uses. This makes
/// `StandardScaler::default().fit_transform(&x)` bit-for-bit identical to
/// `standardize(&x, StandardizationAxis::Column)` on a 2-D array
///
/// # Deviations from scikit-learn
///
/// - This scaler rejects non-finite input up front with [`Error::NonFinite`]. scikit-learn's
///   scaler instead ignores `NaN` during `fit` and passes it through `transform`. Impute or
///   drop missing values before scaling
/// - This scaler computes and keeps `mean_`, `var_`, and `scale_` even when `with_mean` or
///   `with_std` is `false` (scikit-learn sets the unused ones to `None`). The flags decide
///   only what [`transform`](Self::transform) applies, so the statistics stay available for
///   inspection
///
/// # Examples
///
/// ```rust
/// use ndarray::array;
/// use rustyml::utils::StandardScaler;
///
/// let x_train = array![[1.0, 100.0], [2.0, 150.0], [3.0, 200.0]];
/// let x_test = array![[4.0, 250.0]];
///
/// // Fit ONCE on the training matrix, then reuse those statistics everywhere.
/// let mut scaler = StandardScaler::new();
/// let z_train = scaler.fit_transform(&x_train).unwrap();
/// let z_test = scaler.transform(&x_test).unwrap();
///
/// assert_eq!(z_train.dim(), (3, 2));
/// assert_eq!(z_test.dim(), (1, 2));
/// // The scaler scales the test row by the TRAINING mean and std, not its own
/// assert!((z_test[[0, 0]] - 2.449489742783178).abs() < 1e-12);
/// ```
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct StandardScaler {
    /// Whether [`transform`](Self::transform) centers the data
    with_mean: bool,
    /// Whether [`transform`](Self::transform) divides by the standard deviation
    with_std: bool,
    /// Per-feature mean learned during fitting (scikit-learn's `mean_`)
    mean: Option<Array1<f64>>,
    /// Per-feature population variance learned during fitting (scikit-learn's `var_`)
    var: Option<Array1<f64>>,
    /// Per-feature divisor: `sqrt(var)`, or `1.0` for a constant feature (`scale_`)
    scale: Option<Array1<f64>>,
    /// Number of samples folded into the statistics so far (`n_samples_seen_`)
    n_samples_seen: usize,
}

impl Default for StandardScaler {
    /// Creates a scaler that both centers and scales, equivalent to [`StandardScaler::new`]
    fn default() -> Self {
        Self::new()
    }
}

impl StandardScaler {
    /// Creates an unfitted scaler that centers and scales
    ///
    /// # Returns
    ///
    /// - `Self` - A new scaler with `with_mean = true` and `with_std = true`
    ///
    /// # Notes
    ///
    /// Either step can be switched off with the builder methods
    /// [`with_mean`](Self::with_mean) and [`with_std`](Self::with_std)
    pub fn new() -> Self {
        Self {
            with_mean: true,
            with_std: true,
            mean: None,
            var: None,
            scale: None,
            n_samples_seen: 0,
        }
    }

    /// Sets whether [`transform`](Self::transform) subtracts the training mean (default: `true`)
    ///
    /// # Parameters
    ///
    /// - `with_mean` - `false` leaves the data uncentered
    ///
    /// # Returns
    ///
    /// - `Self` - the updated instance, for method chaining
    pub fn with_mean(mut self, with_mean: bool) -> Self {
        self.with_mean = with_mean;
        self
    }

    /// Sets whether [`transform`](Self::transform) divides by the training standard deviation
    /// (default: `true`)
    ///
    /// # Parameters
    ///
    /// - `with_std` - `false` leaves the data unscaled
    ///
    /// # Returns
    ///
    /// - `Self` - the updated instance, for method chaining
    pub fn with_std(mut self, with_std: bool) -> Self {
        self.with_std = with_std;
        self
    }

    // Getters
    get_field!(get_with_mean, with_mean, bool);
    get_field!(get_with_std, with_std, bool);
    get_field!(get_n_samples_seen, n_samples_seen, usize);
    get_field_as_ref!(get_mean, mean, Option<&Array1<f64>>);
    get_field_as_ref!(get_var, var, Option<&Array1<f64>>);
    get_field_as_ref!(get_scale, scale, Option<&Array1<f64>>);

    /// Gets the number of features the scaler was fitted on (scikit-learn's `n_features_in_`)
    ///
    /// # Returns
    ///
    /// - `Option<usize>` - The feature count, or `None` if the scaler is not fitted
    #[inline]
    pub fn get_n_features(&self) -> Option<usize> {
        self.mean.as_ref().map(|mean| mean.len())
    }

    /// Fits the scaler, computing and storing each feature's mean and standard deviation
    ///
    /// This discards any statistics from a previous fit. Call this on the training matrix only.
    /// Fitting on the full dataset before splitting leaks test-set information into the
    /// transform
    ///
    /// # Parameters
    ///
    /// - `x` - Feature matrix with samples as rows and features as columns
    ///
    /// # Returns
    ///
    /// - `Result<&mut Self, Error>` - Mutable reference to self for chaining
    ///
    /// # Errors
    ///
    /// - [`Error::EmptyInput`] - If `x` has no rows or no columns
    /// - [`Error::NonFinite`] - If `x` contains NaN or infinite values
    ///
    /// # Performance
    ///
    /// One Welford fold per feature, parallelized across features above the calibrated scan
    /// gate (see `crate::parallel_gates`), so the statistics never depend on the thread count
    pub fn fit<S>(&mut self, x: &ArrayBase<S, Ix2>) -> Result<&mut Self, Error>
    where
        S: Data<Elem = f64>,
    {
        validate_matrix(x)?;

        let states = column_states(&x.view());
        self.store(&states);
        Ok(self)
    }

    /// Folds another batch of samples into the existing statistics
    ///
    /// Merges the batch's per-feature moments into the stored ones (Chan et al.). This lets a
    /// scaler fit over data that never exists in memory at once. The data can arrive as
    /// streaming batches, or one chunk of a file at a time. On an unfitted scaler this behaves
    /// exactly like [`fit`](Self::fit). The mean and variance after `n` batches equal what a
    /// single `fit` over their concatenation would produce, up to floating-point rounding
    ///
    /// # Parameters
    ///
    /// - `x` - Feature matrix with samples as rows and features as columns
    ///
    /// # Returns
    ///
    /// - `Result<&mut Self, Error>` - Mutable reference to self for chaining
    ///
    /// # Errors
    ///
    /// - [`Error::EmptyInput`] - If `x` has no rows or no columns
    /// - [`Error::DimensionMismatch`] - If `x` has a different feature count than the previous
    ///   batches
    /// - [`Error::NonFinite`] - If `x` contains NaN or infinite values
    pub fn partial_fit<S>(&mut self, x: &ArrayBase<S, Ix2>) -> Result<&mut Self, Error>
    where
        S: Data<Elem = f64>,
    {
        validate_matrix(x)?;
        if let Some(n_features) = self.get_n_features()
            && n_features != x.ncols()
        {
            return Err(Error::dimension_mismatch(n_features, x.ncols()));
        }

        let mut states = column_states(&x.view());

        // Merge the batch's moments into the stored ones, recovering each feature's sum of
        // squared deviations from the population variance it was stored as
        if let (Some(mean), Some(var)) = (&self.mean, &self.var) {
            let seen = self.n_samples_seen as f64;
            for (j, state) in states.iter_mut().enumerate() {
                *state = welford_merge((seen, mean[j], var[j] * seen), *state);
            }
        }

        self.store(&states);
        Ok(self)
    }

    /// Standardizes `x` with the stored training statistics
    ///
    /// Applies `(x - mean) / scale` feature by feature, using the numbers learned at fit time
    /// and never recomputing them from `x`. A single-row `x` is fine. The training statistics
    /// scale it, which is exactly what inference needs
    ///
    /// # Parameters
    ///
    /// - `x` - Feature matrix with samples as rows and features as columns
    ///
    /// # Returns
    ///
    /// - `Result<Array2<f64>, Error>` - A new standardized matrix. `x` is not modified
    ///
    /// # Errors
    ///
    /// - [`Error::NotFitted`] - If the scaler has not been fitted
    /// - [`Error::EmptyInput`] - If `x` has no rows or no columns
    /// - [`Error::DimensionMismatch`] - If `x`'s feature count differs from the fitted one
    /// - [`Error::NonFinite`] - If `x` contains NaN or infinite values
    ///
    /// # Performance
    ///
    /// One fused pass per row (subtract and divide together), parallelized across rows above
    /// the calibrated cheap-map gate (see `crate::parallel_gates`)
    pub fn transform<S>(&self, x: &ArrayBase<S, Ix2>) -> Result<Array2<f64>, Error>
    where
        S: Data<Elem = f64>,
    {
        let (mean, scale) = self.fitted_stats()?;
        validate_transform_matrix(x, mean.len())?;

        let mut result = x.to_owned();
        let (with_mean, with_std) = (self.with_mean, self.with_std);
        for_each_row(&mut result, |mut row| match (with_mean, with_std) {
            (true, true) => {
                for ((value, &m), &s) in row.iter_mut().zip(mean).zip(scale) {
                    *value = (*value - m) / s;
                }
            }
            (true, false) => {
                for (value, &m) in row.iter_mut().zip(mean) {
                    *value -= m;
                }
            }
            (false, true) => {
                for (value, &s) in row.iter_mut().zip(scale) {
                    *value /= s;
                }
            }
            (false, false) => {}
        });

        Ok(result)
    }

    /// Fits the scaler on `x` and returns the standardized `x`
    ///
    /// Equivalent to [`fit`](Self::fit) followed by [`transform`](Self::transform). This is the
    /// call for the training matrix, after which [`transform`](Self::transform) handles every
    /// other batch
    ///
    /// # Parameters
    ///
    /// - `x` - Feature matrix with samples as rows and features as columns
    ///
    /// # Returns
    ///
    /// - `Result<Array2<f64>, Error>` - A new standardized matrix. `x` is not modified
    ///
    /// # Errors
    ///
    /// - [`Error::EmptyInput`] - If `x` has no rows or no columns
    /// - [`Error::NonFinite`] - If `x` contains NaN or infinite values
    pub fn fit_transform<S>(&mut self, x: &ArrayBase<S, Ix2>) -> Result<Array2<f64>, Error>
    where
        S: Data<Elem = f64>,
    {
        self.fit(x)?;
        self.transform(x)
    }

    /// Maps standardized data back to the original feature space
    ///
    /// Applies `x * scale + mean`, the exact inverse of [`transform`](Self::transform). This is
    /// useful for reading a model's outputs or a reconstruction back in the units the data
    /// arrived in. A feature that was constant at fit time cannot be recovered from its zeros.
    /// It comes back as its training mean
    ///
    /// # Parameters
    ///
    /// - `x` - Standardized matrix with samples as rows and features as columns
    ///
    /// # Returns
    ///
    /// - `Result<Array2<f64>, Error>` - A new matrix in the original units. `x` is not modified
    ///
    /// # Errors
    ///
    /// - [`Error::NotFitted`] - If the scaler has not been fitted
    /// - [`Error::EmptyInput`] - If `x` has no rows or no columns
    /// - [`Error::DimensionMismatch`] - If `x`'s feature count differs from the fitted one
    /// - [`Error::NonFinite`] - If `x` contains NaN or infinite values
    pub fn inverse_transform<S>(&self, x: &ArrayBase<S, Ix2>) -> Result<Array2<f64>, Error>
    where
        S: Data<Elem = f64>,
    {
        let (mean, scale) = self.fitted_stats()?;
        validate_transform_matrix(x, mean.len())?;

        let mut result = x.to_owned();
        let (with_mean, with_std) = (self.with_mean, self.with_std);
        for_each_row(&mut result, |mut row| match (with_mean, with_std) {
            (true, true) => {
                for ((value, &m), &s) in row.iter_mut().zip(mean).zip(scale) {
                    *value = *value * s + m;
                }
            }
            (true, false) => {
                for (value, &m) in row.iter_mut().zip(mean) {
                    *value += m;
                }
            }
            (false, true) => {
                for (value, &s) in row.iter_mut().zip(scale) {
                    *value *= s;
                }
            }
            (false, false) => {}
        });

        Ok(result)
    }

    model_save_and_load_methods!(StandardScaler);

    /// Borrows the fitted mean and scale, or reports that the scaler is unfitted
    fn fitted_stats(&self) -> Result<(&Array1<f64>, &Array1<f64>), Error> {
        Ok((
            fitted(&self.mean, "StandardScaler")?,
            fitted(&self.scale, "StandardScaler")?,
        ))
    }

    /// Replaces the stored statistics with those of `states`
    ///
    /// Every feature is folded over the same rows, so the sample count is shared
    fn store(&mut self, states: &[WelfordState]) {
        let n = states.first().map_or(0.0, |&(count, _, _)| count);

        self.mean = Some(states.iter().map(|&(_, mean, _)| mean).collect());
        self.var = Some(states.iter().map(|&(_, _, m2)| m2 / n).collect());
        self.scale = Some(
            states
                .iter()
                .map(|&(_, mean, m2)| scale_from_variance(m2 / n, mean, n))
                .collect(),
        );
        self.n_samples_seen = n as usize;
    }
}

/// Computes one Welford accumulator per feature, folding each column over the rows of `x`
///
/// Columns are independent, so the serial and parallel paths produce identical results. The
/// gate only decides who does the work
fn column_states(x: &ArrayView2<f64>) -> Vec<WelfordState> {
    let fold_lane = |lane: ArrayView1<f64>| {
        lane.iter()
            .fold((0.0, 0.0, 0.0), |acc, &value| welford_step(acc, value))
    };

    let lanes: Vec<ArrayView1<f64>> = x.lanes(Axis(0)).into_iter().collect();

    // Scan-class gate: one O(n_samples) Welford pass per feature, so the work is the element count
    if x.len() >= scan_f64_parallel_min_elems() {
        lanes.into_par_iter().map(fold_lane).collect()
    } else {
        lanes.into_iter().map(fold_lane).collect()
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::utils::standardize::{StandardizationAxis, standardize};
    use ndarray::array;

    /// `fit_transform` agrees bit-for-bit with the stateless column standardization
    #[test]
    fn fit_transform_matches_standardize_column() {
        let x = array![[1.0, 2000.0], [2.0, 3000.0], [3.0, 4000.0], [4.0, 5000.0]];

        let scaled = StandardScaler::new().fit_transform(&x).unwrap();
        let stateless = standardize(&x, StandardizationAxis::Column).unwrap();

        assert_eq!(scaled, stateless);
    }

    /// `transform` reuses the training statistics rather than recomputing them per batch
    #[test]
    fn transform_reuses_training_statistics() {
        let x_train = array![[1.0], [2.0], [3.0]];
        let mut scaler = StandardScaler::new();
        scaler.fit(&x_train).unwrap();

        // Training mean 2, population std sqrt(2/3), so a lone sample must map through those
        let z = scaler.transform(&array![[3.0]]).unwrap();
        let expected = (3.0 - 2.0) / (2.0f64 / 3.0).sqrt();
        assert!((z[[0, 0]] - expected).abs() < 1e-12);

        // Standardizing the batch on its own would have produced 0.0 instead
        assert!(z[[0, 0]] > 1.0);
    }

    /// `partial_fit` over 2 batches matches a single `fit` over their concatenation
    #[test]
    fn partial_fit_matches_single_fit() {
        let batch_a = array![[1.0, 10.0], [2.0, 20.0]];
        let batch_b = array![[3.0, 30.0], [4.0, 40.0], [5.0, 50.0]];
        let full = array![
            [1.0, 10.0],
            [2.0, 20.0],
            [3.0, 30.0],
            [4.0, 40.0],
            [5.0, 50.0]
        ];

        let mut incremental = StandardScaler::new();
        incremental.partial_fit(&batch_a).unwrap();
        incremental.partial_fit(&batch_b).unwrap();

        let mut single = StandardScaler::new();
        single.fit(&full).unwrap();

        assert_eq!(incremental.get_n_samples_seen(), 5);
        for j in 0..2 {
            assert!(
                (incremental.get_mean().unwrap()[j] - single.get_mean().unwrap()[j]).abs() < 1e-9
            );
            assert!(
                (incremental.get_var().unwrap()[j] - single.get_var().unwrap()[j]).abs() < 1e-9
            );
        }
    }

    /// `inverse_transform` round-trips back to the original values
    #[test]
    fn inverse_transform_round_trips() {
        let x = array![[1.0, -5.0], [2.0, 7.5], [3.0, 0.5]];
        let mut scaler = StandardScaler::new();
        let z = scaler.fit_transform(&x).unwrap();
        let restored = scaler.inverse_transform(&z).unwrap();

        for (original, back) in x.iter().zip(restored.iter()) {
            assert!((original - back).abs() < 1e-9);
        }
    }

    /// A constant feature gets a scale of 1.0 and maps to zeros, leaving other features alone
    #[test]
    fn constant_feature_maps_to_zeros() {
        let x = array![[3.0, 1.0], [3.0, 3.0], [3.0, 5.0]];
        let mut scaler = StandardScaler::new();
        let z = scaler.fit_transform(&x).unwrap();

        assert_eq!(scaler.get_scale().unwrap()[0], 1.0);
        assert!(z.column(0).iter().all(|&v| v == 0.0));
        assert!(z.column(1).iter().all(|v| v.is_finite()));
    }

    /// The `with_mean` and `with_std` flags switch off centering and scaling independently
    #[test]
    fn flags_control_what_transform_applies() {
        let x = array![[1.0], [2.0], [3.0]];

        let centered_only = StandardScaler::new()
            .with_std(false)
            .fit_transform(&x)
            .unwrap();
        assert_eq!(centered_only, array![[-1.0], [0.0], [1.0]]);

        let scaled_only = StandardScaler::new()
            .with_mean(false)
            .fit_transform(&x)
            .unwrap();
        let std = (2.0f64 / 3.0).sqrt();
        assert!((scaled_only[[0, 0]] - 1.0 / std).abs() < 1e-12);
    }

    /// Transforming before fitting reports `NotFitted`
    #[test]
    fn transform_before_fit_gives_not_fitted() {
        let err = StandardScaler::new()
            .transform(&array![[1.0, 2.0]])
            .unwrap_err();
        match err {
            Error::NotFitted(model) => assert_eq!(model, "StandardScaler"),
            other => panic!("expected NotFitted, got {:?}", other),
        }
    }

    /// A feature-count mismatch at transform time reports `DimensionMismatch`
    #[test]
    fn transform_feature_mismatch_gives_dimension_mismatch() {
        let mut scaler = StandardScaler::new();
        scaler.fit(&array![[1.0, 2.0], [3.0, 4.0]]).unwrap();

        let err = scaler.transform(&array![[1.0, 2.0, 3.0]]).unwrap_err();
        match err {
            Error::DimensionMismatch { expected, found } => {
                assert_eq!(expected, 2);
                assert_eq!(found, 3);
            }
            other => panic!("expected DimensionMismatch, got {:?}", other),
        }
    }

    /// `fit` rejects non-finite input before computing any statistics
    #[test]
    fn non_finite_input_is_rejected() {
        let err = StandardScaler::new()
            .fit(&array![[1.0, f64::NAN], [3.0, 4.0]])
            .unwrap_err();
        match err {
            Error::NonFinite(_) => {}
            other => panic!("expected NonFinite, got {:?}", other),
        }
    }
}