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

KeyError: 'anchors' #1411

Closed
amadeok opened this issue Nov 16, 2020 · 6 comments · Fixed by #3887
Closed

KeyError: 'anchors' #1411

amadeok opened this issue Nov 16, 2020 · 6 comments · Fixed by #3887
Labels
bug Something isn't working Stale

Comments

@amadeok
Copy link

amadeok commented Nov 16, 2020

Hello i'm getting KeyError: 'anchors' when trying to evolve a model trained for about 900 epochs. I've tried commenting out the line 509 'anchors': (2, 2.0, 10.0), # anchors per output grid (0 to ignore) from train.py as suggested in the hyperparameter thread but it does not fix it. Complete error:

Traceback (most recent call last):
  File "train.py", line 551, in <module>
    hyp[k] = max(hyp[k], v[1])  # lower limit
KeyError: 'anchors'

Any help?
thanks

@amadeok amadeok added the bug Something isn't working label Nov 16, 2020
@glenn-jocher
Copy link
Member

@amadeok uncomment anchors in hyp.scratch.yaml and then evolve.

@amadeok
Copy link
Author

amadeok commented Nov 16, 2020

@amadeok uncomment anchors in hyp.scratch.yaml and then evolve.

Hi thansk for reply.
Still wasn't working, it seems it wasn't able to find the yaml file. I added --hyp "/content/yolov5/data/hyp.scratch.yaml" and now it seems to work.

@dubbsbrandon
Copy link

I'm still having the same issue despite trying both solutions mentioned above. Are there other issues possibly linked to this issue?

@glenn-jocher
Copy link
Member

glenn-jocher commented Nov 17, 2020

@dubbsbrandon hi, thanks for the feedback. Please note that most technical problems are due to:

  • Your modified or out-of-date code. If your issue is not reproducible in a new git clone version of this repo we can not debug it. Before going further run this code and verify your issue persists:
$ git clone https://github.com/ultralytics/yolov5 yolov5_new  # clone latest
$ cd yolov5_new
$ python detect.py  # verify detection

# CODE TO REPRODUCE YOUR ISSUE HERE
  • Your custom data. If your issue is not reproducible in one of our 3 common datasets (COCO, COCO128, or VOC) we can not debug it. Visit our Custom Training Tutorial for guidelines on training your custom data. Examine train_batch0.jpg and test_batch0.jpg for a sanity check of your labels and images.

  • Your environment. If your issue is not reproducible in one of the verified environments below we can not debug it. If you are running YOLOv5 locally, verify your environment meets all of the requirements.txt dependencies specified below. If in doubt, download Python 3.8.0 from https://www.python.org/, create a new venv, and then install requirements.

If none of these apply to you, we suggest you close this issue and raise a new one using the Bug Report template, providing screenshots and minimum viable code to reproduce your issue. Thank you!

Requirements

Python 3.8 or later with all requirements.txt dependencies installed, including torch>=1.6. 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 passing. These tests evaluate proper operation of basic YOLOv5 functionality, including training (train.py), testing (test.py), inference (detect.py) and export (export.py) on MacOS, Windows, and Ubuntu.

@github-actions
Copy link
Contributor

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.

@github-actions github-actions bot added the Stale label Dec 18, 2020
@glenn-jocher glenn-jocher linked a pull request Jul 5, 2021 that will close this issue
@glenn-jocher
Copy link
Member

@amadeok @dubbsbrandon good news 😃! Your original issue may now be fixed ✅ in PR #3887. This PR adds hyp['anchors']=3 if the anchors key is missing/commented in your hyperparameter file, fixing a long-running problem when starting hyp evolution using the default command:

python train.py --evolve

To receive this update:

  • Gitgit pull from within your yolov5/ directory or git clone https://github.com/ultralytics/yolov5 again
  • PyTorch Hub – Force-reload with 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 🚀!

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

Successfully merging a pull request may close this issue.

3 participants