update download path

This commit is contained in:
darkliang
2021-12-08 20:22:26 +08:00
parent bb6cd5149a
commit 0d869161c2
+4 -1
View File
@@ -118,7 +118,10 @@ def download_file_and_uncompress(url,
if __name__ == "__main__": if __name__ == "__main__":
url = "https://github.com/ShiqiYu/OpenGait/releases/download/v1.0-beta/pretrained_model.zip" urls = [
"https://github.com/ShiqiYu/OpenGait/releases/download/v1.0/pretrained_casiab_model.zip",
"https://github.com/ShiqiYu/OpenGait/releases/download/v1.0/pretrained_oumvlp_model.zip"]
for url in urls:
download_file_and_uncompress( download_file_and_uncompress(
url=url, extrapath='output') url=url, extrapath='output')