Skip to content

Commit 17eabaa

Browse files
brianhou0208rwightman
authored andcommitted
Fix RDNet forward call
1 parent 80a4877 commit 17eabaa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

timm/models/rdnet.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -362,7 +362,7 @@ def forward_head(self, x, pre_logits: bool = False):
362362

363363
def forward(self, x):
364364
x = self.forward_features(x)
365-
x = self.head(x)
365+
x = self.forward_head(x)
366366
return x
367367

368368
@torch.jit.ignore

0 commit comments

Comments
 (0)