car-detection-bayes/.github/ISSUE_TEMPLATE/--bug-report.md

56 lines
1.5 KiB
Markdown
Raw Normal View History

2019-12-03 20:35:57 +00:00
---
name: "\U0001F41BBug report"
about: Create a report to help us improve
title: ''
labels: bug
assignees: ''
---
2020-06-18 19:39:33 +00:00
Before submitting a bug report, please be aware that your issue **must be reproducible** with all of the following, otherwise it is non-actionable, and we can not help you:
- **Current repository**: run `git fetch && git status -uno` to check and `git pull` to update your repo
2020-06-18 19:40:26 +00:00
- **Common dataset**: coco2017.data or coco64.data
2020-06-18 19:39:33 +00:00
- **Common environment**: Colab, Google Cloud, or Docker image. See https://github.com/ultralytics/yolov3#reproduce-our-environment
2020-04-26 18:22:29 +00:00
2020-06-18 19:39:33 +00:00
If this is a custom dataset/training question you **must include** your `train*.jpg`, `test*.jpg` and `results.png` figures, or we can not help you. You can generate results.png with `utils.plot_results()`.
2020-04-26 18:22:29 +00:00
2019-12-03 20:35:57 +00:00
## 🐛 Bug
A clear and concise description of what the bug is.
2020-06-18 19:39:33 +00:00
## To Reproduce (REQUIRED)
Input:
```
import torch
a = torch.tensor([5])
c = a / 0
```
Output:
2020-04-26 18:22:29 +00:00
```
2020-06-18 19:39:33 +00:00
Traceback (most recent call last):
File "/Users/glennjocher/opt/anaconda3/envs/env1/lib/python3.7/site-packages/IPython/core/interactiveshell.py", line 3331, in run_code
exec(code_obj, self.user_global_ns, self.user_ns)
File "<ipython-input-5-be04c762b799>", line 5, in <module>
c = a / 0
RuntimeError: ZeroDivisionError
2020-04-26 18:22:29 +00:00
```
2019-12-03 20:35:57 +00:00
## Expected behavior
A clear and concise description of what you expected to happen.
2020-06-18 19:39:33 +00:00
2019-12-03 20:35:57 +00:00
## Environment
If applicable, add screenshots to help explain your problem.
2020-04-26 18:22:29 +00:00
- OS: [e.g. Ubuntu]
- GPU [e.g. 2080 Ti]
2019-12-03 20:35:57 +00:00
## Additional context
Add any other context about the problem here.