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