6 writes to Source
Microsoft.ML.Data (6)
Transforms\ColumnBindingsBase.cs (4)
140Source = new string[] { str }; 150Source = src.Split(','); 171Source = new string[] { str }; 193Source = src.Split(',');
Transforms\ColumnConcatenatingTransformer.cs (2)
100column.Source = Source.Select(kvp => kvp.Value).ToArray(); 116Source = source
14 references to Source
Microsoft.ML.Data (14)
Transforms\ColumnBindingsBase.cs (10)
151return Source.All(s => !string.IsNullOrEmpty(s)); 194return Source.All(s => !string.IsNullOrEmpty(s)); 201if (string.IsNullOrWhiteSpace(Name) || Utils.Size(Source) == 0) 205if (Source.Any(x => CmdQuoter.NeedsQuoting(x) || x.Contains(","))) 207if (Source.Length == 1 && Source[0] == Name) 214foreach (var src in Source) 226if (string.IsNullOrWhiteSpace(Name) || Utils.Size(Source) == 0) 230if (Source.Any(x => CmdQuoter.NeedsQuoting(x) || x.Contains(","))) 234foreach (var src in Source)
Transforms\ColumnConcatenatingTransformer.cs (4)
86Contracts.AssertValue(res.Source); 89taggedColumn.Source = res.Source.Select(s => new KeyValuePair<string, string>(null, s)).ToArray(); 377env.CheckUserArg(Utils.Size(options.Columns[i].Source) > 0, nameof(options.Columns)); 380.Select(c => new ColumnOptions(c.Name, c.Source))