14 references to MartingaleScore
Microsoft.ML.TimeSeries (14)
IidChangePointDetector.cs (4)
74AlertOn = AlertingScore.MartingaleScore; 85AlertOn = AlertingScore.MartingaleScore; 164InternalTransform.Host.CheckDecode(InternalTransform.ThresholdScore == AlertingScore.MartingaleScore); 179InternalTransform.Host.Assert(InternalTransform.ThresholdScore == AlertingScore.MartingaleScore);
SequentialAnomalyDetectionTransformBase.cs (7)
104public AlertingScore AlertOn = AlertingScore.MartingaleScore; 161case AlertingScore.MartingaleScore: 176Host.CheckUserArg(martingale != MartingaleType.None || alertingScore != AlertingScore.MartingaleScore, nameof(ArgumentsBase.Martingale), "A martingale type should be specified if alerting is based on the martingale score."); 218Host.CheckDecode(Martingale != MartingaleType.None || ThresholdScore != AlertingScore.MartingaleScore); 242Host.Assert(Martingale != MartingaleType.None || ThresholdScore != AlertingScore.MartingaleScore); 587if (Parent.Martingale != MartingaleType.None && Parent.ThresholdScore == AlertingScore.MartingaleScore) 632case AlertingScore.MartingaleScore:
SsaChangePointDetector.cs (3)
86AlertOn = AlertingScore.MartingaleScore; 174InternalTransform.Host.CheckDecode(InternalTransform.ThresholdScore == AlertingScore.MartingaleScore); 186InternalTransform.Host.Assert(InternalTransform.ThresholdScore == AlertingScore.MartingaleScore);