From 29149b33c81dcf6cace911f8f5794110a2c68a6c Mon Sep 17 00:00:00 2001 From: Wei Chu Date: Mon, 1 Feb 2021 12:04:32 -0800 Subject: [PATCH] remove in_type --- python/mxnet/contrib/onnx/mx2onnx/_op_translations.py | 1 - 1 file changed, 1 deletion(-) diff --git a/python/mxnet/contrib/onnx/mx2onnx/_op_translations.py b/python/mxnet/contrib/onnx/mx2onnx/_op_translations.py index 78080a9e6a1d..3eb8f48be52a 100644 --- a/python/mxnet/contrib/onnx/mx2onnx/_op_translations.py +++ b/python/mxnet/contrib/onnx/mx2onnx/_op_translations.py @@ -3566,7 +3566,6 @@ def convert_batch_dot(node, **kwargs): lhs = input_nodes[0] rhs = input_nodes[1] - input_type = kwargs['in_type'] transpose_a = str(attrs.get('transpose_a', 'False')) transpose_b = str(attrs.get('transpose_b', 'False')) perm = [0, 2, 1]