3 writes to _batch
Microsoft.ML.TimeSeries (3)
SrCnnEntireAnomalyDetector.cs (3)
282_batch = new List<double>(); 287_batch = new List<double>(batchSize); 332_batch = tempBatch;
11 references to _batch
Microsoft.ML.TimeSeries (11)
SrCnnEntireAnomalyDetector.cs (11)
294_batch.Add(value); 297public int Count => _batch.Count; 301_batchSize = _batch.Count; 302if (_batch.Count < MinBatchSize) 308_bLen = _previousBatch.Count - _batch.Count; 309_previousBatch = _previousBatch.GetRange(_batch.Count, _bLen); 310_previousBatch.AddRange(_batch); 314for (int i = 0; i < _batch.Count; ++i) 324_modeler.Train(_batch.ToArray(), ref _results); 331_previousBatch = _batch; 333_batch.Clear();