5 writes to _logMartingaleValue
Microsoft.ML.TimeSeries (5)
SequentialAnomalyDetectionTransformBase.cs (5)
460
_logMartingaleValue
= reader.ReadDouble();
605
_logMartingaleValue
+= LogMartingaleUpdateBuffer.Capacity * martingaleUpdate;
609
_logMartingaleValue
+= martingaleUpdate;
610
_logMartingaleValue
-= LogMartingaleUpdateBuffer.PeekFirst();
669
_logMartingaleValue
= 0;
3 references to _logMartingaleValue
Microsoft.ML.TimeSeries (3)
SequentialAnomalyDetectionTransformBase.cs (3)
443
protected Double LatestMartingaleScore => Math.Exp(
_logMartingaleValue
);
470
writer.Write(
_logMartingaleValue
);
614
result.Values[3] = Math.Exp(
_logMartingaleValue
);