7 writes to _nextPrediction
Microsoft.ML.TimeSeries (7)
AdaptiveSingularSpectrumSequenceModeler.cs (7)
316
_nextPrediction
= model._nextPrediction;
409
_nextPrediction
= ctx.Reader.ReadSingle();
1144
_nextPrediction
= _autoregressionNoiseMean + _observationNoiseMean;
1148
_nextPrediction
+= _state[i] * _alpha[i];
1151
_nextPrediction
+= _state[_windowSize - 2] * _alpha[_windowSize - 2];
1376
_nextPrediction
= _autoregressionNoiseMean + _observationNoiseMean;
1398
_nextPrediction
+= _state[i - 1] * _alpha[i - 1];
4 references to _nextPrediction
Microsoft.ML.TimeSeries (4)
AdaptiveSingularSpectrumSequenceModeler.cs (4)
316
_nextPrediction = model.
_nextPrediction
;
501
ctx.Writer.Write(
_nextPrediction
);
1436
resEditor.Values[0] =
_nextPrediction
;
1487
output =
_nextPrediction
;