4 writes to AlertThreshold
Microsoft.ML.TimeSeries (4)
IidChangePointDetector.cs (1)
86AlertThreshold = transform.InternalTransform.AlertThreshold;
IidSpikeDetector.cs (2)
68AlertThreshold = 1 - options.Confidence / 100; 79AlertThreshold = transform.InternalTransform.AlertThreshold;
SsaSpikeDetector.cs (1)
80AlertThreshold = 1 - options.Confidence / 100;
4 references to AlertThreshold
Microsoft.ML.TimeSeries (4)
SequentialAnomalyDetectionTransformBase.cs (3)
181Host.CheckUserArg(alertThreshold >= 0, nameof(ArgumentsBase.AlertThreshold), "Must be non-negative."); 182Host.CheckUserArg(alertingScore != AlertingScore.PValueScore || (0 <= alertThreshold && alertThreshold <= 1), nameof(ArgumentsBase.AlertThreshold), "Must be in [0,1]."); 194args.AlertOn, args.PowerMartingaleEpsilon, args.AlertThreshold)
SsaAnomalyDetectionBase.cs (1)
192: base(options.WindowSize, 0, options.Source, options.Name, name, env, options.Side, options.Martingale, options.AlertOn, options.PowerMartingaleEpsilon, options.AlertThreshold)