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

Error Ensemble #7475

Closed
1 task done
ccimarp opened this issue Apr 19, 2022 · 5 comments · Fixed by #7490
Closed
1 task done

Error Ensemble #7475

ccimarp opened this issue Apr 19, 2022 · 5 comments · Fixed by #7490
Labels
question Further information is requested

Comments

@ccimarp
Copy link

ccimarp commented Apr 19, 2022

Search before asking

Question

When I tried to do the same example of the Ensemble tutorial, I had this error:

Traceback (most recent call last):
File "val.py", line 398, in
main(opt)
File "val.py", line 371, in main
run(**vars(opt))
File "/usr/local/lib/python3.7/dist-packages/torch/autograd/grad_mode.py", line 28, in decorate_context
return func(*args, **kwargs)
File "val.py", line 166, in run
ncm = model.model.yaml['nc']
File "/usr/local/lib/python3.7/dist-packages/torch/nn/modules/module.py", line 1178, in getattr
type(self).name, name))
AttributeError: 'Ensemble' object has no attribute 'yaml'

Additional

No response

@ccimarp ccimarp added the question Further information is requested label Apr 19, 2022
@github-actions
Copy link
Contributor

github-actions bot commented Apr 19, 2022

👋 Hello @ccimarp, 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 support@ultralytics.com.

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

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

glenn-jocher commented Apr 19, 2022

@ccimarp 👋 hi, thanks for letting us know about this possible problem with YOLOv5 🚀. Ensembling works correctly:
Screen Shot 2022-04-19 at 3 25 05 PM

We've created a few short guidelines below to help users provide what we need in order to start investigating a possible problem.

How to create a Minimal, Reproducible Example

When asking a question, people will be better able to provide help if you provide code that they can easily understand and use to reproduce the problem. This is referred to by community members as creating a minimum reproducible example. Your code that reproduces the problem should be:

  • Minimal – Use as little code as possible to produce the problem
  • Complete – Provide all parts someone else needs to reproduce the problem
  • Reproducible – Test the code you're about to provide to make sure it reproduces the problem

For Ultralytics to provide assistance your code should also be:

  • Current – Verify that your code is up-to-date with GitHub master, and if necessary git pull or git clone a new copy to ensure your problem has not already been solved in master.
  • Unmodified – Your problem must be reproducible using official YOLOv5 code without changes. Ultralytics does not provide support for custom code ⚠️.

If you believe your problem meets all the above criteria, please close this issue and raise a new one using the 🐛 Bug Report template with a minimum reproducible example to help us better understand and diagnose your problem.

Thank you! 😃

@Audrey528
Copy link

@ccimarp Have you solved this problem?
@glenn-jocher How can I make Ensembling works like this: python val.py --weights yolov5n.pt yolov5s.pt --data ../coco.yaml?

@glenn-jocher
Copy link
Member

@Audrey528 good news 😃! Your original issue may now be fixed ✅ in PR #7490. We found a bug in Ensemble validation when checking that Ensembled model class counts match dataset class counts. This should now be resolved:

Screen Shot 2022-04-19 at 9 14 05 PM

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 🚀!

@Audrey528
Copy link

@glenn-jocher Amazing! It works! Thanks for your excellent work.

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