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)
304if (_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); 330var tempBatch = _previousBatch;