From aa4591d7e92db91a3f03bbd601218034b398f6b5 Mon Sep 17 00:00:00 2001 From: Glenn Jocher Date: Thu, 2 Apr 2020 14:10:45 -0700 Subject: [PATCH] batchnorm momentum to 0.03 --- models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/models.py b/models.py index 089b6034..9d2538e6 100755 --- a/models.py +++ b/models.py @@ -32,7 +32,7 @@ def create_modules(module_defs, img_size): groups=mdef['groups'] if 'groups' in mdef else 1, bias=not bn)) if bn: - modules.add_module('BatchNorm2d', nn.BatchNorm2d(filters, momentum=0.003, eps=1E-4)) + modules.add_module('BatchNorm2d', nn.BatchNorm2d(filters, momentum=0.03, eps=1E-4)) else: routs.append(i) # detection output (goes into yolo layer)