Fix `forward_fuse` comment (#17714)

Co-authored-by: Glenn Jocher <glenn.jocher@ultralytics.com>
pull/14851/head
Arun 3 months ago committed by GitHub
parent 59aceffd05
commit 407815cf9e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      ultralytics/nn/modules/conv.py

@ -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))

Loading…
Cancel
Save