4 writes to Source
Microsoft.ML.Data (1)
Transforms\ColumnConcatenatingTransformer.cs (1)
89
taggedColumn.
Source
= res.Source.Select(s => new KeyValuePair<string, string>(null, s)).ToArray();
Microsoft.ML.EntryPoints (1)
FeatureCombiner.cs (1)
80
new[] { new ColumnConcatenatingTransformer.TaggedColumn() { Name = nameFeat,
Source
= concatNames.ToArray() } }
Microsoft.ML.Transforms (2)
MissingValueHandlingTransformer.cs (2)
199
Source
= new[] {
210
Source
= new[]
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))))