我有一個我自己寫的自定義丟失圖層,該圖層將softmax
和sigmoid
激活應用於部分底部[0] blob。Caffe中的一個圖層中的圖層
Ex: `bottom[0]` is of shape (say): `[20, 7, 7, 50]` (`NHWC` format)
I would like to apply `softmax` to `[20, 7, 7, 25]` (first 25 channels) and
`sigmoid` to `[20, 7, 7, 1]` (just one channel) and the remaining 24 channels are taken in as it is.
如何有效地分配內存以這兩個softmax
和sigmoid
層的輸入斑點,並釋放此內存?
這似乎是解決問題! – harman