From 61e3097c706dfec29e041cff39b1570d625f441b Mon Sep 17 00:00:00 2001 From: Haichen Shen Date: Thu, 31 Jan 2019 17:26:55 -0800 Subject: [PATCH] Fix pylint --- python/tvm/relay/op/transform.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/tvm/relay/op/transform.py b/python/tvm/relay/op/transform.py index 5ecf25a0559c..78efd3cfd4d9 100644 --- a/python/tvm/relay/op/transform.py +++ b/python/tvm/relay/op/transform.py @@ -458,7 +458,7 @@ def reverse_reshape(data, newshape): Example:: The special values have the same semantics as :py:class:`tvm.relay.reshape`. - The difference is that special values are inferred from right to left. It + The difference is that special values are inferred from right to left. It can be explained in the example below:: - data.shape = (10,5,4), newshape = (-1,0), reshape results in (40,5)