"""
We use following lines because we are running on Google Colab
If you are running notebook on a local computer, you don't need this cell
"""
from google.colab import drive
drive.mount('/content/gdrive')
import os
os.chdir('/content/gdrive/My Drive/finch/tensorflow1/text_matching/snli/data')
!pip install wget
import os
import zipfile
import wget
f_path='../data/snli_1.0.zip'
wget.download('https://nlp.stanford.edu/projects/snli/snli_1.0.zip',
out = f_path)
z = zipfile.ZipFile(f_path, 'r')
z.extractall(os.path.dirname(f_path))
z = z.close()
os.remove(f_path)
os.chdir('/content/gdrive/My Drive/finch/tensorflow1/text_matching/snli/data/snli_1.0')
!ls