Skip to content

Commit

Permalink
Update check_file() avoid repeat URL downloads (ultralytics#5526)
Browse files Browse the repository at this point in the history
  • Loading branch information
glenn-jocher committed Nov 5, 2021
1 parent a75f2ab commit 55d1d60
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions utils/general.py
Original file line number Diff line number Diff line change
Expand Up @@ -338,9 +338,12 @@ def check_file(file, suffix=''):
elif file.startswith(('http:/', 'https:/')): # download
url = str(Path(file)).replace(':/', '://') # Pathlib turns :// -> :/
file = Path(urllib.parse.unquote(file).split('?')[0]).name # '%2F' to '/', split https://url.com/file.txt?auth
print(f'Downloading {url} to {file}...')
torch.hub.download_url_to_file(url, file)
assert Path(file).exists() and Path(file).stat().st_size > 0, f'File download failed: {url}' # check
if Path(file).is_file():
print(f'Found {url} locally at {file}') # file already exists
else:
print(f'Downloading {url} to {file}...')
torch.hub.download_url_to_file(url, file)
assert Path(file).exists() and Path(file).stat().st_size > 0, f'File download failed: {url}' # check
return file
else: # search
files = []
Expand Down

0 comments on commit 55d1d60

Please sign in to comment.