Fix forward_fuse comment (#17714)

Co-authored-by: Glenn Jocher <glenn.jocher@ultralytics.com>
This commit is contained in:
Arun 2024-11-26 15:33:23 +05:30 committed by GitHub
parent 59aceffd05
commit 407815cf9e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -50,7 +50,7 @@ class Conv(nn.Module):
return self.act(self.bn(self.conv(x))) return self.act(self.bn(self.conv(x)))
def forward_fuse(self, x): def forward_fuse(self, x):
"""Perform transposed convolution of 2D data.""" """Apply convolution and activation without batch normalization."""
return self.act(self.conv(x)) return self.act(self.conv(x))