Fix RDNet forward call
parent
c0b12fcb16
commit
61bf9e1af1
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue