4 instantiations of ColumnOptions
Microsoft.ML.Transforms (4)
EntryPoints\TextAnalytics.cs (1)
123var cols = input.Columns.Select(colPair => new LatentDirichletAllocationEstimator.ColumnOptions(colPair, input)).ToArray();
Text\LdaTransform.cs (3)
279InfoEx = new LatentDirichletAllocationEstimator.ColumnOptions(ectx, ctx); 728var cols = options.Columns.Select(colPair => new LatentDirichletAllocationEstimator.ColumnOptions(colPair, options)).ToArray(); 1081: this(env, new[] { new ColumnOptions(outputColumnName, inputColumnName ?? outputColumnName,
13 references to ColumnOptions
Microsoft.ML.Transforms (13)
Text\LdaTransform.cs (12)
229internal readonly LatentDirichletAllocationEstimator.ColumnOptions InfoEx; 242internal LdaState(IExceptionContext ectx, LatentDirichletAllocationEstimator.ColumnOptions ex, int numVocab) 590var info = _parent._columns[i]; 635private readonly LatentDirichletAllocationEstimator.ColumnOptions[] _columns; 645private static (string outputColumnName, string inputColumnName)[] GetColumnPairs(LatentDirichletAllocationEstimator.ColumnOptions[] columns) 661params LatentDirichletAllocationEstimator.ColumnOptions[] columns) 681_columns = new LatentDirichletAllocationEstimator.ColumnOptions[columnsLength]; 690internal static LatentDirichletAllocationTransformer TrainLdaTransformer(IHostEnvironment env, IDataView inputData, params LatentDirichletAllocationEstimator.ColumnOptions[] columns) 822private static List<VBuffer<ReadOnlyMemory<char>>> Train(IHostEnvironment env, IChannel ch, IDataView inputData, LdaState[] states, params LatentDirichletAllocationEstimator.ColumnOptions[] columns) 1049private readonly ImmutableArray<ColumnOptions> _columns; 1089internal LatentDirichletAllocationEstimator(IHostEnvironment env, params ColumnOptions[] columns) 1324foreach (var colInfo in _columns)
Text\TextCatalog.cs (1)
650params LatentDirichletAllocationEstimator.ColumnOptions[] columns)