This repository was archived by the owner on Nov 17, 2023. It is now read-only.
Replies: 2 comments
-
|
@mxnet-label-bot add [question] |
Beta Was this translation helpful? Give feedback.
0 replies
-
|
@haibo-qiu : Could you post this to discuss.mxnet.io ? I think you will catch wider audience's attention there. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I have read the lstmcell code in mxnet. However, I have a question.
The following code is the part of lstmcell:
next_c = symbol._internal._plus(forget_gate * states[1], in_gate * in_transform,
name=’%sstate’%name)
next_h = symbol._internal._mul(out_gate, symbol.Activation(next_c, act_type=“tanh”),
name=’%sout’%name)
I want to know the detail of “symbol._internal._plus” and the difference between it and “mxnet.symbol.broadcast_plus”, but I don’t find it in the mxnet document.
Could any one explain it for me? Thanks so much!!
Beta Was this translation helpful? Give feedback.
All reactions