September 2019
Intermediate to advanced
420 pages
10h 29m
English
Other useful dimensionality reduction techniques that are closely related to PCA are provided by scikit-learn, but not OpenCV. We mention them here for the sake of completeness. ICA performs the same mathematical steps as PCA, but it chooses the components of the decomposition to be as independent as possible from each other, rather than per predictor as in PCA.
In scikit-learn, ICA is available from the decomposition module:
In [9]: from sklearn import decompositionIn [10]: ica = decomposition.FastICA(tol=0.005)
Read now
Unlock full access