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

Quality of background detection when single_cls = True #13091

Open
1 task done
satyrmipt opened this issue Jun 14, 2024 · 2 comments
Open
1 task done

Quality of background detection when single_cls = True #13091

satyrmipt opened this issue Jun 14, 2024 · 2 comments
Labels
question Further information is requested

Comments

@satyrmipt
Copy link

Search before asking

Question

I'm trying to teach the model to detect objects of particular classes without classification. All i need is bounding boxes, not class labels. Backgrounds are included in dataset as recommended (no labels just images).

In this case confusion matrix is 2x2 matrix where intersection of "background true" and "background predicted" always is equal to zero by design. How can i measure how good is my model on the task "separate background images and images with any class"? Sure, i can apply finetuned model to images one by one and calculate the this metrics manually but may be there are specific metric in yolo results?

I need this metric to decide if i need more backgrounds to be added in the dataset.

Additional

No response

@satyrmipt satyrmipt added the question Further information is requested label Jun 14, 2024
Copy link
Contributor

👋 Hello @satyrmipt, 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

@satyrmipt hello,

Thank you for reaching out and for providing detailed information about your use case. To address your question regarding the quality of background detection when single_cls=True, here are a few points to consider:

  1. Reproducible Example: To better understand and potentially reproduce your issue, could you please provide a minimum reproducible code example? This will help us investigate the problem more effectively. You can refer to our guidelines on creating a minimum reproducible example here.

  2. Version Check: Ensure that you are using the latest versions of torch and the YOLOv5 repository. You can update your packages with the following commands:

    pip install --upgrade torch
    git pull https://github.com/ultralytics/yolov5
  3. Background Detection Metrics: YOLOv5 does not provide a specific metric for evaluating the separation of background images from images with objects directly. However, you can use the following approach to assess your model's performance:

    • Precision and Recall: Calculate precision and recall for the background class. Precision will tell you how many of the predicted backgrounds are actually backgrounds, and recall will tell you how many of the actual backgrounds were correctly identified.
    • Custom Metrics: Implement a custom metric that evaluates the model's ability to distinguish between background and object-containing images. This can be done by iterating over your dataset and calculating the true positives, false positives, true negatives, and false negatives for the background class.

Here's a simple example of how you might calculate these metrics manually:

from sklearn.metrics import confusion_matrix

# Assuming y_true and y_pred are your true and predicted labels
# where 0 represents background and 1 represents any object
y_true = [0, 1, 0, 1, 0, 0, 1, 1]
y_pred = [0, 1, 0, 0, 0, 1, 1, 1]

# Calculate confusion matrix
cm = confusion_matrix(y_true, y_pred)

# Extract true negatives, false positives, false negatives, and true positives
tn, fp, fn, tp = cm.ravel()

# Calculate precision and recall for background class
precision_bg = tn / (tn + fn)
recall_bg = tn / (tn + fp)

print(f"Precision (Background): {precision_bg}")
print(f"Recall (Background): {recall_bg}")
  1. Dataset Balance: Ensure that your dataset is balanced with a sufficient number of background images. This can help improve the model's ability to distinguish between background and object-containing images.

Feel free to share any additional details or code snippets that could help us assist you better. Thank you for your cooperation and for being a part of the YOLO community!

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

No branches or pull requests

2 participants