From 8035ee6db9d585ff7e9bbf6b54cf791e8c731ef2 Mon Sep 17 00:00:00 2001 From: "Kin-Yiu, Wong" <102582011@cc.ncu.edu.tw> Date: Wed, 28 Sep 2022 16:56:31 +0800 Subject: [PATCH] main code fix https://github.com/WongKinYiu/yolov7/issues/855 --- models/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/models/common.py b/models/common.py index 111af708de..edb5edc9fe 100644 --- a/models/common.py +++ b/models/common.py @@ -444,7 +444,7 @@ def forward(self, x): class ImplicitM(nn.Module): - def __init__(self, channel, mean=0., std=.02): + def __init__(self, channel, mean=1., std=.02): super(ImplicitM, self).__init__() self.channel = channel self.mean = mean