私が書いたカスタム損失レイヤーがあります。このレイヤーは、下部[0]ブロブの一部にsoftmax
とsigmoid
のアクティブ化を適用します。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