loess-rs 0.9.0

LOESS (Locally Estimated Scatterplot Smoothing)
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
//! Online adapter for incremental LOESS smoothing.
//!
//! This module provides the online (incremental) execution adapter for LOESS
//! smoothing. It maintains a sliding window of recent observations and produces
//! smoothed values for new points as they arrive.
//!
//! ## srrstats Compliance
//!
//! @srrstats {G1.6} Sliding window for real-time incremental updates.
//! @srrstats {G2.1} Configurable minimum points before smoothing activates.

// Feature-gated imports
#[cfg(not(feature = "std"))]
use alloc::{collections::VecDeque, vec::Vec};
#[cfg(feature = "std")]
use std::{collections::VecDeque, vec::Vec};

// External dependencies
use core::fmt::Debug;

// Internal dependencies
use crate::adapters::defaults::*;
use crate::algorithms::defaults::*;
use crate::algorithms::regression::{PolynomialDegree, SolverLinalg, ZeroWeightFallback};
use crate::algorithms::robustness::RobustnessMethod;
use crate::engine::defaults::*;
use crate::engine::executor::{
    CVPassFn, FitPassFn, IntervalPassFn, KDTreeBuilderFn, LoessConfig, LoessExecutor, SmoothPassFn,
    SurfaceMode, VertexPassFn,
};
use crate::engine::validator::Validator;
use crate::math::boundary::BoundaryPolicy;
use crate::math::defaults::*;
use crate::math::distance::{DistanceLinalg, DistanceMetric};
use crate::math::kernel::WeightFunction;
use crate::math::linalg::FloatLinalg;
use crate::math::scaling::ScalingMethod;
use crate::primitives::backend::Backend;
use crate::primitives::errors::LoessError;

// Update mode for online LOESS processing.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Default)]
pub enum UpdateMode {
    // Recompute all points in the window from scratch.
    Full,

    // Optimized incremental update.
    #[default]
    Incremental,
}

// Builder for online LOESS processor.
#[derive(Debug, Clone)]
pub struct OnlineLoessBuilder<T: FloatLinalg + DistanceLinalg + SolverLinalg> {
    // Window capacity (maximum number of points to retain)
    pub window_capacity: usize,

    // Minimum points before smoothing starts
    pub min_points: usize,

    // Smoothing fraction (span)
    pub fraction: T,

    // Number of robustness iterations
    pub iterations: usize,

    // Convergence tolerance for early stopping (None = disabled)
    pub auto_converge: Option<T>,

    // Kernel weight function
    pub weight_function: WeightFunction,

    // Update mode for incremental processing
    pub update_mode: UpdateMode,

    // Robustness method
    pub robustness_method: RobustnessMethod,

    // Residual scaling method
    pub scaling_method: ScalingMethod,

    // Policy for handling zero-weight neighborhoods
    pub zero_weight_fallback: ZeroWeightFallback,

    // Policy for handling data boundaries
    pub boundary_policy: BoundaryPolicy,

    // Whether to return residuals
    pub compute_residuals: bool,

    // Whether to return robustness weights
    pub return_robustness_weights: bool,

    // Deferred error from adapter conversion
    pub deferred_error: Option<LoessError>,

    // Polynomial degree for local regression
    pub polynomial_degree: PolynomialDegree,

    // Number of predictor dimensions (default: 1).
    pub dimensions: usize,

    // Distance metric for nD neighborhood computation.
    pub distance_metric: DistanceMetric<T>,

    // Cell size for interpolation subdivision (default: 0.2).
    pub cell: Option<f64>,

    // Maximum number of vertices for interpolation.
    pub interpolation_vertices: Option<usize>,

    // Evaluation mode (default: Interpolation)
    pub surface_mode: SurfaceMode,

    // Whether to reduce polynomial degree at boundary vertices during interpolation.
    pub boundary_degree_fallback: bool,

    // Tracks if any parameter was set multiple times (for validation)
    #[doc(hidden)]
    pub(crate) duplicate_param: Option<&'static str>,

    // ++++++++++++++++++++++++++++++++++++++
    // +               DEV                  +
    // ++++++++++++++++++++++++++++++++++++++
    // Custom smooth pass function.
    #[doc(hidden)]
    pub custom_smooth_pass: Option<SmoothPassFn<T>>,

    // Custom cross-validation pass function.
    #[doc(hidden)]
    pub custom_cv_pass: Option<CVPassFn<T>>,

