forked from kk7nc/HDLTex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
WOS_input.py
50 lines (34 loc) · 1.26 KB
/
WOS_input.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
from __future__ import print_function
import os, sys, tarfile
import numpy as np
if sys.version_info >= (3, 0, 0):
import urllib.request as urllib # ugly but works
else:
import urllib
print(sys.version_info)
# image shape
# path to the directory with the data
DATA_DIR = '.\data_WOS'
# url of the binary data
DATA_URL = 'http://kowsari.net/WebOfScience.tar.gz'
# path to the binary train file with image data
def download_and_extract():
"""
Download and extract the WOS datasets
:return: None
"""
dest_directory = DATA_DIR
if not os.path.exists(dest_directory):
os.makedirs(dest_directory)
filename = DATA_URL.split('/')[-1]
filepath = os.path.join(dest_directory, filename)
path = os.path.abspath(dest_directory)
if not os.path.exists(filepath):
def _progress(count, block_size, total_size):
sys.stdout.write('\rDownloading %s %.2f%%' % (filename,
float(count * block_size) / float(total_size) * 100.0))
sys.stdout.flush()
filepath, _ = urllib.urlretrieve(DATA_URL, filepath, reporthook=_progress)
print('Downloaded', filename)
tarfile.open(filepath, 'r').extractall(dest_directory)
return path