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"
}
}
}