如何将此caffe图层转换为tensorflow?

时间:2018-06-08 18:40:44

标签: tensorflow caffe

我试图将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的东西(包含其所有属性。

谢谢,

0 个答案:

没有答案