選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

86 行
2.9KB

  1. name: 🐛 Bug Report
  2. # title: " "
  3. description: Problems with YOLOv5
  4. labels: [bug, triage]
  5. body:
  6. - type: markdown
  7. attributes:
  8. value: |
  9. Thank you for submitting a YOLOv5 🐛 Bug Report!
  10. - type: checkboxes
  11. attributes:
  12. label: Search before asking
  13. description: >
  14. Please search the [issues](https://github.com/ultralytics/yolov5/issues) to see if a similar bug report already exists.
  15. options:
  16. - label: >
  17. I have searched the YOLOv5 [issues](https://github.com/ultralytics/yolov5/issues) and found no similar bug report.
  18. required: true
  19. - type: dropdown
  20. attributes:
  21. label: YOLOv5 Component
  22. description: |
  23. Please select the part of YOLOv5 where you found the bug.
  24. multiple: true
  25. options:
  26. - "Training"
  27. - "Validation"
  28. - "Detection"
  29. - "Export"
  30. - "PyTorch Hub"
  31. - "Multi-GPU"
  32. - "Evolution"
  33. - "Integrations"
  34. - "Other"
  35. validations:
  36. required: false
  37. - type: textarea
  38. attributes:
  39. label: Bug
  40. description: Provide console output with error messages and/or screenshots of the bug.
  41. placeholder: |
  42. 💡 ProTip! Include as much information as possible (screenshots, logs, tracebacks etc.) to receive the most helpful response.
  43. validations:
  44. required: true
  45. - type: textarea
  46. attributes:
  47. label: Environment
  48. description: Please specify the software and hardware you used to produce the bug.
  49. placeholder: |
  50. - YOLO: YOLOv5 🚀 v6.0-67-g60e42e1 torch 1.9.0+cu111 CUDA:0 (A100-SXM4-40GB, 40536MiB)
  51. - OS: Ubuntu 20.04
  52. - Python: 3.9.0
  53. validations:
  54. required: false
  55. - type: textarea
  56. attributes:
  57. label: Minimal Reproducible Example
  58. description: >
  59. 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.
  60. This is referred to by community members as creating a [minimal reproducible example](https://stackoverflow.com/help/minimal-reproducible-example).
  61. placeholder: |
  62. ```
  63. # Code to reproduce your issue here
  64. ```
  65. validations:
  66. required: false
  67. - type: textarea
  68. attributes:
  69. label: Additional
  70. description: Anything else you would like to share?
  71. - type: checkboxes
  72. attributes:
  73. label: Are you willing to submit a PR?
  74. description: >
  75. (Optional) We encourage you to submit a [Pull Request](https://github.com/ultralytics/yolov5/pulls) (PR) to help improve YOLOv5 for everyone, especially if you have a good understanding of how to implement a fix or feature.
  76. See the YOLOv5 [Contributing Guide](https://github.com/ultralytics/yolov5/blob/master/CONTRIBUTING.md) to get started.
  77. options:
  78. - label: Yes I'd like to help by submitting a PR!