2 instantiations of LatentDirichletAllocationTransformer
Microsoft.ML.Transforms (2)
Text\LdaTransform.cs (2)
700
return new
LatentDirichletAllocationTransformer
(env, ldas, columnMappings, columns);
750
return new
LatentDirichletAllocationTransformer
(h, ctx);
31 references to LatentDirichletAllocationTransformer
Microsoft.ML.IntegrationTests (1)
IntrospectiveTraining.cs (1)
192
var
ldaTransform = model.LastTransformer;
Microsoft.ML.TestFramework (1)
DataPipe\TestDataPipe.cs (1)
1550
var
ldaTransformer = est.Fit(srcView);
Microsoft.ML.Transforms (29)
EntryPoints\TextAnalytics.cs (4)
114
Desc =
LatentDirichletAllocationTransformer
.Summary,
115
UserName =
LatentDirichletAllocationTransformer
.UserName,
116
ShortName =
LatentDirichletAllocationTransformer
.ShortName)]
117
public 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)]
564
private readonly
LatentDirichletAllocationTransformer
_parent;
567
public Mapper(
LatentDirichletAllocationTransformer
parent, DataViewSchema inputSchema)
632
loaderAssemblyName: typeof(
LatentDirichletAllocationTransformer
).Assembly.FullName);
652
/// Initializes a new <see cref="
LatentDirichletAllocationTransformer
"/> object.
662
: base(Contracts.CheckRef(env, nameof(env)).Register(nameof(
LatentDirichletAllocationTransformer
)), GetColumnPairs(columns))
690
internal static
LatentDirichletAllocationTransformer
TrainLdaTransformer(IHostEnvironment env, IDataView inputData, params LatentDirichletAllocationEstimator.ColumnOptions[] columns)
733
private static
LatentDirichletAllocationTransformer
Create(IHostEnvironment env, ModelLoadContext ctx)
1029
public sealed class LatentDirichletAllocationEstimator : IEstimator<
LatentDirichletAllocationTransformer
>
1218
internal ColumnOptions(
LatentDirichletAllocationTransformer
.Column item,
LatentDirichletAllocationTransformer
.Options options) :
1338
/// Trains and returns a <see cref="
LatentDirichletAllocationTransformer
"/>.
1340
public
LatentDirichletAllocationTransformer
Fit(IDataView input)
1342
return
LatentDirichletAllocationTransformer
.TrainLdaTransformer(_host, input, _columns.ToArray());