I want to train my data and create a weights file to train my YOLOV3 network. The objects in my database are not in COCO's classes so I do not want to use their weights file. I also have a limitation - I can not use darknet and I also prefer not to use the torch library.
The files I have: (according https://github.com/AlexeyAB/Yolo_mark/issues/60#issuecomment-401854885)
- yolov3-custom.cfg according my classes
- obj.names with my class's names
- train.txt + test.txt with list of image's location
- folder with images+ labels yolo format (object-class, x, y, width, height)
- obj.data
What can I do?