Skip to content

Commit

Permalink
Fix AttributeError in YOLOv9 Model Export #8
Browse files Browse the repository at this point in the history
  • Loading branch information
laugh12321 committed Mar 15, 2024
1 parent 335e1a0 commit a9734a0
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion python/export/yolov9/export.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,6 @@ def __call__(self, model=None) -> None:
p.requires_grad = False
model.eval()
model.float()
model = model.fuse()
for m in model.modules():
if m.__class__.__name__ in DETECT.keys():
detect = DETECT[m.__class__.__name__]
Expand Down

0 comments on commit a9734a0

Please sign in to comment.