Need help regarding Yolov5 Architecture
abh1sh5k opened this issue · 4 comments
abh1sh5k commented
I was working on fish detection and tracking system in 3 dimensions using MS Kinect, and used yolov5s for rgb frames. I wanted to experiment a bit with the architecture
of yolov5, but as a beginner i am struggling to find the relation between the arguments in the classes used in common.py and the arguments used in yaml
file in the ultralytics repo.
PS : If you can add in some resources from where i can learn about the architecture and layers, then it would really help. Thank you !
positive666 commented
So you mean you need to train your own data set model under torch's yolov5? This project is only model conversion and deepstream migration. Do you need yolov5 source code training?
------------------ 原始邮件 ------------------
发件人: "positive666/Deepstream_Project" ***@***.***>;
发送时间: 2021年5月11日(星期二) 晚上7:56
***@***.***>;
***@***.***>;
主题: [positive666/Deepstream_Project] Need help regarding Yolov5 Architecture (#3)
I was working on fish detection and tracking system in 3 dimensions using MS Kinect, and used yolov5s for rgb frames. I wanted to experiment a bit with the architecture
of yolov5, but as a beginner i am struggling to find the relation between the arguments in the classes used in common.py and the arguments used in yaml
file in the ultralytics repo.
PS : If you can add in some resources from where i can learn about the architecture and layers, then it would really help. Thank you !
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub, or unsubscribe.
abh1sh5k commented
@positive666 I want to add some layers in the yolov5s.yaml file. But I could not understand the arguments to be passed in that layer.
positive666 commented
hi, I did modify the structure on the fork's V5 REPO, you can refer to mine to see? The main change is to add class functions to commo.py, then register in yolo.py, and finally modify in yaml, and debug through python model.py
…------------------ 原始邮件 ------------------
发件人: "Abhishek ***@***.***>;
发送时间: 2021年5月12日(星期三) 晚上6:04
收件人: ***@***.***>;
抄送: ***@***.***>; ***@***.***>;
主题: Re: [positive666/Deepstream_Project] Need help regarding Yolov5 Architecture (#3)
@positive666 I want to add some layers in the yolov5s.yaml file. But I could not understand the arguments to be passed in that layer.
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub, or unsubscribe.
abh1sh5k commented
Ok Thanks... Got it...