Skip to content

Instantly share code, notes, and snippets.

@parulnith
Created September 15, 2021 04:21
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 parulnith/12ebdaaeb14d1d22f7d5b77f163e333e to your computer and use it in GitHub Desktop.
Save parulnith/12ebdaaeb14d1d22f7d5b77f163e333e to your computer and use it in GitHub Desktop.
!wget https://www.dropbox.com/s/607ptdakxuh5i4s/merged_training.pkl
# Defining a helper function to load the data
import pickle
def load_from_pickle(directory):
return pickle.load(open(directory,"rb"))
# Loading the data
data = load_from_pickle(directory="merged_training.pkl")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment