Skip to content

Commit

Permalink
fix error
Browse files Browse the repository at this point in the history
Signed-off-by: Alexandre Eichenberger <[email protected]>
  • Loading branch information
AlexandreEichenberger committed Dec 3, 2024
1 parent 671241d commit 41bb62f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions utils/RunONNXModel.py
Original file line number Diff line number Diff line change
Expand Up @@ -995,10 +995,10 @@ def run(self, outputname, input_feed, **kwargs):
try:
import onnxruntime
except ImportError:
print(
"Failed to include the `onnxruntime` package; please install to successfully use this script."
)
exit(1)
print(
"Failed to include the `onnxruntime` package; please install to successfully use this script."
)
exit(1)

input_feed = dict(zip(input_names, inputs))
print("Running inference using onnxruntime ...")
Expand Down

0 comments on commit 41bb62f

Please sign in to comment.