2 instantiations of SsaAnomalyDetectionBase
Microsoft.ML.TimeSeries (2)
SsaAnomalyDetectionBase.cs (2)
169InternalTransform = new SsaAnomalyDetectionBase(options, name, env, this); 174InternalTransform = new SsaAnomalyDetectionBase(env, ctx, name);
7 references to SsaAnomalyDetectionBase
Microsoft.ML.TimeSeries (7)
SsaAnomalyDetectionBase.cs (5)
83/// The wrapper to <see cref="SsaAnomalyDetectionBase"/> that implements the general anomaly detection transform based on Singular Spectrum modeling of the time-series. 165internal SsaAnomalyDetectionBase InternalTransform; 181internal sealed class SsaAnomalyDetectionBase : SequentialAnomalyDetectionTransformBase<float, SsaAnomalyDetectionBase.State> 297private SsaAnomalyDetectionBase _parentAnomalyDetector; 337_parentAnomalyDetector = (SsaAnomalyDetectionBase)Parent;
SsaChangePointDetector.cs (1)
123clone.InternalTransform.StateRef = (SsaAnomalyDetectionBase.State)clone.InternalTransform.StateRef.Clone();
SsaSpikeDetector.cs (1)
136clone.InternalTransform.StateRef = (SsaAnomalyDetectionBase.State)clone.InternalTransform.StateRef.Clone();