pjreddie / darknet

Convolutional Neural Networks
http://pjreddie.com/darknet/
Other
25.73k stars 21.33k forks source link

Can't resize shortcut layers? #286

Open qilicun opened 6 years ago

qilicun commented 6 years ago

Hi, I want to add some shortcut layers for yolo, but met this error, Cannot resize this type of layer: File exists Does darknet have any plan to support it?Thanks!

lecramex commented 5 years ago

Hello,

I was having a similar problem with yolov3-tiny, in my case the problem was that in the cfg file when selecting the configuration for the yolo layer there was a property called "random" which in the file was 1 by default I changed the value to 0 a now is running for training.

`[yolo] mask = 0,1,2 anchors = 10,14, 23,27, 37,58, 81,82, 135,169, 344,319 classes=9 num=6 jitter=.3 ignore_thresh = .7 truth_thresh = 1

random=1

random=0`