bug.yml 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. name: 🐛 Bug Report
  2. description: Create a report to help us reproduce and fix the bug
  3. body:
  4. - type: markdown
  5. attributes:
  6. value: >
  7. #### Before submitting a bug, please make sure the issue hasn't been already addressed by searching through [the
  8. existing and past issues](https://github.com/facebookresearch/llama-recipes/issues), the [FAQ](https://github.com/facebookresearch/llama-recipes/blob/main/docs/FAQ.md)
  9. - type: textarea
  10. id: system-info
  11. attributes:
  12. label: System Info
  13. description: |
  14. Please share your system info with us. You can use the following command to capture your environment information
  15. python -m "torch.utils.collect_env"
  16. placeholder: |
  17. PyTorch version, CUDA version, GPU type, #num of GPUs...
  18. validations:
  19. required: true
  20. - type: checkboxes
  21. id: information-scripts-examples
  22. attributes:
  23. label: Information
  24. description: 'The problem arises when using:'
  25. options:
  26. - label: "The official example scripts"
  27. - label: "My own modified scripts"
  28. - type: textarea
  29. id: bug-description
  30. attributes:
  31. label: 🐛 Describe the bug
  32. description: |
  33. Please provide a clear and concise description of what the bug is.
  34. Provide the exact command(s) that you ran with the settings eg using FSDP and PEFT or pure FSDP.
  35. Please also paste or describe the results you observe instead of the expected results.
  36. placeholder: |
  37. A clear and concise description of what the bug is.
  38. ```python
  39. # Command that you used for running the examples
  40. ```
  41. Description of the results
  42. validations:
  43. required: true
  44. - type: textarea
  45. attributes:
  46. label: Error logs
  47. description: |
  48. If you observe an error, please paste the error message including the **full** traceback of the exception. It may be relevant to wrap error messages in ```` ```triple quotes blocks``` ````.
  49. placeholder: |
  50. ```
  51. The error message you got, with the full traceback.
  52. ```
  53. validations:
  54. required: true
  55. - type: textarea
  56. id: expected-behavior
  57. validations:
  58. required: true
  59. attributes:
  60. label: Expected behavior
  61. description: "A clear and concise description of what you would expect to happen."
  62. - type: markdown
  63. attributes:
  64. value: >
  65. Thanks for contributing 🎉!