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
How to train this network with multiple GPUs?
The text was updated successfully, but these errors were encountered:
@LinpengPan I think you can refer to PyTorch website. A short example taken from there:
net = torch.nn.DataParallel(model, device_ids=[0, 1, 2]) output = net(input_var) # input_var can be on any device, including CPU
Sorry, something went wrong.
Duplicate of #520
No branches or pull requests
How to train this network with multiple GPUs?
The text was updated successfully, but these errors were encountered: