如何申报Caffe LSTM的例子?

时间:2018-03-06 18:20:49

标签: caffe lstm

Caffe现在似乎有一个LSTM层:

http://caffe.berkeleyvision.org/tutorial/layers/lstm.html

但是,没有关于如何使用它的文档。如何使用新API声明以下LSTM图层?

layer {
  name: "lstm1"
  type: "Lstm"
  bottom: "data"
  bottom: "clip"
  top: "lstm1"

  RecurrentParameter {
    num_output: 15
    clipping_threshold: 0.1
    weight_filler {
      type: "gaussian"
      std: 0.1
    }
    bias_filler {
      type: "constant"
    }
  }
}

0 个答案:

没有答案
相关问题