caffe
caffe copied to clipboard
Caffe: a fast open framework for deep learning.
I am new in the field of Deep Learning and try to learn new concepts with own code. I am Searching for code in python to customize layer in between...
I downloaded your model weight and tested it on COCO-minival as follow: ``` ./build/tools/caffe train \ --solver="models/ResNet-101/coco/SSD_513x513/test_solver.prototxt" \ --snapshot="models/ResNet-101/coco/SSD_513x513/ResNet-101_coco_SSD_513x513_iter_250000.solverstate" \ --gpu 0,1,2,3 2>&1 | tee jobs/ResNet-101/coco/SSD_513x513/ResNet-101_coco_SSD_513x513.log ``` the result is...
Hello, I have a problem about how to generate prior anchor. Could you give me source code about it. Thanks in advance.
Hello, chengyangfu. I'm a graduate student. I want to reproduce your achievement. In this process, I have met some problem, for DSSD300, I wonder all the prediction module consist of...
just need to convert the data to voc format ?
why the loss is nan while the loss of the same data training with SSD and RefineDet is normal
When I run examples/ssd/ssd_pascal_resnet_deconv_321.py, an error is NameError: global name 'DeconvBNLayer' is not defined?
There seem to be two ways of calculating FPS. 1. via the 'time' model of caffe with batch_size = 1: `build/tools/caffe time -model=models/VGGNet/VOC0712/refinedet_vgg16_320x320/deploy.prototxt -gpu=0` 2. get the time interval and...
In **READEME**: `Train and Eval the DSSD model. In this script, we try to fine-tune the entire network. In order to sucessfully finetune the network, we need to freeze all...