We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
Hello,
Thank you for this great package! It seems like I have run into a bug with the most recent version.
fit_transform hangs indefinitely for n=30 and less. It runs fine for values larger than this.
fit_transform
n=30
import numpy as np import pacmap n = 20 X = np.random.normal(size=(n, 512)) embedding = pacmap.PaCMAP(n_components=2) X_transformed = embedding.fit_transform(X) print(X_transformed.shape)
It seems to have been introduced in 0.7.4, it runs to completion on 0.7.3.
0.7.4
0.7.3
Let me know if there is anything more I can provide.
The text was updated successfully, but these errors were encountered:
Thanks for reporting. I've replicated this error. I suspect this is a similar issue like #72 and will work on this as soon as possible.
Sorry, something went wrong.
This might be caused by the sample_FP function entering an infinite loop if n_samples > maximum - len(reject_ind) - !is_in(self_ind, reject_ind).
sample_FP
n_samples > maximum - len(reject_ind) - !is_in(self_ind, reject_ind)
Resolved in release 0.7.6. Please reopen this issue if you encountered this issue again.
No branches or pull requests
Uh oh!
There was an error while loading. Please reload this page.
Hello,
Thank you for this great package! It seems like I have run into a bug with the most recent version.
fit_transform
hangs indefinitely forn=30
and less. It runs fine for values larger than this.It seems to have been introduced in
0.7.4
, it runs to completion on0.7.3
.Let me know if there is anything more I can provide.
The text was updated successfully, but these errors were encountered: