Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
echarlaix authored Dec 2, 2024
1 parent 5621497 commit 74f37d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion optimum/exporters/onnx/model_patcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ def patched_forward(*args, **kwargs):
filterd_outputs[name] = value
elif isinstance(outputs, (list, tuple)):
outputs_list = list(config.outputs.keys())
filtered_outputs = dict(zip(outputs_list, outputs))
filterd_outputs = dict(zip(outputs_list, outputs))
else:
if len(config.outputs) > 1:
num_outputs = len(config.outputs)
Expand Down

0 comments on commit 74f37d1

Please sign in to comment.