1_bug-report.yml 3.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. name: 🐛 报BUG Bug Report
  2. description: 报告一个可复现的BUG帮助我们修复PaddleDetection。 Report a bug to help us reproduce and fix it.
  3. labels: [type/bug-report, status/new-issue]
  4. body:
  5. - type: markdown
  6. attributes:
  7. value: |
  8. Thank you for submitting a PaddleDetection Bug Report!
  9. - type: checkboxes
  10. attributes:
  11. label: 问题确认 Search before asking
  12. description: >
  13. 在向PaddleDetection报bug之前,请先查询[历史issue](https://github.com/PaddlePaddle/PaddleDetection/issues)是否报过同样的bug。
  14. Before submitting a bug, please make sure the issue hasn't been already addressed by searching through [the existing and past issues](https://github.com/PaddlePaddle/PaddleDetection/issues).
  15. options:
  16. - label: >
  17. 我已经查询[历史issue](https://github.com/PaddlePaddle/PaddleDetection/issues),没有报过同样bug。I have searched the [issues](https://github.com/PaddlePaddle/PaddleDetection/issues) and found no similar bug report.
  18. required: true
  19. - type: textarea
  20. id: code
  21. attributes:
  22. label: bug描述 Describe the Bug
  23. description: |
  24. 请清晰简洁的描述这个bug,最好附上bug复现步骤及最小代码集,以便我们可以通过运行代码来重现错误。代码片段需要尽可能简洁,请花些时间去掉不相关的代码以帮助我们有效地调试。我们希望通过复制代码并运行得到与你相同的结果,请避免任何外部数据或包含相关的导入等。如果代码太长,请将可执行代码放到[AIStudio](https://aistudio.baidu.com/aistudio/index)中并将项目设置为公开(或者放到github gist上),请在项目中描述清楚bug复现步骤,在issue中描述期望结果与实际结果。
  25. 如果你报告的是一个报错信息,请将完整回溯的报错贴在这里,并使用 ` ```三引号块``` `展示错误信息。
  26. placeholder: |
  27. 请清晰简洁的描述这个bug。A clear and concise description of what the bug is.
  28. ```python
  29. # 最小可复现代码。 Sample code to reproduce the problem.
  30. ```
  31. ```shell
  32. 带有完整回溯的报错信息。 The error message you got, with the full traceback.
  33. ```
  34. validations:
  35. required: true
  36. - type: textarea
  37. attributes:
  38. label: 复现环境 Environment
  39. description: 请具体说明复现bug的环境信息,Please specify the software and hardware you used to produce the bug.
  40. placeholder: |
  41. - PaddlePaddle: 2.2.2
  42. - PaddleDetection: release/2.4
  43. - Python: 3.8.0
  44. - CUDA: 10.2
  45. - CUDNN: 7.6
  46. validations:
  47. required: false
  48. - type: checkboxes
  49. attributes:
  50. label: 是否愿意提交PR Are you willing to submit a PR?
  51. description: >
  52. (可选)如果你对修复bug有自己的想法,十分鼓励提交[Pull Request](https://github.com/PaddlePaddle/PaddleDetection/pulls),共同提升PaddleDetection
  53. (Optional) We encourage you to submit a [Pull Request](https://github.com/PaddlePaddle/PaddleDetection/pulls) (PR) to help improve PaddleDetection for everyone, especially if you have a good understanding of how to implement a fix or feature.
  54. options:
  55. - label: Yes I'd like to help by submitting a PR!
  56. - type: markdown
  57. attributes:
  58. value: >
  59. 感谢你的贡献 🎉!Thanks for your contribution 🎉!