PCA
Source header: cuvs/preprocessing/pca.hpp
Types
preprocessing::pca::params
Parameters for PCA decomposition. Ref:
http://scikit-learn.org/stable/modules/generated/sklearn.decomposition.PCA.html
Fields
PCA (Principal Component Analysis)
preprocessing::pca::fit
Perform PCA fit operation.
Computes the principal components, explained variances, singular values, and column means from the input data.
Parameters
Returns
void
preprocessing::pca::fit_transform
Perform PCA fit and transform operations.
Computes the principal components and transforms the input data into the eigenspace in a single operation.
Parameters
Returns
void
preprocessing::pca::transform
Perform PCA transform operation.
Transforms the input data into the eigenspace using previously computed principal components.
(mean-centered then restored).
Parameters
Returns
void
preprocessing::pca::inverse_transform
Perform PCA inverse transform operation.
Transforms data from the eigenspace back to the original space.
Parameters
Returns
void