2 writes to AlertThreshold
Microsoft.ML.TimeSeries (2)
SrCnnTransformBase.cs (2)
83AlertThreshold = alertThreshold; 110AlertThreshold = ctx.Reader.ReadDouble();
7 references to AlertThreshold
Microsoft.ML.TimeSeries (7)
SrCnnAnomalyDetectionBase.cs (1)
235var detres = score > Parent.AlertThreshold ? 1 : 0;
SRCNNAnomalyDetector.cs (1)
97Threshold = transform.InternalTransform.AlertThreshold;
SrCnnTransformBase.cs (5)
111Host.CheckDecode(AlertThreshold >= 0 && AlertThreshold <= 1); 131Host.Assert(AlertThreshold >= 0 && AlertThreshold <= 1); 138ctx.Writer.Write(AlertThreshold);