我有一个 Caffe CNN 模型,我正在尝试使用importCaffeNetwork
命令将其导入 MATLAB,该命令将 prototxt 和 caffemodel 文件作为输入参数。
但是,我收到此错误:
The pooling layer 'pool1' is not compatible with MATLAB. Caffe computes the output size as [16 16 32] but MATLAB computes it as [15 15 32]
错误似乎与MATLAB和CAFFE中池化层的输出大小计算的差异有关,前者使用ceil
,后者使用floor
函数。
它是问题的真正根源吗?我能做些什么来解决这个问题?