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; 501ctx.Writer.Write(_nextPrediction); 1436resEditor.Values[0] = _nextPrediction; 1487output = _nextPrediction;