-
Notifications
You must be signed in to change notification settings - Fork 27
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
Install on pip on systems without cuda #27
Comments
Is the issue that you have machines with no CUDA-capable GPUs in them, or that you're unable to install the CUDA toolkit on those machines? I imagine it's the former since I wouldn't expect CI/CD systems to have GPUs. |
Right, so this seems like a build issue – Alternatively, (I haven't tried this recently) you could export your model to TorchScript after it's trained and use that to run predictions on CPU on a different machine. That way you wouldn't even need |
I have the same issue. I'm developing on a small notebook and don't want to waste 2GB on a cuda installation. |
@Zadagu that sounds like a reasonable request. Out of curiosity, what is your primary reason for using Haste even without CUDA? Is it because regularization is built-in to many of the RNNs, so that you can easily migrate to a fast CUDA implementation once you're done experimenting in your notebook, or some other reason altogether? |
I use haste in combination with pytorch because it provides me the posibility to output the whole sequence of hidden states and cell contents. |
Here is a fork that will install in Pypi without cuda |
Hello,
In our CI we install the haste_pytorch but it is failing because we do not have cuda. On #2 you said that is possible to run on CPU only scenarios.
Would be possible to install haste_pytorch without requiring cuda?
The text was updated successfully, but these errors were encountered: