summaryrefslogtreecommitdiff
path: root/matlab
diff options
context:
space:
mode:
authorEvan Shelhamer <shelhamer@imaginarynumber.net>2014-03-13 20:13:46 -0700
committerEvan Shelhamer <shelhamer@imaginarynumber.net>2014-03-13 20:15:27 -0700
commit0816a9480351b5def27c28c7de102a18fb71fdb9 (patch)
treed5afb275b253505c01e6937d1493477b95723126 /matlab
parent04d6595d3c5995999675bbf1abb59b5f5305a2ec (diff)
downloadcaffe-0816a9480351b5def27c28c7de102a18fb71fdb9.tar.gz
caffe-0816a9480351b5def27c28c7de102a18fb71fdb9.tar.bz2
caffe-0816a9480351b5def27c28c7de102a18fb71fdb9.zip
fix wrapper example paths
Diffstat (limited to 'matlab')
-rw-r--r--matlab/caffe/matcaffe_demo.m6
1 files changed, 3 insertions, 3 deletions
diff --git a/matlab/caffe/matcaffe_demo.m b/matlab/caffe/matcaffe_demo.m
index 3eb4f107..459fef9c 100644
--- a/matlab/caffe/matcaffe_demo.m
+++ b/matlab/caffe/matcaffe_demo.m
@@ -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);