4 writes to _previousBatch
Microsoft.ML.TimeSeries (4)
SrCnnEntireAnomalyDetector.cs (4)
281
_previousBatch
= new List<double>();
286
_previousBatch
= new List<double>(batchSize);
309
_previousBatch
= _previousBatch.GetRange(_batch.Count, _bLen);
331
_previousBatch
= _batch;
6 references to _previousBatch
Microsoft.ML.TimeSeries (6)
SrCnnEntireAnomalyDetector.cs (6)
304
if (
_previousBatch
.Count == 0)
308
_bLen =
_previousBatch
.Count - _batch.Count;
309
_previousBatch =
_previousBatch
.GetRange(_batch.Count, _bLen);
310
_previousBatch
.AddRange(_batch);
311
_modeler.Train(
_previousBatch
.ToArray(), ref _results);
330
var tempBatch =
_previousBatch
;