├── .cursorignore ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ └── tests.yml ├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── docs ├── DOCKERFILE ├── WebService.md ├── en_speaker_3_i_love_socaity.wav ├── hermine_i_love_socaity.wav ├── icon.png ├── icon.xcf ├── potter_to_hermine.wav └── server_screenshot.png ├── model-card.md ├── pyproject.toml ├── speechcraft ├── SpeechCraft.code-workspace ├── __init__.py ├── assets │ └── prompts │ │ ├── announcer.npz │ │ ├── de_speaker_0.npz │ │ ├── de_speaker_1.npz │ │ ├── de_speaker_2.npz │ │ ├── de_speaker_3.npz │ │ ├── de_speaker_4.npz │ │ ├── de_speaker_5.npz │ │ ├── de_speaker_6.npz │ │ ├── de_speaker_7.npz │ │ ├── de_speaker_8.npz │ │ ├── de_speaker_9.npz │ │ ├── en_speaker_0.npz │ │ ├── en_speaker_1.npz │ │ ├── en_speaker_2.npz │ │ ├── en_speaker_3.npz │ │ ├── en_speaker_4.npz │ │ ├── en_speaker_5.npz │ │ ├── en_speaker_6.npz │ │ ├── en_speaker_7.npz │ │ ├── en_speaker_8.npz │ │ ├── en_speaker_9.npz │ │ ├── es_speaker_0.npz │ │ ├── es_speaker_1.npz │ │ ├── es_speaker_2.npz │ │ ├── es_speaker_3.npz │ │ ├── es_speaker_4.npz │ │ ├── es_speaker_5.npz │ │ ├── es_speaker_6.npz │ │ ├── es_speaker_7.npz │ │ ├── es_speaker_8.npz │ │ ├── es_speaker_9.npz │ │ ├── fr_speaker_0.npz │ │ ├── fr_speaker_1.npz │ │ ├── fr_speaker_2.npz │ │ ├── fr_speaker_3.npz │ │ ├── fr_speaker_4.npz │ │ ├── fr_speaker_5.npz │ │ ├── fr_speaker_6.npz │ │ ├── fr_speaker_7.npz │ │ ├── fr_speaker_8.npz │ │ ├── fr_speaker_9.npz │ │ ├── hermine.npz │ │ ├── hi_speaker_0.npz │ │ ├── hi_speaker_1.npz │ │ ├── hi_speaker_2.npz │ │ ├── hi_speaker_3.npz │ │ ├── hi_speaker_4.npz │ │ ├── hi_speaker_5.npz │ │ ├── hi_speaker_6.npz │ │ ├── hi_speaker_7.npz │ │ ├── hi_speaker_8.npz │ │ ├── hi_speaker_9.npz │ │ ├── it_speaker_0.npz │ │ ├── it_speaker_1.npz │ │ ├── it_speaker_2.npz │ │ ├── it_speaker_3.npz │ │ ├── it_speaker_4.npz │ │ ├── it_speaker_5.npz │ │ ├── it_speaker_6.npz │ │ ├── it_speaker_7.npz │ │ ├── it_speaker_8.npz │ │ ├── it_speaker_9.npz │ │ ├── ja_speaker_0.npz │ │ ├── ja_speaker_1.npz │ │ ├── ja_speaker_2.npz │ │ ├── ja_speaker_3.npz │ │ ├── ja_speaker_4.npz │ │ ├── ja_speaker_5.npz │ │ ├── ja_speaker_6.npz │ │ ├── ja_speaker_7.npz │ │ ├── ja_speaker_8.npz │ │ ├── ja_speaker_9.npz │ │ ├── ko_speaker_0.npz │ │ ├── ko_speaker_1.npz │ │ ├── ko_speaker_2.npz │ │ ├── ko_speaker_3.npz │ │ ├── ko_speaker_4.npz │ │ ├── ko_speaker_5.npz │ │ ├── ko_speaker_6.npz │ │ ├── ko_speaker_7.npz │ │ ├── ko_speaker_8.npz │ │ ├── ko_speaker_9.npz │ │ ├── pl_speaker_0.npz │ │ ├── pl_speaker_1.npz │ │ ├── pl_speaker_2.npz │ │ ├── pl_speaker_3.npz │ │ ├── pl_speaker_4.npz │ │ ├── pl_speaker_5.npz │ │ ├── pl_speaker_6.npz │ │ ├── pl_speaker_7.npz │ │ ├── pl_speaker_8.npz │ │ ├── pl_speaker_9.npz │ │ ├── pt_speaker_0.npz │ │ ├── pt_speaker_1.npz │ │ ├── pt_speaker_2.npz │ │ ├── pt_speaker_3.npz │ │ ├── pt_speaker_4.npz │ │ ├── pt_speaker_5.npz │ │ ├── pt_speaker_6.npz │ │ ├── pt_speaker_7.npz │ │ ├── pt_speaker_8.npz │ │ ├── pt_speaker_9.npz │ │ ├── readme.md │ │ ├── ru_speaker_0.npz │ │ ├── ru_speaker_1.npz │ │ ├── ru_speaker_2.npz │ │ ├── ru_speaker_3.npz │ │ ├── ru_speaker_4.npz │ │ ├── ru_speaker_5.npz │ │ ├── ru_speaker_6.npz │ │ ├── ru_speaker_7.npz │ │ ├── ru_speaker_8.npz │ │ ├── ru_speaker_9.npz │ │ ├── speaker_0.npz │ │ ├── speaker_1.npz │ │ ├── speaker_2.npz │ │ ├── speaker_3.npz │ │ ├── speaker_4.npz │ │ ├── speaker_5.npz │ │ ├── speaker_6.npz │ │ ├── speaker_7.npz │ │ ├── speaker_8.npz │ │ ├── speaker_9.npz │ │ ├── tr_speaker_0.npz │ │ ├── tr_speaker_1.npz │ │ ├── tr_speaker_2.npz │ │ ├── tr_speaker_3.npz │ │ ├── tr_speaker_4.npz │ │ ├── tr_speaker_5.npz │ │ ├── tr_speaker_6.npz │ │ ├── tr_speaker_7.npz │ │ ├── tr_speaker_8.npz │ │ ├── tr_speaker_9.npz │ │ ├── v2 │ │ ├── de_speaker_0.npz │ │ ├── de_speaker_1.npz │ │ ├── de_speaker_2.npz │ │ ├── de_speaker_3.npz │ │ ├── de_speaker_4.npz │ │ ├── de_speaker_5.npz │ │ ├── de_speaker_6.npz │ │ ├── de_speaker_7.npz │ │ ├── de_speaker_8.npz │ │ ├── de_speaker_9.npz │ │ ├── en_speaker_0.npz │ │ ├── en_speaker_1.npz │ │ ├── en_speaker_2.npz │ │ ├── en_speaker_3.npz │ │ ├── en_speaker_4.npz │ │ ├── en_speaker_5.npz │ │ ├── en_speaker_6.npz │ │ ├── en_speaker_7.npz │ │ ├── en_speaker_8.npz │ │ ├── en_speaker_9.npz │ │ ├── es_speaker_0.npz │ │ ├── es_speaker_1.npz │ │ ├── es_speaker_2.npz │ │ ├── es_speaker_3.npz │ │ ├── es_speaker_4.npz │ │ ├── es_speaker_5.npz │ │ ├── es_speaker_6.npz │ │ ├── es_speaker_7.npz │ │ ├── es_speaker_8.npz │ │ ├── es_speaker_9.npz │ │ ├── fr_speaker_0.npz │ │ ├── fr_speaker_1.npz │ │ ├── fr_speaker_2.npz │ │ ├── fr_speaker_3.npz │ │ ├── fr_speaker_4.npz │ │ ├── fr_speaker_5.npz │ │ ├── fr_speaker_6.npz │ │ ├── fr_speaker_7.npz │ │ ├── fr_speaker_8.npz │ │ ├── fr_speaker_9.npz │ │ ├── hi_speaker_0.npz │ │ ├── hi_speaker_1.npz │ │ ├── hi_speaker_2.npz │ │ ├── hi_speaker_3.npz │ │ ├── hi_speaker_4.npz │ │ ├── hi_speaker_5.npz │ │ ├── hi_speaker_6.npz │ │ ├── hi_speaker_7.npz │ │ ├── hi_speaker_8.npz │ │ ├── hi_speaker_9.npz │ │ ├── it_speaker_0.npz │ │ ├── it_speaker_1.npz │ │ ├── it_speaker_2.npz │ │ ├── it_speaker_3.npz │ │ ├── it_speaker_4.npz │ │ ├── it_speaker_5.npz │ │ ├── it_speaker_6.npz │ │ ├── it_speaker_7.npz │ │ ├── it_speaker_8.npz │ │ ├── it_speaker_9.npz │ │ ├── ja_speaker_0.npz │ │ ├── ja_speaker_1.npz │ │ ├── ja_speaker_2.npz │ │ ├── ja_speaker_3.npz │ │ ├── ja_speaker_4.npz │ │ ├── ja_speaker_5.npz │ │ ├── ja_speaker_6.npz │ │ ├── ja_speaker_7.npz │ │ ├── ja_speaker_8.npz │ │ ├── ja_speaker_9.npz │ │ ├── ko_speaker_0.npz │ │ ├── ko_speaker_1.npz │ │ ├── ko_speaker_2.npz │ │ ├── ko_speaker_3.npz │ │ ├── ko_speaker_4.npz │ │ ├── ko_speaker_5.npz │ │ ├── ko_speaker_6.npz │ │ ├── ko_speaker_7.npz │ │ ├── ko_speaker_8.npz │ │ ├── ko_speaker_9.npz │ │ ├── pl_speaker_0.npz │ │ ├── pl_speaker_1.npz │ │ ├── pl_speaker_2.npz │ │ ├── pl_speaker_3.npz │ │ ├── pl_speaker_4.npz │ │ ├── pl_speaker_5.npz │ │ ├── pl_speaker_6.npz │ │ ├── pl_speaker_7.npz │ │ ├── pl_speaker_8.npz │ │ ├── pl_speaker_9.npz │ │ ├── pt_speaker_0.npz │ │ ├── pt_speaker_1.npz │ │ ├── pt_speaker_2.npz │ │ ├── pt_speaker_3.npz │ │ ├── pt_speaker_4.npz │ │ ├── pt_speaker_5.npz │ │ ├── pt_speaker_6.npz │ │ ├── pt_speaker_7.npz │ │ ├── pt_speaker_8.npz │ │ ├── pt_speaker_9.npz │ │ ├── ru_speaker_0.npz │ │ ├── ru_speaker_1.npz │ │ ├── ru_speaker_2.npz │ │ ├── ru_speaker_3.npz │ │ ├── ru_speaker_4.npz │ │ ├── ru_speaker_5.npz │ │ ├── ru_speaker_6.npz │ │ ├── ru_speaker_7.npz │ │ ├── ru_speaker_8.npz │ │ ├── ru_speaker_9.npz │ │ ├── tr_speaker_0.npz │ │ ├── tr_speaker_1.npz │ │ ├── tr_speaker_2.npz │ │ ├── tr_speaker_3.npz │ │ ├── tr_speaker_4.npz │ │ ├── tr_speaker_5.npz │ │ ├── tr_speaker_6.npz │ │ ├── tr_speaker_7.npz │ │ ├── tr_speaker_8.npz │ │ ├── tr_speaker_9.npz │ │ ├── zh_speaker_0.npz │ │ ├── zh_speaker_1.npz │ │ ├── zh_speaker_2.npz │ │ ├── zh_speaker_3.npz │ │ ├── zh_speaker_4.npz │ │ ├── zh_speaker_5.npz │ │ ├── zh_speaker_6.npz │ │ ├── zh_speaker_7.npz │ │ ├── zh_speaker_8.npz │ │ └── zh_speaker_9.npz │ │ ├── zh_speaker_0.npz │ │ ├── zh_speaker_1.npz │ │ ├── zh_speaker_2.npz │ │ ├── zh_speaker_3.npz │ │ ├── zh_speaker_4.npz │ │ ├── zh_speaker_5.npz │ │ ├── zh_speaker_6.npz │ │ ├── zh_speaker_7.npz │ │ ├── zh_speaker_8.npz │ │ └── zh_speaker_9.npz ├── cli.py ├── core │ ├── __init__.py │ ├── api.py │ ├── generation.py │ ├── model.py │ ├── model_fine.py │ └── voice_embedding.py ├── server.py ├── settings.py ├── supp │ ├── __init__.py │ ├── model_downloader.py │ └── utils.py ├── text2voice.py ├── voice2voice.py └── voice_cloning │ ├── __init__.py │ ├── custom_tokenizer.py │ ├── hubert_manager.py │ ├── pre_kmeans_hubert.py │ └── voice2embedding.py └── test ├── __init__.py ├── test.py └── test_files ├── __init__.py ├── voice_clone_test_voice_1.wav └── voice_clone_test_voice_2.wav /.cursorignore: -------------------------------------------------------------------------------- 1 | .env 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/README.md -------------------------------------------------------------------------------- /docs/DOCKERFILE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/docs/DOCKERFILE -------------------------------------------------------------------------------- /docs/WebService.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/docs/WebService.md -------------------------------------------------------------------------------- /docs/en_speaker_3_i_love_socaity.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/docs/en_speaker_3_i_love_socaity.wav -------------------------------------------------------------------------------- /docs/hermine_i_love_socaity.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/docs/hermine_i_love_socaity.wav -------------------------------------------------------------------------------- /docs/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/docs/icon.png -------------------------------------------------------------------------------- /docs/icon.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/docs/icon.xcf -------------------------------------------------------------------------------- /docs/potter_to_hermine.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/docs/potter_to_hermine.wav -------------------------------------------------------------------------------- /docs/server_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/docs/server_screenshot.png -------------------------------------------------------------------------------- /model-card.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/model-card.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/pyproject.toml -------------------------------------------------------------------------------- /speechcraft/SpeechCraft.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/SpeechCraft.code-workspace -------------------------------------------------------------------------------- /speechcraft/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/__init__.py -------------------------------------------------------------------------------- /speechcraft/assets/prompts/announcer.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/announcer.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/de_speaker_0.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/de_speaker_0.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/de_speaker_1.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/de_speaker_1.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/de_speaker_2.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/de_speaker_2.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/de_speaker_3.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/de_speaker_3.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/de_speaker_4.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/de_speaker_4.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/de_speaker_5.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/de_speaker_5.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/de_speaker_6.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/de_speaker_6.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/de_speaker_7.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/de_speaker_7.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/de_speaker_8.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/de_speaker_8.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/de_speaker_9.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/de_speaker_9.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/en_speaker_0.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/en_speaker_0.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/en_speaker_1.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/en_speaker_1.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/en_speaker_2.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/en_speaker_2.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/en_speaker_3.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/en_speaker_3.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/en_speaker_4.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/en_speaker_4.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/en_speaker_5.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/en_speaker_5.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/en_speaker_6.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/en_speaker_6.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/en_speaker_7.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/en_speaker_7.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/en_speaker_8.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/en_speaker_8.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/en_speaker_9.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/en_speaker_9.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/es_speaker_0.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/es_speaker_0.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/es_speaker_1.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/es_speaker_1.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/es_speaker_2.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/es_speaker_2.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/es_speaker_3.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/es_speaker_3.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/es_speaker_4.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/es_speaker_4.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/es_speaker_5.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/es_speaker_5.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/es_speaker_6.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/es_speaker_6.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/es_speaker_7.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/es_speaker_7.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/es_speaker_8.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/es_speaker_8.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/es_speaker_9.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/es_speaker_9.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/fr_speaker_0.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/fr_speaker_0.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/fr_speaker_1.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/fr_speaker_1.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/fr_speaker_2.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/fr_speaker_2.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/fr_speaker_3.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/fr_speaker_3.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/fr_speaker_4.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/fr_speaker_4.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/fr_speaker_5.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/fr_speaker_5.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/fr_speaker_6.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/fr_speaker_6.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/fr_speaker_7.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/fr_speaker_7.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/fr_speaker_8.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/fr_speaker_8.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/fr_speaker_9.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/fr_speaker_9.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/hermine.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/hermine.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/hi_speaker_0.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/hi_speaker_0.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/hi_speaker_1.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/hi_speaker_1.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/hi_speaker_2.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/hi_speaker_2.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/hi_speaker_3.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/hi_speaker_3.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/hi_speaker_4.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/hi_speaker_4.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/hi_speaker_5.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/hi_speaker_5.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/hi_speaker_6.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/hi_speaker_6.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/hi_speaker_7.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/hi_speaker_7.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/hi_speaker_8.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/hi_speaker_8.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/hi_speaker_9.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/hi_speaker_9.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/it_speaker_0.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/it_speaker_0.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/it_speaker_1.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/it_speaker_1.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/it_speaker_2.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/it_speaker_2.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/it_speaker_3.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/it_speaker_3.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/it_speaker_4.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/it_speaker_4.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/it_speaker_5.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/it_speaker_5.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/it_speaker_6.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/it_speaker_6.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/it_speaker_7.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/it_speaker_7.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/it_speaker_8.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/it_speaker_8.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/it_speaker_9.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/it_speaker_9.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/ja_speaker_0.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/ja_speaker_0.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/ja_speaker_1.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/ja_speaker_1.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/ja_speaker_2.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/ja_speaker_2.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/ja_speaker_3.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/ja_speaker_3.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/ja_speaker_4.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/ja_speaker_4.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/ja_speaker_5.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/ja_speaker_5.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/ja_speaker_6.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/ja_speaker_6.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/ja_speaker_7.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/ja_speaker_7.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/ja_speaker_8.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/ja_speaker_8.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/ja_speaker_9.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/ja_speaker_9.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/ko_speaker_0.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/ko_speaker_0.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/ko_speaker_1.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/ko_speaker_1.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/ko_speaker_2.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/ko_speaker_2.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/ko_speaker_3.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/ko_speaker_3.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/ko_speaker_4.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/ko_speaker_4.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/ko_speaker_5.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/ko_speaker_5.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/ko_speaker_6.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/ko_speaker_6.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/ko_speaker_7.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/ko_speaker_7.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/ko_speaker_8.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/ko_speaker_8.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/ko_speaker_9.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/ko_speaker_9.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/pl_speaker_0.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/pl_speaker_0.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/pl_speaker_1.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/pl_speaker_1.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/pl_speaker_2.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/pl_speaker_2.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/pl_speaker_3.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/pl_speaker_3.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/pl_speaker_4.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/pl_speaker_4.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/pl_speaker_5.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/pl_speaker_5.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/pl_speaker_6.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/pl_speaker_6.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/pl_speaker_7.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/pl_speaker_7.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/pl_speaker_8.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/pl_speaker_8.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/pl_speaker_9.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/pl_speaker_9.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/pt_speaker_0.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/pt_speaker_0.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/pt_speaker_1.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/pt_speaker_1.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/pt_speaker_2.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/pt_speaker_2.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/pt_speaker_3.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/pt_speaker_3.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/pt_speaker_4.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/pt_speaker_4.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/pt_speaker_5.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/pt_speaker_5.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/pt_speaker_6.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/pt_speaker_6.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/pt_speaker_7.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/pt_speaker_7.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/pt_speaker_8.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/pt_speaker_8.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/pt_speaker_9.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/pt_speaker_9.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/readme.md -------------------------------------------------------------------------------- /speechcraft/assets/prompts/ru_speaker_0.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/ru_speaker_0.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/ru_speaker_1.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/ru_speaker_1.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/ru_speaker_2.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/ru_speaker_2.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/ru_speaker_3.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/ru_speaker_3.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/ru_speaker_4.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/ru_speaker_4.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/ru_speaker_5.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/ru_speaker_5.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/ru_speaker_6.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/ru_speaker_6.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/ru_speaker_7.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/ru_speaker_7.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/ru_speaker_8.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/ru_speaker_8.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/ru_speaker_9.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/ru_speaker_9.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/speaker_0.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/speaker_0.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/speaker_1.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/speaker_1.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/speaker_2.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/speaker_2.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/speaker_3.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/speaker_3.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/speaker_4.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/speaker_4.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/speaker_5.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/speaker_5.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/speaker_6.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/speaker_6.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/speaker_7.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/speaker_7.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/speaker_8.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/speaker_8.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/speaker_9.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/speaker_9.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/tr_speaker_0.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/tr_speaker_0.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/tr_speaker_1.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/tr_speaker_1.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/tr_speaker_2.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/tr_speaker_2.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/tr_speaker_3.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/tr_speaker_3.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/tr_speaker_4.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/tr_speaker_4.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/tr_speaker_5.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/tr_speaker_5.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/tr_speaker_6.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/tr_speaker_6.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/tr_speaker_7.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/tr_speaker_7.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/tr_speaker_8.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/tr_speaker_8.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/tr_speaker_9.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/tr_speaker_9.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/de_speaker_0.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/de_speaker_0.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/de_speaker_1.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/de_speaker_1.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/de_speaker_2.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/de_speaker_2.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/de_speaker_3.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/de_speaker_3.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/de_speaker_4.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/de_speaker_4.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/de_speaker_5.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/de_speaker_5.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/de_speaker_6.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/de_speaker_6.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/de_speaker_7.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/de_speaker_7.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/de_speaker_8.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/de_speaker_8.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/de_speaker_9.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/de_speaker_9.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/en_speaker_0.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/en_speaker_0.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/en_speaker_1.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/en_speaker_1.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/en_speaker_2.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/en_speaker_2.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/en_speaker_3.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/en_speaker_3.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/en_speaker_4.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/en_speaker_4.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/en_speaker_5.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/en_speaker_5.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/en_speaker_6.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/en_speaker_6.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/en_speaker_7.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/en_speaker_7.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/en_speaker_8.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/en_speaker_8.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/en_speaker_9.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/en_speaker_9.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/es_speaker_0.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/es_speaker_0.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/es_speaker_1.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/es_speaker_1.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/es_speaker_2.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/es_speaker_2.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/es_speaker_3.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/es_speaker_3.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/es_speaker_4.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/es_speaker_4.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/es_speaker_5.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/es_speaker_5.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/es_speaker_6.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/es_speaker_6.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/es_speaker_7.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/es_speaker_7.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/es_speaker_8.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/es_speaker_8.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/es_speaker_9.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/es_speaker_9.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/fr_speaker_0.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/fr_speaker_0.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/fr_speaker_1.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/fr_speaker_1.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/fr_speaker_2.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/fr_speaker_2.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/fr_speaker_3.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/fr_speaker_3.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/fr_speaker_4.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/fr_speaker_4.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/fr_speaker_5.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/fr_speaker_5.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/fr_speaker_6.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/fr_speaker_6.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/fr_speaker_7.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/fr_speaker_7.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/fr_speaker_8.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/fr_speaker_8.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/fr_speaker_9.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/fr_speaker_9.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/hi_speaker_0.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/hi_speaker_0.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/hi_speaker_1.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/hi_speaker_1.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/hi_speaker_2.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/hi_speaker_2.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/hi_speaker_3.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/hi_speaker_3.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/hi_speaker_4.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/hi_speaker_4.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/hi_speaker_5.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/hi_speaker_5.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/hi_speaker_6.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/hi_speaker_6.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/hi_speaker_7.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/hi_speaker_7.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/hi_speaker_8.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/hi_speaker_8.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/hi_speaker_9.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/hi_speaker_9.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/it_speaker_0.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/it_speaker_0.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/it_speaker_1.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/it_speaker_1.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/it_speaker_2.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/it_speaker_2.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/it_speaker_3.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/it_speaker_3.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/it_speaker_4.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/it_speaker_4.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/it_speaker_5.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/it_speaker_5.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/it_speaker_6.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/it_speaker_6.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/it_speaker_7.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/it_speaker_7.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/it_speaker_8.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/it_speaker_8.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/it_speaker_9.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/it_speaker_9.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/ja_speaker_0.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/ja_speaker_0.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/ja_speaker_1.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/ja_speaker_1.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/ja_speaker_2.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/ja_speaker_2.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/ja_speaker_3.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/ja_speaker_3.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/ja_speaker_4.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/ja_speaker_4.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/ja_speaker_5.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/ja_speaker_5.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/ja_speaker_6.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/ja_speaker_6.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/ja_speaker_7.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/ja_speaker_7.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/ja_speaker_8.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/ja_speaker_8.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/ja_speaker_9.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/ja_speaker_9.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/ko_speaker_0.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/ko_speaker_0.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/ko_speaker_1.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/ko_speaker_1.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/ko_speaker_2.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/ko_speaker_2.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/ko_speaker_3.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/ko_speaker_3.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/ko_speaker_4.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/ko_speaker_4.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/ko_speaker_5.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/ko_speaker_5.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/ko_speaker_6.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/ko_speaker_6.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/ko_speaker_7.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/ko_speaker_7.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/ko_speaker_8.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/ko_speaker_8.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/ko_speaker_9.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/ko_speaker_9.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/pl_speaker_0.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/pl_speaker_0.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/pl_speaker_1.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/pl_speaker_1.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/pl_speaker_2.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/pl_speaker_2.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/pl_speaker_3.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/pl_speaker_3.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/pl_speaker_4.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/pl_speaker_4.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/pl_speaker_5.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/pl_speaker_5.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/pl_speaker_6.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/pl_speaker_6.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/pl_speaker_7.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/pl_speaker_7.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/pl_speaker_8.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/pl_speaker_8.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/pl_speaker_9.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/pl_speaker_9.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/pt_speaker_0.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/pt_speaker_0.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/pt_speaker_1.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/pt_speaker_1.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/pt_speaker_2.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/pt_speaker_2.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/pt_speaker_3.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/pt_speaker_3.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/pt_speaker_4.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/pt_speaker_4.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/pt_speaker_5.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/pt_speaker_5.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/pt_speaker_6.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/pt_speaker_6.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/pt_speaker_7.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/pt_speaker_7.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/pt_speaker_8.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/pt_speaker_8.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/pt_speaker_9.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/pt_speaker_9.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/ru_speaker_0.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/ru_speaker_0.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/ru_speaker_1.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/ru_speaker_1.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/ru_speaker_2.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/ru_speaker_2.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/ru_speaker_3.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/ru_speaker_3.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/ru_speaker_4.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/ru_speaker_4.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/ru_speaker_5.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/ru_speaker_5.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/ru_speaker_6.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/ru_speaker_6.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/ru_speaker_7.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/ru_speaker_7.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/ru_speaker_8.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/ru_speaker_8.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/ru_speaker_9.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/ru_speaker_9.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/tr_speaker_0.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/tr_speaker_0.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/tr_speaker_1.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/tr_speaker_1.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/tr_speaker_2.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/tr_speaker_2.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/tr_speaker_3.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/tr_speaker_3.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/tr_speaker_4.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/tr_speaker_4.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/tr_speaker_5.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/tr_speaker_5.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/tr_speaker_6.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/tr_speaker_6.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/tr_speaker_7.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/tr_speaker_7.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/tr_speaker_8.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/tr_speaker_8.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/tr_speaker_9.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/tr_speaker_9.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/zh_speaker_0.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/zh_speaker_0.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/zh_speaker_1.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/zh_speaker_1.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/zh_speaker_2.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/zh_speaker_2.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/zh_speaker_3.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/zh_speaker_3.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/zh_speaker_4.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/zh_speaker_4.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/zh_speaker_5.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/zh_speaker_5.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/zh_speaker_6.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/zh_speaker_6.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/zh_speaker_7.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/zh_speaker_7.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/zh_speaker_8.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/zh_speaker_8.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/v2/zh_speaker_9.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/v2/zh_speaker_9.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/zh_speaker_0.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/zh_speaker_0.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/zh_speaker_1.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/zh_speaker_1.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/zh_speaker_2.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/zh_speaker_2.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/zh_speaker_3.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/zh_speaker_3.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/zh_speaker_4.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/zh_speaker_4.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/zh_speaker_5.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/zh_speaker_5.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/zh_speaker_6.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/zh_speaker_6.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/zh_speaker_7.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/zh_speaker_7.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/zh_speaker_8.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/zh_speaker_8.npz -------------------------------------------------------------------------------- /speechcraft/assets/prompts/zh_speaker_9.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/assets/prompts/zh_speaker_9.npz -------------------------------------------------------------------------------- /speechcraft/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/cli.py -------------------------------------------------------------------------------- /speechcraft/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /speechcraft/core/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/core/api.py -------------------------------------------------------------------------------- /speechcraft/core/generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/core/generation.py -------------------------------------------------------------------------------- /speechcraft/core/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/core/model.py -------------------------------------------------------------------------------- /speechcraft/core/model_fine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/core/model_fine.py -------------------------------------------------------------------------------- /speechcraft/core/voice_embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/core/voice_embedding.py -------------------------------------------------------------------------------- /speechcraft/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/server.py -------------------------------------------------------------------------------- /speechcraft/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/settings.py -------------------------------------------------------------------------------- /speechcraft/supp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /speechcraft/supp/model_downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/supp/model_downloader.py -------------------------------------------------------------------------------- /speechcraft/supp/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/supp/utils.py -------------------------------------------------------------------------------- /speechcraft/text2voice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/text2voice.py -------------------------------------------------------------------------------- /speechcraft/voice2voice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/voice2voice.py -------------------------------------------------------------------------------- /speechcraft/voice_cloning/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/voice_cloning/__init__.py -------------------------------------------------------------------------------- /speechcraft/voice_cloning/custom_tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/voice_cloning/custom_tokenizer.py -------------------------------------------------------------------------------- /speechcraft/voice_cloning/hubert_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/voice_cloning/hubert_manager.py -------------------------------------------------------------------------------- /speechcraft/voice_cloning/pre_kmeans_hubert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/voice_cloning/pre_kmeans_hubert.py -------------------------------------------------------------------------------- /speechcraft/voice_cloning/voice2embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/speechcraft/voice_cloning/voice2embedding.py -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/test/test.py -------------------------------------------------------------------------------- /test/test_files/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test_files/voice_clone_test_voice_1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/test/test_files/voice_clone_test_voice_1.wav -------------------------------------------------------------------------------- /test/test_files/voice_clone_test_voice_2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocAIty/SpeechCraft/HEAD/test/test_files/voice_clone_test_voice_2.wav --------------------------------------------------------------------------------