From 3c6485a95e2c5653c601f07fd7f5875cf956f3e6 Mon Sep 17 00:00:00 2001 From: Ajinkya Kale Date: Thu, 13 Aug 2015 17:10:46 -0700 Subject: [PATCH] fixing the database param The example talks about LevelDB as the db backend but has lmdb as the param in the execution. --- examples/feature_extraction/readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/feature_extraction/readme.md b/examples/feature_extraction/readme.md index a980b8b3203..f3ec3609859 100644 --- a/examples/feature_extraction/readme.md +++ b/examples/feature_extraction/readme.md @@ -51,7 +51,7 @@ Extract Features Now everything necessary is in place. - ./build/tools/extract_features.bin models/bvlc_reference_caffenet/bvlc_reference_caffenet.caffemodel examples/_temp/imagenet_val.prototxt fc7 examples/_temp/features 10 lmdb + ./build/tools/extract_features.bin models/bvlc_reference_caffenet/bvlc_reference_caffenet.caffemodel examples/_temp/imagenet_val.prototxt fc7 examples/_temp/features 10 leveldb The name of feature blob that you extract is `fc7`, which represents the highest level feature of the reference model. We can use any other layer, as well, such as `conv5` or `pool3`.