From 85f6a304f41e4ad9d041aeb333722d933e958ff0 Mon Sep 17 00:00:00 2001 From: Wei Chu Date: Fri, 5 Feb 2021 12:08:17 -0800 Subject: [PATCH] fix typo --- python/mxnet/contrib/onnx/mx2onnx/_op_translations.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/mxnet/contrib/onnx/mx2onnx/_op_translations.py b/python/mxnet/contrib/onnx/mx2onnx/_op_translations.py index 873cb5c67cb1..cbd53e8ecc92 100644 --- a/python/mxnet/contrib/onnx/mx2onnx/_op_translations.py +++ b/python/mxnet/contrib/onnx/mx2onnx/_op_translations.py @@ -2422,7 +2422,7 @@ def convert_take(node, **kwargs): make_node('Shape', [data], [name+'_data_shape']), ] - # cornor case + # corner case if axis == -1: nodes += [ make_node('Shape', [name+'_data_shape'], [name+'_data_dim']),