Last active
December 19, 2019 19:20
-
-
Save vsay01/3abbee5acff6a6726683c54a432c4f00 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
| #Import drive | |
| from google.colab import drive | |
| #Mount Google Drive | |
| drive.mount("/content/drive") | |
| %cd './drive/My Drive/MyDrive/Udacity/deep-learning-v2-pytorch/intro-to-pytorch/' | |
| %pwd | |
| #import helper.py | |
| import imp | |
| helper = imp.new_module('helper') | |
| exec(open("./helper.py").read(), helper.__dict__) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment