We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 849049b commit 503930bCopy full SHA for 503930b
onnx_diagnostic/ort_session.py
@@ -533,10 +533,10 @@ def investigate_onnxruntime_issue(
533
f"{node.op_type}({', '.join(node.input)}) -> "
534
f"{', '.join(node.output)}"
535
)
536
- e = onnx.utils.Extractor(onx)
+ ext = onnx.utils.Extractor(onx)
537
if quiet:
538
try:
539
- extracted = e.extract_model(input_names, node.output)
+ extracted = ext.extract_model(input_names, node.output)
540
except Exception as e:
541
if verbose > 0:
542
print(
@@ -545,7 +545,7 @@ def investigate_onnxruntime_issue(
545
546
return node
547
else:
548
549
550
if dump_filename:
551
if verbose > 1:
0 commit comments