models/yolov9/ #8484
Replies: 133 comments 338 replies
-
I am looking forward to using it in Ultralytics! |
Beta Was this translation helpful? Give feedback.
-
I am looking forward to using it in Ultralytics! |
Beta Was this translation helpful? Give feedback.
-
Are you planning to integrate only inference, or training and export too? |
Beta Was this translation helpful? Give feedback.
-
Can it be used for pose task? |
Beta Was this translation helpful? Give feedback.
-
What's the timeline look like for Yolov9 training pipeline? Excited to see further optimization on this project. |
Beta Was this translation helpful? Give feedback.
-
Intriguing improvements in the architecture. I'm quite excited to use this in my projects. |
Beta Was this translation helpful? Give feedback.
-
For video processing with yolov9, im using this function: |
Beta Was this translation helpful? Give feedback.
-
I am interested in knowing when yolo v9 might be expected to be available for image segmentation tasks. |
Beta Was this translation helpful? Give feedback.
-
Can this be used for multiclass classification ? |
Beta Was this translation helpful? Give feedback.
-
Can I train Yolov9 using p2.yaml configuration file? |
Beta Was this translation helpful? Give feedback.
-
Hi , i would like to know when you guys will integrate yolov9 with uralytics , thanks |
Beta Was this translation helpful? Give feedback.
-
Hello, I am training a custom model using Yolov9. I could not find any documentation about how to get the bounding box coordinates from the predictions. Could anybody help me with that? I am predicting using the detect.py script from the official Git repo. With Yolov8 I was able to use model.predict(), however if I use this on Yolov9 I get this error: TypeError: BaseModel.fuse() got an unexpected keyword argument 'verbose' Thank you in advance. |
Beta Was this translation helpful? Give feedback.
-
Hi , I'm really glad that yolo v9 has released, I have a pcb(circuit board) ,I use to detect defects in it.I have took image of it and annotated the defected areas , the defects is only 1 one means only one class , I have no idea how to train with only one image of that one PCB , all I want is to predict the defect in that particular image which I used for training , can you help me with this about how many epochs should I use or any other ways ? Please help I've been trying this for hours today , thank you |
Beta Was this translation helpful? Give feedback.
-
Also looking forward to the tfjs export |
Beta Was this translation helpful? Give feedback.
-
I'm currently planning to use YOLOv5 for a project, what would the benefits and drawbacks be of switching to YOLOv9? I'm partictularly interested in fps and speed |
Beta Was this translation helpful? Give feedback.
-
Hi, I hope someone will help clarifying my doubts. where to find or download yaml files, or else is it not necessary? Thank you. |
Beta Was this translation helpful? Give feedback.
-
Are the outputs of YOLOV9 and YOLOV8 the same, and are they processed in the same way? |
Beta Was this translation helpful? Give feedback.
-
Hi, I’m working on a project to detect obstacles in the path of drones using aerial images. Specifically, I want to use YOLOv9 for this task, with a focus on detecting classes such as trees, vehicles, buildings, poles, and other moving objects. I’m wondering if it's feasible to achieve highly accurate results using a pre-trained YOLOv9 model, or if it would be necessary to fine-tune or train the model on a specific dataset for this purpose. My priority is to ensure the model's accuracy in detecting these obstacles. Any guidance on the best approach would be greatly appreciated. Thanks |
Beta Was this translation helpful? Give feedback.
-
If this is the wrong place to ask this please let me know and Ill get it moved ASAP I have been doing some work with yolov9e-seg, and had great results so far(super impressive on my custom data!). I have exported it to an onnx file for use within a cpp ROS node, and this is where the trouble is. I am getting images in to the model and getting a result, but I am having a hard time decoding the output tensors. Is there documentation anywhere on exactly what the output tensors should look like? I have included some of the relevant code below: Python to export: CPP Processing data: I am using just two classes right now, and the output size is as follows: Any help understanding how to decode these and extract the masks, confidence levels, etc would be greatly appreciated, been stuck here for a few days now. Cheers! |
Beta Was this translation helpful? Give feedback.
-
Can you add the CBAM attention layer in yolov9 ? |
Beta Was this translation helpful? Give feedback.
-
Hi, I've been trying to train a YOLOv9 model on a GPU using this code (i'm working on databricks) :
But i'm getting this error :
I've tried to run it with different versions of torch. I tried also upgrading :
but this time it didn't work. Any help understanding what could be the problem. Would be greatly appreciated, been stuck here for a few days now. Thanks |
Beta Was this translation helpful? Give feedback.
-
Why do I get: "" AttributeError: Can't get attribute 'AConv' on <module 'ultralytics.nn.modules.block' from ... I did train with same properties months ago but now it doesn't work |
Beta Was this translation helpful? Give feedback.
-
I am working with the YOLOv9 model and would like to evaluate its performance on a test dataset. While I understand how to use val.py for validation, I am unsure of the process for calculating performance metrics on a test dataset(there are 5 classess). Could you please provide guidance on the following: The recommended approach to calculate performance metrics (e.g., Precision, Recall, mAP) for a test dataset using YOLOv9. |
Beta Was this translation helpful? Give feedback.
-
Hello, Ultralytics team, First of all, I would like to commend you on the outstanding work with the Ultralytics project. I have a few technical questions regarding image resolution and network size in the context of my application: My annotated data has a resolution of 640x480, while the images I use for inference are 200x150. For optimal performance, should I resize my annotated images to 200x150 before training? Currently, I have set the network input size to 480x480. Would adjusting it to 200x200 or 256x256 potentially yield better results, considering the resolution of my inference images? When there is a discrepancy between the network input size and the actual image resolution, how does Ultralytics handle this? For instance, if the network input size is 480x480 but the input image is 200x150, does the model resize the image to 480x360 and then pad it to 480x480? I appreciate your insights and look forward to your guidance. |
Beta Was this translation helpful? Give feedback.
-
What is the loss used for YOLOv9? What is the formula? |
Beta Was this translation helpful? Give feedback.
-
Hello! Are there any materials with the full explanation of implementing of PGI in the code? It is rather hard to understand it from the repository code only and the article gives just the conceptual guide. Thanks in advance! |
Beta Was this translation helpful? Give feedback.
-
PROBLEMMMMM :(((( HOW CAN I FİX THAT PS C:\Users\Muhammed Nurullah\yoloooo> & "C:/Users/Muhammed Nurullah/AppData/Local/Programs/Python/Python312/python.exe" "c:/Users/Muhammed Nurullah/yoloooo/yolov9_3.py" The above exception was the direct cause of the following exception: Traceback (most recent call last): |
Beta Was this translation helpful? Give feedback.
-
I'm having issues with my Yolov9 model exported to tflite. Model was successfully exported to tflite but I cannot get the right bounding boxes. I'm following the steps listed here: https://stackoverflow.com/questions/76381317/yolov8-tflite-python-predictions-and-interpreting-output (for folov8) to make inference for my yolov9 tflite model. 1Step 1: Resizing and Padding (Letterboxing) However, when I draw the outputed bounding boxes on my image the boxes don't fit the objects in the image correctly. The code I'm using can be seen below:
|
Beta Was this translation helpful? Give feedback.
-
I'm getting the following errors despite latest torch and ultralytics installs. Kindly assist
|
Beta Was this translation helpful? Give feedback.
-
models/yolov9/
了解 YOLOv9,它是实时物体检测系统的最新成员,利用可编程梯度信息和 GELAN 架构实现了无与伦比的性能。
https://docs.ultralytics.com/models/yolov9/?h=yolov9
Beta Was this translation helpful? Give feedback.
All reactions