Skip to content

Instantly share code, notes, and snippets.

@vsay01
Last active December 19, 2019 19:20
Show Gist options
  • Save vsay01/3abbee5acff6a6726683c54a432c4f00 to your computer and use it in GitHub Desktop.
Save vsay01/3abbee5acff6a6726683c54a432c4f00 to your computer and use it in GitHub Desktop.
#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