2 instantiations of LatentDirichletAllocationTransformer
Microsoft.ML.Transforms (2)
Text\LdaTransform.cs (2)
700return new LatentDirichletAllocationTransformer(env, ldas, columnMappings, columns); 750return new LatentDirichletAllocationTransformer(h, ctx);
31 references to LatentDirichletAllocationTransformer
Microsoft.ML.IntegrationTests (1)
IntrospectiveTraining.cs (1)
192var ldaTransform = model.LastTransformer;
Microsoft.ML.TestFramework (1)
DataPipe\TestDataPipe.cs (1)
1550var ldaTransformer = est.Fit(srcView);
Microsoft.ML.Transforms (29)
EntryPoints\TextAnalytics.cs (4)
114Desc = LatentDirichletAllocationTransformer.Summary, 115UserName = LatentDirichletAllocationTransformer.UserName, 116ShortName = LatentDirichletAllocationTransformer.ShortName)] 117public static CommonOutputs.TransformOutput LightLda(IHostEnvironment env, LatentDirichletAllocationTransformer.Options input)
Text\LdaTransform.cs (25)
20[assembly: LoadableClass(LatentDirichletAllocationTransformer.Summary, typeof(IDataTransform), typeof(LatentDirichletAllocationTransformer), typeof(LatentDirichletAllocationTransformer.Options), typeof(SignatureDataTransform), 21"Latent Dirichlet Allocation Transform", LatentDirichletAllocationTransformer.LoaderSignature, "Lda")] 23[assembly: LoadableClass(LatentDirichletAllocationTransformer.Summary, typeof(IDataTransform), typeof(LatentDirichletAllocationTransformer), null, typeof(SignatureLoadDataTransform), 24"Latent Dirichlet Allocation Transform", LatentDirichletAllocationTransformer.LoaderSignature)] 26[assembly: LoadableClass(LatentDirichletAllocationTransformer.Summary, typeof(LatentDirichletAllocationTransformer), null, typeof(SignatureLoadModel), 27"Latent Dirichlet Allocation Transform", LatentDirichletAllocationTransformer.LoaderSignature)] 29[assembly: LoadableClass(typeof(IRowMapper), typeof(LatentDirichletAllocationTransformer), null, typeof(SignatureLoadRowMapper), 30"Latent Dirichlet Allocation Transform", LatentDirichletAllocationTransformer.LoaderSignature)] 564private readonly LatentDirichletAllocationTransformer _parent; 567public Mapper(LatentDirichletAllocationTransformer parent, DataViewSchema inputSchema) 632loaderAssemblyName: typeof(LatentDirichletAllocationTransformer).Assembly.FullName); 652/// Initializes a new <see cref="LatentDirichletAllocationTransformer"/> object. 662: base(Contracts.CheckRef(env, nameof(env)).Register(nameof(LatentDirichletAllocationTransformer)), GetColumnPairs(columns)) 690internal static LatentDirichletAllocationTransformer TrainLdaTransformer(IHostEnvironment env, IDataView inputData, params LatentDirichletAllocationEstimator.ColumnOptions[] columns) 733private static LatentDirichletAllocationTransformer Create(IHostEnvironment env, ModelLoadContext ctx) 1029public sealed class LatentDirichletAllocationEstimator : IEstimator<LatentDirichletAllocationTransformer> 1218internal ColumnOptions(LatentDirichletAllocationTransformer.Column item, LatentDirichletAllocationTransformer.Options options) : 1338/// Trains and returns a <see cref="LatentDirichletAllocationTransformer"/>. 1340public LatentDirichletAllocationTransformer Fit(IDataView input) 1342return LatentDirichletAllocationTransformer.TrainLdaTransformer(_host, input, _columns.ToArray());