AndrewZhaoLuo commented on code in PR #11183:
URL: https://github.com/apache/tvm/pull/11183#discussion_r880755003
##########
python/tvm/relay/frontend/tflite.py:
##########
@@ -220,6 +221,38 @@ def check_unsupported_ops(self):
if len(raise_msg) > 0:
raise tvm.error.OpNotImplemented(raise_msg)
+ def unbind(self, data, axis=1):
+ """
+ This is a slightly modified version compared to the one in common.py
Review Comment:
Can you just call `common.py` unbind with it's axis parameter as 1?
##########
python/tvm/relay/frontend/tflite.py:
##########
@@ -220,6 +221,38 @@ def check_unsupported_ops(self):
if len(raise_msg) > 0:
raise tvm.error.OpNotImplemented(raise_msg)
+ def unbind(self, data, axis=1):
+ """
+ This is a slightly modified version compared to the one in common.py
Review Comment:
Can you just call `common.py` unbind with its axis parameter as 1?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]