6 references to DetectChangePointBySsa
Microsoft.ML.Samples (3)
Dynamic\Transforms\TimeSeries\DetectChangePointBySsa.cs (1)
59ITransformer model = ml.Transforms.DetectChangePointBySsa(
Dynamic\Transforms\TimeSeries\DetectChangePointBySsaBatchPrediction.cs (1)
61var transformedData = ml.Transforms.DetectChangePointBySsa(
Dynamic\Transforms\TimeSeries\DetectChangePointBySsaStream.cs (1)
59ITransformer model = ml.Transforms.DetectChangePointBySsa(
Microsoft.ML.TimeSeries (2)
ExtensionsCatalog.cs (1)
141=> DetectChangePointBySsa(catalog, outputColumnName, inputColumnName, (double)confidence, changeHistoryLength, trainingWindowSize, seasonalityWindowSize, errorFunction, martingale, eps);
SsaChangePointDetector.cs (1)
229/// <seealso cref="Microsoft.ML.TimeSeriesCatalog.DetectChangePointBySsa(Microsoft.ML.TransformsCatalog,System.String,System.String,System.Double,System.Int32,System.Int32,System.Int32,Microsoft.ML.Transforms.TimeSeries.ErrorFunction,Microsoft.ML.Transforms.TimeSeries.MartingaleType,System.Double)" />
Microsoft.ML.TimeSeries.Tests (1)
TimeSeriesSimpleApiTests.cs (1)
96var learningPipeline = ML.Transforms.DetectChangePointBySsa("Data", "Value", 95.0d, changeHistorySize, maxTrainingSize, seasonalitySize);