WhiteningKind Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Which vector whitening technique to use. ZCA whitening ensures that the average covariance between whitened and original variables is maximal. In contrast, PCA whitening lead to maximally compressed whitened variables, as measured by squared covariance.
public enum WhiteningKind
type WhiteningKind =
Public Enum WhiteningKind
- Inheritance
-
WhiteningKind
Fields
Name | Value | Description |
---|---|---|
PrincipalComponentAnalysis | 0 | PCA whitening. |
ZeroPhaseComponentAnalysis | 1 | ZCA whitening. |