diff options
author | Evan Shelhamer <shelhamer@imaginarynumber.net> | 2014-03-13 20:13:46 -0700 |
---|---|---|
committer | Evan Shelhamer <shelhamer@imaginarynumber.net> | 2014-03-13 20:15:27 -0700 |
commit | 0816a9480351b5def27c28c7de102a18fb71fdb9 (patch) | |
tree | d5afb275b253505c01e6937d1493477b95723126 /matlab | |
parent | 04d6595d3c5995999675bbf1abb59b5f5305a2ec (diff) | |
download | caffe-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.m | 6 |
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); |