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
Long story short, Torch doesn't like working with multiple GPUs on Windows (shared storage related issue).
Fix is to set n_gpu = 1 in train()
Any chance we could set n_gpu=1 as a default when running on Windows?
import os if os.name == 'nt': n_gpu = 1
The text was updated successfully, but these errors were encountered:
Sure, can do something like that. (w/ an appropriate log message)
Sorry, something went wrong.
Awesome. Thank you!
I had almost stopped trying to get it to work after about 3 days of tracking down the cause.
Force single-GPU training on Windows (#116)
618ac5e
No branches or pull requests
Long story short, Torch doesn't like working with multiple GPUs on Windows (shared storage related issue).
Fix is to set n_gpu = 1 in train()
Any chance we could set n_gpu=1 as a default when running on Windows?
The text was updated successfully, but these errors were encountered: