diff --git a/.github/ISSUE_TEMPLATE/----.md b/.github/ISSUE_TEMPLATE/----.md deleted file mode 100644 index 5a1103a5ad81..000000000000 --- a/.github/ISSUE_TEMPLATE/----.md +++ /dev/null @@ -1,17 +0,0 @@ ---- -name: 问题反馈 -about: PaddleNLP问题反馈 -title: '' -labels: '' -assignees: '' - ---- - -欢迎您反馈PaddleNLP使用问题,非常感谢您对PaddleNLP的贡献! -在留下您的问题时,辛苦您同步提供如下信息: -- 版本、环境信息 -1)PaddleNLP和PaddlePaddle版本:请提供您的PaddleNLP和PaddlePaddle版本号,例如PaddleNLP 2.0.4,PaddlePaddle2.1.1 -2)系统环境:请您描述系统类型,例如Linux/Windows/MacOS/,python版本 -- 复现信息:如为报错,请给出复现环境、复现步骤 - -如还有问题可以到 PaddleNLP github 主页面的**[社区交流](https://github.com/PaddlePaddle/PaddleNLP#%E7%A4%BE%E5%8C%BA%E4%BA%A4%E6%B5%81)**扫描加入微信群,相关值班同学将会为您解答! diff --git a/.github/ISSUE_TEMPLATE/---general-issues---.md b/.github/ISSUE_TEMPLATE/---general-issues---.md deleted file mode 100644 index 298ecf24b45e..000000000000 --- a/.github/ISSUE_TEMPLATE/---general-issues---.md +++ /dev/null @@ -1,26 +0,0 @@ ---- -name: "\U0001F4DD General issue / 一般问题" -about: Report any issue about PaddleNLP / 提出任何一个与PaddleNLP相关的问题 -title: "[General Issue]" -labels: question -assignees: '' - ---- - -Thanks for your issue. To help us solve the issue better, please provide following information: - 1. PaddleNLP version: (please specify the branch as well,e.g. PaddleNLP v2.2.1) - 2. PaddlePaddle version: (e.g. PaddlePaddle 2.1.0) - 3. Operation system: (e.g. Linux/Windows/MacOS) - 4. Python version: (e.g. Python3.6/3.7/3.8) - 5. CUDA/cuDNN version: (e.g. CUDA 10.2/cuDNN 7.6.5) - 6. Additional context: (Add any other context about the problem) - ---- - -欢迎您反馈PaddleNLP使用问题,辛苦您提供以下信息,方便我们快速定位和解决问题: - 1. PaddleNLP版本:(请提供版本号和分支信息,如PaddleNLP v2.2.1) - 2. PaddlePaddle版本:(如PaddlePaddle 2.1.0) - 3. 操作系统信息:(如Linux/Windows/MacOS) - 4. Python版本号:(如Python3.6/3.7/3.8) - 5. CUDA/cuDNN版本:( 如CUDA 10.2/cuDNN 7.6.5等) - 6. 其他内容: (增加其他与问题相关的内容) diff --git a/.github/ISSUE_TEMPLATE/ask-question.yml b/.github/ISSUE_TEMPLATE/ask-question.yml new file mode 100644 index 000000000000..8e73e918735e --- /dev/null +++ b/.github/ISSUE_TEMPLATE/ask-question.yml @@ -0,0 +1,23 @@ +name: 🐛 Ask Question +description: 请描述您使用PaddleNLP时遇到的问题 +title: "[Question]: " +labels: + - question +body: +- type: markdown + attributes: + value: > + #### 你可以在这里提出一个使用/咨询问题,提问之前请确保: + + - 1)已经百度/谷歌搜索过你的问题,但是没有找到解答; + + - 2)已经在官网查询过[API文档](https://www.paddlepaddle.org.cn/documentation/docs/zh/api/index_cn.html)与[FAQ](https://www.paddlepaddle.org.cn/documentation/docs/zh/faq/index_cn.html),但是没有找到解答; + + - 3)已经在[历史issue](https://github.com/PaddlePaddle/Paddle/issues)中搜索过,没有找到同类issue或issue未被解答。 + +- type: textarea + id: question + attributes: + label: 请提出你的问题 + validations: + required: true \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/bug-report.yml b/.github/ISSUE_TEMPLATE/bug-report.yml new file mode 100644 index 000000000000..e9a510696689 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug-report.yml @@ -0,0 +1,45 @@ +name: 🐛 Bug Report +description: PaddleNLP问题反馈 +title: "[Bug]: " +labels: bug +body: + - type: textarea + id: environment + attributes: + label: 软件环境 + description: | + 请使用以下命令给出您本地Paddle相关包信息 + ```sh + pip list | grep paddle + + ``` + value: | + - paddlepaddle: + - paddlepaddle-gpu: + - paddlenlp: + render: Markdown + validations: + required: true + - type: checkboxes + id: dumplicated-problem + attributes: + label: 重复问题 + description: 是否已在issues中搜索相关问题 + options: + - label: I have searched the existing issues + required: true + - type: textarea + id: descripton + attributes: + label: 错误描述 + description: 给出错误详细描述,以便能够更好的追踪相关问题 + render: Markdown + validations: + required: true + - type: textarea + id: mvp-code + attributes: + label: 稳定复现步骤 & 代码 + description: 请给出稳定复现该问题的步骤 & 代码,以便相关人员能够快速定位到具体问题。 + validations: + required: true \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/docs-report.yml b/.github/ISSUE_TEMPLATE/docs-report.yml new file mode 100644 index 000000000000..943f5108d1ec --- /dev/null +++ b/.github/ISSUE_TEMPLATE/docs-report.yml @@ -0,0 +1,32 @@ +name: 🐛 Docs Report +description: PaddleNLP文档反馈 +title: "[Docs]: " +labels: + - documentation + +body: + - type: textarea + id: environment + attributes: + label: 软件环境 + description: | + 请使用以下命令给出您本地Paddle相关包信息 + ```sh + pip list | grep paddle + + ``` + value: | + - paddlepaddle: + - paddlepaddle-gpu: + - paddlenlp: + render: Markdown + validations: + required: true + - type: textarea + id: description + attributes: + label: 详细描述 + description: 请详细描述您想要反馈的具体问题 + render: Markdown + validations: + required: true \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/feature-request.yml b/.github/ISSUE_TEMPLATE/feature-request.yml new file mode 100644 index 000000000000..e8189be276f3 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature-request.yml @@ -0,0 +1,30 @@ +name: "\U0001F680 Feature request" +description: 请详细描述您所需功能 +labels: [ "feature" ] +body: + - type: textarea + id: feature-request + validations: + required: true + attributes: + label: Feature request + description: | + 对特性提案的清晰而简明的描述。如果论文和代码存在,请提供链接。 + + - type: textarea + id: motivation + validations: + required: true + attributes: + label: Motivation + description: | + 请概述这项建议的动机。您的特性要求与问题有关吗? + + - type: textarea + id: contribution + validations: + required: true + attributes: + label: Your contribution + description: | + Is there any way that you could help, e.g. by submitting a PR? Make sure to read the CONTRIBUTING.MD [readme](https://github.com/huggingface/transformers/blob/main/CONTRIBUTING.md) diff --git a/.github/ISSUE_TEMPLATE/new-model.yaml b/.github/ISSUE_TEMPLATE/new-model.yaml new file mode 100644 index 000000000000..9d5bc1b86dca --- /dev/null +++ b/.github/ISSUE_TEMPLATE/new-model.yaml @@ -0,0 +1,28 @@ +name: "\U0001F31F 添加新模型" +description: 请为新模型提交一份说明 +labels: [ "New model" ] + +body: + - type: textarea + id: description-request + validations: + required: true + attributes: + label: 简要描述 + description: | + 请简要描述模型的类型、解决的问题等。 + + - type: checkboxes + id: information-tasks + attributes: + label: 是否已开源 + options: + - label: 已开源 + - label: 未开源 + + - type: textarea + id: additional-info + attributes: + label: 模型详细信息 + description: | + 请给出新模型相关信息,如论文地址、现存代码地址等。 \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/others.yml b/.github/ISSUE_TEMPLATE/others.yml new file mode 100644 index 000000000000..ade358cb6c7c --- /dev/null +++ b/.github/ISSUE_TEMPLATE/others.yml @@ -0,0 +1,23 @@ +name: 🧩 其他 Others +description: 提出其他问题。 +labels: [others] + +body: +- type: markdown + attributes: + value: > + #### 你可以在这里提出任何前面几类模板不适用的问题,包括但不限于:优化性建议、框架使用体验反馈、版本兼容性问题、报错信息不清楚等。 + +- type: textarea + id: others + attributes: + label: 问题描述 + validations: + required: true + +- type: markdown + attributes: + value: > + 感谢你的贡献 🎉! + +