From 4e62b2180e1314214c55c5b0ac52bf2ee86934ae Mon Sep 17 00:00:00 2001 From: jeromeku Date: Sun, 30 Mar 2025 14:58:21 -0700 Subject: [PATCH 01/16] Update issue templates --- .github/ISSUE_TEMPLATE/bug_report.md | 42 +++++++++++++++++++++++ .github/ISSUE_TEMPLATE/custom.md | 10 ++++++ .github/ISSUE_TEMPLATE/documentation.md | 20 +++++++++++ .github/ISSUE_TEMPLATE/feature_request.md | 20 +++++++++++ 4 files changed, 92 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/custom.md create mode 100644 .github/ISSUE_TEMPLATE/documentation.md create mode 100644 .github/ISSUE_TEMPLATE/feature_request.md diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 0000000000..bea0606c13 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,42 @@ +--- +name: Bug report +about: Create a report to help us improve +title: "[BUG]" +labels: bug +assignees: '' + +--- + +**Describe the bug** +A clear and concise description of what the bug is. +## Issue Type + +## Steps to Reproduce + +1. **Environment Setup:** + - OS: [e.g., Ubuntu 20.04] + - Python Version: [e.g., 3.8.10] + - Frameworks/Libraries: past output of `pip freeze` here + - Colab / Script + +2. **Dataset Details:** + - Dataset Name: + - Data Preprocessing Steps: [e.g., Tokenization with specific parameters] + +3. **Model Details:** + - Model ID: + - Model Configuration: [e.g., lora params, quantization, etc.] + +4. **Training Configuration:** + - Trainer Args: `SFTConfig`, `GRPOConfig` + +5. **Reproduction Steps:** + - Minimal script to reproduce error + +6. **Expected Behavior:** + +7. **Actual Behavior:** + - [e.g., Description of the error, unexpected results, or performance issues encountered] + - [e.g., Error messages or logs] + +8. **Additional notes:** diff --git a/.github/ISSUE_TEMPLATE/custom.md b/.github/ISSUE_TEMPLATE/custom.md new file mode 100644 index 0000000000..48d5f81fa4 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/custom.md @@ -0,0 +1,10 @@ +--- +name: Custom issue template +about: Describe this issue template's purpose here. +title: '' +labels: '' +assignees: '' + +--- + + diff --git a/.github/ISSUE_TEMPLATE/documentation.md b/.github/ISSUE_TEMPLATE/documentation.md new file mode 100644 index 0000000000..03891edaf1 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/documentation.md @@ -0,0 +1,20 @@ +--- +name: Documentation +about: Documentation request +title: "[DOCUMENTATION]" +labels: documentation +assignees: '' + +--- + +**Is your feature request related to a problem? Please describe.** +A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] + +**Describe the solution you'd like** +A clear and concise description of what you want to happen. + +**Describe alternatives you've considered** +A clear and concise description of any alternative solutions or features you've considered. + +**Additional context** +Add any other context or screenshots about the feature request here. diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 0000000000..f3615edb5a --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,20 @@ +--- +name: Feature request +about: Suggest an idea for this project +title: "[FEAT]" +labels: enhancement +assignees: '' + +--- + +**Is your feature request related to a problem? Please describe.** +A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] + +**Describe the solution you'd like** +A clear and concise description of what you want to happen. + +**Describe alternatives you've considered** +A clear and concise description of any alternative solutions or features you've considered. + +**Additional context** +Add any other context or screenshots about the feature request here. From dac21f8bdf4a40ed480b8804a1b0ed3c3534ad76 Mon Sep 17 00:00:00 2001 From: jeromeku Date: Sun, 30 Mar 2025 14:59:15 -0700 Subject: [PATCH 02/16] Update and rename custom.md to documentation_request.md --- .github/ISSUE_TEMPLATE/custom.md | 10 ------ .../ISSUE_TEMPLATE/documentation_request.md | 35 +++++++++++++++++++ 2 files changed, 35 insertions(+), 10 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/custom.md create mode 100644 .github/ISSUE_TEMPLATE/documentation_request.md diff --git a/.github/ISSUE_TEMPLATE/custom.md b/.github/ISSUE_TEMPLATE/custom.md deleted file mode 100644 index 48d5f81fa4..0000000000 --- a/.github/ISSUE_TEMPLATE/custom.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -name: Custom issue template -about: Describe this issue template's purpose here. -title: '' -labels: '' -assignees: '' - ---- - - diff --git a/.github/ISSUE_TEMPLATE/documentation_request.md b/.github/ISSUE_TEMPLATE/documentation_request.md new file mode 100644 index 0000000000..c9fa21fac9 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/documentation_request.md @@ -0,0 +1,35 @@ +--- +name: Documentation request +about: Report incorrect or needed documentation to improve CUTLASS +title: "[DOC]" +labels: "? - Needs Triage, documentation" +assignees: '' + +--- + +## Report incorrect documentation + +**Location of incorrect documentation** +Provide links and line numbers if applicable. + +**Describe the problems or issues found in the documentation** +A clear and concise description of what you found to be incorrect. + +**Steps taken to verify documentation is incorrect** +List any steps you have taken: + +**Suggested fix for documentation** +Detail proposed changes to fix the documentation if you have any. + +--- + +## Report needed documentation + +**Report needed documentation** +A clear and concise description of what documentation you believe it is needed and why. + +**Describe the documentation you'd like** +A clear and concise description of what you want to happen. + +**Steps taken to search for needed documentation** +List any steps you have taken: From dcbc2fa77670fd134303f4f6a2b9d791c80299f3 Mon Sep 17 00:00:00 2001 From: jeromeku Date: Sun, 30 Mar 2025 15:01:06 -0700 Subject: [PATCH 03/16] Update issue templates --- .github/ISSUE_TEMPLATE/documentation.md | 20 ------------------- .../ISSUE_TEMPLATE/documentation_request.md | 4 ++-- 2 files changed, 2 insertions(+), 22 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/documentation.md diff --git a/.github/ISSUE_TEMPLATE/documentation.md b/.github/ISSUE_TEMPLATE/documentation.md deleted file mode 100644 index 03891edaf1..0000000000 --- a/.github/ISSUE_TEMPLATE/documentation.md +++ /dev/null @@ -1,20 +0,0 @@ ---- -name: Documentation -about: Documentation request -title: "[DOCUMENTATION]" -labels: documentation -assignees: '' - ---- - -**Is your feature request related to a problem? Please describe.** -A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] - -**Describe the solution you'd like** -A clear and concise description of what you want to happen. - -**Describe alternatives you've considered** -A clear and concise description of any alternative solutions or features you've considered. - -**Additional context** -Add any other context or screenshots about the feature request here. diff --git a/.github/ISSUE_TEMPLATE/documentation_request.md b/.github/ISSUE_TEMPLATE/documentation_request.md index c9fa21fac9..062962deb5 100644 --- a/.github/ISSUE_TEMPLATE/documentation_request.md +++ b/.github/ISSUE_TEMPLATE/documentation_request.md @@ -1,8 +1,8 @@ --- name: Documentation request -about: Report incorrect or needed documentation to improve CUTLASS +about: Report incorrect or needed documentation to improve unsloth! title: "[DOC]" -labels: "? - Needs Triage, documentation" +labels: documentation assignees: '' --- From 8a587f232e12540820a96887285235b2e5419310 Mon Sep 17 00:00:00 2001 From: jeromeku Date: Sun, 30 Mar 2025 15:02:50 -0700 Subject: [PATCH 04/16] Update issue templates --- .github/ISSUE_TEMPLATE/custom.md | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/custom.md diff --git a/.github/ISSUE_TEMPLATE/custom.md b/.github/ISSUE_TEMPLATE/custom.md new file mode 100644 index 0000000000..48d5f81fa4 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/custom.md @@ -0,0 +1,10 @@ +--- +name: Custom issue template +about: Describe this issue template's purpose here. +title: '' +labels: '' +assignees: '' + +--- + + From aeffab10f80bb060c39746b5cb4b07149f5b4422 Mon Sep 17 00:00:00 2001 From: jeromeku Date: Sun, 30 Mar 2025 15:03:39 -0700 Subject: [PATCH 05/16] Update custom.md --- .github/ISSUE_TEMPLATE/custom.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/custom.md b/.github/ISSUE_TEMPLATE/custom.md index 48d5f81fa4..5aa2a672d2 100644 --- a/.github/ISSUE_TEMPLATE/custom.md +++ b/.github/ISSUE_TEMPLATE/custom.md @@ -1,10 +1,10 @@ --- -name: Custom issue template -about: Describe this issue template's purpose here. -title: '' -labels: '' +name: Submit question +about: Ask a general question about CUTLASS +title: "[QST]" +labels: "? - Needs Triage, question" assignees: '' --- - +**What is your question?** From c2ea782cd03c2fd9b82272e599645b419e2e4c62 Mon Sep 17 00:00:00 2001 From: jeromeku Date: Sun, 30 Mar 2025 15:08:38 -0700 Subject: [PATCH 06/16] add question template --- .github/ISSUE_TEMPLATE/{custom.md => question.md} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .github/ISSUE_TEMPLATE/{custom.md => question.md} (100%) diff --git a/.github/ISSUE_TEMPLATE/custom.md b/.github/ISSUE_TEMPLATE/question.md similarity index 100% rename from .github/ISSUE_TEMPLATE/custom.md rename to .github/ISSUE_TEMPLATE/question.md From d620b54909d925c516316ad93610f94f0488a0ab Mon Sep 17 00:00:00 2001 From: jeromeku Date: Sun, 30 Mar 2025 15:11:00 -0700 Subject: [PATCH 07/16] fix template labels --- .github/ISSUE_TEMPLATE/feature_request.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md index f3615edb5a..a2956b5db2 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -2,7 +2,7 @@ name: Feature request about: Suggest an idea for this project title: "[FEAT]" -labels: enhancement +labels: feature request assignees: '' --- From 7d93ca559fd7ecf4d68faffc8f89db5ee8b4c23f Mon Sep 17 00:00:00 2001 From: jeromeku Date: Sun, 30 Mar 2025 15:19:00 -0700 Subject: [PATCH 08/16] clean up bug template --- .github/ISSUE_TEMPLATE/bug_report.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index bea0606c13..d545c65917 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -9,9 +9,6 @@ assignees: '' **Describe the bug** A clear and concise description of what the bug is. -## Issue Type - -## Steps to Reproduce 1. **Environment Setup:** - OS: [e.g., Ubuntu 20.04] From c3d517406d143c8831d392d56d609f70ec10af80 Mon Sep 17 00:00:00 2001 From: jeromeku Date: Sun, 30 Mar 2025 15:19:58 -0700 Subject: [PATCH 09/16] fix question template --- .github/ISSUE_TEMPLATE/question.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/question.md b/.github/ISSUE_TEMPLATE/question.md index 5aa2a672d2..0df891dacf 100644 --- a/.github/ISSUE_TEMPLATE/question.md +++ b/.github/ISSUE_TEMPLATE/question.md @@ -1,8 +1,8 @@ --- name: Submit question -about: Ask a general question about CUTLASS +about: Ask a general question about unsloth title: "[QST]" -labels: "? - Needs Triage, question" +labels: "question" assignees: '' --- From e00e3dd3a2cef8f370fa1dcc0070824dcf7601a3 Mon Sep 17 00:00:00 2001 From: jeromeku Date: Sun, 30 Mar 2025 15:21:47 -0700 Subject: [PATCH 10/16] generalize documentation template --- .../{documentation_request.md => documentation.md} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename .github/ISSUE_TEMPLATE/{documentation_request.md => documentation.md} (97%) diff --git a/.github/ISSUE_TEMPLATE/documentation_request.md b/.github/ISSUE_TEMPLATE/documentation.md similarity index 97% rename from .github/ISSUE_TEMPLATE/documentation_request.md rename to .github/ISSUE_TEMPLATE/documentation.md index 062962deb5..45b53cb2e9 100644 --- a/.github/ISSUE_TEMPLATE/documentation_request.md +++ b/.github/ISSUE_TEMPLATE/documentation.md @@ -1,5 +1,5 @@ --- -name: Documentation request +name: Documentation about: Report incorrect or needed documentation to improve unsloth! title: "[DOC]" labels: documentation From e204fdbd0e31607e05c31910b0b16337cd67e9e7 Mon Sep 17 00:00:00 2001 From: jeromeku Date: Sun, 30 Mar 2025 15:34:01 -0700 Subject: [PATCH 11/16] more template edits --- .github/ISSUE_TEMPLATE/bug_report.md | 2 +- .github/ISSUE_TEMPLATE/feature_request.md | 10 ++-------- 2 files changed, 3 insertions(+), 9 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index d545c65917..53b274aecc 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -14,7 +14,7 @@ A clear and concise description of what the bug is. - OS: [e.g., Ubuntu 20.04] - Python Version: [e.g., 3.8.10] - Frameworks/Libraries: past output of `pip freeze` here - - Colab / Script + - Colab / Script - was this run in colab or as a script? 2. **Dataset Details:** - Dataset Name: diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md index a2956b5db2..2651d3245f 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -1,6 +1,6 @@ --- name: Feature request -about: Suggest an idea for this project +about: Suggest an idea: new algorithm, model, kernel, etc. title: "[FEAT]" labels: feature request assignees: '' @@ -8,13 +8,7 @@ assignees: '' --- **Is your feature request related to a problem? Please describe.** -A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] - -**Describe the solution you'd like** -A clear and concise description of what you want to happen. - -**Describe alternatives you've considered** -A clear and concise description of any alternative solutions or features you've considered. +A clear and concise description of what you'd like to see in `unsloth`. **Additional context** Add any other context or screenshots about the feature request here. From 7b113bbe99cddb51fea9b7b21878f8054e38dc6a Mon Sep 17 00:00:00 2001 From: jeromeku Date: Sun, 30 Mar 2025 15:36:45 -0700 Subject: [PATCH 12/16] make templates more concise --- .github/ISSUE_TEMPLATE/documentation.md | 3 +++ .github/ISSUE_TEMPLATE/feature_request.md | 6 +++--- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/documentation.md b/.github/ISSUE_TEMPLATE/documentation.md index 45b53cb2e9..0e9dc2fe88 100644 --- a/.github/ISSUE_TEMPLATE/documentation.md +++ b/.github/ISSUE_TEMPLATE/documentation.md @@ -7,6 +7,9 @@ assignees: '' --- +- [ ] Report incorrect documentation +- [ ] Report needed documentation + ## Report incorrect documentation **Location of incorrect documentation** diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md index 2651d3245f..7cae17fdb6 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -7,8 +7,8 @@ assignees: '' --- -**Is your feature request related to a problem? Please describe.** -A clear and concise description of what you'd like to see in `unsloth`. +**What features would you like to see? Is it related to a problem or a new feature you'd like to see? Please describe.** +A clear and concise description of what we can do to improve `unsloth`. **Additional context** -Add any other context or screenshots about the feature request here. +Add any other context or screenshots here. From bbc5981054e251e7406472f8a0f0fc7fa87437f0 Mon Sep 17 00:00:00 2001 From: jeromeku Date: Sun, 30 Mar 2025 15:39:20 -0700 Subject: [PATCH 13/16] fix typos, better wording --- .github/ISSUE_TEMPLATE/bug_report.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 53b274aecc..1448a746ce 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -13,12 +13,12 @@ A clear and concise description of what the bug is. 1. **Environment Setup:** - OS: [e.g., Ubuntu 20.04] - Python Version: [e.g., 3.8.10] - - Frameworks/Libraries: past output of `pip freeze` here - - Colab / Script - was this run in colab or as a script? + - Frameworks/Libraries: please paste output of `pip freeze` here + - `colab` / script - was this run in colab or as a script? 2. **Dataset Details:** - Dataset Name: - - Data Preprocessing Steps: [e.g., Tokenization with specific parameters] + - Data Preprocessing Steps: [e.g., tokenization, formatting funcs, data collators, etc.] 3. **Model Details:** - Model ID: @@ -29,11 +29,13 @@ A clear and concise description of what the bug is. 5. **Reproduction Steps:** - Minimal script to reproduce error + - If using a `colab`, please provide the link to the notebook and describe any changes made. 6. **Expected Behavior:** - + 7. **Actual Behavior:** - [e.g., Description of the error, unexpected results, or performance issues encountered] - [e.g., Error messages or logs] 8. **Additional notes:** + - Any additional information that might help us reproduce the bug. \ No newline at end of file From 39926f1730dc73d69c72ab902ccf8f6e8c067091 Mon Sep 17 00:00:00 2001 From: jeromeku Date: Sun, 30 Mar 2025 15:46:25 -0700 Subject: [PATCH 14/16] more edits --- .github/ISSUE_TEMPLATE/documentation.md | 19 ++++++++----------- 1 file changed, 8 insertions(+), 11 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/documentation.md b/.github/ISSUE_TEMPLATE/documentation.md index 0e9dc2fe88..20f94e224b 100644 --- a/.github/ISSUE_TEMPLATE/documentation.md +++ b/.github/ISSUE_TEMPLATE/documentation.md @@ -12,27 +12,24 @@ assignees: '' ## Report incorrect documentation -**Location of incorrect documentation** -Provide links and line numbers if applicable. +**Location of incorrect documentation -- provide links and line numbers if possible.** **Describe the problems or issues found in the documentation** -A clear and concise description of what you found to be incorrect. **Steps taken to verify documentation is incorrect** List any steps you have taken: -**Suggested fix for documentation** -Detail proposed changes to fix the documentation if you have any. +**Suggested fix** --- ## Report needed documentation -**Report needed documentation** -A clear and concise description of what documentation you believe it is needed and why. +**What's missing?** -**Describe the documentation you'd like** -A clear and concise description of what you want to happen. -**Steps taken to search for needed documentation** -List any steps you have taken: +**Describe the documentation you'd like -- how can we make using `unsloth` easier?** + + +**Help us understand how we can make finding the needed info easier!** +List any steps you have taken, e.g. searching the repo, reading the docs, etc. From ee953ef7108272a39b0f79b699a8fab2c232b3e1 Mon Sep 17 00:00:00 2001 From: jeromeku Date: Sun, 30 Mar 2025 15:47:33 -0700 Subject: [PATCH 15/16] improve wording --- .github/ISSUE_TEMPLATE/feature_request.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md index 7cae17fdb6..b64d7b90b7 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -8,7 +8,7 @@ assignees: '' --- **What features would you like to see? Is it related to a problem or a new feature you'd like to see? Please describe.** -A clear and concise description of what we can do to improve `unsloth`. +A clear and concise description of what we can do to improve `unsloth`! **Additional context** Add any other context or screenshots here. From 7f0059c881e0ca4743f20e00011cab1ec0927e73 Mon Sep 17 00:00:00 2001 From: jeromeku Date: Sun, 30 Mar 2025 15:52:31 -0700 Subject: [PATCH 16/16] make wording more user-friendly --- .github/ISSUE_TEMPLATE/bug_report.md | 4 ++-- .github/ISSUE_TEMPLATE/documentation.md | 1 - .github/ISSUE_TEMPLATE/feature_request.md | 4 ++-- 3 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 1448a746ce..cf4f07a9bf 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -8,13 +8,13 @@ assignees: '' --- **Describe the bug** -A clear and concise description of what the bug is. +A clear and concise description of what the bug is. Please fill out the following sections and provide a minimal reproduction script so that we can provide a solution as quickly as possible! 1. **Environment Setup:** - OS: [e.g., Ubuntu 20.04] - Python Version: [e.g., 3.8.10] - Frameworks/Libraries: please paste output of `pip freeze` here - - `colab` / script - was this run in colab or as a script? + - `colab` / script - was this run in `colab` or as a script? 2. **Dataset Details:** - Dataset Name: diff --git a/.github/ISSUE_TEMPLATE/documentation.md b/.github/ISSUE_TEMPLATE/documentation.md index 20f94e224b..b8833510f4 100644 --- a/.github/ISSUE_TEMPLATE/documentation.md +++ b/.github/ISSUE_TEMPLATE/documentation.md @@ -17,7 +17,6 @@ assignees: '' **Describe the problems or issues found in the documentation** **Steps taken to verify documentation is incorrect** -List any steps you have taken: **Suggested fix** diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md index b64d7b90b7..d9325c0f80 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -8,7 +8,7 @@ assignees: '' --- **What features would you like to see? Is it related to a problem or a new feature you'd like to see? Please describe.** -A clear and concise description of what we can do to improve `unsloth`! +What we can do to improve `unsloth`? **Additional context** -Add any other context or screenshots here. +Feel free to add any other context, links, or screenshots here. \ No newline at end of file