1 write to Input
Microsoft.ML.Data (1)
Transforms\ColumnBindingsBase.cs (1)
309
Input
= input;
18 references to Input
Microsoft.ML.Data (18)
Scorers\RowToRowScorerBase.cs (2)
94
Contracts.Assert(activeInput.Length == bindings.
Input
.Count);
104
var activeInCols = bindings.
Input
.Where(c => c.Index < activeInput.Length && activeInput[c.Index]);
Transforms\ColumnBindingsBase.cs (11)
343
ComputeColumnMapping(
Input
, names, out _colMap, out _mapIinfoToCol);
429
Contracts.Assert(index <
Input
.Count);
467
if (
Input
.TryGetColumnIndex(name, out src))
469
Contracts.Assert(0 <= src && src <
Input
.Count);
494
return
Input
[index].Name;
505
return
Input
[index].Type;
516
return
Input
[index].Annotations.Schema.Select(c => new KeyValuePair<string, DataViewType>(c.Name, c.Type));
529
return
Input
[index].Annotations.Schema.GetColumnOrNull(kind)?.Type;
542
Input
[index].Annotations.GetValue(kind, ref value);
607
var active = new bool[
Input
.Count];
611
Contracts.Assert(-InfoCount <= src && src <
Input
.Count);
Transforms\GenerateNumberTransform.cs (1)
236
Contracts.Assert(active.Length ==
Input
.Count);
Transforms\PerGroupTransformBase.cs (1)
66
var active = new bool[
Input
.Count];
Transforms\TransformBase.cs (3)
425
ctx.SaveNonEmptyString(
Input
[info.Source].Name);
436
var active = new bool[
Input
.Count];
447
return
Input
.Where(col => col.Index < active.Length && active[col.Index]);