Skip to content

Commit d99a1b1

Browse files
committed
remove name
1 parent 295938b commit d99a1b1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tf2onnx/onnx_opset/nn.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ def version_1(cls, ctx, node, **kwargs):
260260
end_h = ctx.make_node("Add", [start_h.output[0], expect_h])
261261
end_w = ctx.make_node("Add", [start_w.output[0], expect_w])
262262
starts = ctx.make_node("Concat", [start_h.output[0], start_w.output[0]], attr={"axis": 0})
263-
ends = ctx.make_node("Concat", [end_h.output[0], end_w.output[0]], attr={"axis": 0}, name="concat_efgh")
263+
ends = ctx.make_node("Concat", [end_h.output[0], end_w.output[0]], attr={"axis": 0})
264264
const_one_two = ctx.make_const(utils.make_name(node.name + "_const_one_two"),
265265
np.array([1, 2], dtype=np.int64))
266266
slice_node = ctx.make_node("Slice",

0 commit comments

Comments
 (0)