save pickle elmo
# save elmo_train_new | |
pickle_out = open("elmo_train_03032019.pickle","wb") | |
pickle.dump(elmo_train_new, pickle_out) | |
pickle_out.close() | |
# save elmo_test_new | |
pickle_out = open("elmo_test_03032019.pickle","wb") | |
pickle.dump(elmo_test_new, pickle_out) | |
pickle_out.close() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment