1 write to Source
Microsoft.ML.Data (1)
Transforms\ColumnConcatenatingTransformer.cs (1)
89
taggedColumn.
Source
= res.Source.Select(s => new KeyValuePair<string, string>(null, s)).ToArray();
5 references to Source
Microsoft.ML.Data (5)
Transforms\ColumnConcatenatingTransformer.cs (5)
96
if (
Source
== null ||
Source
.Any(kvp => !string.IsNullOrEmpty(kvp.Key)))
100
column.Source =
Source
.Select(kvp => kvp.Value).ToArray();
397
env.CheckUserArg(Utils.Size(options.Columns[i].
Source
) > 0, nameof(options.Columns));
400
.Select(c => new ColumnOptions(c.Name, c.
Source
.Select(kvp => (kvp.Value, kvp.Key != "" ? kvp.Key : null))))