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);
297
public int Count =>
_batch
.Count;
301
_batchSize =
_batch
.Count;
302
if (
_batch
.Count < MinBatchSize)
308
_bLen = _previousBatch.Count -
_batch
.Count;
309
_previousBatch = _previousBatch.GetRange(
_batch
.Count, _bLen);
310
_previousBatch.AddRange(
_batch
);
314
for (int i = 0; i <
_batch
.Count; ++i)
324
_modeler.Train(
_batch
.ToArray(), ref _results);
331
_previousBatch =
_batch
;
333
_batch
.Clear();