瀏覽代碼

Remove redundant downloads mirror (#1461)

5.0
Glenn Jocher GitHub 3 年之前
父節點
當前提交
a70e554fc3
沒有發現已知的金鑰在資料庫的簽署中 GPG 金鑰 ID: 4AEE18F83AFDEB23
共有 3 個檔案被更改,包括 4 行新增2 行删除
  1. +1
    -1
      test.py
  2. +1
    -1
      utils/autoanchor.py
  3. +2
    -0
      utils/google_utils.py

+ 1
- 1
test.py 查看文件

@@ -322,4 +322,4 @@ if __name__ == '__main__':
y.append(r + t) # results and times
np.savetxt(f, y, fmt='%10.4g') # save
os.system('zip -r study.zip study_*.txt')
# utils.general.plot_study_txt(f, x) # plot
# utils.plots.plot_study_txt(f, x) # plot

+ 1
- 1
utils/autoanchor.py 查看文件

@@ -67,7 +67,7 @@ def kmean_anchors(path='./data/coco128.yaml', n=9, img_size=640, thr=4.0, gen=10
k: kmeans evolved anchors

Usage:
from utils.general import *; _ = kmean_anchors()
from utils.autoanchor import *; _ = kmean_anchors()
"""
thr = 1. / thr


+ 2
- 0
utils/google_utils.py 查看文件

@@ -22,6 +22,7 @@ def attempt_download(weights):

msg = weights + ' missing, try downloading from https://github.com/ultralytics/yolov5/releases/'
models = ['yolov5s.pt', 'yolov5m.pt', 'yolov5l.pt', 'yolov5x.pt'] # available models
redundant = False # offer second download option

if file in models and not os.path.isfile(weights):
# Google Drive
@@ -40,6 +41,7 @@ def attempt_download(weights):
assert os.path.exists(weights) and os.path.getsize(weights) > 1E6 # check
except Exception as e: # GCP
print('Download error: %s' % e)
assert redundant, 'No secondary mirror'
url = 'https://storage.googleapis.com/ultralytics/yolov5/ckpt/' + file
print('Downloading %s to %s...' % (url, weights))
r = os.system('curl -L %s -o %s' % (url, weights)) # torch.hub.download_url_to_file(url, weights)

Loading…
取消
儲存