7 references to VectorWhiteningEstimator
Microsoft.ML.Mkl.Components (1)
MklComponentsCatalog.cs (1)
154
=> new
VectorWhiteningEstimator
(CatalogUtils.GetEnvironment(catalog), outputColumnName, inputColumnName, kind, epsilon, maximumNumberOfRows, rank);
Microsoft.ML.Tests (6)
OnnxConversionTest.cs (2)
267
var pipeline = new
VectorWhiteningEstimator
(mlContext, "whitened1", "features")
268
.Append(new
VectorWhiteningEstimator
(mlContext, "whitened2", "features", kind: WhiteningKind.PrincipalComponentAnalysis, rank: 5));
Transformers\NormalizerTests.cs (4)
668
.Append(new
VectorWhiteningEstimator
(ML, "whitened", "features"));
701
var est = new
VectorWhiteningEstimator
(ML, "whitened1", "features")
702
.Append(new
VectorWhiteningEstimator
(ML, "whitened2", "features", kind: WhiteningKind.PrincipalComponentAnalysis, rank: 5));
737
var pipe = new
VectorWhiteningEstimator
(ML, "whitened", "features");