fix wrapper example paths
authorEvan Shelhamer <shelhamer@imaginarynumber.net>
Fri, 14 Mar 2014 03:13:46 +0000 (20:13 -0700)
committerEvan Shelhamer <shelhamer@imaginarynumber.net>
Fri, 14 Mar 2014 03:15:27 +0000 (20:15 -0700)
matlab/caffe/matcaffe_demo.m
python/caffe/detection/detector.py

index 3eb4f10..459fef9 100644 (file)
@@ -1,6 +1,6 @@
 function scores = matcaffe_demo(im, use_gpu)
 % scores = matcaffe_demo(im, use_gpu)
-% 
+%
 % Demo of the matlab wrapper using the ILSVRC network.
 %
 % input
@@ -20,9 +20,9 @@ function scores = matcaffe_demo(im, use_gpu)
 %  scores = matcaffe_demo(im, 1);
 %  [score, class] = max(scores);
 
-model_def_file = '../../examples/imagenet_deploy.prototxt';
+model_def_file = '../../models/imagenet.prototxt';
 % NOTE: you'll have to get the pre-trained ILSVRC network
-model_file = '../../examples/alexnet_train_iter_470000';
+model_file = '../../models/caffe_reference_imagenet_model';
 
 % init caffe network (spews logging info)
 caffe('init', model_def_file, model_file);
index 1dcb797..b732836 100644 (file)
@@ -371,12 +371,12 @@ if __name__ == "__main__":
   # Optional arguments.
   parser.add_argument(
     "--model_def",
-    default="examples/imagenet_deploy.prototxt",
+    default="../../../models/imagenet.prototxt",
     help="Model definition file."
   )
   parser.add_argument(
     "--pretrained_model",
-    default="examples/caffe_reference_imagenet_model",
+    default="../../../models/caffe_reference_imagenet_model",
     help="Trained model weights file."
   )
   parser.add_argument(