    // Custom interval estimation pass function.
    #[doc(hidden)]
    pub custom_interval_pass: Option<IntervalPassFn<T>>,

    // Custom fit pass function.
    #[doc(hidden)]
    pub custom_fit_pass: Option<FitPassFn<T>>,

    // Custom vertex pass function.
    #[doc(hidden)]
    pub custom_vertex_pass: Option<VertexPassFn<T>>,

    // Custom KD-tree builder function.
    #[doc(hidden)]
    pub custom_kdtree_builder: Option<KDTreeBuilderFn<T>>,

    // Execution backend hint.
    #[doc(hidden)]
    pub backend: Option<Backend>,

    // Parallel execution hint.
    #[doc(hidden)]
    pub parallel: Option<bool>,
}

impl<T: FloatLinalg + DistanceLinalg + Debug + Send + Sync + SolverLinalg> Default
    for OnlineLoessBuilder<T>
{
    fn default() -> Self {
        Self::new()
    }
}

impl<T: FloatLinalg + DistanceLinalg + Debug + Send + Sync + SolverLinalg> OnlineLoessBuilder<T> {
    // Create a new online LOESS builder with default parameters.
    fn new() -> Self {
        Self {
            window_capacity: DEFAULT_ONLINE_WINDOW_CAPACITY,
            min_points: DEFAULT_ONLINE_MIN_POINTS,
            fraction: T::from(DEFAULT_FRACTION).unwrap(),
            iterations: DEFAULT_ONLINE_ITERATIONS,
            weight_function: DEFAULT_WEIGHT_FUNCTION_ENUM,
            update_mode: DEFAULT_ONLINE_UPDATE_MODE_ENUM,
            robustness_method: DEFAULT_ROBUSTNESS_METHOD_ENUM,
            scaling_method: DEFAULT_SCALING_METHOD_ENUM,
            zero_weight_fallback: DEFAULT_ZERO_WEIGHT_FALLBACK_ENUM,
            boundary_policy: DEFAULT_BOUNDARY_POLICY_ENUM,
            compute_residuals: DEFAULT_RETURN_RESIDUALS,
            return_robustness_weights: DEFAULT_RETURN_ROBUSTNESS_WEIGHTS,
            auto_converge: default_auto_converge(),
            deferred_error: None,
            polynomial_degree: DEFAULT_POLYNOMIAL_DEGREE_ENUM,
            dimensions: DEFAULT_DIMENSIONS,
            distance_metric: default_distance_metric(),
            cell: None,
            interpolation_vertices: None,
            surface_mode: DEFAULT_SURFACE_MODE_ENUM,
            boundary_degree_fallback: DEFAULT_BOUNDARY_DEGREE_FALLBACK,
            duplicate_param: None,
            // ++++++++++++++++++++++++++++++++++++++
            // +               DEV                  +
            // ++++++++++++++++++++++++++++++++++++++
            custom_smooth_pass: None,
            custom_cv_pass: None,
            custom_interval_pass: None,
            custom_fit_pass: None,
            custom_vertex_pass: None,
            custom_kdtree_builder: None,
            backend: None,
            parallel: None,
        }
    }

    // Build the online processor.
    pub fn build(self) -> Result<OnlineLoess<T>, LoessError> {
        if let Some(err) = self.deferred_error {
            return Err(err);
        }

        // Check for duplicate parameter configuration
        Validator::validate_no_duplicates(self.duplicate_param)?;

        // Validate fraction
        Validator::validate_fraction(self.fraction)?;

        // Validate iterations
        Validator::validate_iterations(self.iterations)?;

        // Validate configuration early
        Validator::validate_window_capacity(self.window_capacity, 3)?;
        Validator::validate_min_points(self.min_points, self.window_capacity)?;

        let capacity = self.window_capacity;
        Ok(OnlineLoess {
            config: self,
            window_x: VecDeque::with_capacity(capacity),
            window_y: VecDeque::with_capacity(capacity),
            scratch_x: Vec::with_capacity(capacity),
            scratch_y: Vec::with_capacity(capacity),
        })
    }
}

// Result of a single online update.
#[derive(Debug, Clone, PartialEq)]
pub struct OnlineOutput<T> {
    // Smoothed value for the latest point
    pub smoothed: T,

    // Standard error (if computed)
    pub std_error: Option<T>,

    // Residual (y - smoothed)
    pub residual: Option<T>,

    // Robustness weight for the latest point (if computed)
    pub robustness_weight: Option<T>,

    // Number of robustness iterations actually performed
    pub iterations_used: Option<usize>,
}

