Residual Neural Network: Concatenation or Element Addition?

青春壹個敷衍的年華 提交于 2019-12-24 11:59:26

问题


With the residual block in residual neural networks, is the addition at the end of the block true element addition or is it concatenation?

For example, would addition([1, 2], [3, 4]) produce [1, 2, 3, 4] or [4, 6] ?


回答1:


It would result in [4, 6], and you can find out more in this paper



来源:https://stackoverflow.com/questions/46902386/residual-neural-network-concatenation-or-element-addition

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!