I trained a dataset by yolov5. The model is existed but it does not work. It does not predict excatly.
Here the code I used:
python train.py --img 640 --batch 8 --epochs 3 --data ../datasets/coco128/coco128.yaml --workers 0 --image-weights '' --name test
outputs of the code:
When we look at the test folder for prediction:
Labels
Predictions
As you see, predictions are nothing. Also there are best.pt and last.pt files. Their size are 14.475 mb. But google colab works with same code.
Also when I try to predict images with default yolov5s.pt, it works, predictions are right.
matrix confusion, result.csv are almost empty with nan text as well.
Thank you for your helps...