Closed davidkadlecek closed 5 years ago
@davidkadlecek this tutorial hasnt been updated in a while, but if you look at the custom training tutorial it should have reproducible code. You can also look at this comment for the latest tutorial results with code to reproduce (recent from a few weeks ago): https://github.com/ultralytics/yolov3/issues/106#issuecomment-547521991
@davidkadlecek the single-class tutorial has been updated with the latest results and the latest code to reproduce. The biggest change was probably that backbones need to be specifically called for, before darknet53 backbone was loaded by default (now default behavior is no backbone).
Describe the bug Running Example:-Train-Single-Class in google colab hangs and is not improving mAP
To Reproduce Steps to reproduce the behavior:
!git clone https://github.com/ultralytics/yolov3 # clone !bash yolov3/data/get_coco_dataset_gdrive.sh # copy COCO2014 dataset (19GB) %cd yolov3
!python3 train.py --data data/coco_1cls.data --cfg cfg/yolov3-spp-1cls.cfg --batch-size 1 --accumulate 1
Real behavior training hangs after 6 epochs. If I provide additional argument --img-size 608 then it does not hang but mAP is 0 even after 200 iterations and is not improving.
Expected behavior ... is being trained and achieves stated results