Skip to content

Commit b06907b

Browse files
committed
Update cvt.py
1 parent 0aadb30 commit b06907b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

timm/models/cvt.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -378,7 +378,7 @@ def __init__(
378378
trunc_normal_(self.cls_token, std=.02)
379379

380380
def forward(self, x: torch.Tensor) -> torch.Tensor:
381-
self.probe(x)
381+
x = self.probe(x)
382382
x = self.conv_embed(x)
383383
x = self.embed_drop(x)
384384

0 commit comments

Comments
 (0)