Skip to content

Commit

Permalink
fix md argument removal
Browse files Browse the repository at this point in the history
  • Loading branch information
tkswanson committed Jul 24, 2024
1 parent 7f786e1 commit 49f8f9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/animl/models/yolo.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ def _forward_augment(self, x):
y = self._clip_augmented(y) # clip augmented tails
return torch.cat(y, 1), None # augmented inference, train

def _forward_once(self, x, profile=False):
def _forward_once(self, x, profile=False, visualize=False):
y, dt = [], [] # outputs
for m in self.model:
if m.f != -1: # if not from previous layer
Expand Down

0 comments on commit 49f8f9f

Please sign in to comment.