Skip to content

Commit 0d73dd7

Browse files
Made einsum op convert equation string to lower case
1 parent 0a11159 commit 0d73dd7

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

tf2onnx/onnx_opset/math.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -564,6 +564,7 @@ class Einsum:
564564
@classmethod
565565
def version_12(cls, ctx, node, **kwargs):
566566
del node.attr["N"]
567+
node.attr["equation"].s = node.attr["equation"].s.lower()
567568

568569

569570
@tf_op("IsFinite")

0 commit comments

Comments
 (0)