π [Add] PR, issue template for user
Browse files
.github/ISSUE_TEMPLATE/bug_report.md
ADDED
@@ -0,0 +1,34 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
name: Bug Report
|
3 |
+
about: Create a report to help us improve
|
4 |
+
title: ''
|
5 |
+
labels: 'bug'
|
6 |
+
assignees: ''
|
7 |
+
|
8 |
+
---
|
9 |
+
|
10 |
+
## Describe the bug
|
11 |
+
A clear and concise description of what the bug is. Include any error messages or logs if available.
|
12 |
+
|
13 |
+
## To Reproduce
|
14 |
+
Steps to reproduce the behavior:
|
15 |
+
1. Go to '...'
|
16 |
+
2. Click on '....'
|
17 |
+
3. Scroll down to '....'
|
18 |
+
4. See error
|
19 |
+
|
20 |
+
## Expected behavior
|
21 |
+
A clear and concise description of what you expected to happen.
|
22 |
+
|
23 |
+
## Screenshots
|
24 |
+
If applicable, add screenshots to help explain your problem.
|
25 |
+
|
26 |
+
## System Info (please complete the following ## information):
|
27 |
+
- OS: [e.g. Ubuntu 20.04]
|
28 |
+
- Python Version: [e.g. 3.8]
|
29 |
+
- PyTorch Version: [e.g. 1.8.1]
|
30 |
+
- CUDA/cuDNN/MPS Version: [e.g. CUDA 11.1]
|
31 |
+
- YOLO Model Version: [e.g. YOLOv9-c]
|
32 |
+
|
33 |
+
## Additional context
|
34 |
+
Add any other context about the problem here.
|
.github/ISSUE_TEMPLATE/feature_suggestion.md
ADDED
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
name: Feature Suggestion
|
3 |
+
about: Suggest a new feature or improvement
|
4 |
+
title: ''
|
5 |
+
labels: 'enhancement'
|
6 |
+
assignees: ''
|
7 |
+
|
8 |
+
---
|
9 |
+
|
10 |
+
## Feature Description
|
11 |
+
A clear and concise description of the feature or improvement you are suggesting. Include any relevant motivation and context.
|
12 |
+
|
13 |
+
## Additional Context
|
14 |
+
Add any other context or screenshots about the feature request here.
|
15 |
+
|
16 |
+
## Future Considerations
|
17 |
+
Please suggest any potential future improvements related to this feature.
|
.github/{pull_request_template.md β PULL_REQUEST_TEMPLATE/pull_request_template.md}
RENAMED
@@ -1,3 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
## Description
|
2 |
|
3 |
[Please include a summary of the changes and the related issue. (Just overwrite this session directly)]
|
@@ -22,3 +31,6 @@ Please delete options that are not relevant.
|
|
22 |
## Additional Information
|
23 |
|
24 |
Add any other information about the PR here.
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
name: Pull Request
|
3 |
+
about: Suggest an idea for this project
|
4 |
+
title: ''
|
5 |
+
labels: ''
|
6 |
+
assignees: ''
|
7 |
+
|
8 |
+
---
|
9 |
+
|
10 |
## Description
|
11 |
|
12 |
[Please include a summary of the changes and the related issue. (Just overwrite this session directly)]
|
|
|
31 |
## Additional Information
|
32 |
|
33 |
Add any other information about the PR here.
|
34 |
+
|
35 |
+
**Note:**
|
36 |
+
We hope that the pull request is mainly for the implementation or modification of the project function. If it is a documentation error or a small typo, we are very welcome to send it to [email protected]. Alternatively, you may open an issue to report these. Thank you for your understanding and cooperation!
|