From 470c95d4d3a23a7b9cdbcee517595cb9c3bbe872 Mon Sep 17 00:00:00 2001 From: MetLee <30506100+MetLee@users.noreply.github.com> Date: Sun, 4 Jun 2023 21:34:30 +0800 Subject: [PATCH 1/4] Corrected inaccurate package names --- requirements.txt | 1 - requirements_win.txt | 3 +-- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/requirements.txt b/requirements.txt index 8e22d3e..d09b883 100644 --- a/requirements.txt +++ b/requirements.txt @@ -23,5 +23,4 @@ transformers edge_tts pyyaml pynvml -ffmpeg faiss-cpu diff --git a/requirements_win.txt b/requirements_win.txt index 19bd0e3..e35a80e 100644 --- a/requirements_win.txt +++ b/requirements_win.txt @@ -26,5 +26,4 @@ transformers edge_tts pyyaml pynvml -ffmpeg -faiss \ No newline at end of file +faiss-cpu From d7046564fb1c63b4295eb866ae21c6df2e58862b Mon Sep 17 00:00:00 2001 From: shun zhang <596602667@qq.com> Date: Sun, 4 Jun 2023 23:55:24 +0800 Subject: [PATCH 2/4] add download dict small.pt large-v2.pt --- pretrain/meta.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pretrain/meta.py b/pretrain/meta.py index cc35dd3..c591573 100644 --- a/pretrain/meta.py +++ b/pretrain/meta.py @@ -12,9 +12,17 @@ def download_dict(): "url": "https://github.com/bshall/hubert/releases/download/v0.1/hubert-soft-0d54a1f4.pt", "output": "./pretrain/hubert-soft-0d54a1f4.pt" }, + "whisper-ppg-small": { + "url": "https://openaipublic.azureedge.net/main/whisper/models/9ecf779972d90ba49c06d968637d720dd632c55bbf19d441fb42bf17a411e794/small.pt", + "output": "./pretrain/small.pt" + }, "whisper-ppg": { "url": "https://openaipublic.azureedge.net/main/whisper/models/345ae4da62f9b3d59415adc60127b97c714f32e89e936602e85993674d08dcb1/medium.pt", "output": "./pretrain/medium.pt" + }, + "whisper-ppg-large": { + "url": "https://openaipublic.azureedge.net/main/whisper/models/81f7c96c852ee8fc832187b0132e569d6c3065a3252ed18e56effd0b6a73e524/large-v2.pt", + "output": "./pretrain/large-v2.pt" } } From b5bb4929da44a6eac70134623cb32c2f65c86bb1 Mon Sep 17 00:00:00 2001 From: shun zhang <596602667@qq.com> Date: Mon, 5 Jun 2023 00:12:11 +0800 Subject: [PATCH 3/4] add whisper-ppg-large choice to colab at Generate hubert and f0 --- sovits4_for_colab.ipynb | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/sovits4_for_colab.ipynb b/sovits4_for_colab.ipynb index 045f8f6..c198444 100644 --- a/sovits4_for_colab.ipynb +++ b/sovits4_for_colab.ipynb @@ -280,7 +280,7 @@ "\n", "%cd /content/so-vits-svc\n", "\n", - "speech_encoder = \"vec768l12\" #@param [\"vec768l12\", \"vec256l9\", \"hubertsoft\", \"whisper-ppg\"]\n", + "speech_encoder = \"vec768l12\" #@param [\"vec768l12\", \"vec256l9\", \"hubertsoft\", \"whisper-ppg\", \"whisper-ppg-large\"]\n", "\n", "from pretrain.meta import download_dict\n", "download_dict = download_dict()\n", @@ -657,7 +657,8 @@ }, "gpuClass": "standard", "kernelspec": { - "display_name": "Python 3", + "display_name": "Python 3.11.0 64-bit", + "language": "python", "name": "python3" }, "language_info": { @@ -670,7 +671,12 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.8.16" + "version": "3.11.0" + }, + "vscode": { + "interpreter": { + "hash": "409e03981110838caeb7bc26c44df457c753a1e5b0f1babe83974256c57abb07" + } } }, "nbformat": 4, From 709db83080fbe14600d4c1816c01671c71e62acb Mon Sep 17 00:00:00 2001 From: ZSCharlie <37214987+ZSCharlie@users.noreply.github.com> Date: Mon, 5 Jun 2023 00:20:14 +0800 Subject: [PATCH 4/4] Update sovits4_for_colab.ipynb MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 删除vscode自动生成的配置项 --- sovits4_for_colab.ipynb | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/sovits4_for_colab.ipynb b/sovits4_for_colab.ipynb index c198444..2dcf532 100644 --- a/sovits4_for_colab.ipynb +++ b/sovits4_for_colab.ipynb @@ -657,8 +657,7 @@ }, "gpuClass": "standard", "kernelspec": { - "display_name": "Python 3.11.0 64-bit", - "language": "python", + "display_name": "Python 3", "name": "python3" }, "language_info": { @@ -671,12 +670,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.11.0" - }, - "vscode": { - "interpreter": { - "hash": "409e03981110838caeb7bc26c44df457c753a1e5b0f1babe83974256c57abb07" - } + "version": "3.8.16" } }, "nbformat": 4,