-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgetDataFromOpenAI.py
30 lines (27 loc) · 1.06 KB
/
getDataFromOpenAI.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import os
import sys
import requests
from tqdm import tqdm
subdir = 'dataset'
if not os.path.exists(subdir):
os.makedirs(subdir)
# subdir = subdir.replace('\\','/') # needed for Windows
for ds in [
'webtext',
# 'small-117M', 'small-117M-k40',
# 'medium-345M', 'medium-345M-k40',
# 'large-762M', 'large-762M-k40',
# 'xl-1542M', 'xl-1542M-k40',
'small-117M'
]:
for split in [ 'test']:#'train', 'valid',
filename = ds + "." + split + '.jsonl'
r = requests.get("https://openaipublic.azureedge.net/gpt-2/output-dataset/v1/" + filename, stream=True)
with open(os.path.join(subdir, filename), 'wb') as f:
file_size = int(r.headers["content-length"])
chunk_size = 1000
with tqdm(ncols=100, desc="Fetching " + filename, total=file_size, unit_scale=True) as pbar:
# 1k for chunk_size, since Ethernet packet size is around 1500 bytes
for chunk in r.iter_content(chunk_size=chunk_size):
f.write(chunk)
pbar.update(chunk_size)