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)
752
public override DataViewSchema OutputSchema =>
_bindings
.Schema;
812
int n =
_bindings
.Schema.Count;
816
var activeInput =
_bindings
.GetActiveInput(predicate);
817
Contracts.Assert(activeInput.Length ==
_bindings
.InputSchema.Count);
842
return
_bindings
.Schema.Where(col => predicateInput(col.Index));
848
Contracts.Assert(active.Length ==
_bindings
.Schema.Count);
853
Contracts.Assert(0 <= col && col <
_bindings
.AddedColumnIndices.Count);
854
return 0 <= col && col <
_bindings
.AddedColumnIndices.Count && active[
_bindings
.AddedColumnIndices[col]];
861
if (
_bindings
.AddedColumnIndices.Any(predicate))
887
if (inputs.Length == 1 && n > 1 &&
_bindings
.AddedColumnIndices.Any(predicate))
986
int index = _parent.
_bindings
.MapColumnIndex(out isSrc, column.Index);
1010
int index = _parent.
_bindings
.MapColumnIndex(out isSrc, column.Index);
1033
_bindings = parent.
_bindings
;