【发布时间】:2015-12-04 12:48:55
【问题描述】:
在尝试将池化层(池化卷积层)的输出与内积层的输出连接时,出现以下错误:
Check failed: num_axes == bottom[i]->num_axes() (4 vs. 2) All inputs must have the same #axes.
我想连接两者并将它们输入另一个(全连接)内积层。
谁能建议如何解决这个问题?
我的 concat 层定义是:
layer {
type: "Concat"
bottom: "pool3"
bottom: "ip1_prior"
top: "ip1_combine"
name: "concat"
}
谢谢!
【问题讨论】:
标签: deep-learning caffe