Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

bug_report.yaml 2.3 KB

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
  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 existing and past issues](https://github.com/Deci-AI/super-gradients/issues?q=is%3Aissue+sort%3Acreated-desc+).
  8. - type: textarea
  9. attributes:
  10. label: 🐛 Describe the bug
  11. description: |
  12. Please provide a clear and concise description of what the bug is.
  13. If relevant, add a minimal example so that we can reproduce the error by running the code. It is very important for the snippet to be as succinct (minimal) as possible, so please take time to trim down any irrelevant code to help us debug efficiently. We are going to copy-paste your code and we expect to get the same result as you did: avoid any external data, and include the relevant imports, etc. For example:
  14. ``` python
  15. # All necessary imports at the beginning
  16. from super_gradients.common.object_names import Models
  17. from super_gradients.training import models
  18. # A succinct reproducing example trimmed down to the essential parts:
  19. model = models.get(Models.YOLO_NAS_L, pretrained_weights="coco")
  20. ...
  21. ```
  22. Please also paste or describe the results you observe instead of the expected results. 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``` ````.
  23. placeholder: |
  24. A clear and concise description of what the bug is.
  25. ``` python
  26. # Sample code to reproduce the problem
  27. ```
  28. ```
  29. The error message you got, with the full traceback.
  30. ```
  31. validations:
  32. required: true
  33. - type: textarea
  34. attributes:
  35. label: Versions
  36. description: |
  37. Please run the following and paste the output below.
  38. ```sh
  39. wget https://raw.githubusercontent.com/pytorch/pytorch/main/torch/utils/collect_env.py
  40. # For security purposes, please check the contents of collect_env.py before running it.
  41. python collect_env.py
  42. ```
  43. validations:
  44. required: true
  45. - type: markdown
  46. attributes:
  47. value: >
  48. Thanks for contributing 🎉!
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...