Training of YoloXS Model on Coco dataset
See original GitHub issueHi, I am currently reproducing the coco training on YoloXS model with line below:
python leondgarse/coco_train_script.py --det_header yolox.YOLOXS --data_name coco/2014 --batch_size 16
After my training using 30 epochs, I am getting poor result, as
# Show result
from keras_cv_attention_models.coco import data
data.show_image_with_bboxes(imm, bboxs, labels, confidences, num_classes=80)
Do I have anything configure wrongly? Or any suggestion could I change? Thanks!
Issue Analytics
- State:
- Created a year ago
- Comments:5 (2 by maintainers)
Top Results From Across the Web
Train YOLOv4 with Specific Categories of Images in MS ...
In this article, I will explain how to download and train YOLOv4 model with only specific categories of images in MS COCO dataset....
Read more >Object detection: train YOLOv5 on a custom dataset
A guide to train a YOLO object detection algorithm on your dataset. It's based on the YOLOv5 open source repository by Ultralytics.
Read more >How to Train A Custom Object Detection Model with YOLO v5
Our model inferencing in a preset setting. Let's see how to make it identify any object! We will cover the following material and...
Read more >Deeplodocus/COCO-with-YOLO
In this tutorial, we will walk through each step to configure a Deeplodocus project for object detection on the COCO dataset using our...
Read more >Yolo v3 training on coco data set - MATLAB Answers
Hey Asif ! I understand that you want to build a yolov3 object detector model and train it on the COCO dataset.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Maybe caused by the rescale_mode. Try:
I actually still cannot claim it a reproduced, as my YOLOX_Tiny only reaches 31.8 using:
It’s from the anthor’s repo, also the BGR input format for the original YOLOX weights.