This commit is contained in:
Glenn Jocher 2019-04-17 13:30:28 +02:00
parent 628d7e5081
commit 582becc4bf
1 changed files with 5 additions and 2 deletions

View File

@ -178,8 +178,11 @@ def train(
print('multi_scale img_size = %g' % dataset.img_size)
# Calculate mAP
with torch.no_grad():
results = test.test(cfg, data_cfg, batch_size=batch_size, img_size=img_size, model=model, conf_thres=0.1)
if opt.nosave and epochs < 10:
results = (0, 0, 0, 0, 0)
else:
with torch.no_grad():
results = test.test(cfg, data_cfg, batch_size=batch_size, img_size=img_size, model=model, conf_thres=0.1)
# Write epoch results
with open('results.txt', 'a') as file: