bug-report.yml 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. # PaddleOCR
  2. name: 🐛 Bug Report
  3. description: Problems with PaddleOCR
  4. body:
  5. - type: markdown
  6. attributes:
  7. value: |
  8. Thank you for submitting a PaddleOCR 🐛 Bug Report!
  9. - type: checkboxes
  10. attributes:
  11. label: 🔎 Search before asking
  12. description: >
  13. Please search the PaddleOCR [Docs](https://paddlepaddle.github.io/PaddleOCR/), [Issues](https://github.com/PaddlePaddle/PaddleOCR/issues) and [Discussions](https://github.com/PaddlePaddle/PaddleOCR/discussions) to see if a similar bug report already exists.
  14. options:
  15. - label: I have searched the PaddleOCR [Docs](https://paddlepaddle.github.io/PaddleOCR/) and found no similar bug report.
  16. required: true
  17. - label: I have searched the PaddleOCR [Issues](https://github.com/PaddlePaddle/PaddleOCR/issues) and found no similar bug report.
  18. required: true
  19. - label: I have searched the PaddleOCR [Discussions](https://github.com/PaddlePaddle/PaddleOCR/discussions) and found no similar bug report.
  20. required: true
  21. - type: textarea
  22. attributes:
  23. label: 🐛 Bug (问题描述)
  24. description: Provide console output with error messages and/or screenshots of the bug. (请提供详细报错信息或者截图)
  25. placeholder: |
  26. 💡 ProTip! Include as much information as possible (screenshots, logs, tracebacks etc.) to receive the most helpful response.
  27. validations:
  28. required: true
  29. - type: textarea
  30. attributes:
  31. label: 🏃‍♂️ Environment (运行环境)
  32. description: Please specify the software and hardware you used to produce the bug. (请给出详细依赖包信息,便于复现问题)
  33. placeholder: |
  34. ```bash
  35. OS macOS-13.5.2
  36. Environment Jupyter
  37. Python 3.11.2
  38. PaddleOCR 2.8.1
  39. Install git
  40. RAM 16.00 GB
  41. CPU Apple M2
  42. CUDA None
  43. ```
  44. validations:
  45. required: true
  46. - type: textarea
  47. attributes:
  48. label: 🌰 Minimal Reproducible Example (最小可复现问题的Demo)
  49. description: >
  50. 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.
  51. This is referred to by community members as creating a [minimal reproducible example](https://stackoverflow.com/help/minimal-reproducible-example). (请务必提供该Demo,这样节省大家时间)
  52. placeholder: |
  53. ```bash
  54. # Code to reproduce your issue here
  55. ```
  56. validations:
  57. required: true