ultralytics / yolov5

YOLOv5 πŸš€ in PyTorch > ONNX > CoreML > TFLite
https://docs.ultralytics.com
GNU Affero General Public License v3.0
50.89k stars 16.38k forks source link

How to get the class name from PyToch Hub #3473

Closed shershunov closed 3 years ago

shershunov commented 3 years ago

❔Question

How can I get only the class name of the detected object?

github-actions[bot] commented 3 years ago

πŸ‘‹ Hello @EkelviNistars, 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 screenshots and minimum viable code to reproduce your issue, otherwise we can not help you.

If this is a custom training ❓ Question, please provide as much information as possible, including dataset images, training logs, screenshots, and a public link to online W&B logging if available.

For business inquiries or professional support requests please visit https://www.ultralytics.com or email Glenn Jocher at glenn.jocher@ultralytics.com.

Requirements

Python 3.8 or later with all requirements.txt dependencies installed, including torch>=1.7. To install run:

$ pip install -r requirements.txt

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

CI CPU testing

If this badge is green, all YOLOv5 GitHub Actions Continuous Integration (CI) tests are currently passing. CI tests verify correct operation of YOLOv5 training (train.py), testing (test.py), inference (detect.py) and export (export.py) on MacOS, Windows, and Ubuntu every 24 hours and on every commit.

glenn-jocher commented 3 years ago

@EkelviNistars see YOLOv5 PyTorch Hub tutorial for getting class names of detections:

YOLOv5 Tutorials

shershunov commented 3 years ago

The tutorial says how to print the class name, and I need to assign a name to a variable.

glenn-jocher commented 3 years ago

@EkelviNistars in python you can assign a value to a variable by using the equals sign:

x = 1
shershunov commented 3 years ago

Thank you so much, I really didn't know how to assign a value to a variable. (sarcasm)

github-actions[bot] commented 3 years ago

πŸ‘‹ Hello, this issue has been automatically marked as stale because it has not had recent activity. Please note it will be closed if no further activity occurs.

Access additional YOLOv5 πŸš€ resources:

Access additional Ultralytics ⚑ resources:

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 YOLOv5 πŸš€ and Vision AI ⭐!

yakhyo commented 2 years ago

I have read the PyTorch Hub tutorial but I could not find any clue how to get the class name from the predictions. Could you guide me how to get the class name (predicted class name) from the predictions while using Torch Hub. The output looks like this in my case: image

glenn-jocher commented 2 years ago

@yakhyo πŸ‘‹ Hello! Thanks for asking about handling inference results. YOLOv5 πŸš€ PyTorch Hub models allow for simple model loading and inference in a pure python environment without using detect.py.

Simple Inference Example

This example loads a pretrained YOLOv5s model from PyTorch Hub as model and passes an image for inference. 'yolov5s' is the YOLOv5 'small' model. For details on all available models please see the README. Custom models can also be loaded, including custom trained PyTorch models and their exported variants, i.e. ONNX, TensorRT, TensorFlow, OpenVINO YOLOv5 models.

import torch

# Model
model = torch.hub.load('ultralytics/yolov5', 'yolov5s')  # yolov5n - yolov5x6 official model
#                                            'custom', 'path/to/best.pt')  # custom model

# Images
im = 'https://ultralytics.com/images/zidane.jpg'  # or file, Path, URL, PIL, OpenCV, numpy, list

# Inference
results = model(im)

# Results
results.print()  # or .show(), .save(), .crop(), .pandas(), etc.
results.xyxy[0]  # im predictions (tensor)

results.pandas().xyxy[0]  # im predictions (pandas)
#      xmin    ymin    xmax   ymax  confidence  class    name
# 0  749.50   43.50  1148.0  704.5    0.874023      0  person
# 2  114.75  195.75  1095.0  708.0    0.624512      0  person
# 3  986.00  304.00  1028.0  420.0    0.286865     27     tie

results.pandas().xyxy[0].value_counts('name')  # class counts (pandas)
# person    2
# tie       1

See YOLOv5 PyTorch Hub Tutorial for details.

Good luck πŸ€ and let us know if you have any other questions!

tannaom29 commented 1 year ago

image

glenn-jocher commented 1 year ago

@tannaom29 it looks like you are using the YOLOv5 predict method, which returns detection results with class labels, confidence scores, and bounding box coordinates. To access the predicted class name from the results, you can use the following code snippet:

results = model(im)
class_name = results.names[int(results.xyxy[0][0][-1])]
print(class_name)

This code retrieves the class name associated with the first detected object in the results. The int(results.xyxy[0][0][-1]) retrieves the class index, and results.names provides the class names.

For more details, you can refer to the YOLOv5 PyTorch Hub Tutorial.

Feel free to reach out if you have any further questions or need additional assistance!