From 6b222df35dac08409416079d703e2e197c200acd Mon Sep 17 00:00:00 2001 From: Glenn Jocher Date: Mon, 24 Jun 2019 15:56:20 +0200 Subject: [PATCH] updates --- train.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/train.py b/train.py index af0dfad3..32c69ee6 100644 --- a/train.py +++ b/train.py @@ -227,7 +227,7 @@ def train( # Calculate mAP (always test final epoch, skip first 5 if opt.nosave) if not (opt.notest or (opt.nosave and epoch < 10)) or epoch == epochs - 1: with torch.no_grad(): - results, maps = test.test(cfg, data_cfg, batch_size=batch_size, img_size=img_size_test, model=model, + results, maps = test.test(cfg, data_cfg, batch_size=batch_size*2, img_size=img_size_test, model=model, conf_thres=0.1) # Write epoch results