We love your input! We want to make contributing to YOLOv5 as easy and transparent as possible, whether it’s:
YOLOv5 works so well due to our combined community effort, and for every small improvement you contribute you will be helping push the frontiers of what’s possible in AI 😃!
Submitting a PR is easy! This example shows how to submit a PR for updating requirements.txt
in 4 steps:
Select requirements.txt
to update by clicking on it in GitHub.
Button is in top-right corner.
Change matplotlib
version from 3.2.2
to 3.3
.
Click on the Preview changes tab to verify your updates. At the bottom of the screen select ‘Create a new branch
for this commit’, assign your branch a descriptive name such as fix/matplotlib_version
and click the green Propose
changes button. All done, your PR is now submitted to YOLOv5 for review and approval 😃!
To allow your work to be integrated as seamlessly as possible, we advise you to:
git remote add upstream https://github.com/ultralytics/yolov5.git
git fetch upstream
# git checkout feature # <--- replace 'feature' with local branch name
git merge upstream/master
git push -u origin -f
If you spot a problem with YOLOv5 please submit a Bug Report!
For us to start investigating a possible problem we need to be able to reproduce it ourselves first. We’ve created a few short guidelines below to help users provide what we need in order to get started.
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:
In addition to the above requirements, for Ultralytics to provide assistance your code should be:
git pull
or git clone
a new
copy to ensure your problem has not already been resolved by previous commits.If you believe your problem meets all of the above criteria, please close this issue and raise a new one using the 🐛 Bug Report template and providing a minimum reproducible example to help us better understand and diagnose your problem.
By contributing, you agree that your contributions will be licensed under the GPL-3.0 license