1 write to _cumSumList
Microsoft.ML.TimeSeries (1)
SrCnnEntireAnomalyDetector.cs (1)
683Array.Resize(ref _cumSumList, length);
8 references to _cumSumList
Microsoft.ML.TimeSeries (8)
SrCnnEntireAnomalyDetector.cs (8)
582_spectralList[i] = Math.Exp(_magLogList[i] - _cumSumList[i]); 616_cumSumList[i] = _cumSumList[Math.Min(length, _minimumScoreWindowSize) - 1]; 622var score = CalculateScore(_ifftMagList[i], _cumSumList[i]); 689_cumSumList[i] = cumsum; 694_cumSumList[i] = (_cumSumList[i] - _cumSumShift[i - n]) / n; 698_cumSumList[i] /= (i + 1);