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.6 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
59
60
61
  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. #### You can also try using our AI helper to get a fast solution
  9. [![Tri asking our AI helper](https://github.com/Deci-AI/super-gradients/raw/master/documentation/assets/SG_img/try_ai.png)](https://docs.deci.ai/super-gradients/latest/documentation/source/welcome.html?autoClick=true)
  10. - type: textarea
  11. attributes:
  12. label: 🐛 Describe the bug
  13. description: |
  14. Please provide a clear and concise description of what the bug is.
  15. 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:
  16. ``` python
  17. # All necessary imports at the beginning
  18. from super_gradients.common.object_names import Models
  19. from super_gradients.training import models
  20. # A succinct reproducing example trimmed down to the essential parts:
  21. model = models.get(Models.YOLO_NAS_L, pretrained_weights="coco")
  22. ...
  23. ```
  24. 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``` ````.
  25. placeholder: |
  26. A clear and concise description of what the bug is.
  27. ``` python
  28. # Sample code to reproduce the problem
  29. ```
  30. ```
  31. The error message you got, with the full traceback.
  32. ```
  33. validations:
  34. required: true
  35. - type: textarea
  36. attributes:
  37. label: Versions
  38. description: |
  39. Please run the following and paste the output below.
  40. ```sh
  41. wget https://raw.githubusercontent.com/pytorch/pytorch/main/torch/utils/collect_env.py
  42. # For security purposes, please check the contents of collect_env.py before running it.
  43. python collect_env.py
  44. ```
  45. validations:
  46. required: true
  47. - type: markdown
  48. attributes:
  49. value: >
  50. Thanks for contributing 🎉!
Tip!

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

Comments

Loading...