// Online LOESS processor for streaming data.
pub struct OnlineLoess<T: FloatLinalg + DistanceLinalg + SolverLinalg> {
    config: OnlineLoessBuilder<T>,
    window_x: VecDeque<T>,
    window_y: VecDeque<T>,
    // Pre-allocated scratch buffer for x values during smoothing
    scratch_x: Vec<T>,
    // Pre-allocated scratch buffer for y values during smoothing
    scratch_y: Vec<T>,
}

impl<T: FloatLinalg + DistanceLinalg + Debug + Send + Sync + 'static + SolverLinalg>
    OnlineLoess<T>
{
    // Add a new point and get its smoothed value.
    pub fn add_point(&mut self, x: &[T], y: T) -> Result<Option<OnlineOutput<T>>, LoessError> {
        // Validate new point
        let dimensions = self.config.dimensions;
        if x.len() != dimensions {
            return Err(LoessError::MismatchedInputs {
                x_len: x.len(),
                y_len: 1,
            });
        }
        for &xi in x {
            Validator::validate_scalar(xi, "x")?;
        }
        Validator::validate_scalar(y, "y")?;

        // Add to window
        for &xi in x {
            self.window_x.push_back(xi);
        }
        self.window_y.push_back(y);

        // Evict oldest if over capacity
        if self.window_y.len() > self.config.window_capacity {
            for _ in 0..dimensions {
                self.window_x.pop_front();
            }
            self.window_y.pop_front();
        }

        // Check if we have enough points
        if self.window_y.len() < self.config.min_points {
            return Ok(None);
        }

        // Convert window to vectors for smoothing using scratch buffers
        self.scratch_x.clear();
        self.scratch_y.clear();
        self.scratch_x.extend(self.window_x.iter().copied());
        self.scratch_y.extend(self.window_y.iter().copied());

        let x_vec = &self.scratch_x;
        let y_vec = &self.scratch_y;

        // Special case: exactly two points, use exact linear fit (1D only)
        if y_vec.len() == 2 && dimensions == 1 {
            let x0 = x_vec[0];
            let x1 = x_vec[1];
            let y0 = y_vec[0];
            let y1 = y_vec[1];

            let smoothed = if x1 != x0 {
                let last_x = x[0];
                let slope = (y1 - y0) / (x1 - x0);
                y0 + slope * (last_x - x0)
            } else {
                // Identical x: use mean for stability
                (y0 + y1) / T::from(2.0).unwrap()
            };

            let residual = y - smoothed;

            return Ok(Some(OnlineOutput {
                smoothed,
                std_error: None,
                residual: Some(residual),
                robustness_weight: Some(T::one()),
                iterations_used: None,
            }));
        }

        // Smooth using LOESS for windows of size >= 3

        // Choose update strategy based on configuration
        let (smoothed, std_err, rob_weight, iterations) = match self.config.update_mode {
            UpdateMode::Incremental => {
                // Incremental mode: single-pass fit (no robustness) for maximum performance.
                let n = x_vec.len() / self.config.dimensions;
                let cell_to_use = self.config.cell.unwrap_or(0.2);
                let limit = self.config.interpolation_vertices.unwrap_or(n);
                let cell_provided = self.config.cell.is_some();
                let limit_provided = self.config.interpolation_vertices.is_some();

                if self.config.surface_mode == SurfaceMode::Interpolation {
                    Validator::validate_interpolation_grid(
                        T::from(cell_to_use).unwrap_or_else(|| T::from(0.2).unwrap()),
                        self.config.fraction,
                        self.config.dimensions,
                        limit,
                        cell_provided,
                        limit_provided,
                    )?;
                }

                let config = LoessConfig {
                    fraction: Some(self.config.fraction),
                    iterations: 0, // No robustness for incremental mode (speed)
                    weight_function: self.config.weight_function,
                    robustness_method: self.config.robustness_method,
                    scaling_method: self.config.scaling_method,
                    zero_weight_fallback: self.config.zero_weight_fallback,
                    boundary_policy: self.config.boundary_policy,
                    polynomial_degree: self.config.polynomial_degree,
                    dimensions: self.config.dimensions,
                    distance_metric: self.config.distance_metric.clone(),
                    auto_converge: None,
                    cv_fractions: None,
                    cv_kind: None,
                    return_variance: None,
                    cv_seed: None,
                    surface_mode: self.config.surface_mode,
                    interpolation_vertices: self.config.interpolation_vertices,
                    cell: self.config.cell,
                    boundary_degree_fallback: self.config.boundary_degree_fallback,
                    custom_weights: None,
                    // ++++++++++++++++++++++++++++++++++++++
                    // +               DEV                  +
                    // ++++++++++++++++++++++++++++++++++++++
                    custom_smooth_pass: self.config.custom_smooth_pass,
                    custom_cv_pass: self.config.custom_cv_pass,
                    custom_interval_pass: self.config.custom_interval_pass,
                    custom_fit_pass: self.config.custom_fit_pass,
                    custom_vertex_pass: self.config.custom_vertex_pass,
                    custom_kdtree_builder: self.config.custom_kdtree_builder,
                    parallel: self.config.parallel.unwrap_or(false),
                    backend: self.config.backend,
                };

                let result = LoessExecutor::run_with_config(x_vec, y_vec, config);
                let smoothed_val = result.smoothed.last().copied().ok_or_else(|| {
                    LoessError::InvalidNumericValue("No smoothed output produced".into())
                })?;

                (smoothed_val, None, Some(T::one()), result.iterations)
            }
            UpdateMode::Full => {
                // Validate grid resolution
                let n = x_vec.len() / self.config.dimensions;
                let cell_to_use = self.config.cell.unwrap_or(0.2);
                let limit = self.config.interpolation_vertices.unwrap_or(n);
                let cell_provided = self.config.cell.is_some();
                let limit_provided = self.config.interpolation_vertices.is_some();

                if self.config.surface_mode == SurfaceMode::Interpolation {
                    Validator::validate_interpolation_grid(
                        T::from(cell_to_use).unwrap_or_else(|| T::from(0.2).unwrap()),
                        self.config.fraction,
                        self.config.dimensions,
                        limit,
                        cell_provided,
                        limit_provided,
                    )?;
                }

                // Full mode: re-smooth entire window
                let config = LoessConfig {
                    fraction: Some(self.config.fraction),
                    iterations: self.config.iterations,
                    weight_function: self.config.weight_function,
                    robustness_method: self.config.robustness_method,
                    scaling_method: self.config.scaling_method,
                    zero_weight_fallback: self.config.zero_weight_fallback,
                    boundary_policy: self.config.boundary_policy,
                    polynomial_degree: self.config.polynomial_degree,
                    dimensions: self.config.dimensions,
                    distance_metric: self.config.distance_metric.clone(),
                    auto_converge: self.config.auto_converge,
                    cv_fractions: None,
                    cv_kind: None,
                    return_variance: None,
                    cv_seed: None,
                    surface_mode: self.config.surface_mode,
                    interpolation_vertices: self.config.interpolation_vertices,
                    cell: self.config.cell,
                    boundary_degree_fallback: self.config.boundary_degree_fallback,
                    custom_weights: None,
                    // ++++++++++++++++++++++++++++++++++++++
                    // +               DEV                  +
                    // ++++++++++++++++++++++++++++++++++++++
                    custom_smooth_pass: self.config.custom_smooth_pass,
                    custom_cv_pass: self.config.custom_cv_pass,
                    custom_interval_pass: self.config.custom_interval_pass,
                    custom_fit_pass: self.config.custom_fit_pass,
                    custom_vertex_pass: self.config.custom_vertex_pass,
                    custom_kdtree_builder: self.config.custom_kdtree_builder,
                    parallel: self.config.parallel.unwrap_or(false),
                    backend: self.config.backend,
                };

                let result = LoessExecutor::run_with_config(x_vec, y_vec, config.clone());
                let smoothed_vec = result.smoothed;
                let se_vec = result.std_errors;

                let smoothed_val = smoothed_vec.last().copied().ok_or_else(|| {
                    LoessError::InvalidNumericValue("No smoothed output produced".into())
                })?;
                let std_err = se_vec.as_ref().and_then(|v| v.last().copied());
                let rob_weight = if self.config.return_robustness_weights {
                    result.robustness_weights.last().copied()
                } else {
                    None
                };

                (smoothed_val, std_err, rob_weight, result.iterations)
            }
        };

        let residual = y - smoothed;

        Ok(Some(OnlineOutput {
            smoothed,
            std_error: std_err,
            residual: Some(residual),
            robustness_weight: rob_weight,
            iterations_used: iterations,
        }))
    }

    // Get the current window size.
    pub fn window_size(&self) -> usize {
        self.window_x.len()
    }

    // Clear the window.
    pub fn reset(&mut self) {
        self.window_x.clear();
        self.window_y.clear();
    }
}