Suppress torch 1.9.0 max_pool2d() warning (#4227)

pull/4228/head
Glenn Jocher 2021-07-30 00:37:55 +02:00 committed by GitHub
parent c2c958c350
commit 18f6ba77cf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 1 deletions

View File

@ -1,6 +1,7 @@
# YOLOv5 common modules
import logging
import warnings
from copy import copy
from pathlib import Path
@ -158,7 +159,9 @@ class SPP(nn.Module):
def forward(self, x):
x = self.cv1(x)
return self.cv2(torch.cat([x] + [m(x) for m in self.m], 1))
with warnings.catch_warnings():
warnings.simplefilter('ignore') # suppress torch 1.9.0 max_pool2d() warning
return self.cv2(torch.cat([x] + [m(x) for m in self.m], 1))
class Focus(nn.Module):