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

model = torch.hub.load('ultralytics/yolov5', 'yolov5s-seg') #9593

Closed
1 task done
mohamed-29 opened this issue Sep 25, 2022 · 7 comments · Fixed by #9632
Closed
1 task done

model = torch.hub.load('ultralytics/yolov5', 'yolov5s-seg') #9593

mohamed-29 opened this issue Sep 25, 2022 · 7 comments · Fixed by #9632
Labels
question Further information is requested

Comments

@mohamed-29
Copy link

Search before asking

Question

is there yolov5 segmentation model ?

Additional

No response

@mohamed-29 mohamed-29 added the question Further information is requested label Sep 25, 2022
@github-actions
Copy link
Contributor

github-actions bot commented Sep 25, 2022

👋 Hello @mohamed-29, 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://ultralytics.com or email [email protected].

Requirements

Python>=3.7.0 with all requirements.txt installed including PyTorch>=1.7. 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.

@glenn-jocher
Copy link
Member

glenn-jocher commented Sep 25, 2022

@mohamed-29 yes, segmentation models were recently introduced. You can load one with the code below, but they are not yet fully supported for PyTorch Hub inference, so I'd recommend using the usage examples in segment/predict.py:
https://github.com/ultralytics/yolov5/blob/master/segment/predict.py

import torch

model = torch.hub.load('ultralytics/yolov5', 'custom', 'yolov5s-seg.pt')

@mohamed-29
Copy link
Author

KeyError Traceback (most recent call last)
Input In [11], in <cell line: 6>()
1 results = model(img)
3 #results.show()
4
5 # Results
----> 6 results.show()

File ~/.cache\torch\hub\ultralytics_yolov5_master\models\common.py:776, in Detections.show(self, labels)
775 def show(self, labels=True):
--> 776 self._run(show=True, labels=labels)

File ~/.cache\torch\hub\ultralytics_yolov5_master\models\common.py:737, in Detections._run(self, pprint, show, save, crop, render, labels, save_dir)
735 for c in pred[:, -1].unique():
736 n = (pred[:, -1] == c).sum() # detections per class
--> 737 s += f"{n} {self.names[int(c)]}{'s' * (n > 1)}, " # add to string
738 s = s.rstrip(', ')
739 if show or save or render or crop:

KeyError: 94

@glenn-jocher
Copy link
Member

@mohamed-29 SegmentationModel and ClassificationModel types are not yet supported by YOLOv5 PyTorch Hub AutoShape models. I will add a warning to notify users.

@glenn-jocher
Copy link
Member

glenn-jocher commented Sep 28, 2022

@mohamed-29 good news 😃! Your original issue may now be improved ✅ in PR #9632. This PR adds a warning to users to notify them that SegmentationModels are not yet fully supported.

To receive this update:

  • Gitgit pull from within your yolov5/ directory or git clone https://github.com/ultralytics/yolov5 again
  • PyTorch Hub – Force-reload model = torch.hub.load('ultralytics/yolov5', 'yolov5s', force_reload=True)
  • Notebooks – View updated notebooks Open In Colab Open In Kaggle
  • Dockersudo docker pull ultralytics/yolov5:latest to update your image Docker Pulls

Thank you for spotting this issue and informing us of the problem. Please let us know if this update resolves the issue for you, and feel free to inform us of any other issues you discover or feature requests that come to mind. Happy trainings with YOLOv5 🚀!

@rusvagzur
Copy link

rusvagzur commented Nov 29, 2022

Hi @glenn-jocher , do you have an estimation on when segmentation inference will be supported for pytorch hub? Thanks!

@glenn-jocher
Copy link
Member

glenn-jocher commented Dec 1, 2022

@rusvagzur no, I'm sorry. If you'd like to contribute a PR for this that would be great!

The fastest and easiest way to incorporate your ideas into the official codebase is to submit a Pull Request (PR) implementing your idea, and if applicable providing before and after profiling/inference/training results to help us understand the improvement your feature provides. This allows us to directly see the changes in the code and to understand how they affect workflows and performance.

Please see our ✅ Contributing Guide to get started.

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

Successfully merging a pull request may close this issue.

3 participants