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 0380561 commit b011336Copy full SHA for b011336
tf2onnx/graph.py
@@ -1069,7 +1069,7 @@ def make_onnx_graph_io(self, ids):
1069
utils.make_sure(dtype is not None, "missing output dtype for " + name)
1070
# TODO: allow None output shape or not? e.g. shape=(?,)
1071
#utils.make_sure(shape is not None, "missing output shape for " + name)
1072
- if shape is None: logger.warning("missing output shape for " + name)
+ if shape is None: logger.warning("missing output shape for %s", name)
1073
1074
v = utils.make_onnx_inputs_outputs(name, dtype, shape)
1075
tensor_value_infos.append(v)
0 commit comments