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

ImportError: cannot import name 'DetectMultiBackend' . #6093

Closed
1 of 2 tasks
manish33scss opened this issue Dec 24, 2021 · 9 comments
Closed
1 of 2 tasks

ImportError: cannot import name 'DetectMultiBackend' . #6093

manish33scss opened this issue Dec 24, 2021 · 9 comments
Labels
bug Something isn't working Stale

Comments

@manish33scss
Copy link

Search before asking

  • I have searched the YOLOv5 issues and found no similar bug report.

YOLOv5 Component

No response

Bug

Sounds very trivial, but yolov5 fails to import DetectMultiBackend, and yes I cross checked, its present in the common.py file. exactly here, "from models.common import DetectMultiBackend".

Environment

No response

Minimal Reproducible Example

No response

Additional

No response

Are you willing to submit a PR?

  • Yes I'd like to help by submitting a PR!
@manish33scss manish33scss added the bug Something isn't working label Dec 24, 2021
@github-actions
Copy link
Contributor

github-actions bot commented Dec 24, 2021

👋 Hello @manish33scss, 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 Glenn Jocher at glenn.jocher@ultralytics.com.

Requirements

Python>=3.6.0 with all requirements.txt installed including PyTorch>=1.7. To get started:

$ git clone https://github.com/ultralytics/yolov5
$ cd yolov5
$ 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), validation (val.py), inference (detect.py) and export (export.py) on MacOS, Windows, and Ubuntu every 24 hours and on every commit.

@glenn-jocher
Copy link
Member

@manish33scss your code or models may be out of date. To update your code (new models download automatically on first use):

  • 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

@manish33scss
Copy link
Author

@manish33scss your code or models may be out of date. To update your code (new models download automatically on first use):

  • 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

No, I've just downloaded this, it's working fine with colab, but not in my pc, it says, can't import detectmultibackend. Thing is previous version was working fine, where we used attempt_load().

@GriffinBoris
Copy link

@manish33scss @glenn-jocher I ran into a similar issue. If your project directory contains your main script and a models directory/package in the same directory level it tends to clash with torch when loading models and code from torch hub.


Failing Project Setup Example:

Project Structure:

project/
    main.py
    models/something.py

main.py

import torch
from PIL import Image
from models.something import Anything

if __name__ == '__main__':
	image = Image.open('car.jpg')
	model = torch.hub.load('ultralytics/yolov5', 'yolov5s')
	results = model(i)
	print(results.pandas().xyxy[0].to_dict('records'))

Result:

Produces ModuleNotFoundError: No module named 'models.common'


Fixed Project Setup Example:

To fix this either rename the models directory/package or nest it in a directory.

Working Project Setup Example #1:

Nesting the models package under some_package_name.

Project Structure:

project/
    main.py
    some_package_name/models/something.py

main.py

import torch
from PIL import Image
from some_package_name.models.something import Anything

if __name__ == '__main__':
	image = Image.open('car.jpg')
	model = torch.hub.load('ultralytics/yolov5', 'yolov5s')
	results = model(i)
	print(results.pandas().xyxy[0].to_dict('records'))

Working Project Setup Example #2:

Renaming the models package to things.

Project Structure:

project/
    main.py
    things/something.py

main.py

import torch
from PIL import Image
from things.something import Anything

if __name__ == '__main__':
	image = Image.open('car.jpg')
	model = torch.hub.load('ultralytics/yolov5', 'yolov5s')
	results = model(i)
	print(results.pandas().xyxy[0].to_dict('records'))

Hope this helps!

@glenn-jocher
Copy link
Member

@GriffinBoris yes these are good tips! The import order also matters, so it might (should?) be possible to create YOLOv5 models first from PyTorch Hub and then import local packages afterward.

@GriffinBoris
Copy link

Roger that! I will give that a try as well!

@Rijulsin
Copy link

@GriffinBoris yes these are good tips! The import order also matters, so it might (should?) be possible to create YOLOv5 models first from PyTorch Hub and then import local packages afterward.

Hi Glenn, did this work for you?

@glenn-jocher
Copy link
Member

@Rijulsin a PyTorch maintainer suggested this in a separate issue.

@github-actions
Copy link
Contributor

github-actions bot commented Feb 14, 2022

👋 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 ⭐!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working Stale
Projects
None yet
Development

No branches or pull requests

4 participants