2 writes to _bindings
Microsoft.ML.TimeSeries (2)
SequentialTransformerBase.cs (2)
763_bindings = new ColumnBindings(input.Schema, mapper.GetOutputColumns()); 780_bindings = new ColumnBindings(input.Schema, _mapper.GetOutputColumns());
14 references to _bindings
Microsoft.ML.TimeSeries (14)
SequentialTransformerBase.cs (14)
752public override DataViewSchema OutputSchema => _bindings.Schema; 812int n = _bindings.Schema.Count; 816var activeInput = _bindings.GetActiveInput(predicate); 817Contracts.Assert(activeInput.Length == _bindings.InputSchema.Count); 842return _bindings.Schema.Where(col => predicateInput(col.Index)); 848Contracts.Assert(active.Length == _bindings.Schema.Count); 853Contracts.Assert(0 <= col && col < _bindings.AddedColumnIndices.Count); 854return 0 <= col && col < _bindings.AddedColumnIndices.Count && active[_bindings.AddedColumnIndices[col]]; 861if (_bindings.AddedColumnIndices.Any(predicate)) 887if (inputs.Length == 1 && n > 1 && _bindings.AddedColumnIndices.Any(predicate)) 986int index = _parent._bindings.MapColumnIndex(out isSrc, column.Index); 1010int index = _parent._bindings.MapColumnIndex(out isSrc, column.Index); 1033_bindings = parent._bindings;