luoyetx / mini-caffe

Minimal runtime core of Caffe, Forward only, GPU support and Memory efficiency.
BSD 3-Clause "New" or "Revised" License
374 stars 151 forks source link

can't find caffe API ! #46

Closed QiYueFeiXue closed 7 years ago

QiYueFeiXue commented 7 years ago

In minicaffe I couldn't find c++ API like this: net->input_blobs() , net->output_blobs(). In fact, I need this API;

luoyetx commented 7 years ago

You should know your input and output blob names, then you can get these blobs by their name. API net->input_blobs(), net->output_blobs() is deleted.

QiYueFeiXue commented 7 years ago

Thank you!