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
Following line happens a coversion error in the 16th cell. with CUDA environment. It causes to set cuda type tensor to TSNE,fit_transform().
E.append(TSNE(n_components=2).fit_transform(X[-1]))
I passed to add ,cpu() calling.
E.append(TSNE(n_components=2).fit_transform(X[-1].cpu()))
The text was updated successfully, but these errors were encountered:
It looks good. @norihiro-ito, do you think you can send a pull request with such improvement? Otherwise @ritchieng can do it for you.
Sorry, something went wrong.
Let me double check. I'll push the fix and close the issue once I'm done.
No branches or pull requests
Following line happens a coversion error in the 16th cell. with CUDA environment.
It causes to set cuda type tensor to TSNE,fit_transform().
E.append(TSNE(n_components=2).fit_transform(X[-1]))
I passed to add ,cpu() calling.
E.append(TSNE(n_components=2).fit_transform(X[-1].cpu()))
The text was updated successfully, but these errors were encountered: