bug.yml 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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. attributes:
  11. label: 🐛 Describe the bug
  12. description: |
  13. Please provide a clear and concise description of what the bug is.
  14. It would be helfpul to provide the setting and command you are running. Setting includes the number and type of GPUs, using FSDP and PEFT or pure FSDP.
  15. placeholder: |
  16. A clear and concise description of what the bug is.
  17. validations:
  18. required: true
  19. - type: textarea
  20. attributes:
  21. label: Error logs
  22. description: |
  23. Paste the error logs that indicate there's a problem
  24. placeholder: |
  25. Error...
  26. validations:
  27. required: true
  28. - type: textarea
  29. attributes:
  30. label: Enviroment
  31. description: |
  32. You can use the following command to capture your enviroment information
  33. python -m "torch.utils.collect_env"
  34. placeholder: |
  35. validations:
  36. required: true
  37. - type: textarea
  38. attributes:
  39. label: Possible Solution
  40. description: |
  41. Possible fix for them the problem
  42. - type: markdown
  43. attributes:
  44. value: >
  45. Thanks for contributing 🎉!