Skip to content
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

About how the test results obtained by detect.py are evaluated #12574

Closed
1 task done
Jiase opened this issue Jan 3, 2024 · 7 comments
Closed
1 task done

About how the test results obtained by detect.py are evaluated #12574

Jiase opened this issue Jan 3, 2024 · 7 comments
Labels
question Further information is requested Stale

Comments

@Jiase
Copy link

Jiase commented Jan 3, 2024

Search before asking

Question

I used detect.py to get the test results and then wrote my own script to calculate the precision, but by chance I realized that my calculations were inconsistent with the evaluation results using val.py when I evaluated the test data using val.py. I carefully tested the script I wrote myself and I think it is consistent with the precision definition. I am confused and which is more convincing proof of the reliability of the model in the printout of val.py, precision or map?

Additional

No response

@Jiase Jiase added the question Further information is requested label Jan 3, 2024
Copy link
Contributor

github-actions bot commented Jan 3, 2024

👋 Hello @Jiase, thank you for your interest in YOLOv5 🚀! Please visit our ⭐️ Tutorials to get started, where you can find quickstart guides for simple tasks like Custom Data Training all the way to advanced concepts like Hyperparameter Evolution.

If this is a 🐛 Bug Report, please provide a minimum reproducible example to help us debug it.

If this is a custom training ❓ Question, please provide as much information as possible, including dataset image examples and training logs, and verify you are following our Tips for Best Training Results.

Requirements

Python>=3.8.0 with all requirements.txt installed including PyTorch>=1.8. To get started:

git clone https://github.com/ultralytics/yolov5  # clone
cd yolov5
pip install -r requirements.txt  # install

Environments

YOLOv5 may be run in any of the following up-to-date verified environments (with all dependencies including CUDA/CUDNN, Python and PyTorch preinstalled):

Status

YOLOv5 CI

If this badge is green, all YOLOv5 GitHub Actions Continuous Integration (CI) tests are currently passing. CI tests verify correct operation of YOLOv5 training, validation, inference, export and benchmarks on macOS, Windows, and Ubuntu every 24 hours and on every commit.

Introducing YOLOv8 🚀

We're excited to announce the launch of our latest state-of-the-art (SOTA) object detection model for 2023 - YOLOv8 🚀!

Designed to be fast, accurate, and easy to use, YOLOv8 is an ideal choice for a wide range of object detection, image segmentation and image classification tasks. With YOLOv8, you'll be able to quickly and accurately detect objects in real-time, streamline your workflows, and achieve new levels of accuracy in your projects.

Check out our YOLOv8 Docs for details and get started with:

pip install ultralytics

@glenn-jocher
Copy link
Member

@Jiase hello! Thanks for reaching out with your question.

The detect.py script is primarily designed for inference and does not compute precision or mAP (mean Average Precision). For evaluating model performance, you should use val.py, which provides a comprehensive evaluation including precision, recall, and mAP at various IoU (Intersection over Union) thresholds.

The mAP is generally considered a more reliable indicator of model performance across multiple classes and IoU thresholds, as it averages precision over all classes and recall levels. Precision alone might not give you the full picture, as it doesn't account for the true negative detections.

If you find discrepancies between your script's calculations and the val.py output, make sure you are using the same IoU threshold and consider all aspects of the confusion matrix. For a detailed understanding of the metrics, you can refer to our documentation at https://docs.ultralytics.com/yolov5/.

Keep in mind that the evaluation metrics are only as good as the ground truth data they are compared against, so ensure your test dataset is well-annotated and representative of the problem space.

Happy coding! 😊

@Jiase
Copy link
Author

Jiase commented Jan 8, 2024

Thank you for your answer, I would also like to understand what I should do when I am interested in knowing how well each video result is detected in the inference results.

@glenn-jocher
Copy link
Member

You're welcome, @Jiase!

If you're interested in evaluating the performance on each video individually, you could follow these steps:

  1. Run detect.py on each video and save the detection results in a structured format (like JSON or XML) that includes the detected classes, confidence scores, and bounding box coordinates.

  2. Create a separate ground truth dataset for each video with annotations in a format that matches your detection results.

  3. Write a script or modify val.py to compare the detection results with the ground truth for each video. This script should calculate metrics like precision, recall, and potentially mAP for each video separately.

  4. Analyze the metrics for each video to understand the model's performance on that specific video.

Remember, the key to meaningful evaluation is having accurate ground truth annotations for your videos. Without them, you won't be able to objectively assess the model's performance.

If you need guidance on how to structure your evaluation script or modify val.py, our documentation provides insights into the evaluation process that might be helpful. Keep up the great work! 😄

Copy link
Contributor

github-actions bot commented Feb 8, 2024

👋 Hello there! We wanted to give you a friendly reminder that this issue has not had any recent activity and may be closed soon, but don't worry - you can always reopen it if needed. If you still have any questions or concerns, please feel free to let us know how we can help.

For additional resources and information, please see the links below:

Feel free to inform us of any other issues you discover or feature requests that come to mind in the future. Pull Requests (PRs) are also always welcomed!

Thank you for your contributions to YOLO 🚀 and Vision AI ⭐

@github-actions github-actions bot added the Stale label Feb 8, 2024
@github-actions github-actions bot closed this as not planned Won't fix, can't repro, duplicate, stale Feb 18, 2024
@AFallDay
Copy link

AFallDay commented May 5, 2024

感谢您的回答,我还想了解当我有兴趣了解推理结果中每个视频结果的检测效果时,我应该怎么做。

Hi, can you please share the code script to calculate the map after detect? Thank you!

@glenn-jocher
Copy link
Member

Hello!

To calculate the mAP after running detection with detect.py, you would need to gather all the detection outputs and ground truth labels in a comparable format first. Unfortunately, detect.py is designed for inference and doesn't directly support mAP calculation. However, you can use val.py for evaluating model performance as it calculates mAP along with other metrics.

If you're specifically looking to calculate mAP from detections, you'd need to:

  1. Save the outputs of detect.py in a structured format.
  2. Ensure your test dataset has corresponding ground truth annotations.
  3. Modify val.py or use another script designed to calculate mAP using these output files.

Happy coding! 😊

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
question Further information is requested Stale
Projects
None yet
Development

No branches or pull requests

3 participants