1 write to Source
Microsoft.ML.Data (1)
Transforms\ColumnConcatenatingTransformer.cs (1)
89taggedColumn.Source = res.Source.Select(s => new KeyValuePair<string, string>(null, s)).ToArray();
5 references to Source
Microsoft.ML.Data (5)
Transforms\ColumnConcatenatingTransformer.cs (5)
96if (Source == null || Source.Any(kvp => !string.IsNullOrEmpty(kvp.Key))) 100column.Source = Source.Select(kvp => kvp.Value).ToArray(); 397env.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))))