Я хотел загрузить набор данных COCO_SAMPLE с помощью fastapi в Google colab:
from fastai.data.external import untar_data, URLs
coco_path = untar_data(URLs.COCO_SAMPLE)
Я получаю следующую ошибку
TypeError Traceback (most recent call last)
<ipython-input-4-422a4107f844> in <module>()
1 from fastai.data.external import untar_data, URLs
----> 2 coco_path = untar_data(URLs.COCO_SAMPLE)
4 frames
/usr/local/lib/python3.7/dist-packages/fastdownload/core.py in download_url(url, dest, timeout, show_progress)
21 pbar.total = tsize
22 pbar.update(count*bsize)
---> 23 return urlsave(url, dest, reporthook=progress if show_progress else None, timeout=timeout)
24
25 # Cell
TypeError: urlsave() got an unexpected keyword argument 'timeout'
Кто-нибудь может помочь?