This commit is contained in:
Glenn Jocher 2019-07-16 01:03:15 +02:00
parent 8501aed49f
commit 954deadff3
1 changed files with 0 additions and 3 deletions

View File

@ -254,9 +254,6 @@ def load_darknet_weights(self, weights, cutoff=-1):
url = 'https://pjreddie.com/media/files/' + weights_file url = 'https://pjreddie.com/media/files/' + weights_file
print('Downloading ' + url + ' to ' + weights) print('Downloading ' + url + ' to ' + weights)
os.system('curl ' + url + ' -o ' + weights) os.system('curl ' + url + ' -o ' + weights)
import requests
r = requests.get(url)
except IOError: except IOError:
print(weights + ' not found.\nTry https://drive.google.com/drive/folders/1uxgUBemJVw9wZsdpboYbzUN4bcRhsuAI') print(weights + ' not found.\nTry https://drive.google.com/drive/folders/1uxgUBemJVw9wZsdpboYbzUN4bcRhsuAI')