我试图将caffe模型转换为tensorflow,但我找不到此图层的等效张量
layer {
name: "fc4_2"
type: "InnerProduct"
bottom: "pool5_spm"
top: "fc4_2"
param {
lr_mult: 1
decay_mult: 1
}
param {
lr_mult: 2
decay_mult: 0
}
inner_product_param {
num_output: 512
weight_filler {
type: "gaussian"
std: 0.005
}
bias_filler {
type: "constant"
value: 0.1
}
}
}
更具体地说,我无法在tensorflow中找到相当于InnerProduct的东西(包含其所有属性。
谢谢,