I trained YOLOv3 for 1 class. When I try to predict find my object in the picture it gives me wrong bounding box coordinates and shape.
I've trained yolov3-tiny version with 70 608x608 images. It was working perfect. Even I trained it with CPU and around 100 images it detects my object accurately.
yolov3-tiny cfg settings:
batch=64
subdivisions=2
width=416
height=416
I found 70 images more. However they are 640x480 images. I resized all images to 640x480 size. Then I trained yolov3-tiny and yolov3 on Google Colab with 170 images. Although the training results show 0.08 accuracy I get terrible detection results.
yolov3.cfg settings:
batch=1
subdivisions=1
width=640
height=480
I wonder that why results got worse. How can I have accurate detection?