Welcome to YOLOv3 Discussions! #1596
Replies: 13 comments 19 replies
-
Hi. I used yolov3 with 1080TI . Now I have updated the video card to rtx 3080. And the program stuck . |
Beta Was this translation helpful? Give feedback.
-
@ShostNazar it appears you are trying to run the archive branch. We do not offer support or maintain this branch anymore. I would recommend trying the master branch, which is now the default branch. The equivalent master branch command is: git clone https://github.com/ultralytics/yolov3
cd yolov3
python detect.py --weights yolov3-spp.pt Branch NoticeThe ultralytics/yolov3 repository is now divided into two branches:
$ git clone https://github.com/ultralytics/yolov3 # master branch (default)
$ git clone -b archive https://github.com/ultralytics/yolov3 # archive branch |
Beta Was this translation helpful? Give feedback.
-
Hi. I my name's Dani, I used yolov3 for surveillance project, currently I test using a rtsp camera, I get 3 to 5 fps on processing image, to minimize resource usage I plan to decrease image processing to 1 image for every 5 second, is it able to configure using setting ? or need effort on coding side ? |
Beta Was this translation helpful? Give feedback.
-
@daniramdani you might try modifying the source here, though you may also want to implement a change detection intermediary or additional logic to suit your needs. Lines 292 to 303 in 9f4e853 |
Beta Was this translation helpful? Give feedback.
-
@daniramdani streamloader() is used for rtsp/http/rtmp streams and webcams only. loadimages() is used for all other media (images and videos). |
Beta Was this translation helpful? Give feedback.
-
@daniramdani the streaming dataloader is here: Line 258 in 9f4e853 Image and video dataloader is here: Line 121 in 9f4e853 |
Beta Was this translation helpful? Give feedback.
-
Hi. From what I've read about YOLO I thought that when calculating the loss an obj loss and noobj loss is calculated. I can't seem to find where this is done in the source code or where I would be able to scale the weighting on noobj loss up? Thank you for your help. |
Beta Was this translation helpful? Give feedback.
-
@TheoGreenslade in this implementation there is only objectness loss gain, and objectness loss positive sample gain (also applied only to positive samples). These values are in the hyperparameter file: Lines 16 to 17 in c1f8dd9 |
Beta Was this translation helpful? Give feedback.
-
Do you have a version of yolo that was on your page on September 5? (I'm not a programmer and I wanted to just start train in one command like it was before). Because I have a lot of problems with the new version - i cant train on Windows 10. I get this error |
Beta Was this translation helpful? Give feedback.
-
Hi there! I am slightly confused about how the models are generated from the yaml files. From my understanding, Darknet-53 has 53 convolutional layers however there are only 6 convolutional layers in the backbone part of the yaml file. Would you be able to clear this up for me. Additionally, in the comments in the yaml files, what do P1, P2, ..., P5 mean and the numbers next to them? Thank you so much for your help. |
Beta Was this translation helpful? Give feedback.
-
Hello, I want to compare the performance of the model with and without Mosaic. How can I turn off the image preprocessing module of Mosaic? |
Beta Was this translation helpful? Give feedback.
-
Hello, where can I modify the activation function, thank you very much |
Beta Was this translation helpful? Give feedback.
-
Hello @glenn-jocher, I am trying use YOLOv3 with a classification task, could you please tell me where to find, how image sizes are handled. I could only find out that it checks if the image size is a multiple of stride. All my input images are 1024 square. According to what I read on YOLOv3 images has to be 416x416. But I've already got good results. Are all images later getting reduced to 416? Please help me with this. Thanks. |
Beta Was this translation helpful? Give feedback.
-
👋 Welcome!
We’re using Discussions as a place to connect with other members of our community. We hope that you:
build together 💪.
To get started, comment below with an introduction of yourself and tell us about what you do with this community.
Beta Was this translation helpful? Give feedback.
All reactions