Training darknet finishes immediately

前端 未结 4 1457
独厮守ぢ
独厮守ぢ 2021-01-02 02:36

I would like to use the yolo architecture for object detection. Before training the network with my custom data, I followed these steps to train it on the Pascal VOC data: h

4条回答
  •  谎友^
    谎友^ (楼主)
    2021-01-02 02:44

    Also if using AlexeyAB/darknet they might have a problem with -clear option, in detector.c:

    if (clear) *nets[k].seen = 0 
    

    should really be:

    if (clear) {*nets[k].seen = 0;*nets[k].cur_iteration = 0;}
    

    otherwise the training loop will exit immediately.

提交回复
热议问题