caffe源碼分析 vector*>& bottom

Blob:4個維度 n x c x h x w;圖片

bottom[0] 、bottom[1]表明該層有幾個輸入。變量

bottom[0]->count(): 輸入中,元素的總維數(個數)im

bottom[0]->nums(): 輸入中,塊(block)的個數,該參數還對應batch_size,即同時輸入了幾張圖片 
c:是卷積核(filter)的個數,每一個卷積核產生一個通道的輸出;在輸入層,c直接就是圖像的通道數; 
還有一個變量,dim;:每一個塊的維度(元素個數)filter

形象化: 
| xxxxx | xxxxx | xxxxx | xxxxx | xxxxx | xxxxx | xxxxx | xxxxx |di

上圖,nums = 8, dim = 5, count = 5*8 =40;co

相關文章
相關標籤/搜索