-
-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: glenn-jocher <[email protected]>
- Loading branch information
1 parent
dbc4e7e
commit a05c8c2
Showing
4 changed files
with
49 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,42 @@ | ||
--- | ||
name: "\U0001F41BBug report" | ||
about: Create a report to help us improve | ||
title: '' | ||
labels: bug | ||
assignees: '' | ||
______________________________________________________________________ | ||
|
||
--- | ||
name: "\\U0001F41BBug report" about: Create a report to help us improve title: '' labels: bug assignees: '' | ||
|
||
______________________________________________________________________ | ||
|
||
Before submitting a bug report, please ensure that you are using the latest versions of: | ||
- Python | ||
- PyTorch | ||
- This repository (run `git fetch && git status -uno` to check and `git pull` to update) | ||
|
||
|
||
- Python | ||
- PyTorch | ||
- This repository (run `git fetch && git status -uno` to check and `git pull` to update) | ||
|
||
**Your issue must be reproducible on a public dataset (i.e COCO) using the latest version of the repository, and you must supply code to reproduce, or we can not help you.** | ||
|
||
If this is a custom training question we suggest you include your `train*.jpg`, `test*.jpg` and `results.png` figures. | ||
|
||
|
||
## 🐛 Bug | ||
|
||
A clear and concise description of what the bug is. | ||
|
||
## To Reproduce | ||
|
||
**REQUIRED**: Code to reproduce your issue below | ||
|
||
``` | ||
python train.py ... | ||
``` | ||
|
||
|
||
## Expected behavior | ||
|
||
A clear and concise description of what you expected to happen. | ||
|
||
## Environment | ||
If applicable, add screenshots to help explain your problem. | ||
|
||
- OS: [e.g. Ubuntu] | ||
- GPU [e.g. 2080 Ti] | ||
If applicable, add screenshots to help explain your problem. | ||
|
||
- OS: \[e.g. Ubuntu\] | ||
- GPU \[e.g. 2080 Ti\] | ||
|
||
## Additional context | ||
|
||
Add any other context about the problem here. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,23 @@ | ||
# Ultralytics 🚀, AGPL-3.0 license | ||
# Ultralytics Format Workflow | ||
# This workflow automatically formats code and documentation in pull requests and pushes to main branch | ||
# Ultralytics 🚀 - AGPL-3.0 license | ||
# Ultralytics Actions https://github.com/ultralytics/actions | ||
# This workflow automatically formats code and documentation in PRs to official Ultralytics standards | ||
|
||
name: Ultralytics Actions | ||
|
||
on: | ||
push: | ||
branches: [master] | ||
branches: [main,master] | ||
pull_request: | ||
branches: [master] | ||
branches: [main,master] | ||
|
||
jobs: | ||
format: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Repository | ||
uses: actions/checkout@v4 | ||
- name: Run Ultralytics Formatting Actions | ||
- name: Run Ultralytics Formatting | ||
uses: ultralytics/actions@main | ||
with: | ||
python: true | ||
docstrings: true | ||
markdown: true | ||
spelling: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters