Skip to content

Commit

Permalink
commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex committed Apr 16, 2024
0 parents commit 945e472
Show file tree
Hide file tree
Showing 125 changed files with 23,369 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* text=auto eol=lf
124 changes: 124 additions & 0 deletions .github/ISSUE_TEMPLATE/ask_for_help.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,124 @@
name: 请求帮助
description: 遇到了无法自行解决的错误
title: '[Help]: '
labels: [ "help wanted" ]

body:
- type: markdown
attributes:
value: |
#### 提问前请先自己去尝试解决,比如查看[本仓库wiki](https://github.com/svc-develop-team/so-vits-svc/wiki),也可以借助chatgpt或一些搜索引擎(谷歌/必应/New Bing/StackOverflow等等)。如果实在无法自己解决再发issue,在提issue之前,请先了解《[提问的智慧](https://github.com/ryanhanwu/How-To-Ask-Questions-The-Smart-Way/blob/main/README-zh_CN.md)》。
---
### 什么样的issue会被直接close
1. 伸手党
2. 一键包/环境包相关
3. 提供的信息不全
4. 低级的如缺少依赖而导致无法运行的问题
4. 所用的数据集是无授权数据集(游戏角色/二次元人物暂不归为此类,但是训练时候也要小心谨慎。如果能联系到官方,必须先和官方联系并核实清楚)
---
- type: checkboxes
id: Clause
attributes:
label: 请勾选下方的确认框。
options:
- label: "我已仔细阅读[README.md](https://github.com/svc-develop-team/so-vits-svc/blob/4.0/README_zh_CN.md)和[wiki中的Quick solution](https://github.com/svc-develop-team/so-vits-svc/wiki/Quick-solution)。"
required: true
- label: "我已通过各种搜索引擎排查问题,我要提出的问题并不常见。"
required: true
- label: "我未在使用由第三方用户提供的一键包/环境包。"
required: true

- type: markdown
attributes:
value: |
# 请根据实际使用环境填写以下信息
- type: input
id: System
attributes:
label: 系统平台版本号
description: Windows执行`winver` | Linux执行`uname -a`
validations:
required: true

- type: input
id: GPU
attributes:
label: GPU 型号
description: 执行`nvidia-smi`
validations:
required: true

- type: input
id: PythonVersion
attributes:
label: Python版本
description: 执行`python -V`
validations:
required: true

- type: input
id: PyTorchVersion
attributes:
label: PyTorch版本
description: 执行`pip show torch`
validations:
required: true

- type: dropdown
id: Branch
attributes:
label: sovits分支
options:
- 4.0(默认)
- 4.0-v2
- 3.0-32k
- 3.0-48k
validations:
required: true

- type: input
id: DatasetSource
attributes:
label: 数据集来源(用于判断数据集质量)
description: 如:UVR处理过的vtb直播音频、录音棚录制
validations:
required: true

- type: input
id: WhereOccurs
attributes:
label: 出现问题的环节或执行的命令
description: 如:预处理、训练、`python preprocess_hubert_f0.py`
validations:
required: true

- type: textarea
id: Description
attributes:
label: 问题描述
description: 在这里描述自己的问题,越详细越好
validations:
required: true

- type: textarea
id: Log
attributes:
label: 日志
description: 将从执行命令到执行完毕输出的所有信息(包括你所执行的命令)粘贴到[pastebin.com](https://pastebin.com/)并把剪贴板链接贴到这里,日志量少的话也可以直接贴在下面
render: python
validations:
required: true

- type: textarea
id: ValidOneClick
attributes:
label: 截图`so-vits-svc`、`logs/44k`文件夹并粘贴到此处
validations:
required: true

- type: textarea
id: Supplementary
attributes:
label: 补充说明
124 changes: 124 additions & 0 deletions .github/ISSUE_TEMPLATE/ask_for_help_en_US.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,124 @@
name: Ask for help
description: Encountered an error cannot be resolved by self
title: '[Help]: '
labels: [ "help wanted" ]

body:
- type: markdown
attributes:
value: |
#### Please try to solve the problem yourself before asking for help. At first you can read *[repo wiki](https://github.com/svc-develop-team/so-vits-svc/wiki)*. Then you can use chatgpt or some search engines like google, bing, new bing and StackOverflow until you really find that you can't solve it by yourself. And before you raise an issue, please understand *[How To Ask Questions The Smart Way](http://www.catb.org/~esr/faqs/smart-questions.html)* in advance.
---
### What kind of issue will be closed immediately
1. Beggars or Free Riders
2. One click package / Environment package (Not using `pip install -r requirement.txt`)
3. Incomplete information
4. Stupid issues such as miss a dependency package
4. Using unlicenced dataset (Game characters / anime characters are not included in this category temporarily but you still need to pay attention. If you can contact the official, you must contact the official and verify it at first.)
---
- type: checkboxes
id: Clause
attributes:
label: Please check the checkboxes below.
options:
- label: "I have read *[README.md](https://github.com/svc-develop-team/so-vits-svc/blob/4.0/README.md)* and *[Quick solution in wiki](https://github.com/svc-develop-team/so-vits-svc/wiki/Quick-solution)* carefully."
required: true
- label: "I have been troubleshooting issues through various search engines. The questions I want to ask are not common."
required: true
- label: "I am NOT using one click package / environment package."
required: true

- type: markdown
attributes:
value: |
# Please fill in the following information according to your actual environment
- type: input
id: System
attributes:
label: OS version
description: Windows run `winver` | Linux run `uname -a`
validations:
required: true

- type: input
id: GPU
attributes:
label: GPU
description: Run `nvidia-smi`
validations:
required: true

- type: input
id: PythonVersion
attributes:
label: Python version
description: Run `python -V`
validations:
required: true

- type: input
id: PyTorchVersion
attributes:
label: PyTorch version
description: Run `pip show torch`
validations:
required: true

- type: dropdown
id: Branch
attributes:
label: Branch of sovits
options:
- 4.0(Default)
- 4.0-v2
- 3.0-32k
- 3.0-48k
validations:
required: true

- type: input
id: DatasetSource
attributes:
label: Dataset source (Used to judge the dataset quality)
description: Such as UVR-processed streaming audio / Recorded in recording studio
validations:
required: true

- type: input
id: WhereOccurs
attributes:
label: Where thr problem occurs or what command you executed
description: Such as Preprocessing / Training / `python preprocess_hubert_f0.py`
validations:
required: true

- type: textarea
id: Description
attributes:
label: Problem description
description: Describe your problem here, the more detailed the better.
validations:
required: true

- type: textarea
id: Log
attributes:
label: Log
description: All information output from the command you executed to the end of execution (include the command). It can also be directly posted below if there is only few text.
render: python
validations:
required: true

- type: textarea
id: ValidOneClick
attributes:
label: Screenshot `so-vits-svc` and `logs/44k` folders and paste here
validations:
required: true

- type: textarea
id: Supplementary
attributes:
label: Supplementary description
92 changes: 92 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,92 @@
name: 问题回报
description: 遇到了BUG?!
title: '[Bug]: '
labels: [ "bug?" ]

body:
- type: markdown
attributes:
value: |
# 请根据实际使用环境填写以下信息
- type: input
id: System
attributes:
label: 系统平台版本号
description: Windows执行`winver` | Linux执行`uname -a`
validations:
required: true

- type: input
id: GPU
attributes:
label: GPU 型号
description: 执行`nvidia-smi`
validations:
required: true

- type: input
id: PythonVersion
attributes:
label: Python版本
description: 执行`python -V`
validations:
required: true

- type: input
id: PyTorchVersion
attributes:
label: PyTorch版本
description: 执行`pip show torch`
validations:
required: true

- type: dropdown
id: Branch
attributes:
label: sovits分支
options:
- 4.0(默认)
- 4.0-v2
- 3.0-32k
- 3.0-48k
validations:
required: true

- type: input
id: DatasetSource
attributes:
label: 数据集来源(用于判断数据集质量)
description: 如:UVR处理过的vtb直播音频、录音棚录制
validations:
required: true

- type: input
id: WhereOccurs
attributes:
label: 出现问题的环节或执行的命令
description: 如:预处理、训练、`python preprocess_hubert_f0.py`
validations:
required: true

- type: textarea
id: Description
attributes:
label: 情况描述
description: 在这里描述遇到的情况,越详细越好
validations:
required: true

- type: textarea
id: Log
attributes:
label: 日志
description: 将从执行命令到执行完毕输出的所有信息(包括你所执行的命令)粘贴到[pastebin.com](https://pastebin.com/)并把剪贴板链接贴到这里,日志量少的话也可以直接贴在下面
render: python
validations:
required: true

- type: textarea
id: Supplementary
attributes:
label: 补充说明
Loading

0 comments on commit 945e472

Please sign in to comment.