From 55ac14194237344f1001186c7a9da0569344800d Mon Sep 17 00:00:00 2001 From: Calvin Xu Date: Mon, 13 Nov 2017 20:24:30 +0800 Subject: [PATCH] Update README.md Set the current directory to the python environment. Otherwise, the python program will not find appropriate package. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 380c605..297f0b7 100644 --- a/README.md +++ b/README.md @@ -55,6 +55,7 @@ For details about R-CNN please refer to the paper [Faster R-CNN: Towards Real-Ti To run the demo ```Shell cd $TFFRCNN +export PYTHONPATH=".:$PYTHONPATH" # set current directory to the python environment python ./faster_rcnn/demo.py --model model_path ``` The demo performs detection using a VGG16 network trained for detection on PASCAL VOC 2007.