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
import numpy as np print(np.log(np.nextafter(0, np.inf, dtype=np.float64))) from MulticoreTSNE import MulticoreTSNE as TSNE tsne = TSNE(n_jobs=6) print(np.log(np.nextafter(0, np.inf, dtype=np.float64)))
Result:
# print(np.log(np.nextafter(0, np.inf, dtype=np.float64))) -744.4400719213812 # from MulticoreTSNE import MulticoreTSNE as TSNE # tsne = TSNE(n_jobs=6) # print(np.log(np.nextafter(0, np.inf, dtype=np.float64))) __main__:1: RuntimeWarning: divide by zero encountered in log -inf
After calling tsne = TSNE(n_jobs=6) my numpy is not working any more as intended.
tsne = TSNE(n_jobs=6)
How can I fix this?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Result:
After calling
tsne = TSNE(n_jobs=6)
my numpy is not working any more as intended.How can I fix this?
The text was updated successfully, but these errors were encountered: