https://github.com/weiliu89/caffe/issues/332
P.S. For the detection speed evaluation, I basically add timing function in your "ssd_detect.ipynb" example:
需要做一个循环,对几百+的图片进行一个检测,然后计算时间。
import time
start = time.time()
detections = net.forward()['detection_out']
end = time.time()
print end-start
https://github.com/weiliu89/caffe/issues/270
To test time, you can use
./build/tools/caffe time -gpu 0 -model models/VGGNet/VOC0712/SSD_300x300/deploy.prototxt
The actual time may have other latency (e.g. read image from disk, do nms to output final detection results).
weiliu89 commented on 24 Nov 2016