ソースを参照

Ensures weights/ dir exists

Allows train.py to be run outside of yolov5/ directory.
5.0
Lauritzen Kasper Primdal 4年前
コミット
c3d4d321d3
1個のファイルの変更1行の追加0行の削除
  1. +1
    -0
      train.py

+ 1
- 0
train.py ファイルの表示

@@ -20,6 +20,7 @@ except:
mixed_precision = False # not installed

wdir = 'weights' + os.sep # weights dir
os.makedirs(wdir, exist_ok=True)
last = wdir + 'last.pt'
best = wdir + 'best.pt'
results_file = 'results.txt'

読み込み中…
キャンセル
保存