-
Notifications
You must be signed in to change notification settings - Fork 555
New issue
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
fit or fit_transform #9
Labels
bug
Something isn't working
Comments
I am not sure that I follow the bug. These seem to me scikit-learn examples. If you are getting from scikit-learn, you should check your installation. |
dantegd
referenced
this issue
in dantegd/cuml
Mar 19, 2019
[HOTFIX] Unique parameter to avoid hash collision wiht higher number of GPUs
ajschmidt8
pushed a commit
that referenced
this issue
Feb 13, 2023
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
pca_demo.ipynb and tsvd_demo.ipynb
%%time
pca_sk = skPCA(n_components=n_components,svd_solver=svd_solver,
whiten=whiten, random_state=random_state)
result_sk = pca_sk.fit_transform(X)
%%time
algorithm='arpack'
tsvd_sk = skTSVD(n_components=n_components,algorithm=algorithm,
random_state=random_state)
result_sk = tsvd_sk.fit_transform(X)
I found that using ‘fit_transform‘’ will not report an error, using ‘fit’ will not
The text was updated successfully, but these errors were encountered: