forked from PaddlePaddle/PaddleX
-
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.
Merge pull request PaddlePaddle#1195 from PaddlePaddle/FlyingQianMM-p…
…atch-1 Update issue templates
- Loading branch information
Showing
6 changed files
with
156 additions
and
20 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 |
---|---|---|
@@ -1,9 +1,33 @@ | ||
--- | ||
name: 1. 数据类问题 | ||
about: 数据标注、格式转换等问题 | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
**PaddleX版本** | ||
您使用的PaddleX版本 | ||
## Checklist: | ||
|
||
1. 查找[历史相关issue](https://github.com/PaddlePaddle/PaddleX/issues)寻求解答 | ||
2. 翻阅[FAQ常见问题汇总和答疑](https://github.com/PaddlePaddle/PaddleX/blob/develop/docs/FAQ/FAQ.md) | ||
3. 确认bug是否在新版本里还未修复 | ||
4. 翻阅[PaddleX数据准备文档](https://github.com/PaddlePaddle/PaddleX/tree/develop#2-%E6%95%B0%E6%8D%AE%E5%87%86%E5%A4%87) | ||
|
||
## 描述问题 | ||
|
||
## 复现 | ||
|
||
1. 您使用的命令是? | ||
|
||
2. 您使用的数据集是? | ||
|
||
3. 请提供您出现的报错信息及相关log | ||
|
||
## 环境 | ||
|
||
1. 请提供您使用的PaddleX的版本号 | ||
|
||
2. 请提供您使用的操作系统信息,如Linux/Windows/MacOS | ||
|
||
数据类型:请说明你的数据类型,如图像分类、目标检测、实例分割或语义分割 | ||
3. 请问您使用的Python版本是 |
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,37 @@ | ||
--- | ||
name: 2. PaddleX API使用问题 | ||
about: 使用PaddleX API所遇到的问题 | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
## Checklist: | ||
|
||
1. 查找[历史相关issue](https://github.com/PaddlePaddle/PaddleX/issues)寻求解答 | ||
2. 翻阅[FAQ常见问题汇总和答疑](https://github.com/PaddlePaddle/PaddleX/blob/develop/docs/FAQ/FAQ.md) | ||
3. 确认bug是否在新版本里还未修复 | ||
4. 翻阅[PaddleX API文档说明](https://github.com/PaddlePaddle/PaddleX/tree/develop#paddlex-%E4%BD%BF%E7%94%A8%E6%96%87%E6%A1%A3) | ||
|
||
## 描述问题 | ||
|
||
## 复现 | ||
|
||
1. 您是否已经正常运行我们提供的[教程](https://github.com/PaddlePaddle/PaddleX/tree/develop/tutorials)? | ||
|
||
2. 您是否在教程的基础上修改代码内容?还请您提供运行的代码 | ||
|
||
3. 您使用的数据集是? | ||
|
||
4. 请提供您出现的报错信息及相关log | ||
|
||
## 环境 | ||
|
||
1. 请提供您使用的PaddlePaddle和PaddleX的版本号 | ||
|
||
2. 请提供您使用的操作系统信息,如Linux/Windows/MacOS | ||
|
||
3. 请问您使用的Python版本是? | ||
|
||
5. 请问您使用的CUDA/cuDNN的版本号是? |
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 |
---|---|---|
@@ -1,6 +1,10 @@ | ||
--- | ||
name: 2. 模型训练 | ||
about: 模型训练中的问题 | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
问题类型:模型训练 | ||
|
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 |
---|---|---|
@@ -1,11 +1,47 @@ | ||
--- | ||
name: 3. 模型部署 | ||
about: 模型部署相关问题,包括C++、Python、Paddle Lite等 | ||
about: 模型部署相关问题,包括C++、Python、C#部署等 | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
问题类型:模型部署 | ||
**问题描述** | ||
## Checklist: | ||
|
||
1. 查找[历史相关issue](https://github.com/PaddlePaddle/PaddleX/issues)寻求解答 | ||
2. 翻阅[FAQ常见问题汇总和答疑](https://github.com/PaddlePaddle/PaddleX/blob/develop/docs/FAQ/FAQ.md) | ||
3. 确认bug是否在新版本里还未修复 | ||
4. 翻阅[PaddleX 部署文档说明](https://github.com/PaddlePaddle/PaddleX/tree/develop#5-%E6%A8%A1%E5%9E%8B%E9%83%A8%E7%BD%B2) | ||
|
||
## 描述问题 | ||
|
||
## 复现 | ||
|
||
1. c++部署方式 | ||
|
||
* 您是否按照文档教程已经正常运行我们提供的[demo](https://github.com/PaddlePaddle/PaddleX/tree/develop/deploy/cpp/demo)? | ||
|
||
* 您是否在demo基础上修改代码内容?还请您提供运行的代码 | ||
|
||
2. c#部署方式 | ||
|
||
* 您是否按照文档教程已经正常运行我们提供的[demo](https://github.com/PaddlePaddle/PaddleX/tree/develop/examples/C%23_deploy)? | ||
|
||
* 您是否在demo基础上修改代码内容?还请您提供运行的代码 | ||
|
||
* 如果c# demo无法正常运行,c++ [demo](https://github.com/PaddlePaddle/PaddleX/tree/develop/deploy/cpp/demo)是否已经正常运行? | ||
|
||
3. 您使用的**模型**和**数据集**是? | ||
|
||
4. 请提供您出现的报错信息及相关log | ||
|
||
## 环境 | ||
|
||
1. 如果您使用的是python部署方式,请提供您使用的PaddlePaddle、PaddleX版本号、Python版本号 | ||
|
||
2. 如果您使用的是c++或c#部署方式,请提供您使用的PaddleX分支、推理引擎(例如PaddleInference)版本号 | ||
|
||
======================== | ||
3. 请提供您使用的操作系统信息,如Linux/Windows/MacOS | ||
|
||
请在这里描述您在使用过程中的问题,说明您的部署环境,部署需求,模型类型和应用场景等,便于开发人员快速响应。 | ||
4. 请问您使用的CUDA/cuDNN的版本号是? |
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 |
---|---|---|
@@ -1,14 +1,27 @@ | ||
--- | ||
name: 4. PaddleX可视化客户端使用问题 | ||
about: PaddleX可视化客户端使用问题 | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
问题类型:PaddleX可视化客户端 | ||
|
||
**PaddleX GUI版本** | ||
您使用的PaddleX GUI版本 | ||
## Checklist: | ||
|
||
1. 查找[历史相关issue](https://github.com/PaddlePaddle/PaddleX/issues)寻求解答 | ||
2. 翻阅[FAQ常见问题汇总和答疑](https://github.com/PaddlePaddle/PaddleX/blob/develop/docs/FAQ/FAQ.md) | ||
3. 确认bug是否在新版本里还未修复 | ||
4. 如果bug是由PaddleX API 2.0导致,且该bug在develop分支里已修复,参考[FAQ Q4](https://github.com/PaddlePaddle/PaddleX/blob/develop/docs/FAQ/FAQ.md#gui%E7%9B%B8%E5%85%B3%E9%97%AE%E9%A2%98)替换内置PaddleX API | ||
|
||
## 描述问题 | ||
|
||
## 复现 | ||
|
||
1. 请提供您出现的报错信息及相关log(log的查找见 [FAQ Q2](https://github.com/PaddlePaddle/PaddleX/blob/develop/docs/FAQ/FAQ.md#gui%E7%9B%B8%E5%85%B3%E9%97%AE%E9%A2%98)) | ||
|
||
**问题描述** | ||
2. 请提供您使用的GUI版本号 | ||
|
||
=================================== | ||
3. 请提供您使用的操作系统信息,如Linux/Windows/MacOS | ||
|
||
请在这里描述您在使用GUI过程中的问题 | ||
4. 请问您使用的CUDA/cuDNN的版本号是? |
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 |
---|---|---|
@@ -1,15 +1,37 @@ | ||
--- | ||
name: 5. 其它类型问题 | ||
about: 所有问题都可以在这里提 | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
问题类型:其它 | ||
## Checklist: | ||
|
||
1. 查找[历史相关issue](https://github.com/PaddlePaddle/PaddleX/issues)寻求解答 | ||
2. 翻阅[FAQ常见问题汇总和答疑](https://github.com/PaddlePaddle/PaddleX/blob/develop/docs/FAQ/FAQ.md) | ||
3. 确认bug是否在新版本里还未修复 | ||
4. 翻阅[PaddleX 使用文档](https://github.com/PaddlePaddle/PaddleX/tree/develop#paddlex-%E4%BD%BF%E7%94%A8%E6%96%87%E6%A1%A3) | ||
|
||
## 描述问题 | ||
|
||
## 复现 | ||
|
||
1. 您是否已经正常运行我们提供的[教程](https://github.com/PaddlePaddle/PaddleX/tree/develop/tutorials)? | ||
|
||
2. 您是否在教程的基础上修改代码内容?还请您提供运行的代码 | ||
|
||
3. 您使用的数据集是? | ||
|
||
4. 请提供您出现的报错信息及相关log | ||
|
||
## 环境 | ||
|
||
**PaddleX版本** | ||
您使用的PaddleX版本 | ||
1. 请提供您使用的PaddlePaddle和PaddleX的版本号 | ||
|
||
**问题描述** | ||
2. 请提供您使用的操作系统信息,如Linux/Windows/MacOS | ||
|
||
======================== | ||
3. 请问您使用的Python版本是? | ||
|
||
请在这里描述您的问题 | ||
5. 请问您使用的CUDA/cuDNN的版本号是? |