Skip to content

Commit 8eb6793

Browse files
webproduktion01WuTheFWasThat
authored andcommitted
Python download script (#89)
added python download script and modified requirements to add the modules needed. Tested in Windows Version 10.0.17134 Build 17134 and Ubuntu 18.04.1 LTS
1 parent 0465394 commit 8eb6793

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed

download_model.py

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
#!/usr/bin/env python
2+
import os
3+
import sys
4+
import requests
5+
from tqdm import tqdm
6+
7+
if len(sys.argv)!=2:
8+
print('You must enter the model name as a parameter, e.g.: download_model.py 117M')
9+
sys.exit(1)
10+
model = sys.argv[1]
11+
#Create directory if it does not exist already, then do nothing
12+
if not os.path.exists('models/'+model):
13+
os.makedirs('models/'+model)
14+
#download all the files
15+
for filename in ['checkpoint','encoder.json','hparams.json','model.ckpt.data-00000-of-00001', 'model.ckpt.index', 'model.ckpt.meta', 'vocab.bpe']:
16+
r = requests.get("https://storage.googleapis.com/gpt-2/models/"+model+"/"+filename,stream=True)
17+
#wb flag required for windows
18+
with open('models/'+model+'/'+filename,'wb') as currentFile:
19+
fileSize = int(r.headers["content-length"])
20+
with tqdm(ncols=100,desc="Fetching "+filename,total=fileSize,unit_scale=True) as pbar:
21+
#went for 1k for chunk_size. Motivation -> Ethernet packet size is around 1500 bytes.
22+
for chunk in r.iter_content(chunk_size=1000):
23+
currentFile.write(chunk)
24+
pbar.update(1000)

requirements.txt

+2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
fire>=0.1.3
22
regex==2017.4.5
3+
requests==2.21.0
4+
tqdm==4.31.1

0 commit comments

Comments
 (0)