yes, i just solved it. just type "caffe autoencoder bug" in google and search, you will get the answer on the top.
inspired by the site, i just copy the "/examples/mnist/mnist_train_lmdb" to the same folder, so i got 3 lmdb folders :
"/examples/mnist/mnist_test_lmdb"
"/examples/mnist/mnist_train_lmdb"
"/examples/mnist/mnist_train_lmdb(copy)"
and then i modified the network definition prototxt, just the 2nd layer as :
layer {
name: "data"
type: "Data"
top: "data"
include {
phase: TEST
stage: "test-on-train"
}
transform_param {
scale: 0.0039215684
}
data_param {
source: "examples/mnist/mnist_train_lmdb (copy)"
batch_size: 100
backend: LMDB
}
}
then it worked.
it seems like a lock on "/examples/mnist/mnist_train_lmdb".
在 2016年3月3日星期四 UTC+8上午3:14:25,Belhassen Bayar写道: