Minor fix suggested in Recommenders repo

This commit is contained in:
Abhiram E 2019-06-06 15:46:17 -04:00
Родитель de569bc3b9
Коммит 802188e115
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -35,7 +35,7 @@ def maybe_download(
r = requests.get(url, stream=True)
total_size = int(r.headers.get("content-length", 0))
block_size = 1024
num_iterables = math.ceil(total_size // block_size)
num_iterables = math.ceil(total_size / block_size)
with open(filepath, "wb") as file:
for data in tqdm(