1 write to _parent
Microsoft.ML.TimeSeries (1)
SequentialForecastingTransformBase.cs (1)
120_parent = parent;
18 references to _parent
Microsoft.ML.TimeSeries (18)
SequentialForecastingTransformBase.cs (18)
122State = (ForecastingStateBase)_parent.StateRef; 130if (!string.IsNullOrEmpty(_parent.ConfidenceUpperBoundColumn)) 133info[0] = new DetachedColumn(_parent.OutputColumnName, new VectorDataViewType(NumberDataViewType.Single, _parent._outputLength)); 134info[1] = new DetachedColumn(_parent.ConfidenceLowerBoundColumn, new VectorDataViewType(NumberDataViewType.Single, _parent._outputLength)); 135info[2] = new DetachedColumn(_parent.ConfidenceUpperBoundColumn, new VectorDataViewType(NumberDataViewType.Single, _parent._outputLength)); 140info[0] = new DetachedColumn(_parent.OutputColumnName, new VectorDataViewType(NumberDataViewType.Single, _parent._outputLength)); 154void ICanSaveModel.Save(ModelSaveContext ctx) => _parent.SaveModel(ctx); 159var getters = string.IsNullOrEmpty(_parent.ConfidenceUpperBoundColumn) ? new Delegate[1] : new Delegate[3]; 171if (!string.IsNullOrEmpty(_parent.ConfidenceUpperBoundColumn)) 202ProcessData processData = _parent.WindowSize > 0 ? 250state.UpdateState(ref src, args.RowPosition, _parent.WindowSize > 0); 257if (Interlocked.Increment(ref _parent.StateRefCount) > 1) 259State = (ForecastingStateBase)_parent.StateRef.Clone(); 265return _parent;