Skip to content

Instantly share code, notes, and snippets.

@sagarhowal
Created January 14, 2018 12:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sagarhowal/2aa75bbf392f0a798edd88c6d262aa3c to your computer and use it in GitHub Desktop.
Save sagarhowal/2aa75bbf392f0a798edd88c6d262aa3c to your computer and use it in GitHub Desktop.
#Uploading the Dataset
from google.colab import files
uploaded = files.upload()
with open("HAPTdataset.zip", 'w') as f:
f.write(uploaded[uploaded.keys()[0]])
import zipfile
zip_ref = zipfile.ZipFile("HAPTdataset.zip", 'r')
zip_ref.extractall()
zip_ref.close()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment