2 instantiations of SsaForecastingBase
Microsoft.ML.TimeSeries (2)
SsaForecastingBase.cs (2)
109InternalTransform = new SsaForecastingBase(options, name, env, this); 114InternalTransform = new SsaForecastingBase(env, ctx, name);
6 references to SsaForecastingBase
Microsoft.ML.TimeSeries (6)
SSaForecasting.cs (1)
164clone.InternalTransform.StateRef = (SsaForecastingBase.State)clone.InternalTransform.StateRef.Clone();
SsaForecastingBase.cs (5)
16/// The wrapper to <see cref="SsaForecastingBase"/> that implements the general anomaly detection transform based on Singular Spectrum modeling of the time-series. 105internal SsaForecastingBase InternalTransform; 121internal sealed class SsaForecastingBase : SequentialForecastingTransformBase<float, SsaForecastingBase.State> 215private SsaForecastingBase _parentForecaster; 255_parentForecaster = (SsaForecastingBase)Parent;