weiliu89 / caffe

Caffe: a fast open framework for deep learning.
http://caffe.berkeleyvision.org/
Other
4.77k stars 1.68k forks source link

Regarding alexnet as base network #90

Open williamjames1 opened 8 years ago

williamjames1 commented 8 years ago

Hi, I have optimized Alexnet which I use as a classifier. Now I want to use SSD on top of alexnet to detect various objects in video . How should I proceed? Thanks. William.j.

weiliu89 commented 8 years ago

You should define AlexNet in the python/caffe/model_libs.py (refer to VGGNetBody). And then modify examples/ssd/ssd_pascal.py to create a SSD model on top of AlexNet.

williamjames1 commented 8 years ago

Ok. Thanks. Is there any cpp code which I can refer for this apart from python code? Thanks, William.j.

weiliu89 commented 8 years ago

I am not sure what you mean. The python script is used to generate the .prototxt files only.