Created
July 29, 2019 17:48
-
-
Save williamFalcon/db7f6fb0d46db405b3470982836237d7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # put model on GPU | |
| model.cuda(0) | |
| # put data on gpu (cuda on a variable returns a cuda copy) | |
| x = x.cuda(0) | |
| # runs on GPU now | |
| model(x) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment