Fix RDNet forward call

pull/2426/head
Ryan 2025-01-22 00:41:04 +08:00 committed by Ross Wightman
parent 80a4877376
commit 17eabaad17
1 changed files with 1 additions and 1 deletions

View File

@ -362,7 +362,7 @@ class RDNet(nn.Module):
def forward(self, x):
x = self.forward_features(x)
x = self.head(x)
x = self.forward_head(x)
return x
@torch.jit.ignore