Fix forward_fuse comment (#17714)
Co-authored-by: Glenn Jocher <glenn.jocher@ultralytics.com>
This commit is contained in:
parent
59aceffd05
commit
407815cf9e
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue