mirror of
https://github.com/rasbt/LLMs-from-scratch.git
synced 2026-04-10 12:33:42 +00:00
Update issue templates
This commit is contained in:
committed by
GitHub
parent
2c326213bb
commit
4758b7bd03
10
.github/ISSUE_TEMPLATE/ask-a-question.md
vendored
Normal file
10
.github/ISSUE_TEMPLATE/ask-a-question.md
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
---
|
||||
name: Ask a Question
|
||||
about: Ask and answer questions related to the book
|
||||
title: ''
|
||||
labels: question
|
||||
assignees: rasbt
|
||||
|
||||
---
|
||||
|
||||
If you have a question that is not a bug, please consider asking it in this GitHub repository's [discussion forum](https://github.com/rasbt/LLMs-from-scratch/discussions).
|
||||
63
.github/ISSUE_TEMPLATE/bug_report.md
vendored
Normal file
63
.github/ISSUE_TEMPLATE/bug_report.md
vendored
Normal file
@@ -0,0 +1,63 @@
|
||||
---
|
||||
name: Bug report
|
||||
about: Report errors related to the book content or code
|
||||
title: ''
|
||||
labels: bug
|
||||
assignees: rasbt
|
||||
|
||||
---
|
||||
|
||||
**Describe the bug**
|
||||
Please provide description of what the bug is.
|
||||
|
||||
|
||||
validations:
|
||||
required: true
|
||||
|
||||
- type: dropdown
|
||||
id: versions
|
||||
attributes:
|
||||
label: What operating system are you using?
|
||||
description: If applicable, please select the operating system where you experienced this issue
|
||||
multiple: true
|
||||
options:
|
||||
- "macOS"
|
||||
- "Linux"
|
||||
- "Windows"
|
||||
validations:
|
||||
required: false
|
||||
|
||||
|
||||
- type: textarea
|
||||
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
|
||||
```
|
||||
|
||||
You can simply copy and paste the outputs of this script below.
|
||||
value: |
|
||||
<details>
|
||||
<summary>Python environment</summary>
|
||||
|
||||
```
|
||||
# [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
|
||||
```
|
||||
|
||||
</details>
|
||||
validations:
|
||||
required: false
|
||||
Reference in New Issue
Block a user