2 instantiations of SsaChangePointEstimator
Microsoft.ML.TimeSeries (2)
ExtensionsCatalog.cs (1)
169=> new SsaChangePointEstimator(CatalogUtils.GetEnvironment(catalog), new SsaChangePointDetector.Options
TimeSeriesProcessing.cs (1)
106var view = new SsaChangePointEstimator(h, options).Fit(options.Data).Transform(options.Data);
9 references to SsaChangePointEstimator
Microsoft.ML.TimeSeries (7)
ExtensionsCatalog.cs (4)
115/// Create <see cref="SsaChangePointEstimator"/>, which predicts change points in time series 138public static SsaChangePointEstimator DetectChangePointBySsa(this TransformsCatalog catalog, string outputColumnName, string inputColumnName, 144/// Create <see cref="SsaChangePointEstimator"/>, which predicts change points in time series 166public static SsaChangePointEstimator DetectChangePointBySsa(this TransformsCatalog catalog, string outputColumnName, string inputColumnName,
SsaChangePointDetector.cs (3)
29/// <see cref="ITransformer"/> resulting from fitting a <see cref="SsaChangePointEstimator"/>. 236/// Create a new instance of <see cref="SsaChangePointEstimator"/> 276_host = env.Register(nameof(SsaChangePointEstimator));
Microsoft.ML.TimeSeries.Tests (2)
TimeSeriesEstimatorTests.cs (1)
63var pipe = new SsaChangePointEstimator(Env, "Change",
TimeSeriesSimpleApiTests.cs (1)
96var learningPipeline = ML.Transforms.DetectChangePointBySsa("Data", "Value", 95.0d, changeHistorySize, maxTrainingSize, seasonalitySize);