1 write to _host
Microsoft.ML.TimeSeries (1)
SsaChangePointDetector.cs (1)
276
_host
= env.Register(nameof(SsaChangePointEstimator));
7 references to _host
Microsoft.ML.TimeSeries (7)
SsaChangePointDetector.cs (7)
278
_host
.CheckNonEmpty(options.Name, nameof(options.Name));
279
_host
.CheckNonEmpty(options.Source, nameof(options.Source));
289
_host
.CheckValue(input, nameof(input));
290
return new SsaChangePointDetector(
_host
, _options, input);
299
_host
.CheckValue(inputSchema, nameof(inputSchema));
302
throw
_host
.ExceptSchemaMismatch(nameof(inputSchema), "input", _options.Source);
304
throw
_host
.ExceptSchemaMismatch(nameof(inputSchema), "input", _options.Source, "Single", col.GetTypeString());