4 instantiations of SsaChangePointDetector
Microsoft.ML.TimeSeries (4)
SsaChangePointDetector.cs (4)
116
return new
SsaChangePointDetector
(env, options, input).MakeDataTransform(input);
155
return new
SsaChangePointDetector
(env, ctx).MakeDataTransform(input);
165
return new
SsaChangePointDetector
(env, ctx);
290
return new
SsaChangePointDetector
(_host, _options, input);
36 references to SsaChangePointDetector
Microsoft.ML.TimeSeries (31)
ExtensionsCatalog.cs (1)
169
=> new SsaChangePointEstimator(CatalogUtils.GetEnvironment(catalog), new
SsaChangePointDetector
.Options
SsaChangePointDetector.cs (26)
14
[assembly: LoadableClass(
SsaChangePointDetector
.Summary, typeof(IDataTransform), typeof(
SsaChangePointDetector
), typeof(
SsaChangePointDetector
.Options), typeof(SignatureDataTransform),
15
SsaChangePointDetector
.UserName,
SsaChangePointDetector
.LoaderSignature,
SsaChangePointDetector
.ShortName)]
17
[assembly: LoadableClass(
SsaChangePointDetector
.Summary, typeof(IDataTransform), typeof(
SsaChangePointDetector
), null, typeof(SignatureLoadDataTransform),
18
SsaChangePointDetector
.UserName,
SsaChangePointDetector
.LoaderSignature)]
20
[assembly: LoadableClass(
SsaChangePointDetector
.Summary, typeof(
SsaChangePointDetector
), null, typeof(SignatureLoadModel),
21
SsaChangePointDetector
.UserName,
SsaChangePointDetector
.LoaderSignature)]
23
[assembly: LoadableClass(typeof(IRowMapper), typeof(
SsaChangePointDetector
), null, typeof(SignatureLoadRowMapper),
24
SsaChangePointDetector
.UserName,
SsaChangePointDetector
.LoaderSignature)]
100
loaderAssemblyName: typeof(
SsaChangePointDetector
).Assembly.FullName);
121
var
clone = (
SsaChangePointDetector
)MemberwiseClone();
159
internal static
SsaChangePointDetector
Create(IHostEnvironment env, ModelLoadContext ctx)
230
public sealed class SsaChangePointEstimator : IEstimator<
SsaChangePointDetector
>
233
private readonly
SsaChangePointDetector
.Options _options;
258
: this(env, new
SsaChangePointDetector
.Options
273
internal SsaChangePointEstimator(IHostEnvironment env,
SsaChangePointDetector
.Options options)
287
public
SsaChangePointDetector
Fit(IDataView input)
TimeSeriesProcessing.cs (4)
100
[TlcModule.EntryPoint(Desc = TimeSeries.
SsaChangePointDetector
.Summary,
101
UserName = TimeSeries.
SsaChangePointDetector
.UserName,
102
ShortName = TimeSeries.
SsaChangePointDetector
.ShortName)]
103
internal static CommonOutputs.TransformOutput SsaChangePointDetector(IHostEnvironment env,
SsaChangePointDetector
.Options options)
Microsoft.ML.TimeSeries.Tests (5)
TimeSeriesDirectApi.cs (4)
160
var args = new
SsaChangePointDetector
.Options()
178
var
detector = new SsaChangePointEstimator(env, args).Fit(dataView);
228
.Append(new SsaChangePointEstimator(ml, new
SsaChangePointDetector
.Options()
305
.Append(new SsaChangePointEstimator(ml, new
SsaChangePointDetector
.Options()
TimeSeriesSimpleApiTests.cs (1)
98
var
detector = learningPipeline.Fit(dataView);