Other
English
Shanci's picture
Upload folder using huggingface_hub
3cfae36 verified
Raw
History Blame
5.15 kB
name: "πŸ› Bug Report"
description: Submit a report to help us reproduce and fix the bug
title: Title of your bug report
labels: ["bug"]
body:
- type: markdown
attributes:
value: Thanks for taking the time to fill out this bug report πŸ™ !
- type: checkboxes
attributes:
label: βœ… Code of conduct checklist
description: >
Before submitting a bug, please make sure you went through the following
steps.
options:
- label: "🌱 I am using the **_latest version_** of the [code](https://github.com/drprojects/superpoint_transformer/tree/master)."
required: true
- label: "πŸ‘©β€πŸ’» I made sure the bug concerns the official [project's codebase](https://github.com/drprojects/superpoint_transformer/tree/master) and not something I coded myself on top of it. (We only provide support for code we wrote and released ourselves)."
required: true
- label: "πŸ”Ž I took appropriate **_time_** to investigate the problem before filing an issue, but am unable to solve it myself."
required: true
- label: "πŸ“™ I **_thoroughly_** went through the [README](https://github.com/drprojects/superpoint_transformer/blob/master/README.md), but could not find the solution there."
required: true
- label: "πŸ“˜ I **_thoroughly_** went through the tutorial [slides](media/superpoint_transformer_tutorial.pdf), [notebook](notebooks/superpoint_transformer_tutorial.ipynb), and [video](https://www.youtube.com/watch?v=2qKhpQs9gJw), but could not find the solution there."
required: true
- label: "πŸ“— I **_thoroughly_** went through the [documentation](https://github.com/drprojects/superpoint_transformer/tree/master/docs), but could not find the solution there."
required: true
- label: "πŸ“œ I went through the **_docstrings_** and **_comments_** in the [source code](https://github.com/drprojects/superpoint_transformer/tree/master) parts relevant to my problem, but could not find the solution there."
required: true
- label: "πŸ‘©β€πŸ”§ I searched for [**_similar issues_**](https://github.com/drprojects/superpoint_transformer/issues), but could not find the solution there."
required: true
- label: "πŸ”Ž I made sure my bug is related to the [project's codebase](https://github.com/drprojects/superpoint_transformer/tree/master) and is not in fact a sub-dependency issue (e.g.: FRNN installation issue, PyTorch installation issue, PyTorch Geometric not installed with GPU support, ...)."
required: true
- label: "⭐ Since I am showing interest in the project, I took the time to give the [repo](https://github.com/drprojects/superpoint_transformer/tree/master) a ⭐ to show support. **Please do, it means a lot to us !**"
required: true
- type: textarea
attributes:
label: πŸ› Describe the bug
description: >
Please provide a _**clear and concise**_ description of the issue you
are facing. If the code does not behave as anticipated, please describe
the expected behavior. Include references to any relevant documentation
or related issues.
validations:
required: true
- type: textarea
id: logs
attributes:
label: πŸ“œ Log output
description: >
If relevant, please copy and paste any useful log output. If copying an
error message, make sure you provide the _**full traceback**_. This will
be automatically rendered as shell code, so no need for backticks.
placeholder: |
<< Full error message >>
render: shell
- type: textarea
attributes:
label: πŸ€– Steps to reproduce the bug
description: >
Please provide a _**minimal reproducible example**_ to help us
investigate the bug.
placeholder: |
A step-by-step recipe for reproducing your bug. Use backticks as shown
below to write and render code snippets.
```python
# Some python code to reproduce the problem
```
```
Some error message you got, with the full traceback.
```
validations:
required: true
- type: textarea
attributes:
label: πŸ“š Additional information
description: >
Please add any additional information that could help us diagnose the
problem better. Provide screenshots if applicable. You may attach
log files, generated wheel, or any other file that could be helpful.
- type: textarea
attributes:
label: πŸ–₯️ Environment
description: |
Please run the following and paste the output here. This will let us know more about your environment.
```sh
curl -OL https://raw.githubusercontent.com/pytorch/pytorch/main/torch/utils/collect_env.py
# For security purposes, please check the contents of collect_env.py before running it.
python3 collect_env.py
```
render: shell
placeholder: |
<< Copy the output of `collect_env.py` here >>
validations:
required: true