Browse Source

Move results.txt from weights/ to log_dir

5.0
Alex Stoken 4 years ago
parent
commit
3b2b330872
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      train.py

+ 1
- 1
train.py View File

@@ -50,7 +50,7 @@ def train(hyp):
os.makedirs(wdir, exist_ok=True)
last = wdir + 'last.pt'
best = wdir + 'best.pt'
results_file = wdir + 'results.txt'
results_file = log_dir + 'results.txt'

epochs = opt.epochs # 300
batch_size = opt.batch_size # 64

Loading…
Cancel
Save