You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mxnet.apache.org by GitBox <gi...@apache.org> on 2018/12/11 03:18:37 UTC

[GitHub] haibo-qiu opened a new issue #13608: symbol._internal._plus ?

haibo-qiu opened a new issue #13608: symbol._internal._plus  ?
URL: https://github.com/apache/incubator-mxnet/issues/13608
 
 
   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!!

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services