14 writes to Name
Microsoft.ML.Core.Tests (2)
UnitTests\TestEntryPoints.cs (2)
1820{Name = "Features", Source = new[] {"Text"}}, 4455Columns = new[] { new ColumnConcatenatingTransformer.Column { Name = "Features", Source = new[] { "Categories", "NumericFeatures" } } }
Microsoft.ML.Data (6)
Transforms\ColumnBindingsBase.cs (4)
139Name = str; 146Name = str.Substring(0, ich); 170Name = str; 177Name = str.Substring(0, ich);
Transforms\ColumnConcatenatingTransformer.cs (2)
99column.Name = Name; 115Name = name,
Microsoft.ML.Transforms (6)
Text\TextFeaturizingEstimator.cs (2)
523Name = dstCol, 556Name = charFeatureCol
Text\WordHashBagProducingTransform.cs (2)
122Name = column.Name, 394Name = cols[i].Name,
Text\WrappedTextTransformers.cs (2)
201Columns = _columns.Select(x => new WordBagBuildingTransformer.Column { Name = x.outputColumnName, Source = x.sourceColumnsNames }).ToArray(), 380Columns = _columns.Select(x => new WordHashBagProducingTransformer.Column { Name = x.outputColumnName, Source = x.inputColumnNames }).ToArray(),
33 references to Name
Microsoft.ML.Data (10)
Transforms\ColumnBindingsBase.cs (8)
201if (string.IsNullOrWhiteSpace(Name) || Utils.Size(Source) == 0) 203if (CmdQuoter.NeedsQuoting(Name)) 207if (Source.Length == 1 && Source[0] == Name) 209sb.Append(Name); 212sb.Append(Name).Append(':'); 226if (string.IsNullOrWhiteSpace(Name) || Utils.Size(Source) == 0) 228if (CmdQuoter.NeedsQuoting(Name)) 232sb.Append(Name).Append(':').Append(extra).Append(':');
Transforms\ColumnConcatenatingTransformer.cs (2)
88taggedColumn.Name = res.Name; 380.Select(c => new ColumnOptions(c.Name, c.Source))
Microsoft.ML.Transforms (23)
ExpressionTransformer.cs (2)
322columns[i] = new ExpressionEstimator.ColumnOptions(options.Column[i].Name, 323Utils.Size(options.Column[i].Source) == 0 ? new[] { options.Column[i].Name } : options.Column[i].Source,
Text\NgramHashingTransformer.cs (2)
347item.Name, 348item.Source ?? new string[] { item.Name },
Text\TextFeaturizingEstimator.cs (2)
671var estimator = new TextFeaturizingEstimator(env, args.Columns.Name, args.Columns.Source ?? new[] { args.Columns.Name }, args);
Text\WordBagTransform.cs (12)
144h.CheckUserArg(!string.IsNullOrWhiteSpace(column.Name), nameof(column.Name)); 148tokenizeColumns[iinfo] = new WordTokenizingEstimator.ColumnOptions(column.Name, column.Source.Length > 1 ? column.Name : column.Source[0]); 153Name = column.Name, 154Source = column.Name, 555extractorCols[i] = new Column { Name = cols[i].Name, Source = cols[i].Source[0] }; 686env.CheckUserArg(!string.IsNullOrWhiteSpace(col.Name), nameof(col.Name)); 690estimator = estimator.Append<ITransformer>(new ColumnConcatenatingEstimator(env, col.Name, col.Source)); 711env.CheckUserArg(!string.IsNullOrWhiteSpace(col.Name), nameof(col.Name));
Text\WordHashBagProducingTransform.cs (5)
122Name = column.Name, 345h.CheckUserArg(!string.IsNullOrWhiteSpace(column.Name), nameof(column.Name)); 361new NgramHashingEstimator.ColumnOptions(column.Name, tmpColNames[iinfo], 394Name = cols[i].Name,