We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For a dataset with n_features=1001 and n_samples=999 we will get:
ValueError: n_components=1000 must be between 0 and min(n_samples, n_features)=999 with svd_solver='full'
The default value of preprocess_with_pca_dim causes problems when trying to transform_fit() as:
preprocess_with_pca_dim
transform_fit()
fit
min(1000, n_samples)
The text was updated successfully, but these errors were encountered:
And a very interesting idea, btw - thank you for sharing code here!
Sorry, something went wrong.
No branches or pull requests
For a dataset with n_features=1001 and n_samples=999 we will get:
The default value of
preprocess_with_pca_dim
causes problems when trying totransform_fit()
as:fit
)min(1000, n_samples)
The text was updated successfully, but these errors were encountered: