Skip to content

Commit

Permalink
Removing mnist unzipping
Browse files Browse the repository at this point in the history
  • Loading branch information
AshishBora committed Mar 15, 2017
1 parent 64bf69f commit 0d45efe
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions download.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,9 +126,9 @@ def download_mnist(dirpath):
cmd = ['curl', url, '-o', out_path]
print('Downloading ', file_name)
subprocess.call(cmd)
cmd = ['gzip', '-d', out_path]
print('Decompressing ', file_name)
subprocess.call(cmd)
# cmd = ['gzip', '-d', out_path]
# print('Decompressing ', file_name)
# subprocess.call(cmd)

def prepare_data_dir(path = './data'):
if not os.path.exists(path):
Expand Down

0 comments on commit 0d45efe

Please sign in to comment.