| |
| """ |
| Download utils |
| """ |
|
|
| import logging |
| import os |
| import platform |
| import subprocess |
| import time |
| import urllib |
| from pathlib import Path |
| from zipfile import ZipFile |
|
|
| import requests |
| import torch |
|
|
|
|
| def is_url(url): |
| |
| try: |
| r = urllib.request.urlopen(url) |
| return r.getcode() == 200 |
| except urllib.request.HTTPError: |
| return False |
|
|
|
|
| def gsutil_getsize(url=''): |
| |
| s = subprocess.check_output(f'gsutil du {url}', shell=True).decode('utf-8') |
| return eval(s.split(' ')[0]) if len(s) else 0 |
|
|
|
|
| def safe_download(file, url, url2=None, min_bytes=1E0, error_msg=''): |
| |
| from utils.general import LOGGER |
|
|
| file = Path(file) |
| assert_msg = f"Downloaded file '{file}' does not exist or size is < min_bytes={min_bytes}" |
| try: |
| LOGGER.info(f'Downloading {url} to {file}...') |
| torch.hub.download_url_to_file(url, str(file), progress=LOGGER.level <= logging.INFO) |
| assert file.exists() and file.stat().st_size > min_bytes, assert_msg |
| except Exception as e: |
| file.unlink(missing_ok=True) |
| LOGGER.info(f'ERROR: {e}\nRe-attempting {url2 or url} to {file}...') |
| os.system(f"curl -L '{url2 or url}' -o '{file}' --retry 3 -C -") |
| finally: |
| if not file.exists() or file.stat().st_size < min_bytes: |
| file.unlink(missing_ok=True) |
| LOGGER.info(f"ERROR: {assert_msg}\n{error_msg}") |
| LOGGER.info('') |
|
|
|
|
| def attempt_download(file, repo='ultralytics/yolov5', release='v6.1'): |
| |
| from utils.general import LOGGER |
|
|
| def github_assets(repository, version='latest'): |
| |
| if version != 'latest': |
| version = f'tags/{version}' |
| response = requests.get(f'https://api.github.com/repos/{repository}/releases/{version}').json() |
| return response['tag_name'], [x['name'] for x in response['assets']] |
|
|
| file = Path(str(file).strip().replace("'", '')) |
| if not file.exists(): |
| |
| name = Path(urllib.parse.unquote(str(file))).name |
| if str(file).startswith(('http:/', 'https:/')): |
| url = str(file).replace(':/', '://') |
| file = name.split('?')[0] |
| if Path(file).is_file(): |
| LOGGER.info(f'Found {url} locally at {file}') |
| else: |
| safe_download(file=file, url=url, min_bytes=1E5) |
| return file |
|
|
| |
| assets = [ |
| 'yolov5n.pt', 'yolov5s.pt', 'yolov5m.pt', 'yolov5l.pt', 'yolov5x.pt', 'yolov5n6.pt', 'yolov5s6.pt', |
| 'yolov5m6.pt', 'yolov5l6.pt', 'yolov5x6.pt'] |
| try: |
| tag, assets = github_assets(repo, release) |
| except Exception: |
| try: |
| tag, assets = github_assets(repo) |
| except Exception: |
| try: |
| tag = subprocess.check_output('git tag', shell=True, stderr=subprocess.STDOUT).decode().split()[-1] |
| except Exception: |
| tag = release |
|
|
| file.parent.mkdir(parents=True, exist_ok=True) |
| if name in assets: |
| url3 = 'https://drive.google.com/drive/folders/1EFQTEUeXWSFww0luse2jB9M1QNZQGwNl' |
| safe_download( |
| file, |
| url=f'https://github.com/{repo}/releases/download/{tag}/{name}', |
| url2=f'https://storage.googleapis.com/{repo}/{tag}/{name}', |
| min_bytes=1E5, |
| error_msg=f'{file} missing, try downloading from https://github.com/{repo}/releases/{tag} or {url3}') |
|
|
| return str(file) |
|
|
|
|
| def gdrive_download(id='16TiPfZj7htmTyhntwcZyEEAejOUxuT6m', file='tmp.zip'): |
| |
| t = time.time() |
| file = Path(file) |
| cookie = Path('cookie') |
| print(f'Downloading https://drive.google.com/uc?export=download&id={id} as {file}... ', end='') |
| file.unlink(missing_ok=True) |
| cookie.unlink(missing_ok=True) |
|
|
| |
| out = "NUL" if platform.system() == "Windows" else "/dev/null" |
| os.system(f'curl -c ./cookie -s -L "drive.google.com/uc?export=download&id={id}" > {out}') |
| if os.path.exists('cookie'): |
| s = f'curl -Lb ./cookie "drive.google.com/uc?export=download&confirm={get_token()}&id={id}" -o {file}' |
| else: |
| s = f'curl -s -L -o {file} "drive.google.com/uc?export=download&id={id}"' |
| r = os.system(s) |
| cookie.unlink(missing_ok=True) |
|
|
| |
| if r != 0: |
| file.unlink(missing_ok=True) |
| print('Download error ') |
| return r |
|
|
| |
| if file.suffix == '.zip': |
| print('unzipping... ', end='') |
| ZipFile(file).extractall(path=file.parent) |
| file.unlink() |
|
|
| print(f'Done ({time.time() - t:.1f}s)') |
| return r |
|
|
|
|
| def get_token(cookie="./cookie"): |
| with open(cookie) as f: |
| for line in f: |
| if "download" in line: |
| return line.split()[-1] |
| return "" |
|
|
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|