4 references to ProjectToPrincipalComponents
Microsoft.ML.Tests (4)
OnnxConversionTest.cs (1)
975var pipeline = ML.Transforms.ProjectToPrincipalComponents("pca", "features", rank: 5, seed: 1, ensureZeroMean: zeroMean);
Transformers\PcaTests.cs (3)
41var est = ML.Transforms.ProjectToPrincipalComponents("pca", "features", rank: 4, seed: 10); 44var estNonDefaultArgs = ML.Transforms.ProjectToPrincipalComponents("pca", "features", rank: 3, exampleWeightColumnName: "weight", overSampling: 2, ensureZeroMean: false); 58var est = ML.Transforms.ProjectToPrincipalComponents("pca", "features", rank: 5, seed: 1);