打开微信,使用扫一扫进入页面后,点击右上角菜单,
点击“发送给朋友”或“分享到朋友圈”完成分享
cnnl开发者手册->5.72.1. cnnlConvolutionForward 中卷积操作的示例如下:
input three arrays by 1 * 3 * 3 * 2, 1 * 1 * 1 * 1 and 1 * 3 * 3 * 2 --> input: [[[[5, 1], [8, 1], [6, 4]], [[3, 8], [2,6], [0, 6]], [[8, 5], [7,4], [9, 6]]]] --> bias: [[[[1]]]] --> filter: [[[[1, 5], [7,5], [4, 2]], [[1, 8], [3,8], [6, 2]], [[4, 8], [5,0], [9, 5]]]] param: pad: (1, 1, 1, 1), stride: (2, 2), dilation: (1, 1), output array by 1 * 2 * 2 * 1 --> output: [[[[136], [122]], [[195], [176]]]]
这个输出是不是弄错了,没有加上 bias 啊 ?
热门帖子
精华帖子