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 2f0b482 commit 6b61f1cCopy full SHA for 6b61f1c
onnx_diagnostic/helpers/rt_helper.py
@@ -99,9 +99,10 @@ def make_feeds(
99
new_flat.append(flat[pos])
100
pos += 1
101
assert len(new_flat) == len(names), (
102
- f"Unable to align expected input {names} with the given input"
+ f"Unable to align expected input {names} with the given input, "
103
+ f"type(proto)={type(proto)}"
104
f"\n-- inputs: {string_type(inputs, with_shape=True)}"
- f"\n-- model: {string_type(proto.graph.input)}"
105
+ f"\n-- typed_names: {typed_names}"
106
)
107
flat = new_flat
108
0 commit comments