caffe-yolo
caffe-yolo copied to clipboard
Check failed: status.ok() Failed to open leveldb IO error: /LOCK: Permission denied
When run make runtest, the error as follow and the program stopped.
[----------] 1 test from LayerFactoryTest/1, where TypeParam = caffe::CPUDevice
Hi. Have you address this problem? If you have done, could you tell me?
Actually, I think it's not necessary to run "make runtest". If you have no errors when running "make all", then you can use this repository correctly.
Fix this by change: src/caffe/test/test_layer_factory.cpp:line 33 if (iter->first == "Data") { to if(iter->first == "Data" || iter->first == "BoxData")
@mpjlu This worked , Thank you
This worked, thanks! :)