2 instantiations of PrincipalComponentAnalysisTransformer
Microsoft.ML.PCA (2)
PcaTransformer.cs (2)
278
return new
PrincipalComponentAnalysisTransformer
(host, ctx);
809
public PrincipalComponentAnalysisTransformer Fit(IDataView input) => new
PrincipalComponentAnalysisTransformer
(_host, input, _columns);
30 references to PrincipalComponentAnalysisTransformer
Microsoft.ML.PCA (29)
PcaTransformer.cs (29)
19
[assembly: LoadableClass(
PrincipalComponentAnalysisTransformer
.Summary, typeof(IDataTransform), typeof(
PrincipalComponentAnalysisTransformer
), typeof(
PrincipalComponentAnalysisTransformer
.Options), typeof(SignatureDataTransform),
20
PrincipalComponentAnalysisTransformer
.UserName,
PrincipalComponentAnalysisTransformer
.LoaderSignature,
PrincipalComponentAnalysisTransformer
.ShortName)]
22
[assembly: LoadableClass(
PrincipalComponentAnalysisTransformer
.Summary, typeof(IDataTransform), typeof(
PrincipalComponentAnalysisTransformer
), null, typeof(SignatureLoadDataTransform),
23
PrincipalComponentAnalysisTransformer
.UserName,
PrincipalComponentAnalysisTransformer
.LoaderSignature)]
25
[assembly: LoadableClass(
PrincipalComponentAnalysisTransformer
.Summary, typeof(
PrincipalComponentAnalysisTransformer
), null, typeof(SignatureLoadModel),
26
PrincipalComponentAnalysisTransformer
.UserName,
PrincipalComponentAnalysisTransformer
.LoaderSignature)]
28
[assembly: LoadableClass(typeof(IRowMapper), typeof(
PrincipalComponentAnalysisTransformer
), null, typeof(SignatureLoadRowMapper),
29
PrincipalComponentAnalysisTransformer
.UserName,
PrincipalComponentAnalysisTransformer
.LoaderSignature)]
31
[assembly: LoadableClass(typeof(void), typeof(
PrincipalComponentAnalysisTransformer
), null, typeof(SignatureEntryPointModule),
PrincipalComponentAnalysisTransformer
.LoaderSignature)]
195
loaderAssemblyName: typeof(
PrincipalComponentAnalysisTransformer
).Assembly.FullName);
205
: base(Contracts.CheckRef(env, nameof(env)).Register(nameof(
PrincipalComponentAnalysisTransformer
)), GetColumnPairs(columns))
266
private static
PrincipalComponentAnalysisTransformer
Create(IHostEnvironment env, ModelLoadContext ctx)
269
var host = env.Register(nameof(
PrincipalComponentAnalysisTransformer
));
540
private readonly
PrincipalComponentAnalysisTransformer
_parent;
543
public Mapper(
PrincipalComponentAnalysisTransformer
parent, DataViewSchema inputSchema)
685
var view =
PrincipalComponentAnalysisTransformer
.Create(h, input, input.Data);
695
public sealed class PrincipalComponentAnalyzer : IEstimator<
PrincipalComponentAnalysisTransformer
>
807
/// Trains and returns a <see cref="
PrincipalComponentAnalysisTransformer
"/>.
809
public
PrincipalComponentAnalysisTransformer
Fit(IDataView input) => new PrincipalComponentAnalysisTransformer(_host, input, _columns);
Microsoft.ML.Tests (1)
OnnxConversionTest.cs (1)
976
var
model = pipeline.Fit(dataView);