我一直在搜索网络和 caffe 源代码,但没有任何解决方案可言,但是在自定义应用程序神经网络中,我在 python 中构建了一些自定义层。前向传递和后向传递在功能上运行良好,我可以在我的设置例程中创建自定义权重参数,但我可能无法让 caffe 为我的层设置“官方”权重。这当然会允许更好的快照、更容易的求解器实现等。
知道我在这里缺少什么吗?
[编辑:下面显示的层代码。为简洁起见,删除了一些内容。该层的目的是为卷积层的扁平化激活过滤器添加颜色]
def setup(self, bottom, top):
global weights
self.weights = np.random.random((CHANNELS))
def reshape(self, bottom, top):
top[0].reshape(1,2*XDIM,2*YDIM)
def forward(self, bottom, top):
arrSize = bottom[0].data.shape
#Note: speed up w/ numpy ops for this later...
for j in range(0, 2*arrSize[1]):
for k in range(0, 2*arrSize[2]):
# Set hue/sat from hueSat table.
top[0].data[0,j,k] = self.weights[bottom[0].data[0,int(j/2),int(k/2)]]*239
def backward(self, top, propagate_down, bottom):
diffs = np.zeros((CHANNELS))
for i in range(0,300):
for j in range(0,360):
diffs[bottom[0].data[0,i/2,j/2]] = top[0].diff[0,i,j]
#stand in for future scaling
self.weights[...] += diffs[...]/4