2 instantiations of SsaChangePointEstimator
Microsoft.ML.TimeSeries (2)
ExtensionsCatalog.cs (1)
169
=> new
SsaChangePointEstimator
(CatalogUtils.GetEnvironment(catalog), new SsaChangePointDetector.Options
TimeSeriesProcessing.cs (1)
106
var 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
138
public static
SsaChangePointEstimator
DetectChangePointBySsa(this TransformsCatalog catalog, string outputColumnName, string inputColumnName,
144
/// Create <see cref="
SsaChangePointEstimator
"/>, which predicts change points in time series
166
public 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)
63
var
pipe = new SsaChangePointEstimator(Env, "Change",
TimeSeriesSimpleApiTests.cs (1)
96
var
learningPipeline = ML.Transforms.DetectChangePointBySsa("Data", "Value", 95.0d, changeHistorySize, maxTrainingSize, seasonalitySize);