-
Notifications
You must be signed in to change notification settings - Fork 926
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
run ByteTrack with yolov5 instead of yolox #99
Comments
Hi, any process? |
Yes, I load yolo5s from torch hub and put its detection to ByteTrack update function, seems it works. |
@gmt710 thank you so much.
|
this can load the weight from the folder. |
@gmt710 oh sorry, you pass attemp_download |
okay, you can comment it -- attemp_download. |
@gmt710 why i get this error |
What command ? My yolov5s' project is v4. |
ultralytics/yolov5#5175, you can refer this, okay? |
@gmt710 yeah I fix it by using the latest yolov5 version, but now I get new problems:
I'm not sure about these 2 problems, can you explain why? You can check my clone here, which I modify your code a little bit. |
Haha, I don't clearly know about this. |
Thank you, your code work, help me a lot, and I change it to version 6. The problem is, I think the model needs to warm up. Do you know how to do this? |
you can search the difference between torch.load and torch.hub.load ? |
@gmt710 got a minute? I try at MOT17 with these weights, but the result is so bad? I really don't know why, because the detections seem to work well. |
@tungdop2 |
@tungdop2 , Okay, Next I will check this. Thanks. |
@tungdop2 I‘ve checked, I think maybe you need check my code, ok? your setting and inference code is not the same as me. |
you need train a model for pedetrian detection. |
This conclusion is too easy to give .you need train pedetrian datasets. |
so where is your MOTA results of yolov5-bytetracker ??? |
Have any one deploy bytetrack with yolov5 in tensorrt ? Can you help me? Thanks you |
Hi I have question about your yolov5-bytetracker code. |
@gmt710 |
yolo is ok, you can refer my blog.https://blog.csdn.net/qq_35975447/article/details/114412978?spm=1001.2014.3001.5502 |
@gmt710 |
@hyeonmin11 , If you want to train yolov5-bytetrack, you only need to train yolov5 on your own datasets. The blog include the steps. if you can find any other blog for yolov5 training, it is suitable for you. I revised a few places that are difficult to explain in a few sentences. |
I have a couple of questions after I read your code... If you can help me to figure these out that will be nice. Thanks! |
yes, you only need train yolov5 on your detection datasets. |
Hei @gmt710 . Which Speed did you reach using YOLOv5 and your implementation? Also, in which hardware? |
I haven't tested the speed . you can test it yourself. |
@gmt710 Just wonder any reason for training Yolov5 instead YoloX ? |
Yolov5s can provide a faster runtime speed. |
@NeoYY I see. But Yolox provides higher accuracy than Yolov5 ? |
That's right, since the performance of tracker heavily relying on detector. And as we know YoloX is much better than yolo5. |
how can i solve this error? |
Here you have a Yolov5+ByteTrack implementation: https://github.com/mikel-brostrom/Yolov5_StrongSORT_OSNet Switch tracking method by:
|
how I can run train.py with yolov5 pretrained weights from its model zoo instead of yolox?
The text was updated successfully, but these errors were encountered: