Paralysis
Paralysis

Reputation: 13

Trying to use matcaffe for the interface between MATLAB and Caffe, but cannot find caffe_.cpp

With caffe_.cpp being a private function, when I call functions like caffe.reset_all(), there is always an error telling me it cannot find caffe_.cpp.

So how to use that in MATLAB?

Upvotes: 1

Views: 1071

Answers (1)

Shai
Shai

Reputation: 114786

You can find 'caffe_.cpp' under matlab/+caffe/private/.
Make sure you cloned caffe git properly and that you built the matlab interface:

~$ make matcaffe

Upvotes: 2

Related Questions