2 writes to Columns
Microsoft.ML.Data (1)
Transforms\LabelIndicatorTransform.cs (1)
129
: this(env, new Options() {
Columns
= new[] { new Column() { Source = source ?? name, Name = name } }, ClassIndex = classIndex }, input)
Microsoft.ML.EntryPoints (1)
OneVersusAllMacro.cs (1)
58
labelIndicatorArgs.
Columns
= new[] { new LabelIndicatorTransform.Column() { Name = label, Source = label } };
3 references to Columns
Microsoft.ML.Data (3)
Transforms\LabelIndicatorTransform.cs (3)
134
: base(env, LoadName, Contracts.CheckRef(options, nameof(options)).
Columns
,
138
Host.Assert(Infos.Length == Utils.Size(options.
Columns
));
142
_classIndex[iinfo] = options.
Columns
[iinfo].ClassIndex ?? options.ClassIndex;