ANSHUMAN87 commented on a change in pull request #7635:
URL: https://github.com/apache/tvm/pull/7635#discussion_r594085972
##########
File path: python/tvm/relay/frontend/tflite.py
##########
@@ -1872,7 +1872,7 @@ def convert_fully_connected(self, op):
out_dtype="int32",
)
else:
- out = _op.nn.dense(in_expr, weight_expr)
+ out = _op.nn.dense(in_expr, weight_expr, units=weight_shape[0])
Review comment:
One small suggestion, if possible, can we add a test case which will
indicate the issue fixed here. So that it will help in future breaks.
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]