2 writes to _bindings
Microsoft.ML.Data (2)
DataView\RowToRowMapperTransform.cs (2)
102
_bindings
= new ColumnBindings(input.Schema, mapper.GetOutputColumns());
118
_bindings
= new ColumnBindings(input.Schema, _mapper.GetOutputColumns());
14 references to _bindings
Microsoft.ML.Data (14)
DataView\RowToRowMapperTransform.cs (14)
89
public override DataViewSchema OutputSchema =>
_bindings
.Schema;
149
int n =
_bindings
.Schema.Count;
153
var activeInput =
_bindings
.GetActiveInput(predicate);
154
Contracts.Assert(activeInput.Length ==
_bindings
.InputSchema.Count);
163
inputColumns =
_bindings
.InputSchema.Where(col => activeInput[col.Index] || predicateIn(col.Index));
171
Contracts.Assert(active.Length ==
_bindings
.Schema.Count);
176
Contracts.Assert(0 <= col && col <
_bindings
.AddedColumnIndices.Count);
177
return 0 <= col && col <
_bindings
.AddedColumnIndices.Count && active[
_bindings
.AddedColumnIndices[col]];
184
if (
_bindings
.AddedColumnIndices.Any(predicate))
207
if (inputs.Length == 1 && n > 1 &&
_bindings
.AddedColumnIndices.Any(predicate))
332
int index = _parent.
_bindings
.MapColumnIndex(out isSrc, column.Index);
351
int index = _parent.
_bindings
.MapColumnIndex(out isSrc, column.Index);
374
_bindings = parent.
_bindings
;