ArmageddonKnight commented on a change in pull request #18228: URL: https://github.com/apache/incubator-mxnet/pull/18228#discussion_r425317983
########## File path: python/mxnet/rnn/rnn_cell.py ########## @@ -459,6 +459,11 @@ def __call__(self, inputs, states): name='%so'%name) next_c = symbol._internal._plus(forget_gate * states[1], in_gate * in_transform, name='%sstate'%name) + next_c._set_attr(force_mirroring='0') Review comment: To my best knowledge, I do not think there is an easy way to detect this. This is perhaps the only exceptio I have encountered so far. ---------------------------------------------------------------- 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: us...@infra.apache.org