Skip to content

Commit

Permalink
fix ValueError: tile cannot extend outside image
Browse files Browse the repository at this point in the history
  • Loading branch information
mikel.brostrom committed May 23, 2023
1 parent b720bf6 commit 22f1e76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/yolo_nas_track.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ def run(args):
prediction.labels[:, np.newaxis]
], axis=1
)
preds = torch.from_numpy(preds)
preds = torch.from_numpy(preds).int()
predictor.results = [None]
# # Postprocess
with predictor.profilers[2]:
Expand Down

0 comments on commit 22f1e76

Please sign in to comment.