forked from Lightning-AI/litgpt
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add simple issue templates (Lightning-AI#1501)
- Loading branch information
Showing
3 changed files
with
69 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
--- | ||
name: Ask a Question | ||
about: Ask and answer questions related to LitGPT | ||
title: '' | ||
labels: question | ||
|
||
--- | ||
|
||
Please describe your question here. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
name: Bug Report | ||
description: Report errors related to LitGPT | ||
title: "Description" | ||
labels: bug | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thank you for taking the time to report an issue. Please fill out the details below to help us resolve it. | ||
- type: textarea | ||
id: bug_description | ||
attributes: | ||
label: Bug description | ||
description: A description of the issue. | ||
placeholder: | | ||
Please provide a description of what the bug or issue is. | ||
validations: | ||
required: true | ||
|
||
- type: dropdown | ||
id: operating_system | ||
attributes: | ||
label: What operating system are you using? | ||
description: If applicable, please select the operating system where you experienced this issue. | ||
options: | ||
- "Unknown" | ||
- "macOS" | ||
- "Linux" | ||
- "Windows" | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: version | ||
attributes: | ||
label: LitGPT Version | ||
description: | | ||
Please provide details about your LitGPT version by running the following code in your terminal: | ||
``` | ||
pip show litgpt | grep Version: | ||
``` | ||
You can simply copy and paste the outputs below. | ||
value: | | ||
``` | ||
``` | ||
validations: | ||
required: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
--- | ||
name: Suggest a Feature | ||
about: Propose a new feature or enhancement | ||
title: '' | ||
labels: enhancement | ||
|
||
--- | ||
|
||
Please describe the feature or enhancement along with the intended usecase. |