mirror of
https://github.com/rasbt/LLMs-from-scratch.git
synced 2026-04-10 12:33:42 +00:00
update bug report template
This commit is contained in:
68
.github/ISSUE_TEMPLATE/bug-report.yaml
vendored
Normal file
68
.github/ISSUE_TEMPLATE/bug-report.yaml
vendored
Normal file
@@ -0,0 +1,68 @@
|
||||
name: Bug Report
|
||||
description: Report errors related to the book content or code
|
||||
title: "Description"
|
||||
labels: bug
|
||||
assignees: rasbt
|
||||
body:
|
||||
- type: markdown
|
||||
attributes:
|
||||
value: |
|
||||
Thank you for taking the time to report an issue. Please fill out the details below to help 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: environment
|
||||
attributes:
|
||||
label: Environment
|
||||
description: |
|
||||
Please provide details about your Python environment via the environment collection script or notebook located at
|
||||
https://github.com/rasbt/LLMs-from-scratch/tree/main/setup/02_installing-python-libraries.
|
||||
You can run the script as follows:
|
||||
```console
|
||||
wget https://raw.githubusercontent.com/rasbt/LLMs-from-scratch/main/setup/02_installing-python-libraries/python_environment_check.py
|
||||
python python_environment_check.py
|
||||
```
|
||||
The script will print your Python environment information in the following format
|
||||
```
|
||||
[OK] Your Python version is 3.11.4
|
||||
[OK] torch 2.3.1
|
||||
[OK] jupyterlab 4.2.2
|
||||
[OK] tiktoken 0.7.0
|
||||
[OK] matplotlib 3.9.0
|
||||
[OK] numpy 1.26.4
|
||||
[OK] tensorflow 2.16.1
|
||||
[OK] tqdm 4.66.4
|
||||
[OK] pandas 2.2.2
|
||||
[OK] psutil 5.9.8
|
||||
```
|
||||
You can simply copy and paste the outputs of this script below.
|
||||
value: |
|
||||
```
|
||||
|
||||
|
||||
|
||||
```
|
||||
validations:
|
||||
required: false
|
||||
Reference in New Issue
Block a user