Update `check_file()` avoid repeat URL downloads (#5526)
This commit is contained in:
parent
5f603a9dba
commit
32b8738735
|
|
@ -338,6 +338,9 @@ def check_file(file, suffix=''):
|
||||||
elif file.startswith(('http:/', 'https:/')): # download
|
elif file.startswith(('http:/', 'https:/')): # download
|
||||||
url = str(Path(file)).replace(':/', '://') # Pathlib turns :// -> :/
|
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
|
file = Path(urllib.parse.unquote(file).split('?')[0]).name # '%2F' to '/', split https://url.com/file.txt?auth
|
||||||
|
if Path(file).is_file():
|
||||||
|
print(f'Found {url} locally at {file}') # file already exists
|
||||||
|
else:
|
||||||
print(f'Downloading {url} to {file}...')
|
print(f'Downloading {url} to {file}...')
|
||||||
torch.hub.download_url_to_file(url, 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
|
assert Path(file).exists() and Path(file).stat().st_size > 0, f'File download failed: {url}' # check
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue