I'm working with dimensionality reduction and would like to get eigenvalues and eigenvectors from my dataset. Since there are several features (Images) I tried to use Incrementa PCA, but I did not find a way to get the eigenvalues / eigenvectors in the documentation, is it possible to get them with the incremental PCA?
def get_incremental_pca(training,n_components,batch_size):
ipca = PCA(n_components)
return ipca.fit_transform(training) //The training set with reduced dimensionality