8 writes to AlertThreshold
Microsoft.ML.TimeSeries (8)
IidChangePointDetector.cs (3)
124
InternalTransform.
AlertThreshold
= Double.MaxValue;
127
InternalTransform.
AlertThreshold
= Math.Exp(InternalTransform.WindowSize * InternalTransform.LogPowerMartigaleBettingFunc(1 - options.Confidence / 100, InternalTransform.PowerMartingaleEpsilon));
130
InternalTransform.
AlertThreshold
= Math.Exp(InternalTransform.WindowSize * InternalTransform.LogMixtureMartigaleBettingFunc(1 - options.Confidence / 100));
SequentialAnomalyDetectionTransformBase.cs (2)
188
AlertThreshold
= alertThreshold;
228
AlertThreshold
= ctx.Reader.ReadDouble();
SsaChangePointDetector.cs (3)
134
InternalTransform.
AlertThreshold
= Double.MaxValue;
137
InternalTransform.
AlertThreshold
= Math.Exp(InternalTransform.WindowSize * InternalTransform.LogPowerMartigaleBettingFunc(1 - options.Confidence / 100, InternalTransform.PowerMartingaleEpsilon));
140
InternalTransform.
AlertThreshold
= Math.Exp(InternalTransform.WindowSize * InternalTransform.LogMixtureMartigaleBettingFunc(1 - options.Confidence / 100));
12 references to AlertThreshold
Microsoft.ML.TimeSeries (12)
IidChangePointDetector.cs (1)
86
AlertThreshold = transform.InternalTransform.
AlertThreshold
;
IidSpikeDetector.cs (1)
79
AlertThreshold = transform.InternalTransform.
AlertThreshold
;
SequentialAnomalyDetectionTransformBase.cs (10)
229
Host.CheckDecode(
AlertThreshold
>= 0);
230
Host.CheckDecode(ThresholdScore != AlertingScore.PValueScore || (0 <=
AlertThreshold
&&
AlertThreshold
<= 1));
246
Host.Assert(
AlertThreshold
>= 0);
247
Host.Assert(ThresholdScore != AlertingScore.PValueScore || (0 <=
AlertThreshold
&&
AlertThreshold
<= 1));
262
ctx.Writer.Write(
AlertThreshold
);
627
alert = rawScore >= Parent.
AlertThreshold
;
630
alert = result.Values[2] <= Parent.
AlertThreshold
;
633
alert = (Parent.Martingale != MartingaleType.None) && (result.Values[3] >= Parent.
AlertThreshold
);