2 writes to Columns
Microsoft.ML.Data (2)
Evaluators\EvaluatorUtils.cs (1)
1778filterArgs.Columns = new[] { MetricKinds.ColumnNames.StratCol };
Transforms\NAFilter.cs (1)
89: this(env, new Arguments() { Columns = columns, Complement = complement }, input)
7 references to Columns
Microsoft.ML.Data (7)
Transforms\NAFilter.cs (7)
98Host.CheckUserArg(Utils.Size(args.Columns) > 0, nameof(args.Columns)); 101_infos = new ColInfo[args.Columns.Length]; 107string src = args.Columns[i]; 110throw Host.ExceptUserArg(nameof(args.Columns), "Source column '{0}' not found", src); 112throw Host.ExceptUserArg(nameof(args.Columns), "Source column '{0}' specified multiple times", src); 116throw Host.ExceptUserArg(nameof(args.Columns), $"Column '{src}' has type {type} which does not support missing values, so we cannot filter on them", src);