diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000..10ad9d6 Binary files /dev/null and b/.DS_Store differ diff --git a/README.md b/README.md index bf0f97e..d27762b 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ GPT-SoVITS 模型是一个集成了语音转换和文本转语音功能的先进 Kokoro 是由 hexgrad 团队开发并开源的轻量级、高性能文本转语音(TTS)模型。 F5-TTS 模型由上海交通大学团队发布,是基于扩散 Transformer 和 ConvNeXt V2 的文本转语音(TTS)模型。 -## GPT-SoVITS 模型测试服务原理 + ## 如何使用语音合成模型测试框架 -代码实现了一个接收音频数据并返回识别文本的语音识别 HTTP 服务,并基于 corex:3.2.1 基础镜像,将该 HTTP 服务重新打包成 docker 镜像,通过 k8s 集群sut容器去请求这个 HTTP 服务。 +代码实现了一个接收音频数据并返回识别文本的语音识别 HTTP 服务,将该 HTTP 服务重新打包成 docker 镜像,通过 k8s 集群sut容器去请求这个 HTTP 服务。 ## 寒武纪MLU370系列上语音合成模型运行测试结果 在寒武纪MLU370系列上对部分语音合成模型进行适配,测试方式为在 Nvidia A100 和 寒武纪MLU370系列加速卡上对同一段text进行语音合成任务,获取运行时间 -| 模型名称 | 模型类型 | 适配状态 | 天垓100运行时间/s | Nvidia A100运行时间/s | -| ---------- | ---------------------- | -------- | ----------------- | --------------------- | -| kokoro | StyleTTS 2, ISTFTNet | 成功 | 0.2 | 0.1 | -| f5-TTS | DiT, ConvNeXt V2 | 成功 | 0.5 | 0.2 | -| gpt-sovits | VITS | 成功 | 0.9 | 0.4 | +| 模型名称 | 模型类型 | 适配状态 | 寒武纪MLU370-X8运行时间/s | 寒武纪MLU370-X4运行时间/s | Nvidia A100运行时间/s | +| ---------- | ---------------------- | -------- | ----------------- | --------------------- | --------------------- | +| kokoro | StyleTTS 2, ISTFTNet | 成功 | 2.5 | 2.2 | 5.4 | +| f5-TTS | DiT, ConvNeXt V2 | 成功 | 39.1 | 32.1 | 5.4 | +| gpt-sovits | VITS | 成功 | 28.8 | 27.2 | 20.5 | +| matcha | OT-CFM, Transformer | 成功 | 2.5 | 2.1 | 3.1 | +| piper | - | 成功 | 0.8 | 0.7 | 1.9 | diff --git a/f5/Dockerfile_f5 b/mlu_370-f5-tts/Dockerfile_f5 similarity index 100% rename from f5/Dockerfile_f5 rename to mlu_370-f5-tts/Dockerfile_f5 diff --git a/f5/F5-TTS/.gitignore b/mlu_370-f5-tts/F5-TTS/.gitignore similarity index 100% rename from f5/F5-TTS/.gitignore rename to mlu_370-f5-tts/F5-TTS/.gitignore diff --git a/f5/F5-TTS/.gitmodules b/mlu_370-f5-tts/F5-TTS/.gitmodules similarity index 100% rename from f5/F5-TTS/.gitmodules rename to mlu_370-f5-tts/F5-TTS/.gitmodules diff --git a/f5/F5-TTS/.pre-commit-config.yaml b/mlu_370-f5-tts/F5-TTS/.pre-commit-config.yaml similarity index 100% rename from f5/F5-TTS/.pre-commit-config.yaml rename to mlu_370-f5-tts/F5-TTS/.pre-commit-config.yaml diff --git a/f5/F5-TTS/Dockerfile b/mlu_370-f5-tts/F5-TTS/Dockerfile similarity index 100% rename from f5/F5-TTS/Dockerfile rename to mlu_370-f5-tts/F5-TTS/Dockerfile diff --git a/f5/F5-TTS/LICENSE b/mlu_370-f5-tts/F5-TTS/LICENSE similarity index 100% rename from f5/F5-TTS/LICENSE rename to mlu_370-f5-tts/F5-TTS/LICENSE diff --git a/f5/F5-TTS/README.md b/mlu_370-f5-tts/F5-TTS/README.md similarity index 100% rename from f5/F5-TTS/README.md rename to mlu_370-f5-tts/F5-TTS/README.md diff --git a/f5/F5-TTS/pyproject.toml b/mlu_370-f5-tts/F5-TTS/pyproject.toml similarity index 100% rename from f5/F5-TTS/pyproject.toml rename to mlu_370-f5-tts/F5-TTS/pyproject.toml diff --git a/f5/F5-TTS/ruff.toml b/mlu_370-f5-tts/F5-TTS/ruff.toml similarity index 100% rename from f5/F5-TTS/ruff.toml rename to mlu_370-f5-tts/F5-TTS/ruff.toml diff --git a/f5/F5-TTS/src/f5_tts/api.py b/mlu_370-f5-tts/F5-TTS/src/f5_tts/api.py similarity index 100% rename from f5/F5-TTS/src/f5_tts/api.py rename to mlu_370-f5-tts/F5-TTS/src/f5_tts/api.py diff --git a/f5/F5-TTS/src/f5_tts/configs/E2TTS_Base.yaml b/mlu_370-f5-tts/F5-TTS/src/f5_tts/configs/E2TTS_Base.yaml similarity index 100% rename from f5/F5-TTS/src/f5_tts/configs/E2TTS_Base.yaml rename to mlu_370-f5-tts/F5-TTS/src/f5_tts/configs/E2TTS_Base.yaml diff --git a/f5/F5-TTS/src/f5_tts/configs/E2TTS_Small.yaml b/mlu_370-f5-tts/F5-TTS/src/f5_tts/configs/E2TTS_Small.yaml similarity index 100% rename from f5/F5-TTS/src/f5_tts/configs/E2TTS_Small.yaml rename to mlu_370-f5-tts/F5-TTS/src/f5_tts/configs/E2TTS_Small.yaml diff --git a/f5/F5-TTS/src/f5_tts/configs/F5TTS_Base.yaml b/mlu_370-f5-tts/F5-TTS/src/f5_tts/configs/F5TTS_Base.yaml similarity index 100% rename from f5/F5-TTS/src/f5_tts/configs/F5TTS_Base.yaml rename to mlu_370-f5-tts/F5-TTS/src/f5_tts/configs/F5TTS_Base.yaml diff --git a/f5/F5-TTS/src/f5_tts/configs/F5TTS_Small.yaml b/mlu_370-f5-tts/F5-TTS/src/f5_tts/configs/F5TTS_Small.yaml similarity index 100% rename from f5/F5-TTS/src/f5_tts/configs/F5TTS_Small.yaml rename to mlu_370-f5-tts/F5-TTS/src/f5_tts/configs/F5TTS_Small.yaml diff --git a/f5/F5-TTS/src/f5_tts/configs/F5TTS_v1_Base.yaml b/mlu_370-f5-tts/F5-TTS/src/f5_tts/configs/F5TTS_v1_Base.yaml similarity index 100% rename from f5/F5-TTS/src/f5_tts/configs/F5TTS_v1_Base.yaml rename to mlu_370-f5-tts/F5-TTS/src/f5_tts/configs/F5TTS_v1_Base.yaml diff --git a/f5/F5-TTS/src/f5_tts/eval/README.md b/mlu_370-f5-tts/F5-TTS/src/f5_tts/eval/README.md similarity index 100% rename from f5/F5-TTS/src/f5_tts/eval/README.md rename to mlu_370-f5-tts/F5-TTS/src/f5_tts/eval/README.md diff --git a/f5/F5-TTS/src/f5_tts/eval/ecapa_tdnn.py b/mlu_370-f5-tts/F5-TTS/src/f5_tts/eval/ecapa_tdnn.py similarity index 100% rename from f5/F5-TTS/src/f5_tts/eval/ecapa_tdnn.py rename to mlu_370-f5-tts/F5-TTS/src/f5_tts/eval/ecapa_tdnn.py diff --git a/f5/F5-TTS/src/f5_tts/eval/eval_infer_batch.py b/mlu_370-f5-tts/F5-TTS/src/f5_tts/eval/eval_infer_batch.py similarity index 100% rename from f5/F5-TTS/src/f5_tts/eval/eval_infer_batch.py rename to mlu_370-f5-tts/F5-TTS/src/f5_tts/eval/eval_infer_batch.py diff --git a/f5/F5-TTS/src/f5_tts/eval/eval_infer_batch.sh b/mlu_370-f5-tts/F5-TTS/src/f5_tts/eval/eval_infer_batch.sh similarity index 100% rename from f5/F5-TTS/src/f5_tts/eval/eval_infer_batch.sh rename to mlu_370-f5-tts/F5-TTS/src/f5_tts/eval/eval_infer_batch.sh diff --git a/f5/F5-TTS/src/f5_tts/eval/eval_librispeech_test_clean.py b/mlu_370-f5-tts/F5-TTS/src/f5_tts/eval/eval_librispeech_test_clean.py similarity index 100% rename from f5/F5-TTS/src/f5_tts/eval/eval_librispeech_test_clean.py rename to mlu_370-f5-tts/F5-TTS/src/f5_tts/eval/eval_librispeech_test_clean.py diff --git a/f5/F5-TTS/src/f5_tts/eval/eval_seedtts_testset.py b/mlu_370-f5-tts/F5-TTS/src/f5_tts/eval/eval_seedtts_testset.py similarity index 100% rename from f5/F5-TTS/src/f5_tts/eval/eval_seedtts_testset.py rename to mlu_370-f5-tts/F5-TTS/src/f5_tts/eval/eval_seedtts_testset.py diff --git a/f5/F5-TTS/src/f5_tts/eval/eval_utmos.py b/mlu_370-f5-tts/F5-TTS/src/f5_tts/eval/eval_utmos.py similarity index 100% rename from f5/F5-TTS/src/f5_tts/eval/eval_utmos.py rename to mlu_370-f5-tts/F5-TTS/src/f5_tts/eval/eval_utmos.py diff --git a/f5/F5-TTS/src/f5_tts/eval/utils_eval.py b/mlu_370-f5-tts/F5-TTS/src/f5_tts/eval/utils_eval.py similarity index 100% rename from f5/F5-TTS/src/f5_tts/eval/utils_eval.py rename to mlu_370-f5-tts/F5-TTS/src/f5_tts/eval/utils_eval.py diff --git a/f5/F5-TTS/src/f5_tts/infer/README.md b/mlu_370-f5-tts/F5-TTS/src/f5_tts/infer/README.md similarity index 100% rename from f5/F5-TTS/src/f5_tts/infer/README.md rename to mlu_370-f5-tts/F5-TTS/src/f5_tts/infer/README.md diff --git a/f5/F5-TTS/src/f5_tts/infer/SHARED.md b/mlu_370-f5-tts/F5-TTS/src/f5_tts/infer/SHARED.md similarity index 100% rename from f5/F5-TTS/src/f5_tts/infer/SHARED.md rename to mlu_370-f5-tts/F5-TTS/src/f5_tts/infer/SHARED.md diff --git a/f5/F5-TTS/src/f5_tts/infer/examples/basic/basic.toml b/mlu_370-f5-tts/F5-TTS/src/f5_tts/infer/examples/basic/basic.toml similarity index 100% rename from f5/F5-TTS/src/f5_tts/infer/examples/basic/basic.toml rename to mlu_370-f5-tts/F5-TTS/src/f5_tts/infer/examples/basic/basic.toml diff --git a/f5/F5-TTS/src/f5_tts/infer/examples/basic/basic_ref_en.wav b/mlu_370-f5-tts/F5-TTS/src/f5_tts/infer/examples/basic/basic_ref_en.wav similarity index 100% rename from f5/F5-TTS/src/f5_tts/infer/examples/basic/basic_ref_en.wav rename to mlu_370-f5-tts/F5-TTS/src/f5_tts/infer/examples/basic/basic_ref_en.wav diff --git a/f5/F5-TTS/src/f5_tts/infer/examples/basic/basic_ref_zh.wav b/mlu_370-f5-tts/F5-TTS/src/f5_tts/infer/examples/basic/basic_ref_zh.wav similarity index 100% rename from f5/F5-TTS/src/f5_tts/infer/examples/basic/basic_ref_zh.wav rename to mlu_370-f5-tts/F5-TTS/src/f5_tts/infer/examples/basic/basic_ref_zh.wav diff --git a/f5/F5-TTS/src/f5_tts/infer/examples/multi/country.flac b/mlu_370-f5-tts/F5-TTS/src/f5_tts/infer/examples/multi/country.flac similarity index 100% rename from f5/F5-TTS/src/f5_tts/infer/examples/multi/country.flac rename to mlu_370-f5-tts/F5-TTS/src/f5_tts/infer/examples/multi/country.flac diff --git a/f5/F5-TTS/src/f5_tts/infer/examples/multi/main.flac b/mlu_370-f5-tts/F5-TTS/src/f5_tts/infer/examples/multi/main.flac similarity index 100% rename from f5/F5-TTS/src/f5_tts/infer/examples/multi/main.flac rename to mlu_370-f5-tts/F5-TTS/src/f5_tts/infer/examples/multi/main.flac diff --git a/f5/F5-TTS/src/f5_tts/infer/examples/multi/story.toml b/mlu_370-f5-tts/F5-TTS/src/f5_tts/infer/examples/multi/story.toml similarity index 100% rename from f5/F5-TTS/src/f5_tts/infer/examples/multi/story.toml rename to mlu_370-f5-tts/F5-TTS/src/f5_tts/infer/examples/multi/story.toml diff --git a/f5/F5-TTS/src/f5_tts/infer/examples/multi/story.txt b/mlu_370-f5-tts/F5-TTS/src/f5_tts/infer/examples/multi/story.txt similarity index 100% rename from f5/F5-TTS/src/f5_tts/infer/examples/multi/story.txt rename to mlu_370-f5-tts/F5-TTS/src/f5_tts/infer/examples/multi/story.txt diff --git a/f5/F5-TTS/src/f5_tts/infer/examples/multi/town.flac b/mlu_370-f5-tts/F5-TTS/src/f5_tts/infer/examples/multi/town.flac similarity index 100% rename from f5/F5-TTS/src/f5_tts/infer/examples/multi/town.flac rename to mlu_370-f5-tts/F5-TTS/src/f5_tts/infer/examples/multi/town.flac diff --git a/f5/F5-TTS/src/f5_tts/infer/examples/vocab.txt b/mlu_370-f5-tts/F5-TTS/src/f5_tts/infer/examples/vocab.txt similarity index 100% rename from f5/F5-TTS/src/f5_tts/infer/examples/vocab.txt rename to mlu_370-f5-tts/F5-TTS/src/f5_tts/infer/examples/vocab.txt diff --git a/f5/F5-TTS/src/f5_tts/infer/infer_cli.py b/mlu_370-f5-tts/F5-TTS/src/f5_tts/infer/infer_cli.py similarity index 100% rename from f5/F5-TTS/src/f5_tts/infer/infer_cli.py rename to mlu_370-f5-tts/F5-TTS/src/f5_tts/infer/infer_cli.py diff --git a/f5/F5-TTS/src/f5_tts/infer/infer_gradio.py b/mlu_370-f5-tts/F5-TTS/src/f5_tts/infer/infer_gradio.py similarity index 100% rename from f5/F5-TTS/src/f5_tts/infer/infer_gradio.py rename to mlu_370-f5-tts/F5-TTS/src/f5_tts/infer/infer_gradio.py diff --git a/f5/F5-TTS/src/f5_tts/infer/speech_edit.py b/mlu_370-f5-tts/F5-TTS/src/f5_tts/infer/speech_edit.py similarity index 100% rename from f5/F5-TTS/src/f5_tts/infer/speech_edit.py rename to mlu_370-f5-tts/F5-TTS/src/f5_tts/infer/speech_edit.py diff --git a/f5/F5-TTS/src/f5_tts/infer/utils_infer.py b/mlu_370-f5-tts/F5-TTS/src/f5_tts/infer/utils_infer.py similarity index 100% rename from f5/F5-TTS/src/f5_tts/infer/utils_infer.py rename to mlu_370-f5-tts/F5-TTS/src/f5_tts/infer/utils_infer.py diff --git a/f5/F5-TTS/src/f5_tts/model/__init__.py b/mlu_370-f5-tts/F5-TTS/src/f5_tts/model/__init__.py similarity index 100% rename from f5/F5-TTS/src/f5_tts/model/__init__.py rename to mlu_370-f5-tts/F5-TTS/src/f5_tts/model/__init__.py diff --git a/f5/F5-TTS/src/f5_tts/model/backbones/README.md b/mlu_370-f5-tts/F5-TTS/src/f5_tts/model/backbones/README.md similarity index 100% rename from f5/F5-TTS/src/f5_tts/model/backbones/README.md rename to mlu_370-f5-tts/F5-TTS/src/f5_tts/model/backbones/README.md diff --git a/f5/F5-TTS/src/f5_tts/model/backbones/dit.py b/mlu_370-f5-tts/F5-TTS/src/f5_tts/model/backbones/dit.py similarity index 100% rename from f5/F5-TTS/src/f5_tts/model/backbones/dit.py rename to mlu_370-f5-tts/F5-TTS/src/f5_tts/model/backbones/dit.py diff --git a/f5/F5-TTS/src/f5_tts/model/backbones/mmdit.py b/mlu_370-f5-tts/F5-TTS/src/f5_tts/model/backbones/mmdit.py similarity index 100% rename from f5/F5-TTS/src/f5_tts/model/backbones/mmdit.py rename to mlu_370-f5-tts/F5-TTS/src/f5_tts/model/backbones/mmdit.py diff --git a/f5/F5-TTS/src/f5_tts/model/backbones/unett.py b/mlu_370-f5-tts/F5-TTS/src/f5_tts/model/backbones/unett.py similarity index 100% rename from f5/F5-TTS/src/f5_tts/model/backbones/unett.py rename to mlu_370-f5-tts/F5-TTS/src/f5_tts/model/backbones/unett.py diff --git a/f5/F5-TTS/src/f5_tts/model/cfm.py b/mlu_370-f5-tts/F5-TTS/src/f5_tts/model/cfm.py similarity index 100% rename from f5/F5-TTS/src/f5_tts/model/cfm.py rename to mlu_370-f5-tts/F5-TTS/src/f5_tts/model/cfm.py diff --git a/f5/F5-TTS/src/f5_tts/model/dataset.py b/mlu_370-f5-tts/F5-TTS/src/f5_tts/model/dataset.py similarity index 100% rename from f5/F5-TTS/src/f5_tts/model/dataset.py rename to mlu_370-f5-tts/F5-TTS/src/f5_tts/model/dataset.py diff --git a/f5/F5-TTS/src/f5_tts/model/modules.py b/mlu_370-f5-tts/F5-TTS/src/f5_tts/model/modules.py similarity index 100% rename from f5/F5-TTS/src/f5_tts/model/modules.py rename to mlu_370-f5-tts/F5-TTS/src/f5_tts/model/modules.py diff --git a/f5/F5-TTS/src/f5_tts/model/trainer.py b/mlu_370-f5-tts/F5-TTS/src/f5_tts/model/trainer.py similarity index 100% rename from f5/F5-TTS/src/f5_tts/model/trainer.py rename to mlu_370-f5-tts/F5-TTS/src/f5_tts/model/trainer.py diff --git a/f5/F5-TTS/src/f5_tts/model/utils.py b/mlu_370-f5-tts/F5-TTS/src/f5_tts/model/utils.py similarity index 100% rename from f5/F5-TTS/src/f5_tts/model/utils.py rename to mlu_370-f5-tts/F5-TTS/src/f5_tts/model/utils.py diff --git a/f5/F5-TTS/src/f5_tts/runtime/triton_trtllm/Dockerfile.server b/mlu_370-f5-tts/F5-TTS/src/f5_tts/runtime/triton_trtllm/Dockerfile.server similarity index 100% rename from f5/F5-TTS/src/f5_tts/runtime/triton_trtllm/Dockerfile.server rename to mlu_370-f5-tts/F5-TTS/src/f5_tts/runtime/triton_trtllm/Dockerfile.server diff --git a/f5/F5-TTS/src/f5_tts/runtime/triton_trtllm/README.md b/mlu_370-f5-tts/F5-TTS/src/f5_tts/runtime/triton_trtllm/README.md similarity index 100% rename from f5/F5-TTS/src/f5_tts/runtime/triton_trtllm/README.md rename to mlu_370-f5-tts/F5-TTS/src/f5_tts/runtime/triton_trtllm/README.md diff --git a/f5/F5-TTS/src/f5_tts/runtime/triton_trtllm/benchmark.py b/mlu_370-f5-tts/F5-TTS/src/f5_tts/runtime/triton_trtllm/benchmark.py similarity index 100% rename from f5/F5-TTS/src/f5_tts/runtime/triton_trtllm/benchmark.py rename to mlu_370-f5-tts/F5-TTS/src/f5_tts/runtime/triton_trtllm/benchmark.py diff --git a/f5/F5-TTS/src/f5_tts/runtime/triton_trtllm/client_grpc.py b/mlu_370-f5-tts/F5-TTS/src/f5_tts/runtime/triton_trtllm/client_grpc.py similarity index 100% rename from f5/F5-TTS/src/f5_tts/runtime/triton_trtllm/client_grpc.py rename to mlu_370-f5-tts/F5-TTS/src/f5_tts/runtime/triton_trtllm/client_grpc.py diff --git a/f5/F5-TTS/src/f5_tts/runtime/triton_trtllm/client_http.py b/mlu_370-f5-tts/F5-TTS/src/f5_tts/runtime/triton_trtllm/client_http.py similarity index 100% rename from f5/F5-TTS/src/f5_tts/runtime/triton_trtllm/client_http.py rename to mlu_370-f5-tts/F5-TTS/src/f5_tts/runtime/triton_trtllm/client_http.py diff --git a/f5/F5-TTS/src/f5_tts/runtime/triton_trtllm/docker-compose.yml b/mlu_370-f5-tts/F5-TTS/src/f5_tts/runtime/triton_trtllm/docker-compose.yml similarity index 100% rename from f5/F5-TTS/src/f5_tts/runtime/triton_trtllm/docker-compose.yml rename to mlu_370-f5-tts/F5-TTS/src/f5_tts/runtime/triton_trtllm/docker-compose.yml diff --git a/f5/F5-TTS/src/f5_tts/runtime/triton_trtllm/model_repo_f5_tts/f5_tts/1/f5_tts_trtllm.py b/mlu_370-f5-tts/F5-TTS/src/f5_tts/runtime/triton_trtllm/model_repo_f5_tts/f5_tts/1/f5_tts_trtllm.py similarity index 100% rename from f5/F5-TTS/src/f5_tts/runtime/triton_trtllm/model_repo_f5_tts/f5_tts/1/f5_tts_trtllm.py rename to mlu_370-f5-tts/F5-TTS/src/f5_tts/runtime/triton_trtllm/model_repo_f5_tts/f5_tts/1/f5_tts_trtllm.py diff --git a/f5/F5-TTS/src/f5_tts/runtime/triton_trtllm/model_repo_f5_tts/f5_tts/1/model.py b/mlu_370-f5-tts/F5-TTS/src/f5_tts/runtime/triton_trtllm/model_repo_f5_tts/f5_tts/1/model.py similarity index 100% rename from f5/F5-TTS/src/f5_tts/runtime/triton_trtllm/model_repo_f5_tts/f5_tts/1/model.py rename to mlu_370-f5-tts/F5-TTS/src/f5_tts/runtime/triton_trtllm/model_repo_f5_tts/f5_tts/1/model.py diff --git a/f5/F5-TTS/src/f5_tts/runtime/triton_trtllm/model_repo_f5_tts/f5_tts/config.pbtxt b/mlu_370-f5-tts/F5-TTS/src/f5_tts/runtime/triton_trtllm/model_repo_f5_tts/f5_tts/config.pbtxt similarity index 100% rename from f5/F5-TTS/src/f5_tts/runtime/triton_trtllm/model_repo_f5_tts/f5_tts/config.pbtxt rename to mlu_370-f5-tts/F5-TTS/src/f5_tts/runtime/triton_trtllm/model_repo_f5_tts/f5_tts/config.pbtxt diff --git a/f5/F5-TTS/src/f5_tts/runtime/triton_trtllm/model_repo_f5_tts/vocoder/1/.gitkeep b/mlu_370-f5-tts/F5-TTS/src/f5_tts/runtime/triton_trtllm/model_repo_f5_tts/vocoder/1/.gitkeep similarity index 100% rename from f5/F5-TTS/src/f5_tts/runtime/triton_trtllm/model_repo_f5_tts/vocoder/1/.gitkeep rename to mlu_370-f5-tts/F5-TTS/src/f5_tts/runtime/triton_trtllm/model_repo_f5_tts/vocoder/1/.gitkeep diff --git a/f5/F5-TTS/src/f5_tts/runtime/triton_trtllm/model_repo_f5_tts/vocoder/config.pbtxt b/mlu_370-f5-tts/F5-TTS/src/f5_tts/runtime/triton_trtllm/model_repo_f5_tts/vocoder/config.pbtxt similarity index 100% rename from f5/F5-TTS/src/f5_tts/runtime/triton_trtllm/model_repo_f5_tts/vocoder/config.pbtxt rename to mlu_370-f5-tts/F5-TTS/src/f5_tts/runtime/triton_trtllm/model_repo_f5_tts/vocoder/config.pbtxt diff --git a/f5/F5-TTS/src/f5_tts/runtime/triton_trtllm/patch/__init__.py b/mlu_370-f5-tts/F5-TTS/src/f5_tts/runtime/triton_trtllm/patch/__init__.py similarity index 100% rename from f5/F5-TTS/src/f5_tts/runtime/triton_trtllm/patch/__init__.py rename to mlu_370-f5-tts/F5-TTS/src/f5_tts/runtime/triton_trtllm/patch/__init__.py diff --git a/f5/F5-TTS/src/f5_tts/runtime/triton_trtllm/patch/f5tts/model.py b/mlu_370-f5-tts/F5-TTS/src/f5_tts/runtime/triton_trtllm/patch/f5tts/model.py similarity index 100% rename from f5/F5-TTS/src/f5_tts/runtime/triton_trtllm/patch/f5tts/model.py rename to mlu_370-f5-tts/F5-TTS/src/f5_tts/runtime/triton_trtllm/patch/f5tts/model.py diff --git a/f5/F5-TTS/src/f5_tts/runtime/triton_trtllm/patch/f5tts/modules.py b/mlu_370-f5-tts/F5-TTS/src/f5_tts/runtime/triton_trtllm/patch/f5tts/modules.py similarity index 100% rename from f5/F5-TTS/src/f5_tts/runtime/triton_trtllm/patch/f5tts/modules.py rename to mlu_370-f5-tts/F5-TTS/src/f5_tts/runtime/triton_trtllm/patch/f5tts/modules.py diff --git a/f5/F5-TTS/src/f5_tts/runtime/triton_trtllm/requirements-pytorch.txt b/mlu_370-f5-tts/F5-TTS/src/f5_tts/runtime/triton_trtllm/requirements-pytorch.txt similarity index 100% rename from f5/F5-TTS/src/f5_tts/runtime/triton_trtllm/requirements-pytorch.txt rename to mlu_370-f5-tts/F5-TTS/src/f5_tts/runtime/triton_trtllm/requirements-pytorch.txt diff --git a/f5/F5-TTS/src/f5_tts/runtime/triton_trtllm/run.sh b/mlu_370-f5-tts/F5-TTS/src/f5_tts/runtime/triton_trtllm/run.sh similarity index 100% rename from f5/F5-TTS/src/f5_tts/runtime/triton_trtllm/run.sh rename to mlu_370-f5-tts/F5-TTS/src/f5_tts/runtime/triton_trtllm/run.sh diff --git a/f5/F5-TTS/src/f5_tts/runtime/triton_trtllm/scripts/conv_stft.py b/mlu_370-f5-tts/F5-TTS/src/f5_tts/runtime/triton_trtllm/scripts/conv_stft.py similarity index 100% rename from f5/F5-TTS/src/f5_tts/runtime/triton_trtllm/scripts/conv_stft.py rename to mlu_370-f5-tts/F5-TTS/src/f5_tts/runtime/triton_trtllm/scripts/conv_stft.py diff --git a/f5/F5-TTS/src/f5_tts/runtime/triton_trtllm/scripts/convert_checkpoint.py b/mlu_370-f5-tts/F5-TTS/src/f5_tts/runtime/triton_trtllm/scripts/convert_checkpoint.py similarity index 100% rename from f5/F5-TTS/src/f5_tts/runtime/triton_trtllm/scripts/convert_checkpoint.py rename to mlu_370-f5-tts/F5-TTS/src/f5_tts/runtime/triton_trtllm/scripts/convert_checkpoint.py diff --git a/f5/F5-TTS/src/f5_tts/runtime/triton_trtllm/scripts/export_vocoder_to_onnx.py b/mlu_370-f5-tts/F5-TTS/src/f5_tts/runtime/triton_trtllm/scripts/export_vocoder_to_onnx.py similarity index 100% rename from f5/F5-TTS/src/f5_tts/runtime/triton_trtllm/scripts/export_vocoder_to_onnx.py rename to mlu_370-f5-tts/F5-TTS/src/f5_tts/runtime/triton_trtllm/scripts/export_vocoder_to_onnx.py diff --git a/f5/F5-TTS/src/f5_tts/runtime/triton_trtllm/scripts/export_vocos_trt.sh b/mlu_370-f5-tts/F5-TTS/src/f5_tts/runtime/triton_trtllm/scripts/export_vocos_trt.sh similarity index 100% rename from f5/F5-TTS/src/f5_tts/runtime/triton_trtllm/scripts/export_vocos_trt.sh rename to mlu_370-f5-tts/F5-TTS/src/f5_tts/runtime/triton_trtllm/scripts/export_vocos_trt.sh diff --git a/f5/F5-TTS/src/f5_tts/runtime/triton_trtllm/scripts/fill_template.py b/mlu_370-f5-tts/F5-TTS/src/f5_tts/runtime/triton_trtllm/scripts/fill_template.py similarity index 100% rename from f5/F5-TTS/src/f5_tts/runtime/triton_trtllm/scripts/fill_template.py rename to mlu_370-f5-tts/F5-TTS/src/f5_tts/runtime/triton_trtllm/scripts/fill_template.py diff --git a/f5/F5-TTS/src/f5_tts/scripts/count_max_epoch.py b/mlu_370-f5-tts/F5-TTS/src/f5_tts/scripts/count_max_epoch.py similarity index 100% rename from f5/F5-TTS/src/f5_tts/scripts/count_max_epoch.py rename to mlu_370-f5-tts/F5-TTS/src/f5_tts/scripts/count_max_epoch.py diff --git a/f5/F5-TTS/src/f5_tts/scripts/count_params_gflops.py b/mlu_370-f5-tts/F5-TTS/src/f5_tts/scripts/count_params_gflops.py similarity index 100% rename from f5/F5-TTS/src/f5_tts/scripts/count_params_gflops.py rename to mlu_370-f5-tts/F5-TTS/src/f5_tts/scripts/count_params_gflops.py diff --git a/f5/F5-TTS/src/f5_tts/socket_client.py b/mlu_370-f5-tts/F5-TTS/src/f5_tts/socket_client.py similarity index 100% rename from f5/F5-TTS/src/f5_tts/socket_client.py rename to mlu_370-f5-tts/F5-TTS/src/f5_tts/socket_client.py diff --git a/f5/F5-TTS/src/f5_tts/socket_server.py b/mlu_370-f5-tts/F5-TTS/src/f5_tts/socket_server.py similarity index 100% rename from f5/F5-TTS/src/f5_tts/socket_server.py rename to mlu_370-f5-tts/F5-TTS/src/f5_tts/socket_server.py diff --git a/f5/F5-TTS/src/f5_tts/train/README.md b/mlu_370-f5-tts/F5-TTS/src/f5_tts/train/README.md similarity index 100% rename from f5/F5-TTS/src/f5_tts/train/README.md rename to mlu_370-f5-tts/F5-TTS/src/f5_tts/train/README.md diff --git a/f5/F5-TTS/src/f5_tts/train/datasets/prepare_csv_wavs.py b/mlu_370-f5-tts/F5-TTS/src/f5_tts/train/datasets/prepare_csv_wavs.py similarity index 100% rename from f5/F5-TTS/src/f5_tts/train/datasets/prepare_csv_wavs.py rename to mlu_370-f5-tts/F5-TTS/src/f5_tts/train/datasets/prepare_csv_wavs.py diff --git a/f5/F5-TTS/src/f5_tts/train/datasets/prepare_emilia.py b/mlu_370-f5-tts/F5-TTS/src/f5_tts/train/datasets/prepare_emilia.py similarity index 100% rename from f5/F5-TTS/src/f5_tts/train/datasets/prepare_emilia.py rename to mlu_370-f5-tts/F5-TTS/src/f5_tts/train/datasets/prepare_emilia.py diff --git a/f5/F5-TTS/src/f5_tts/train/datasets/prepare_emilia_v2.py b/mlu_370-f5-tts/F5-TTS/src/f5_tts/train/datasets/prepare_emilia_v2.py similarity index 100% rename from f5/F5-TTS/src/f5_tts/train/datasets/prepare_emilia_v2.py rename to mlu_370-f5-tts/F5-TTS/src/f5_tts/train/datasets/prepare_emilia_v2.py diff --git a/f5/F5-TTS/src/f5_tts/train/datasets/prepare_libritts.py b/mlu_370-f5-tts/F5-TTS/src/f5_tts/train/datasets/prepare_libritts.py similarity index 100% rename from f5/F5-TTS/src/f5_tts/train/datasets/prepare_libritts.py rename to mlu_370-f5-tts/F5-TTS/src/f5_tts/train/datasets/prepare_libritts.py diff --git a/f5/F5-TTS/src/f5_tts/train/datasets/prepare_ljspeech.py b/mlu_370-f5-tts/F5-TTS/src/f5_tts/train/datasets/prepare_ljspeech.py similarity index 100% rename from f5/F5-TTS/src/f5_tts/train/datasets/prepare_ljspeech.py rename to mlu_370-f5-tts/F5-TTS/src/f5_tts/train/datasets/prepare_ljspeech.py diff --git a/f5/F5-TTS/src/f5_tts/train/datasets/prepare_wenetspeech4tts.py b/mlu_370-f5-tts/F5-TTS/src/f5_tts/train/datasets/prepare_wenetspeech4tts.py similarity index 100% rename from f5/F5-TTS/src/f5_tts/train/datasets/prepare_wenetspeech4tts.py rename to mlu_370-f5-tts/F5-TTS/src/f5_tts/train/datasets/prepare_wenetspeech4tts.py diff --git a/f5/F5-TTS/src/f5_tts/train/finetune_cli.py b/mlu_370-f5-tts/F5-TTS/src/f5_tts/train/finetune_cli.py similarity index 100% rename from f5/F5-TTS/src/f5_tts/train/finetune_cli.py rename to mlu_370-f5-tts/F5-TTS/src/f5_tts/train/finetune_cli.py diff --git a/f5/F5-TTS/src/f5_tts/train/finetune_gradio.py b/mlu_370-f5-tts/F5-TTS/src/f5_tts/train/finetune_gradio.py similarity index 100% rename from f5/F5-TTS/src/f5_tts/train/finetune_gradio.py rename to mlu_370-f5-tts/F5-TTS/src/f5_tts/train/finetune_gradio.py diff --git a/f5/F5-TTS/src/f5_tts/train/train.py b/mlu_370-f5-tts/F5-TTS/src/f5_tts/train/train.py similarity index 100% rename from f5/F5-TTS/src/f5_tts/train/train.py rename to mlu_370-f5-tts/F5-TTS/src/f5_tts/train/train.py diff --git a/f5/README.md b/mlu_370-f5-tts/README.md similarity index 88% rename from f5/README.md rename to mlu_370-f5-tts/README.md index 6d22e4b..9eee715 100644 --- a/f5/README.md +++ b/mlu_370-f5-tts/README.md @@ -15,8 +15,8 @@ docker build -t tts:f5 . -f Dockerfile_f5 ```bash docker run -it --rm \ -v /models/F5-TTS_Emilia-ZH-EN:/mnt/models \ - -v /dev:/dev \ - --device=/dev/iluvatar0:/dev/iluvatar0 \ + --device=/dev/cambricon_dev0:/dev/cambricon_dev0 \ + --device=/dev/cambricon_ctl:/dev/cambricon_ctl \ -p 8080:80 \ -e MODEL_DIR=/mnt/models \ -e MODEL_NAME=model_1250000.safetensors \ @@ -27,7 +27,7 @@ docker run -it --rm \ - `MODEL_DIR`:模型所在目录(挂载到容器内 `/mnt/models`) - `MODEL_NAME`:加载的模型文件名(通常为 `.safetensors`) - `-p 8080:80`:将容器内服务端口映射到宿主机 `8080` -- `--device=/dev/iluvatar0:/dev/iluvatar0`:指定推理设备(如 GPU/加速卡) + ### 3. 测试服务 ```bash diff --git a/f5/charactr/vocos-mel-24khz/.gitattributes b/mlu_370-f5-tts/charactr/vocos-mel-24khz/.gitattributes similarity index 100% rename from f5/charactr/vocos-mel-24khz/.gitattributes rename to mlu_370-f5-tts/charactr/vocos-mel-24khz/.gitattributes diff --git a/f5/charactr/vocos-mel-24khz/README.md b/mlu_370-f5-tts/charactr/vocos-mel-24khz/README.md similarity index 100% rename from f5/charactr/vocos-mel-24khz/README.md rename to mlu_370-f5-tts/charactr/vocos-mel-24khz/README.md diff --git a/f5/charactr/vocos-mel-24khz/config.yaml b/mlu_370-f5-tts/charactr/vocos-mel-24khz/config.yaml similarity index 100% rename from f5/charactr/vocos-mel-24khz/config.yaml rename to mlu_370-f5-tts/charactr/vocos-mel-24khz/config.yaml diff --git a/f5/charactr/vocos-mel-24khz/pytorch_model.bin b/mlu_370-f5-tts/charactr/vocos-mel-24khz/pytorch_model.bin similarity index 100% rename from f5/charactr/vocos-mel-24khz/pytorch_model.bin rename to mlu_370-f5-tts/charactr/vocos-mel-24khz/pytorch_model.bin diff --git a/f5/constraints_f5.txt b/mlu_370-f5-tts/constraints_f5.txt similarity index 100% rename from f5/constraints_f5.txt rename to mlu_370-f5-tts/constraints_f5.txt diff --git a/f5/f5_server.py b/mlu_370-f5-tts/f5_server.py similarity index 100% rename from f5/f5_server.py rename to mlu_370-f5-tts/f5_server.py diff --git a/f5/launch_f5.sh b/mlu_370-f5-tts/launch_f5.sh similarity index 100% rename from f5/launch_f5.sh rename to mlu_370-f5-tts/launch_f5.sh diff --git a/f5/ref_audio.wav b/mlu_370-f5-tts/ref_audio.wav similarity index 100% rename from f5/ref_audio.wav rename to mlu_370-f5-tts/ref_audio.wav diff --git a/f5/ref_text.txt b/mlu_370-f5-tts/ref_text.txt similarity index 100% rename from f5/ref_text.txt rename to mlu_370-f5-tts/ref_text.txt diff --git a/f5/requirements_f5.txt b/mlu_370-f5-tts/requirements_f5.txt similarity index 100% rename from f5/requirements_f5.txt rename to mlu_370-f5-tts/requirements_f5.txt diff --git a/gsv/.DS_Store b/mlu_370-gpt-sovits/.DS_Store similarity index 100% rename from gsv/.DS_Store rename to mlu_370-gpt-sovits/.DS_Store diff --git a/gsv/Dockerfile_gsv b/mlu_370-gpt-sovits/Dockerfile_gsv similarity index 100% rename from gsv/Dockerfile_gsv rename to mlu_370-gpt-sovits/Dockerfile_gsv diff --git a/gsv/GPT-SoVITS/.dockerignore b/mlu_370-gpt-sovits/GPT-SoVITS/.dockerignore similarity index 100% rename from gsv/GPT-SoVITS/.dockerignore rename to mlu_370-gpt-sovits/GPT-SoVITS/.dockerignore diff --git a/gsv/GPT-SoVITS/.gitignore b/mlu_370-gpt-sovits/GPT-SoVITS/.gitignore similarity index 100% rename from gsv/GPT-SoVITS/.gitignore rename to mlu_370-gpt-sovits/GPT-SoVITS/.gitignore diff --git a/gsv/GPT-SoVITS/.pre-commit-config.yaml b/mlu_370-gpt-sovits/GPT-SoVITS/.pre-commit-config.yaml similarity index 100% rename from gsv/GPT-SoVITS/.pre-commit-config.yaml rename to mlu_370-gpt-sovits/GPT-SoVITS/.pre-commit-config.yaml diff --git a/gsv/GPT-SoVITS/Colab-Inference.ipynb b/mlu_370-gpt-sovits/GPT-SoVITS/Colab-Inference.ipynb similarity index 100% rename from gsv/GPT-SoVITS/Colab-Inference.ipynb rename to mlu_370-gpt-sovits/GPT-SoVITS/Colab-Inference.ipynb diff --git a/gsv/GPT-SoVITS/Colab-WebUI.ipynb b/mlu_370-gpt-sovits/GPT-SoVITS/Colab-WebUI.ipynb similarity index 100% rename from gsv/GPT-SoVITS/Colab-WebUI.ipynb rename to mlu_370-gpt-sovits/GPT-SoVITS/Colab-WebUI.ipynb diff --git a/gsv/GPT-SoVITS/Docker/install_wrapper.sh b/mlu_370-gpt-sovits/GPT-SoVITS/Docker/install_wrapper.sh similarity index 100% rename from gsv/GPT-SoVITS/Docker/install_wrapper.sh rename to mlu_370-gpt-sovits/GPT-SoVITS/Docker/install_wrapper.sh diff --git a/gsv/GPT-SoVITS/Docker/miniconda_install.sh b/mlu_370-gpt-sovits/GPT-SoVITS/Docker/miniconda_install.sh similarity index 100% rename from gsv/GPT-SoVITS/Docker/miniconda_install.sh rename to mlu_370-gpt-sovits/GPT-SoVITS/Docker/miniconda_install.sh diff --git a/gsv/GPT-SoVITS/Dockerfile b/mlu_370-gpt-sovits/GPT-SoVITS/Dockerfile similarity index 100% rename from gsv/GPT-SoVITS/Dockerfile rename to mlu_370-gpt-sovits/GPT-SoVITS/Dockerfile diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/AR/__init__.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/AR/__init__.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/AR/__init__.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/AR/__init__.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/AR/data/__init__.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/AR/data/__init__.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/AR/data/__init__.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/AR/data/__init__.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/AR/data/bucket_sampler.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/AR/data/bucket_sampler.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/AR/data/bucket_sampler.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/AR/data/bucket_sampler.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/AR/data/data_module.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/AR/data/data_module.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/AR/data/data_module.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/AR/data/data_module.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/AR/data/dataset.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/AR/data/dataset.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/AR/data/dataset.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/AR/data/dataset.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/AR/models/__init__.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/AR/models/__init__.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/AR/models/__init__.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/AR/models/__init__.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/AR/models/t2s_lightning_module.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/AR/models/t2s_lightning_module.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/AR/models/t2s_lightning_module.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/AR/models/t2s_lightning_module.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/AR/models/t2s_lightning_module_onnx.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/AR/models/t2s_lightning_module_onnx.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/AR/models/t2s_lightning_module_onnx.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/AR/models/t2s_lightning_module_onnx.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/AR/models/t2s_model.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/AR/models/t2s_model.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/AR/models/t2s_model.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/AR/models/t2s_model.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/AR/models/t2s_model_onnx.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/AR/models/t2s_model_onnx.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/AR/models/t2s_model_onnx.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/AR/models/t2s_model_onnx.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/AR/models/utils.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/AR/models/utils.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/AR/models/utils.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/AR/models/utils.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/AR/modules/__init__.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/AR/modules/__init__.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/AR/modules/__init__.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/AR/modules/__init__.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/AR/modules/activation.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/AR/modules/activation.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/AR/modules/activation.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/AR/modules/activation.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/AR/modules/activation_onnx.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/AR/modules/activation_onnx.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/AR/modules/activation_onnx.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/AR/modules/activation_onnx.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/AR/modules/embedding.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/AR/modules/embedding.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/AR/modules/embedding.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/AR/modules/embedding.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/AR/modules/embedding_onnx.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/AR/modules/embedding_onnx.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/AR/modules/embedding_onnx.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/AR/modules/embedding_onnx.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/AR/modules/lr_schedulers.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/AR/modules/lr_schedulers.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/AR/modules/lr_schedulers.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/AR/modules/lr_schedulers.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/AR/modules/optim.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/AR/modules/optim.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/AR/modules/optim.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/AR/modules/optim.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/AR/modules/patched_mha_with_cache.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/AR/modules/patched_mha_with_cache.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/AR/modules/patched_mha_with_cache.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/AR/modules/patched_mha_with_cache.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/AR/modules/patched_mha_with_cache_onnx.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/AR/modules/patched_mha_with_cache_onnx.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/AR/modules/patched_mha_with_cache_onnx.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/AR/modules/patched_mha_with_cache_onnx.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/AR/modules/scaling.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/AR/modules/scaling.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/AR/modules/scaling.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/AR/modules/scaling.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/AR/modules/transformer.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/AR/modules/transformer.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/AR/modules/transformer.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/AR/modules/transformer.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/AR/modules/transformer_onnx.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/AR/modules/transformer_onnx.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/AR/modules/transformer_onnx.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/AR/modules/transformer_onnx.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/AR/text_processing/__init__.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/AR/text_processing/__init__.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/AR/text_processing/__init__.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/AR/text_processing/__init__.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/AR/text_processing/phonemizer.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/AR/text_processing/phonemizer.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/AR/text_processing/phonemizer.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/AR/text_processing/phonemizer.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/AR/text_processing/symbols.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/AR/text_processing/symbols.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/AR/text_processing/symbols.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/AR/text_processing/symbols.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/AR/utils/__init__.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/AR/utils/__init__.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/AR/utils/__init__.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/AR/utils/__init__.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/AR/utils/initialize.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/AR/utils/initialize.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/AR/utils/initialize.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/AR/utils/initialize.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/AR/utils/io.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/AR/utils/io.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/AR/utils/io.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/AR/utils/io.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/LICENSE b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/LICENSE similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/LICENSE rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/LICENSE diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/README.md b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/README.md similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/README.md rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/README.md diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/activations.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/activations.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/activations.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/activations.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/alias_free_activation/cuda/__init__.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/alias_free_activation/cuda/__init__.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/alias_free_activation/cuda/__init__.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/alias_free_activation/cuda/__init__.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/alias_free_activation/cuda/activation1d.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/alias_free_activation/cuda/activation1d.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/alias_free_activation/cuda/activation1d.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/alias_free_activation/cuda/activation1d.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/alias_free_activation/cuda/anti_alias_activation.cpp b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/alias_free_activation/cuda/anti_alias_activation.cpp similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/alias_free_activation/cuda/anti_alias_activation.cpp rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/alias_free_activation/cuda/anti_alias_activation.cpp diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/alias_free_activation/cuda/anti_alias_activation_cuda.cu b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/alias_free_activation/cuda/anti_alias_activation_cuda.cu similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/alias_free_activation/cuda/anti_alias_activation_cuda.cu rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/alias_free_activation/cuda/anti_alias_activation_cuda.cu diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/alias_free_activation/cuda/compat.h b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/alias_free_activation/cuda/compat.h similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/alias_free_activation/cuda/compat.h rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/alias_free_activation/cuda/compat.h diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/alias_free_activation/cuda/load.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/alias_free_activation/cuda/load.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/alias_free_activation/cuda/load.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/alias_free_activation/cuda/load.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/alias_free_activation/cuda/type_shim.h b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/alias_free_activation/cuda/type_shim.h similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/alias_free_activation/cuda/type_shim.h rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/alias_free_activation/cuda/type_shim.h diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/alias_free_activation/torch/__init__.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/alias_free_activation/torch/__init__.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/alias_free_activation/torch/__init__.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/alias_free_activation/torch/__init__.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/alias_free_activation/torch/act.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/alias_free_activation/torch/act.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/alias_free_activation/torch/act.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/alias_free_activation/torch/act.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/alias_free_activation/torch/filter.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/alias_free_activation/torch/filter.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/alias_free_activation/torch/filter.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/alias_free_activation/torch/filter.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/alias_free_activation/torch/resample.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/alias_free_activation/torch/resample.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/alias_free_activation/torch/resample.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/alias_free_activation/torch/resample.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/bigvgan.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/bigvgan.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/bigvgan.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/bigvgan.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/configs/bigvgan_22khz_80band.json b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/configs/bigvgan_22khz_80band.json similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/configs/bigvgan_22khz_80band.json rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/configs/bigvgan_22khz_80band.json diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/configs/bigvgan_24khz_100band.json b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/configs/bigvgan_24khz_100band.json similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/configs/bigvgan_24khz_100band.json rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/configs/bigvgan_24khz_100band.json diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/configs/bigvgan_base_22khz_80band.json b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/configs/bigvgan_base_22khz_80band.json similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/configs/bigvgan_base_22khz_80band.json rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/configs/bigvgan_base_22khz_80band.json diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/configs/bigvgan_base_24khz_100band.json b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/configs/bigvgan_base_24khz_100band.json similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/configs/bigvgan_base_24khz_100band.json rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/configs/bigvgan_base_24khz_100band.json diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/configs/bigvgan_v2_22khz_80band_256x.json b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/configs/bigvgan_v2_22khz_80band_256x.json similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/configs/bigvgan_v2_22khz_80band_256x.json rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/configs/bigvgan_v2_22khz_80band_256x.json diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/configs/bigvgan_v2_22khz_80band_fmax8k_256x.json b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/configs/bigvgan_v2_22khz_80band_fmax8k_256x.json similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/configs/bigvgan_v2_22khz_80band_fmax8k_256x.json rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/configs/bigvgan_v2_22khz_80band_fmax8k_256x.json diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/configs/bigvgan_v2_24khz_100band_256x.json b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/configs/bigvgan_v2_24khz_100band_256x.json similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/configs/bigvgan_v2_24khz_100band_256x.json rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/configs/bigvgan_v2_24khz_100band_256x.json diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/configs/bigvgan_v2_44khz_128band_256x.json b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/configs/bigvgan_v2_44khz_128band_256x.json similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/configs/bigvgan_v2_44khz_128band_256x.json rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/configs/bigvgan_v2_44khz_128band_256x.json diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/configs/bigvgan_v2_44khz_128band_512x.json b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/configs/bigvgan_v2_44khz_128band_512x.json similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/configs/bigvgan_v2_44khz_128band_512x.json rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/configs/bigvgan_v2_44khz_128band_512x.json diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/discriminators.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/discriminators.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/discriminators.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/discriminators.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/env.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/env.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/env.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/env.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/incl_licenses/LICENSE_1 b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/incl_licenses/LICENSE_1 similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/incl_licenses/LICENSE_1 rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/incl_licenses/LICENSE_1 diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/incl_licenses/LICENSE_2 b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/incl_licenses/LICENSE_2 similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/incl_licenses/LICENSE_2 rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/incl_licenses/LICENSE_2 diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/incl_licenses/LICENSE_3 b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/incl_licenses/LICENSE_3 similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/incl_licenses/LICENSE_3 rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/incl_licenses/LICENSE_3 diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/incl_licenses/LICENSE_4 b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/incl_licenses/LICENSE_4 similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/incl_licenses/LICENSE_4 rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/incl_licenses/LICENSE_4 diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/incl_licenses/LICENSE_5 b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/incl_licenses/LICENSE_5 similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/incl_licenses/LICENSE_5 rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/incl_licenses/LICENSE_5 diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/incl_licenses/LICENSE_6 b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/incl_licenses/LICENSE_6 similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/incl_licenses/LICENSE_6 rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/incl_licenses/LICENSE_6 diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/incl_licenses/LICENSE_7 b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/incl_licenses/LICENSE_7 similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/incl_licenses/LICENSE_7 rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/incl_licenses/LICENSE_7 diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/incl_licenses/LICENSE_8 b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/incl_licenses/LICENSE_8 similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/incl_licenses/LICENSE_8 rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/incl_licenses/LICENSE_8 diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/inference.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/inference.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/inference.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/inference.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/inference_e2e.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/inference_e2e.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/inference_e2e.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/inference_e2e.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/loss.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/loss.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/loss.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/loss.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/meldataset.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/meldataset.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/meldataset.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/meldataset.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/nv-modelcard++/.gitkeep b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/nv-modelcard++/.gitkeep similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/nv-modelcard++/.gitkeep rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/nv-modelcard++/.gitkeep diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/nv-modelcard++/bias.md b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/nv-modelcard++/bias.md similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/nv-modelcard++/bias.md rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/nv-modelcard++/bias.md diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/nv-modelcard++/explainability.md b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/nv-modelcard++/explainability.md similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/nv-modelcard++/explainability.md rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/nv-modelcard++/explainability.md diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/nv-modelcard++/overview.md b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/nv-modelcard++/overview.md similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/nv-modelcard++/overview.md rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/nv-modelcard++/overview.md diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/nv-modelcard++/privacy.md b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/nv-modelcard++/privacy.md similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/nv-modelcard++/privacy.md rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/nv-modelcard++/privacy.md diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/nv-modelcard++/safety.md b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/nv-modelcard++/safety.md similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/nv-modelcard++/safety.md rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/nv-modelcard++/safety.md diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/requirements.txt b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/requirements.txt similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/requirements.txt rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/requirements.txt diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/tests/test_activation.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/tests/test_activation.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/tests/test_activation.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/tests/test_activation.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/tests/test_activation_snake_beta.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/tests/test_activation_snake_beta.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/tests/test_activation_snake_beta.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/tests/test_activation_snake_beta.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/tests/test_cuda_vs_torch_model.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/tests/test_cuda_vs_torch_model.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/tests/test_cuda_vs_torch_model.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/tests/test_cuda_vs_torch_model.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/train.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/train.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/train.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/train.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/utils0.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/utils0.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/BigVGAN/utils0.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/BigVGAN/utils0.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/TTS_infer_pack/TTS.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/TTS_infer_pack/TTS.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/TTS_infer_pack/TTS.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/TTS_infer_pack/TTS.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/TTS_infer_pack/TextPreprocessor.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/TTS_infer_pack/TextPreprocessor.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/TTS_infer_pack/TextPreprocessor.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/TTS_infer_pack/TextPreprocessor.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/TTS_infer_pack/__init__.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/TTS_infer_pack/__init__.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/TTS_infer_pack/__init__.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/TTS_infer_pack/__init__.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/TTS_infer_pack/text_segmentation_method.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/TTS_infer_pack/text_segmentation_method.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/TTS_infer_pack/text_segmentation_method.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/TTS_infer_pack/text_segmentation_method.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/configs/.gitignore b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/configs/.gitignore similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/configs/.gitignore rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/configs/.gitignore diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/configs/s2.json b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/configs/s2.json similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/configs/s2.json rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/configs/s2.json diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/configs/s2v2Pro.json b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/configs/s2v2Pro.json similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/configs/s2v2Pro.json rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/configs/s2v2Pro.json diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/configs/s2v2ProPlus.json b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/configs/s2v2ProPlus.json similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/configs/s2v2ProPlus.json rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/configs/s2v2ProPlus.json diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/download.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/download.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/download.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/download.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/eres2net/ERes2Net.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/eres2net/ERes2Net.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/eres2net/ERes2Net.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/eres2net/ERes2Net.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/eres2net/ERes2NetV2.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/eres2net/ERes2NetV2.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/eres2net/ERes2NetV2.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/eres2net/ERes2NetV2.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/eres2net/ERes2Net_huge.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/eres2net/ERes2Net_huge.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/eres2net/ERes2Net_huge.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/eres2net/ERes2Net_huge.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/eres2net/fusion.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/eres2net/fusion.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/eres2net/fusion.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/eres2net/fusion.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/eres2net/kaldi.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/eres2net/kaldi.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/eres2net/kaldi.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/eres2net/kaldi.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/eres2net/pooling_layers.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/eres2net/pooling_layers.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/eres2net/pooling_layers.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/eres2net/pooling_layers.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/export_torch_script.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/export_torch_script.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/export_torch_script.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/export_torch_script.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/export_torch_script_v3v4.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/export_torch_script_v3v4.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/export_torch_script_v3v4.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/export_torch_script_v3v4.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/f5_tts/model/__init__.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/f5_tts/model/__init__.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/f5_tts/model/__init__.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/f5_tts/model/__init__.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/f5_tts/model/backbones/README.md b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/f5_tts/model/backbones/README.md similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/f5_tts/model/backbones/README.md rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/f5_tts/model/backbones/README.md diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/f5_tts/model/backbones/dit.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/f5_tts/model/backbones/dit.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/f5_tts/model/backbones/dit.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/f5_tts/model/backbones/dit.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/f5_tts/model/backbones/mmdit.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/f5_tts/model/backbones/mmdit.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/f5_tts/model/backbones/mmdit.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/f5_tts/model/backbones/mmdit.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/f5_tts/model/backbones/unett.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/f5_tts/model/backbones/unett.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/f5_tts/model/backbones/unett.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/f5_tts/model/backbones/unett.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/f5_tts/model/modules.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/f5_tts/model/modules.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/f5_tts/model/modules.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/f5_tts/model/modules.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/feature_extractor/__init__.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/feature_extractor/__init__.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/feature_extractor/__init__.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/feature_extractor/__init__.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/feature_extractor/cnhubert.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/feature_extractor/cnhubert.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/feature_extractor/cnhubert.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/feature_extractor/cnhubert.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/feature_extractor/whisper_enc.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/feature_extractor/whisper_enc.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/feature_extractor/whisper_enc.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/feature_extractor/whisper_enc.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/inference_cli.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/inference_cli.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/inference_cli.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/inference_cli.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/inference_gui.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/inference_gui.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/inference_gui.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/inference_gui.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/inference_webui.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/inference_webui.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/inference_webui.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/inference_webui.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/inference_webui_fast.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/inference_webui_fast.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/inference_webui_fast.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/inference_webui_fast.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/module/__init__.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/module/__init__.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/module/__init__.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/module/__init__.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/module/attentions.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/module/attentions.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/module/attentions.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/module/attentions.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/module/attentions_onnx.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/module/attentions_onnx.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/module/attentions_onnx.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/module/attentions_onnx.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/module/commons.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/module/commons.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/module/commons.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/module/commons.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/module/core_vq.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/module/core_vq.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/module/core_vq.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/module/core_vq.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/module/data_utils.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/module/data_utils.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/module/data_utils.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/module/data_utils.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/module/losses.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/module/losses.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/module/losses.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/module/losses.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/module/mel_processing.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/module/mel_processing.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/module/mel_processing.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/module/mel_processing.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/module/models.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/module/models.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/module/models.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/module/models.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/module/models_onnx.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/module/models_onnx.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/module/models_onnx.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/module/models_onnx.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/module/modules.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/module/modules.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/module/modules.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/module/modules.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/module/mrte_model.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/module/mrte_model.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/module/mrte_model.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/module/mrte_model.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/module/quantize.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/module/quantize.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/module/quantize.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/module/quantize.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/module/transforms.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/module/transforms.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/module/transforms.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/module/transforms.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/onnx_export.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/onnx_export.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/onnx_export.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/onnx_export.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/prepare_datasets/1-get-text.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/prepare_datasets/1-get-text.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/prepare_datasets/1-get-text.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/prepare_datasets/1-get-text.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/prepare_datasets/2-get-hubert-wav32k.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/prepare_datasets/2-get-hubert-wav32k.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/prepare_datasets/2-get-hubert-wav32k.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/prepare_datasets/2-get-hubert-wav32k.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/prepare_datasets/2-get-sv.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/prepare_datasets/2-get-sv.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/prepare_datasets/2-get-sv.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/prepare_datasets/2-get-sv.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/prepare_datasets/3-get-semantic.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/prepare_datasets/3-get-semantic.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/prepare_datasets/3-get-semantic.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/prepare_datasets/3-get-semantic.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/pretrained_models/.gitignore b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/pretrained_models/.gitignore similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/pretrained_models/.gitignore rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/pretrained_models/.gitignore diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/process_ckpt.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/process_ckpt.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/process_ckpt.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/process_ckpt.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/s1_train.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/s1_train.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/s1_train.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/s1_train.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/s2_train.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/s2_train.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/s2_train.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/s2_train.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/s2_train_v3.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/s2_train_v3.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/s2_train_v3.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/s2_train_v3.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/s2_train_v3_lora.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/s2_train_v3_lora.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/s2_train_v3_lora.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/s2_train_v3_lora.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/sv.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/sv.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/sv.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/sv.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/text/.gitignore b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/text/.gitignore similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/text/.gitignore rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/text/.gitignore diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/text/LangSegmenter/__init__.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/text/LangSegmenter/__init__.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/text/LangSegmenter/__init__.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/text/LangSegmenter/__init__.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/text/LangSegmenter/langsegmenter.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/text/LangSegmenter/langsegmenter.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/text/LangSegmenter/langsegmenter.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/text/LangSegmenter/langsegmenter.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/text/__init__.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/text/__init__.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/text/__init__.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/text/__init__.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/text/cantonese.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/text/cantonese.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/text/cantonese.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/text/cantonese.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/text/chinese.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/text/chinese.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/text/chinese.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/text/chinese.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/text/chinese2.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/text/chinese2.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/text/chinese2.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/text/chinese2.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/text/cleaner.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/text/cleaner.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/text/cleaner.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/text/cleaner.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/text/cmudict-fast.rep b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/text/cmudict-fast.rep similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/text/cmudict-fast.rep rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/text/cmudict-fast.rep diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/text/cmudict.rep b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/text/cmudict.rep similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/text/cmudict.rep rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/text/cmudict.rep diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/text/en_normalization/expend.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/text/en_normalization/expend.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/text/en_normalization/expend.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/text/en_normalization/expend.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/text/engdict-hot.rep b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/text/engdict-hot.rep similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/text/engdict-hot.rep rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/text/engdict-hot.rep diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/text/engdict_cache.pickle b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/text/engdict_cache.pickle similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/text/engdict_cache.pickle rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/text/engdict_cache.pickle diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/text/english.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/text/english.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/text/english.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/text/english.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/text/g2pw/__init__.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/text/g2pw/__init__.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/text/g2pw/__init__.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/text/g2pw/__init__.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/text/g2pw/dataset.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/text/g2pw/dataset.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/text/g2pw/dataset.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/text/g2pw/dataset.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/text/g2pw/g2pw.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/text/g2pw/g2pw.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/text/g2pw/g2pw.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/text/g2pw/g2pw.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/text/g2pw/onnx_api.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/text/g2pw/onnx_api.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/text/g2pw/onnx_api.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/text/g2pw/onnx_api.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/text/g2pw/polyphonic-fix.rep b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/text/g2pw/polyphonic-fix.rep similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/text/g2pw/polyphonic-fix.rep rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/text/g2pw/polyphonic-fix.rep diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/text/g2pw/polyphonic.pickle b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/text/g2pw/polyphonic.pickle similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/text/g2pw/polyphonic.pickle rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/text/g2pw/polyphonic.pickle diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/text/g2pw/polyphonic.rep b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/text/g2pw/polyphonic.rep similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/text/g2pw/polyphonic.rep rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/text/g2pw/polyphonic.rep diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/text/g2pw/utils.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/text/g2pw/utils.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/text/g2pw/utils.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/text/g2pw/utils.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/text/ja_userdic/userdict.csv b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/text/ja_userdic/userdict.csv similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/text/ja_userdic/userdict.csv rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/text/ja_userdic/userdict.csv diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/text/japanese.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/text/japanese.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/text/japanese.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/text/japanese.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/text/korean.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/text/korean.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/text/korean.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/text/korean.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/text/namedict_cache.pickle b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/text/namedict_cache.pickle similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/text/namedict_cache.pickle rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/text/namedict_cache.pickle diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/text/opencpop-strict.txt b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/text/opencpop-strict.txt similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/text/opencpop-strict.txt rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/text/opencpop-strict.txt diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/text/symbols.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/text/symbols.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/text/symbols.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/text/symbols.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/text/symbols2.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/text/symbols2.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/text/symbols2.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/text/symbols2.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/text/tone_sandhi.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/text/tone_sandhi.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/text/tone_sandhi.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/text/tone_sandhi.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/text/zh_normalization/README.md b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/text/zh_normalization/README.md similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/text/zh_normalization/README.md rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/text/zh_normalization/README.md diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/text/zh_normalization/__init__.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/text/zh_normalization/__init__.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/text/zh_normalization/__init__.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/text/zh_normalization/__init__.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/text/zh_normalization/char_convert.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/text/zh_normalization/char_convert.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/text/zh_normalization/char_convert.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/text/zh_normalization/char_convert.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/text/zh_normalization/chronology.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/text/zh_normalization/chronology.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/text/zh_normalization/chronology.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/text/zh_normalization/chronology.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/text/zh_normalization/constants.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/text/zh_normalization/constants.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/text/zh_normalization/constants.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/text/zh_normalization/constants.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/text/zh_normalization/num.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/text/zh_normalization/num.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/text/zh_normalization/num.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/text/zh_normalization/num.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/text/zh_normalization/phonecode.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/text/zh_normalization/phonecode.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/text/zh_normalization/phonecode.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/text/zh_normalization/phonecode.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/text/zh_normalization/quantifier.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/text/zh_normalization/quantifier.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/text/zh_normalization/quantifier.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/text/zh_normalization/quantifier.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/text/zh_normalization/text_normlization.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/text/zh_normalization/text_normlization.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/text/zh_normalization/text_normlization.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/text/zh_normalization/text_normlization.py diff --git a/gsv/GPT-SoVITS/GPT_SoVITS/utils.py b/mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/utils.py similarity index 100% rename from gsv/GPT-SoVITS/GPT_SoVITS/utils.py rename to mlu_370-gpt-sovits/GPT-SoVITS/GPT_SoVITS/utils.py diff --git a/gsv/GPT-SoVITS/LICENSE b/mlu_370-gpt-sovits/GPT-SoVITS/LICENSE similarity index 100% rename from gsv/GPT-SoVITS/LICENSE rename to mlu_370-gpt-sovits/GPT-SoVITS/LICENSE diff --git a/gsv/GPT-SoVITS/README.md b/mlu_370-gpt-sovits/GPT-SoVITS/README.md similarity index 100% rename from gsv/GPT-SoVITS/README.md rename to mlu_370-gpt-sovits/GPT-SoVITS/README.md diff --git a/gsv/GPT-SoVITS/api.py b/mlu_370-gpt-sovits/GPT-SoVITS/api.py similarity index 100% rename from gsv/GPT-SoVITS/api.py rename to mlu_370-gpt-sovits/GPT-SoVITS/api.py diff --git a/gsv/GPT-SoVITS/api_v2.py b/mlu_370-gpt-sovits/GPT-SoVITS/api_v2.py similarity index 100% rename from gsv/GPT-SoVITS/api_v2.py rename to mlu_370-gpt-sovits/GPT-SoVITS/api_v2.py diff --git a/gsv/GPT-SoVITS/config.py b/mlu_370-gpt-sovits/GPT-SoVITS/config.py similarity index 100% rename from gsv/GPT-SoVITS/config.py rename to mlu_370-gpt-sovits/GPT-SoVITS/config.py diff --git a/gsv/GPT-SoVITS/docker-compose.yaml b/mlu_370-gpt-sovits/GPT-SoVITS/docker-compose.yaml similarity index 100% rename from gsv/GPT-SoVITS/docker-compose.yaml rename to mlu_370-gpt-sovits/GPT-SoVITS/docker-compose.yaml diff --git a/gsv/GPT-SoVITS/docker_build.sh b/mlu_370-gpt-sovits/GPT-SoVITS/docker_build.sh similarity index 100% rename from gsv/GPT-SoVITS/docker_build.sh rename to mlu_370-gpt-sovits/GPT-SoVITS/docker_build.sh diff --git a/gsv/GPT-SoVITS/docs/cn/Changelog_CN.md b/mlu_370-gpt-sovits/GPT-SoVITS/docs/cn/Changelog_CN.md similarity index 100% rename from gsv/GPT-SoVITS/docs/cn/Changelog_CN.md rename to mlu_370-gpt-sovits/GPT-SoVITS/docs/cn/Changelog_CN.md diff --git a/gsv/GPT-SoVITS/docs/cn/README.md b/mlu_370-gpt-sovits/GPT-SoVITS/docs/cn/README.md similarity index 100% rename from gsv/GPT-SoVITS/docs/cn/README.md rename to mlu_370-gpt-sovits/GPT-SoVITS/docs/cn/README.md diff --git a/gsv/GPT-SoVITS/docs/en/Changelog_EN.md b/mlu_370-gpt-sovits/GPT-SoVITS/docs/en/Changelog_EN.md similarity index 100% rename from gsv/GPT-SoVITS/docs/en/Changelog_EN.md rename to mlu_370-gpt-sovits/GPT-SoVITS/docs/en/Changelog_EN.md diff --git a/gsv/GPT-SoVITS/docs/ja/Changelog_JA.md b/mlu_370-gpt-sovits/GPT-SoVITS/docs/ja/Changelog_JA.md similarity index 100% rename from gsv/GPT-SoVITS/docs/ja/Changelog_JA.md rename to mlu_370-gpt-sovits/GPT-SoVITS/docs/ja/Changelog_JA.md diff --git a/gsv/GPT-SoVITS/docs/ja/README.md b/mlu_370-gpt-sovits/GPT-SoVITS/docs/ja/README.md similarity index 100% rename from gsv/GPT-SoVITS/docs/ja/README.md rename to mlu_370-gpt-sovits/GPT-SoVITS/docs/ja/README.md diff --git a/gsv/GPT-SoVITS/docs/ko/Changelog_KO.md b/mlu_370-gpt-sovits/GPT-SoVITS/docs/ko/Changelog_KO.md similarity index 100% rename from gsv/GPT-SoVITS/docs/ko/Changelog_KO.md rename to mlu_370-gpt-sovits/GPT-SoVITS/docs/ko/Changelog_KO.md diff --git a/gsv/GPT-SoVITS/docs/ko/README.md b/mlu_370-gpt-sovits/GPT-SoVITS/docs/ko/README.md similarity index 100% rename from gsv/GPT-SoVITS/docs/ko/README.md rename to mlu_370-gpt-sovits/GPT-SoVITS/docs/ko/README.md diff --git a/gsv/GPT-SoVITS/docs/tr/Changelog_TR.md b/mlu_370-gpt-sovits/GPT-SoVITS/docs/tr/Changelog_TR.md similarity index 100% rename from gsv/GPT-SoVITS/docs/tr/Changelog_TR.md rename to mlu_370-gpt-sovits/GPT-SoVITS/docs/tr/Changelog_TR.md diff --git a/gsv/GPT-SoVITS/docs/tr/README.md b/mlu_370-gpt-sovits/GPT-SoVITS/docs/tr/README.md similarity index 100% rename from gsv/GPT-SoVITS/docs/tr/README.md rename to mlu_370-gpt-sovits/GPT-SoVITS/docs/tr/README.md diff --git a/gsv/GPT-SoVITS/extra-req.txt b/mlu_370-gpt-sovits/GPT-SoVITS/extra-req.txt similarity index 100% rename from gsv/GPT-SoVITS/extra-req.txt rename to mlu_370-gpt-sovits/GPT-SoVITS/extra-req.txt diff --git a/gsv/GPT-SoVITS/go-webui.bat b/mlu_370-gpt-sovits/GPT-SoVITS/go-webui.bat similarity index 100% rename from gsv/GPT-SoVITS/go-webui.bat rename to mlu_370-gpt-sovits/GPT-SoVITS/go-webui.bat diff --git a/gsv/GPT-SoVITS/go-webui.ps1 b/mlu_370-gpt-sovits/GPT-SoVITS/go-webui.ps1 similarity index 100% rename from gsv/GPT-SoVITS/go-webui.ps1 rename to mlu_370-gpt-sovits/GPT-SoVITS/go-webui.ps1 diff --git a/gsv/GPT-SoVITS/gpt-sovits_kaggle.ipynb b/mlu_370-gpt-sovits/GPT-SoVITS/gpt-sovits_kaggle.ipynb similarity index 100% rename from gsv/GPT-SoVITS/gpt-sovits_kaggle.ipynb rename to mlu_370-gpt-sovits/GPT-SoVITS/gpt-sovits_kaggle.ipynb diff --git a/gsv/GPT-SoVITS/gsv_server.py b/mlu_370-gpt-sovits/GPT-SoVITS/gsv_server.py similarity index 100% rename from gsv/GPT-SoVITS/gsv_server.py rename to mlu_370-gpt-sovits/GPT-SoVITS/gsv_server.py diff --git a/gsv/GPT-SoVITS/install.ps1 b/mlu_370-gpt-sovits/GPT-SoVITS/install.ps1 similarity index 100% rename from gsv/GPT-SoVITS/install.ps1 rename to mlu_370-gpt-sovits/GPT-SoVITS/install.ps1 diff --git a/gsv/GPT-SoVITS/install.sh b/mlu_370-gpt-sovits/GPT-SoVITS/install.sh similarity index 100% rename from gsv/GPT-SoVITS/install.sh rename to mlu_370-gpt-sovits/GPT-SoVITS/install.sh diff --git a/gsv/GPT-SoVITS/requirements.txt b/mlu_370-gpt-sovits/GPT-SoVITS/requirements.txt similarity index 100% rename from gsv/GPT-SoVITS/requirements.txt rename to mlu_370-gpt-sovits/GPT-SoVITS/requirements.txt diff --git a/gsv/GPT-SoVITS/tools/AP_BWE_main/24kto48k/readme.txt b/mlu_370-gpt-sovits/GPT-SoVITS/tools/AP_BWE_main/24kto48k/readme.txt similarity index 100% rename from gsv/GPT-SoVITS/tools/AP_BWE_main/24kto48k/readme.txt rename to mlu_370-gpt-sovits/GPT-SoVITS/tools/AP_BWE_main/24kto48k/readme.txt diff --git a/gsv/GPT-SoVITS/tools/AP_BWE_main/LICENSE b/mlu_370-gpt-sovits/GPT-SoVITS/tools/AP_BWE_main/LICENSE similarity index 100% rename from gsv/GPT-SoVITS/tools/AP_BWE_main/LICENSE rename to mlu_370-gpt-sovits/GPT-SoVITS/tools/AP_BWE_main/LICENSE diff --git a/gsv/GPT-SoVITS/tools/AP_BWE_main/README.md b/mlu_370-gpt-sovits/GPT-SoVITS/tools/AP_BWE_main/README.md similarity index 100% rename from gsv/GPT-SoVITS/tools/AP_BWE_main/README.md rename to mlu_370-gpt-sovits/GPT-SoVITS/tools/AP_BWE_main/README.md diff --git a/gsv/GPT-SoVITS/tools/AP_BWE_main/datasets1/__init__.py b/mlu_370-gpt-sovits/GPT-SoVITS/tools/AP_BWE_main/datasets1/__init__.py similarity index 100% rename from gsv/GPT-SoVITS/tools/AP_BWE_main/datasets1/__init__.py rename to mlu_370-gpt-sovits/GPT-SoVITS/tools/AP_BWE_main/datasets1/__init__.py diff --git a/gsv/GPT-SoVITS/tools/AP_BWE_main/datasets1/dataset.py b/mlu_370-gpt-sovits/GPT-SoVITS/tools/AP_BWE_main/datasets1/dataset.py similarity index 100% rename from gsv/GPT-SoVITS/tools/AP_BWE_main/datasets1/dataset.py rename to mlu_370-gpt-sovits/GPT-SoVITS/tools/AP_BWE_main/datasets1/dataset.py diff --git a/gsv/GPT-SoVITS/tools/AP_BWE_main/models/__init__.py b/mlu_370-gpt-sovits/GPT-SoVITS/tools/AP_BWE_main/models/__init__.py similarity index 100% rename from gsv/GPT-SoVITS/tools/AP_BWE_main/models/__init__.py rename to mlu_370-gpt-sovits/GPT-SoVITS/tools/AP_BWE_main/models/__init__.py diff --git a/gsv/GPT-SoVITS/tools/AP_BWE_main/models/model.py b/mlu_370-gpt-sovits/GPT-SoVITS/tools/AP_BWE_main/models/model.py similarity index 100% rename from gsv/GPT-SoVITS/tools/AP_BWE_main/models/model.py rename to mlu_370-gpt-sovits/GPT-SoVITS/tools/AP_BWE_main/models/model.py diff --git a/gsv/GPT-SoVITS/tools/__init__.py b/mlu_370-gpt-sovits/GPT-SoVITS/tools/__init__.py similarity index 100% rename from gsv/GPT-SoVITS/tools/__init__.py rename to mlu_370-gpt-sovits/GPT-SoVITS/tools/__init__.py diff --git a/gsv/GPT-SoVITS/tools/asr/config.py b/mlu_370-gpt-sovits/GPT-SoVITS/tools/asr/config.py similarity index 100% rename from gsv/GPT-SoVITS/tools/asr/config.py rename to mlu_370-gpt-sovits/GPT-SoVITS/tools/asr/config.py diff --git a/gsv/GPT-SoVITS/tools/asr/fasterwhisper_asr.py b/mlu_370-gpt-sovits/GPT-SoVITS/tools/asr/fasterwhisper_asr.py similarity index 100% rename from gsv/GPT-SoVITS/tools/asr/fasterwhisper_asr.py rename to mlu_370-gpt-sovits/GPT-SoVITS/tools/asr/fasterwhisper_asr.py diff --git a/gsv/GPT-SoVITS/tools/asr/funasr_asr.py b/mlu_370-gpt-sovits/GPT-SoVITS/tools/asr/funasr_asr.py similarity index 100% rename from gsv/GPT-SoVITS/tools/asr/funasr_asr.py rename to mlu_370-gpt-sovits/GPT-SoVITS/tools/asr/funasr_asr.py diff --git a/gsv/GPT-SoVITS/tools/asr/models/.gitignore b/mlu_370-gpt-sovits/GPT-SoVITS/tools/asr/models/.gitignore similarity index 100% rename from gsv/GPT-SoVITS/tools/asr/models/.gitignore rename to mlu_370-gpt-sovits/GPT-SoVITS/tools/asr/models/.gitignore diff --git a/gsv/GPT-SoVITS/tools/assets.py b/mlu_370-gpt-sovits/GPT-SoVITS/tools/assets.py similarity index 100% rename from gsv/GPT-SoVITS/tools/assets.py rename to mlu_370-gpt-sovits/GPT-SoVITS/tools/assets.py diff --git a/gsv/GPT-SoVITS/tools/audio_sr.py b/mlu_370-gpt-sovits/GPT-SoVITS/tools/audio_sr.py similarity index 100% rename from gsv/GPT-SoVITS/tools/audio_sr.py rename to mlu_370-gpt-sovits/GPT-SoVITS/tools/audio_sr.py diff --git a/gsv/GPT-SoVITS/tools/cmd-denoise.py b/mlu_370-gpt-sovits/GPT-SoVITS/tools/cmd-denoise.py similarity index 100% rename from gsv/GPT-SoVITS/tools/cmd-denoise.py rename to mlu_370-gpt-sovits/GPT-SoVITS/tools/cmd-denoise.py diff --git a/gsv/GPT-SoVITS/tools/denoise-model/.gitignore b/mlu_370-gpt-sovits/GPT-SoVITS/tools/denoise-model/.gitignore similarity index 100% rename from gsv/GPT-SoVITS/tools/denoise-model/.gitignore rename to mlu_370-gpt-sovits/GPT-SoVITS/tools/denoise-model/.gitignore diff --git a/gsv/GPT-SoVITS/tools/i18n/i18n.py b/mlu_370-gpt-sovits/GPT-SoVITS/tools/i18n/i18n.py similarity index 100% rename from gsv/GPT-SoVITS/tools/i18n/i18n.py rename to mlu_370-gpt-sovits/GPT-SoVITS/tools/i18n/i18n.py diff --git a/gsv/GPT-SoVITS/tools/i18n/locale/en_US.json b/mlu_370-gpt-sovits/GPT-SoVITS/tools/i18n/locale/en_US.json similarity index 100% rename from gsv/GPT-SoVITS/tools/i18n/locale/en_US.json rename to mlu_370-gpt-sovits/GPT-SoVITS/tools/i18n/locale/en_US.json diff --git a/gsv/GPT-SoVITS/tools/i18n/locale/es_ES.json b/mlu_370-gpt-sovits/GPT-SoVITS/tools/i18n/locale/es_ES.json similarity index 100% rename from gsv/GPT-SoVITS/tools/i18n/locale/es_ES.json rename to mlu_370-gpt-sovits/GPT-SoVITS/tools/i18n/locale/es_ES.json diff --git a/gsv/GPT-SoVITS/tools/i18n/locale/fr_FR.json b/mlu_370-gpt-sovits/GPT-SoVITS/tools/i18n/locale/fr_FR.json similarity index 100% rename from gsv/GPT-SoVITS/tools/i18n/locale/fr_FR.json rename to mlu_370-gpt-sovits/GPT-SoVITS/tools/i18n/locale/fr_FR.json diff --git a/gsv/GPT-SoVITS/tools/i18n/locale/it_IT.json b/mlu_370-gpt-sovits/GPT-SoVITS/tools/i18n/locale/it_IT.json similarity index 100% rename from gsv/GPT-SoVITS/tools/i18n/locale/it_IT.json rename to mlu_370-gpt-sovits/GPT-SoVITS/tools/i18n/locale/it_IT.json diff --git a/gsv/GPT-SoVITS/tools/i18n/locale/ja_JP.json b/mlu_370-gpt-sovits/GPT-SoVITS/tools/i18n/locale/ja_JP.json similarity index 100% rename from gsv/GPT-SoVITS/tools/i18n/locale/ja_JP.json rename to mlu_370-gpt-sovits/GPT-SoVITS/tools/i18n/locale/ja_JP.json diff --git a/gsv/GPT-SoVITS/tools/i18n/locale/ko_KR.json b/mlu_370-gpt-sovits/GPT-SoVITS/tools/i18n/locale/ko_KR.json similarity index 100% rename from gsv/GPT-SoVITS/tools/i18n/locale/ko_KR.json rename to mlu_370-gpt-sovits/GPT-SoVITS/tools/i18n/locale/ko_KR.json diff --git a/gsv/GPT-SoVITS/tools/i18n/locale/pt_BR.json b/mlu_370-gpt-sovits/GPT-SoVITS/tools/i18n/locale/pt_BR.json similarity index 100% rename from gsv/GPT-SoVITS/tools/i18n/locale/pt_BR.json rename to mlu_370-gpt-sovits/GPT-SoVITS/tools/i18n/locale/pt_BR.json diff --git a/gsv/GPT-SoVITS/tools/i18n/locale/ru_RU.json b/mlu_370-gpt-sovits/GPT-SoVITS/tools/i18n/locale/ru_RU.json similarity index 100% rename from gsv/GPT-SoVITS/tools/i18n/locale/ru_RU.json rename to mlu_370-gpt-sovits/GPT-SoVITS/tools/i18n/locale/ru_RU.json diff --git a/gsv/GPT-SoVITS/tools/i18n/locale/tr_TR.json b/mlu_370-gpt-sovits/GPT-SoVITS/tools/i18n/locale/tr_TR.json similarity index 100% rename from gsv/GPT-SoVITS/tools/i18n/locale/tr_TR.json rename to mlu_370-gpt-sovits/GPT-SoVITS/tools/i18n/locale/tr_TR.json diff --git a/gsv/GPT-SoVITS/tools/i18n/locale/zh_CN.json b/mlu_370-gpt-sovits/GPT-SoVITS/tools/i18n/locale/zh_CN.json similarity index 100% rename from gsv/GPT-SoVITS/tools/i18n/locale/zh_CN.json rename to mlu_370-gpt-sovits/GPT-SoVITS/tools/i18n/locale/zh_CN.json diff --git a/gsv/GPT-SoVITS/tools/i18n/locale/zh_HK.json b/mlu_370-gpt-sovits/GPT-SoVITS/tools/i18n/locale/zh_HK.json similarity index 100% rename from gsv/GPT-SoVITS/tools/i18n/locale/zh_HK.json rename to mlu_370-gpt-sovits/GPT-SoVITS/tools/i18n/locale/zh_HK.json diff --git a/gsv/GPT-SoVITS/tools/i18n/locale/zh_SG.json b/mlu_370-gpt-sovits/GPT-SoVITS/tools/i18n/locale/zh_SG.json similarity index 100% rename from gsv/GPT-SoVITS/tools/i18n/locale/zh_SG.json rename to mlu_370-gpt-sovits/GPT-SoVITS/tools/i18n/locale/zh_SG.json diff --git a/gsv/GPT-SoVITS/tools/i18n/locale/zh_TW.json b/mlu_370-gpt-sovits/GPT-SoVITS/tools/i18n/locale/zh_TW.json similarity index 100% rename from gsv/GPT-SoVITS/tools/i18n/locale/zh_TW.json rename to mlu_370-gpt-sovits/GPT-SoVITS/tools/i18n/locale/zh_TW.json diff --git a/gsv/GPT-SoVITS/tools/i18n/scan_i18n.py b/mlu_370-gpt-sovits/GPT-SoVITS/tools/i18n/scan_i18n.py similarity index 100% rename from gsv/GPT-SoVITS/tools/i18n/scan_i18n.py rename to mlu_370-gpt-sovits/GPT-SoVITS/tools/i18n/scan_i18n.py diff --git a/gsv/GPT-SoVITS/tools/my_utils.py b/mlu_370-gpt-sovits/GPT-SoVITS/tools/my_utils.py similarity index 100% rename from gsv/GPT-SoVITS/tools/my_utils.py rename to mlu_370-gpt-sovits/GPT-SoVITS/tools/my_utils.py diff --git a/gsv/GPT-SoVITS/tools/slice_audio.py b/mlu_370-gpt-sovits/GPT-SoVITS/tools/slice_audio.py similarity index 100% rename from gsv/GPT-SoVITS/tools/slice_audio.py rename to mlu_370-gpt-sovits/GPT-SoVITS/tools/slice_audio.py diff --git a/gsv/GPT-SoVITS/tools/slicer2.py b/mlu_370-gpt-sovits/GPT-SoVITS/tools/slicer2.py similarity index 100% rename from gsv/GPT-SoVITS/tools/slicer2.py rename to mlu_370-gpt-sovits/GPT-SoVITS/tools/slicer2.py diff --git a/gsv/GPT-SoVITS/tools/subfix_webui.py b/mlu_370-gpt-sovits/GPT-SoVITS/tools/subfix_webui.py similarity index 100% rename from gsv/GPT-SoVITS/tools/subfix_webui.py rename to mlu_370-gpt-sovits/GPT-SoVITS/tools/subfix_webui.py diff --git a/gsv/GPT-SoVITS/tools/uvr5/bs_roformer/__init__.py b/mlu_370-gpt-sovits/GPT-SoVITS/tools/uvr5/bs_roformer/__init__.py similarity index 100% rename from gsv/GPT-SoVITS/tools/uvr5/bs_roformer/__init__.py rename to mlu_370-gpt-sovits/GPT-SoVITS/tools/uvr5/bs_roformer/__init__.py diff --git a/gsv/GPT-SoVITS/tools/uvr5/bs_roformer/attend.py b/mlu_370-gpt-sovits/GPT-SoVITS/tools/uvr5/bs_roformer/attend.py similarity index 100% rename from gsv/GPT-SoVITS/tools/uvr5/bs_roformer/attend.py rename to mlu_370-gpt-sovits/GPT-SoVITS/tools/uvr5/bs_roformer/attend.py diff --git a/gsv/GPT-SoVITS/tools/uvr5/bs_roformer/bs_roformer.py b/mlu_370-gpt-sovits/GPT-SoVITS/tools/uvr5/bs_roformer/bs_roformer.py similarity index 100% rename from gsv/GPT-SoVITS/tools/uvr5/bs_roformer/bs_roformer.py rename to mlu_370-gpt-sovits/GPT-SoVITS/tools/uvr5/bs_roformer/bs_roformer.py diff --git a/gsv/GPT-SoVITS/tools/uvr5/bs_roformer/mel_band_roformer.py b/mlu_370-gpt-sovits/GPT-SoVITS/tools/uvr5/bs_roformer/mel_band_roformer.py similarity index 100% rename from gsv/GPT-SoVITS/tools/uvr5/bs_roformer/mel_band_roformer.py rename to mlu_370-gpt-sovits/GPT-SoVITS/tools/uvr5/bs_roformer/mel_band_roformer.py diff --git a/gsv/GPT-SoVITS/tools/uvr5/bsroformer.py b/mlu_370-gpt-sovits/GPT-SoVITS/tools/uvr5/bsroformer.py similarity index 100% rename from gsv/GPT-SoVITS/tools/uvr5/bsroformer.py rename to mlu_370-gpt-sovits/GPT-SoVITS/tools/uvr5/bsroformer.py diff --git a/gsv/GPT-SoVITS/tools/uvr5/mdxnet.py b/mlu_370-gpt-sovits/GPT-SoVITS/tools/uvr5/mdxnet.py similarity index 100% rename from gsv/GPT-SoVITS/tools/uvr5/mdxnet.py rename to mlu_370-gpt-sovits/GPT-SoVITS/tools/uvr5/mdxnet.py diff --git a/gsv/GPT-SoVITS/tools/uvr5/uvr5_weights/.gitignore b/mlu_370-gpt-sovits/GPT-SoVITS/tools/uvr5/uvr5_weights/.gitignore similarity index 100% rename from gsv/GPT-SoVITS/tools/uvr5/uvr5_weights/.gitignore rename to mlu_370-gpt-sovits/GPT-SoVITS/tools/uvr5/uvr5_weights/.gitignore diff --git a/gsv/GPT-SoVITS/tools/uvr5/vr.py b/mlu_370-gpt-sovits/GPT-SoVITS/tools/uvr5/vr.py similarity index 100% rename from gsv/GPT-SoVITS/tools/uvr5/vr.py rename to mlu_370-gpt-sovits/GPT-SoVITS/tools/uvr5/vr.py diff --git a/gsv/GPT-SoVITS/tools/uvr5/webui.py b/mlu_370-gpt-sovits/GPT-SoVITS/tools/uvr5/webui.py similarity index 100% rename from gsv/GPT-SoVITS/tools/uvr5/webui.py rename to mlu_370-gpt-sovits/GPT-SoVITS/tools/uvr5/webui.py diff --git a/gsv/GPT-SoVITS/webui.py b/mlu_370-gpt-sovits/GPT-SoVITS/webui.py similarity index 100% rename from gsv/GPT-SoVITS/webui.py rename to mlu_370-gpt-sovits/GPT-SoVITS/webui.py diff --git a/gsv/README.md b/mlu_370-gpt-sovits/README.md similarity index 87% rename from gsv/README.md rename to mlu_370-gpt-sovits/README.md index 9a0faa9..053dea5 100644 --- a/gsv/README.md +++ b/mlu_370-gpt-sovits/README.md @@ -15,8 +15,8 @@ docker build -t tts:gsv . -f Dockerfile_gsv ```bash docker run -it --rm \ -v /models/GPT-SoVITS:/mnt/models \ - -v /dev:/dev \ - --device=/dev/iluvatar0:/dev/iluvatar0 \ + --device=/dev/cambricon_dev0:/dev/cambricon_dev0 \ + --device=/dev/cambricon_ctl:/dev/cambricon_ctl \ -p 8080:80 \ -e MODEL_DIR=/mnt/models \ -e MODEL_NAME=s1v3.ckpt \ @@ -27,7 +27,6 @@ docker run -it --rm \ - `MODEL_DIR`:模型所在目录(挂载到容器内 `/mnt/models`) - `MODEL_NAME`:加载的模型文件名(通常为 `.safetensors`) - `-p 8080:80`:将容器内服务端口映射到宿主机 `8080` -- `--device=/dev/iluvatar0:/dev/iluvatar0`:指定推理设备(如 GPU/加速卡) ### 3. 测试服务 ```bash diff --git a/gsv/constraints_gsv.txt b/mlu_370-gpt-sovits/constraints_gsv.txt similarity index 100% rename from gsv/constraints_gsv.txt rename to mlu_370-gpt-sovits/constraints_gsv.txt diff --git a/gsv/launch_gsv.sh b/mlu_370-gpt-sovits/launch_gsv.sh similarity index 100% rename from gsv/launch_gsv.sh rename to mlu_370-gpt-sovits/launch_gsv.sh diff --git a/gsv/wav/bbc_real_en.wav b/mlu_370-gpt-sovits/wav/bbc_real_en.wav similarity index 100% rename from gsv/wav/bbc_real_en.wav rename to mlu_370-gpt-sovits/wav/bbc_real_en.wav diff --git a/gsv/wav/ningguang.wav b/mlu_370-gpt-sovits/wav/ningguang.wav similarity index 100% rename from gsv/wav/ningguang.wav rename to mlu_370-gpt-sovits/wav/ningguang.wav diff --git a/gsv/wav/zh.wav b/mlu_370-gpt-sovits/wav/zh.wav similarity index 100% rename from gsv/wav/zh.wav rename to mlu_370-gpt-sovits/wav/zh.wav diff --git a/kokoro/Dockerfile_kokoro b/mlu_370-kokoro/Dockerfile_kokoro similarity index 100% rename from kokoro/Dockerfile_kokoro rename to mlu_370-kokoro/Dockerfile_kokoro diff --git a/kokoro/README.md b/mlu_370-kokoro/README.md similarity index 88% rename from kokoro/README.md rename to mlu_370-kokoro/README.md index 1d9466e..e1ee6a5 100644 --- a/kokoro/README.md +++ b/mlu_370-kokoro/README.md @@ -15,8 +15,8 @@ docker build -t tts:kokoro . -f Dockerfile_kokoro ```bash docker run -it --rm \ -v /models/Kokoro-82M-v1.1-zh:/mnt/models \ - -v /dev:/dev \ - --device=/dev/iluvatar0:/dev/iluvatar0 \ + --device=/dev/cambricon_dev0:/dev/cambricon_dev0 \ + --device=/dev/cambricon_ctl:/dev/cambricon_ctl \ -p 8080:80 \ -e MODEL_DIR=/mnt/models \ -e MODEL_NAME=kokoro-v1_1-zh.pth \ @@ -27,7 +27,6 @@ docker run -it --rm \ - `MODEL_DIR`:模型所在目录(挂载到容器内 `/mnt/models`) - `MODEL_NAME`:加载的模型文件名(通常为 `.safetensors`) - `-p 8080:80`:将容器内服务端口映射到宿主机 `8080` -- `--device=/dev/iluvatar0:/dev/iluvatar0`:指定推理设备(如 GPU/加速卡) ### 3. 测试服务 ```bash diff --git a/kokoro/constraints_kokoro.txt b/mlu_370-kokoro/constraints_kokoro.txt similarity index 100% rename from kokoro/constraints_kokoro.txt rename to mlu_370-kokoro/constraints_kokoro.txt diff --git a/kokoro/en_core_web_sm-3.8.0.tar.gz b/mlu_370-kokoro/en_core_web_sm-3.8.0.tar.gz similarity index 100% rename from kokoro/en_core_web_sm-3.8.0.tar.gz rename to mlu_370-kokoro/en_core_web_sm-3.8.0.tar.gz diff --git a/kokoro/kokoro_server.py b/mlu_370-kokoro/kokoro_server.py similarity index 100% rename from kokoro/kokoro_server.py rename to mlu_370-kokoro/kokoro_server.py diff --git a/kokoro/launch_kokoro.sh b/mlu_370-kokoro/launch_kokoro.sh similarity index 100% rename from kokoro/launch_kokoro.sh rename to mlu_370-kokoro/launch_kokoro.sh diff --git a/kokoro/requirements_kokoro.txt b/mlu_370-kokoro/requirements_kokoro.txt similarity index 100% rename from kokoro/requirements_kokoro.txt rename to mlu_370-kokoro/requirements_kokoro.txt diff --git a/matcha/Dockerfile_matcha b/mlu_370-matcha/Dockerfile_matcha similarity index 100% rename from matcha/Dockerfile_matcha rename to mlu_370-matcha/Dockerfile_matcha diff --git a/matcha/README.md b/mlu_370-matcha/README.md similarity index 87% rename from matcha/README.md rename to mlu_370-matcha/README.md index c73baed..41184c1 100644 --- a/matcha/README.md +++ b/mlu_370-matcha/README.md @@ -15,8 +15,8 @@ docker build -t tts:matcha . -f Dockerfile_matcha ```bash docker run -it --rm \ -v /models/matcha_model:/mnt/models \ - -v /dev:/dev \ - --device=/dev/iluvatar0:/dev/iluvatar0 \ + --device=/dev/cambricon_dev0:/dev/cambricon_dev0 \ + --device=/dev/cambricon_ctl:/dev/cambricon_ctl \ -p 8080:80 \ -e MODEL_DIR=/mnt/models \ -e MODEL_NAME=model.ckpt \ @@ -27,7 +27,6 @@ docker run -it --rm \ - `MODEL_DIR`:模型所在目录(挂载到容器内 `/mnt/models`) - `MODEL_NAME`:加载的模型文件名(通常为 `.safetensors`) - `-p 8080:80`:将容器内服务端口映射到宿主机 `8080` -- `--device=/dev/iluvatar0:/dev/iluvatar0`:指定推理设备(如 GPU/加速卡) ### 3. 测试服务 ```bash diff --git a/matcha/constraints_matcha.txt b/mlu_370-matcha/constraints_matcha.txt similarity index 100% rename from matcha/constraints_matcha.txt rename to mlu_370-matcha/constraints_matcha.txt diff --git a/matcha/launch_matcha.sh b/mlu_370-matcha/launch_matcha.sh similarity index 100% rename from matcha/launch_matcha.sh rename to mlu_370-matcha/launch_matcha.sh diff --git a/matcha/matcha_server.py b/mlu_370-matcha/matcha_server.py similarity index 100% rename from matcha/matcha_server.py rename to mlu_370-matcha/matcha_server.py diff --git a/matcha/requirements_matcha.txt b/mlu_370-matcha/requirements_matcha.txt similarity index 100% rename from matcha/requirements_matcha.txt rename to mlu_370-matcha/requirements_matcha.txt diff --git a/piper/Dockerfile_piper b/mlu_370-piper/Dockerfile_piper similarity index 100% rename from piper/Dockerfile_piper rename to mlu_370-piper/Dockerfile_piper diff --git a/piper/README.md b/mlu_370-piper/README.md similarity index 88% rename from piper/README.md rename to mlu_370-piper/README.md index 6fdd6cf..0486428 100644 --- a/piper/README.md +++ b/mlu_370-piper/README.md @@ -15,8 +15,8 @@ docker build -t tts:piper . -f Dockerfile_piper ```bash docker run -it --rm \ -v /models/piper_model:/mnt/models \ - -v /dev:/dev \ - --device=/dev/iluvatar0:/dev/iluvatar0 \ + --device=/dev/cambricon_dev0:/dev/cambricon_dev0 \ + --device=/dev/cambricon_ctl:/dev/cambricon_ctl \ -p 8080:80 \ -e MODEL_DIR=/mnt/models \ -e MODEL_NAME=zh/zh_CN/huayan/medium/'epoch=3269-step=2460540.ckpt' \ @@ -27,7 +27,6 @@ docker run -it --rm \ - `MODEL_DIR`:模型所在目录(挂载到容器内 `/mnt/models`) - `MODEL_NAME`:加载的模型文件名(通常为 `.safetensors`) - `-p 8080:80`:将容器内服务端口映射到宿主机 `8080` -- `--device=/dev/iluvatar0:/dev/iluvatar0`:指定推理设备(如 GPU/加速卡) ### 3. 测试服务 ```bash diff --git a/piper/constraints_piper.txt b/mlu_370-piper/constraints_piper.txt similarity index 100% rename from piper/constraints_piper.txt rename to mlu_370-piper/constraints_piper.txt diff --git a/piper/launch_piper.sh b/mlu_370-piper/launch_piper.sh similarity index 100% rename from piper/launch_piper.sh rename to mlu_370-piper/launch_piper.sh diff --git a/piper/piper/.dockerignore b/mlu_370-piper/piper/.dockerignore similarity index 100% rename from piper/piper/.dockerignore rename to mlu_370-piper/piper/.dockerignore diff --git a/piper/piper/.gitignore b/mlu_370-piper/piper/.gitignore similarity index 100% rename from piper/piper/.gitignore rename to mlu_370-piper/piper/.gitignore diff --git a/piper/piper/.projectile b/mlu_370-piper/piper/.projectile similarity index 100% rename from piper/piper/.projectile rename to mlu_370-piper/piper/.projectile diff --git a/piper/piper/CMakeLists.txt b/mlu_370-piper/piper/CMakeLists.txt similarity index 100% rename from piper/piper/CMakeLists.txt rename to mlu_370-piper/piper/CMakeLists.txt diff --git a/piper/piper/Dockerfile b/mlu_370-piper/piper/Dockerfile similarity index 100% rename from piper/piper/Dockerfile rename to mlu_370-piper/piper/Dockerfile diff --git a/piper/piper/LICENSE.md b/mlu_370-piper/piper/LICENSE.md similarity index 100% rename from piper/piper/LICENSE.md rename to mlu_370-piper/piper/LICENSE.md diff --git a/piper/piper/Makefile b/mlu_370-piper/piper/Makefile similarity index 100% rename from piper/piper/Makefile rename to mlu_370-piper/piper/Makefile diff --git a/piper/piper/README.md b/mlu_370-piper/piper/README.md similarity index 100% rename from piper/piper/README.md rename to mlu_370-piper/piper/README.md diff --git a/piper/piper/TRAINING.md b/mlu_370-piper/piper/TRAINING.md similarity index 100% rename from piper/piper/TRAINING.md rename to mlu_370-piper/piper/TRAINING.md diff --git a/piper/piper/VERSION b/mlu_370-piper/piper/VERSION similarity index 100% rename from piper/piper/VERSION rename to mlu_370-piper/piper/VERSION diff --git a/piper/piper/VOICES.md b/mlu_370-piper/piper/VOICES.md similarity index 100% rename from piper/piper/VOICES.md rename to mlu_370-piper/piper/VOICES.md diff --git a/piper/piper/etc/logo.png b/mlu_370-piper/piper/etc/logo.png similarity index 100% rename from piper/piper/etc/logo.png rename to mlu_370-piper/piper/etc/logo.png diff --git a/piper/piper/etc/logo.svg b/mlu_370-piper/piper/etc/logo.svg similarity index 100% rename from piper/piper/etc/logo.svg rename to mlu_370-piper/piper/etc/logo.svg diff --git a/piper/piper/etc/nabu_casa_sponsored.png b/mlu_370-piper/piper/etc/nabu_casa_sponsored.png similarity index 100% rename from piper/piper/etc/nabu_casa_sponsored.png rename to mlu_370-piper/piper/etc/nabu_casa_sponsored.png diff --git a/piper/piper/etc/nabu_casa_sponsored.svg b/mlu_370-piper/piper/etc/nabu_casa_sponsored.svg similarity index 100% rename from piper/piper/etc/nabu_casa_sponsored.svg rename to mlu_370-piper/piper/etc/nabu_casa_sponsored.svg diff --git a/piper/piper/etc/test_sentences/ar.txt b/mlu_370-piper/piper/etc/test_sentences/ar.txt similarity index 100% rename from piper/piper/etc/test_sentences/ar.txt rename to mlu_370-piper/piper/etc/test_sentences/ar.txt diff --git a/piper/piper/etc/test_sentences/ca.txt b/mlu_370-piper/piper/etc/test_sentences/ca.txt similarity index 100% rename from piper/piper/etc/test_sentences/ca.txt rename to mlu_370-piper/piper/etc/test_sentences/ca.txt diff --git a/piper/piper/etc/test_sentences/cs.txt b/mlu_370-piper/piper/etc/test_sentences/cs.txt similarity index 100% rename from piper/piper/etc/test_sentences/cs.txt rename to mlu_370-piper/piper/etc/test_sentences/cs.txt diff --git a/piper/piper/etc/test_sentences/cy.txt b/mlu_370-piper/piper/etc/test_sentences/cy.txt similarity index 100% rename from piper/piper/etc/test_sentences/cy.txt rename to mlu_370-piper/piper/etc/test_sentences/cy.txt diff --git a/piper/piper/etc/test_sentences/da.txt b/mlu_370-piper/piper/etc/test_sentences/da.txt similarity index 100% rename from piper/piper/etc/test_sentences/da.txt rename to mlu_370-piper/piper/etc/test_sentences/da.txt diff --git a/piper/piper/etc/test_sentences/de.txt b/mlu_370-piper/piper/etc/test_sentences/de.txt similarity index 100% rename from piper/piper/etc/test_sentences/de.txt rename to mlu_370-piper/piper/etc/test_sentences/de.txt diff --git a/piper/piper/etc/test_sentences/el.txt b/mlu_370-piper/piper/etc/test_sentences/el.txt similarity index 100% rename from piper/piper/etc/test_sentences/el.txt rename to mlu_370-piper/piper/etc/test_sentences/el.txt diff --git a/piper/piper/etc/test_sentences/en.txt b/mlu_370-piper/piper/etc/test_sentences/en.txt similarity index 100% rename from piper/piper/etc/test_sentences/en.txt rename to mlu_370-piper/piper/etc/test_sentences/en.txt diff --git a/piper/piper/etc/test_sentences/es.txt b/mlu_370-piper/piper/etc/test_sentences/es.txt similarity index 100% rename from piper/piper/etc/test_sentences/es.txt rename to mlu_370-piper/piper/etc/test_sentences/es.txt diff --git a/piper/piper/etc/test_sentences/eu.txt b/mlu_370-piper/piper/etc/test_sentences/eu.txt similarity index 100% rename from piper/piper/etc/test_sentences/eu.txt rename to mlu_370-piper/piper/etc/test_sentences/eu.txt diff --git a/piper/piper/etc/test_sentences/fa.txt b/mlu_370-piper/piper/etc/test_sentences/fa.txt similarity index 100% rename from piper/piper/etc/test_sentences/fa.txt rename to mlu_370-piper/piper/etc/test_sentences/fa.txt diff --git a/piper/piper/etc/test_sentences/fi.txt b/mlu_370-piper/piper/etc/test_sentences/fi.txt similarity index 100% rename from piper/piper/etc/test_sentences/fi.txt rename to mlu_370-piper/piper/etc/test_sentences/fi.txt diff --git a/piper/piper/etc/test_sentences/fr.txt b/mlu_370-piper/piper/etc/test_sentences/fr.txt similarity index 100% rename from piper/piper/etc/test_sentences/fr.txt rename to mlu_370-piper/piper/etc/test_sentences/fr.txt diff --git a/piper/piper/etc/test_sentences/hu.txt b/mlu_370-piper/piper/etc/test_sentences/hu.txt similarity index 100% rename from piper/piper/etc/test_sentences/hu.txt rename to mlu_370-piper/piper/etc/test_sentences/hu.txt diff --git a/piper/piper/etc/test_sentences/is.txt b/mlu_370-piper/piper/etc/test_sentences/is.txt similarity index 100% rename from piper/piper/etc/test_sentences/is.txt rename to mlu_370-piper/piper/etc/test_sentences/is.txt diff --git a/piper/piper/etc/test_sentences/it.txt b/mlu_370-piper/piper/etc/test_sentences/it.txt similarity index 100% rename from piper/piper/etc/test_sentences/it.txt rename to mlu_370-piper/piper/etc/test_sentences/it.txt diff --git a/piper/piper/etc/test_sentences/ka.txt b/mlu_370-piper/piper/etc/test_sentences/ka.txt similarity index 100% rename from piper/piper/etc/test_sentences/ka.txt rename to mlu_370-piper/piper/etc/test_sentences/ka.txt diff --git a/piper/piper/etc/test_sentences/kk.txt b/mlu_370-piper/piper/etc/test_sentences/kk.txt similarity index 100% rename from piper/piper/etc/test_sentences/kk.txt rename to mlu_370-piper/piper/etc/test_sentences/kk.txt diff --git a/piper/piper/etc/test_sentences/lb.txt b/mlu_370-piper/piper/etc/test_sentences/lb.txt similarity index 100% rename from piper/piper/etc/test_sentences/lb.txt rename to mlu_370-piper/piper/etc/test_sentences/lb.txt diff --git a/piper/piper/etc/test_sentences/lv.txt b/mlu_370-piper/piper/etc/test_sentences/lv.txt similarity index 100% rename from piper/piper/etc/test_sentences/lv.txt rename to mlu_370-piper/piper/etc/test_sentences/lv.txt diff --git a/piper/piper/etc/test_sentences/ml.txt b/mlu_370-piper/piper/etc/test_sentences/ml.txt similarity index 100% rename from piper/piper/etc/test_sentences/ml.txt rename to mlu_370-piper/piper/etc/test_sentences/ml.txt diff --git a/piper/piper/etc/test_sentences/ne.txt b/mlu_370-piper/piper/etc/test_sentences/ne.txt similarity index 100% rename from piper/piper/etc/test_sentences/ne.txt rename to mlu_370-piper/piper/etc/test_sentences/ne.txt diff --git a/piper/piper/etc/test_sentences/nl.txt b/mlu_370-piper/piper/etc/test_sentences/nl.txt similarity index 100% rename from piper/piper/etc/test_sentences/nl.txt rename to mlu_370-piper/piper/etc/test_sentences/nl.txt diff --git a/piper/piper/etc/test_sentences/no.txt b/mlu_370-piper/piper/etc/test_sentences/no.txt similarity index 100% rename from piper/piper/etc/test_sentences/no.txt rename to mlu_370-piper/piper/etc/test_sentences/no.txt diff --git a/piper/piper/etc/test_sentences/pl.txt b/mlu_370-piper/piper/etc/test_sentences/pl.txt similarity index 100% rename from piper/piper/etc/test_sentences/pl.txt rename to mlu_370-piper/piper/etc/test_sentences/pl.txt diff --git a/piper/piper/etc/test_sentences/pt.txt b/mlu_370-piper/piper/etc/test_sentences/pt.txt similarity index 100% rename from piper/piper/etc/test_sentences/pt.txt rename to mlu_370-piper/piper/etc/test_sentences/pt.txt diff --git a/piper/piper/etc/test_sentences/ro.txt b/mlu_370-piper/piper/etc/test_sentences/ro.txt similarity index 100% rename from piper/piper/etc/test_sentences/ro.txt rename to mlu_370-piper/piper/etc/test_sentences/ro.txt diff --git a/piper/piper/etc/test_sentences/ru.txt b/mlu_370-piper/piper/etc/test_sentences/ru.txt similarity index 100% rename from piper/piper/etc/test_sentences/ru.txt rename to mlu_370-piper/piper/etc/test_sentences/ru.txt diff --git a/piper/piper/etc/test_sentences/sk.txt b/mlu_370-piper/piper/etc/test_sentences/sk.txt similarity index 100% rename from piper/piper/etc/test_sentences/sk.txt rename to mlu_370-piper/piper/etc/test_sentences/sk.txt diff --git a/piper/piper/etc/test_sentences/sl.txt b/mlu_370-piper/piper/etc/test_sentences/sl.txt similarity index 100% rename from piper/piper/etc/test_sentences/sl.txt rename to mlu_370-piper/piper/etc/test_sentences/sl.txt diff --git a/piper/piper/etc/test_sentences/sr.txt b/mlu_370-piper/piper/etc/test_sentences/sr.txt similarity index 100% rename from piper/piper/etc/test_sentences/sr.txt rename to mlu_370-piper/piper/etc/test_sentences/sr.txt diff --git a/piper/piper/etc/test_sentences/sv.txt b/mlu_370-piper/piper/etc/test_sentences/sv.txt similarity index 100% rename from piper/piper/etc/test_sentences/sv.txt rename to mlu_370-piper/piper/etc/test_sentences/sv.txt diff --git a/piper/piper/etc/test_sentences/sw.txt b/mlu_370-piper/piper/etc/test_sentences/sw.txt similarity index 100% rename from piper/piper/etc/test_sentences/sw.txt rename to mlu_370-piper/piper/etc/test_sentences/sw.txt diff --git a/piper/piper/etc/test_sentences/test_ar.jsonl b/mlu_370-piper/piper/etc/test_sentences/test_ar.jsonl similarity index 100% rename from piper/piper/etc/test_sentences/test_ar.jsonl rename to mlu_370-piper/piper/etc/test_sentences/test_ar.jsonl diff --git a/piper/piper/etc/test_sentences/test_ca.jsonl b/mlu_370-piper/piper/etc/test_sentences/test_ca.jsonl similarity index 100% rename from piper/piper/etc/test_sentences/test_ca.jsonl rename to mlu_370-piper/piper/etc/test_sentences/test_ca.jsonl diff --git a/piper/piper/etc/test_sentences/test_cs.jsonl b/mlu_370-piper/piper/etc/test_sentences/test_cs.jsonl similarity index 100% rename from piper/piper/etc/test_sentences/test_cs.jsonl rename to mlu_370-piper/piper/etc/test_sentences/test_cs.jsonl diff --git a/piper/piper/etc/test_sentences/test_da.jsonl b/mlu_370-piper/piper/etc/test_sentences/test_da.jsonl similarity index 100% rename from piper/piper/etc/test_sentences/test_da.jsonl rename to mlu_370-piper/piper/etc/test_sentences/test_da.jsonl diff --git a/piper/piper/etc/test_sentences/test_de.jsonl b/mlu_370-piper/piper/etc/test_sentences/test_de.jsonl similarity index 100% rename from piper/piper/etc/test_sentences/test_de.jsonl rename to mlu_370-piper/piper/etc/test_sentences/test_de.jsonl diff --git a/piper/piper/etc/test_sentences/test_en-gb-x-rp.jsonl b/mlu_370-piper/piper/etc/test_sentences/test_en-gb-x-rp.jsonl similarity index 100% rename from piper/piper/etc/test_sentences/test_en-gb-x-rp.jsonl rename to mlu_370-piper/piper/etc/test_sentences/test_en-gb-x-rp.jsonl diff --git a/piper/piper/etc/test_sentences/test_en-us.jsonl b/mlu_370-piper/piper/etc/test_sentences/test_en-us.jsonl similarity index 100% rename from piper/piper/etc/test_sentences/test_en-us.jsonl rename to mlu_370-piper/piper/etc/test_sentences/test_en-us.jsonl diff --git a/piper/piper/etc/test_sentences/test_es-419.jsonl b/mlu_370-piper/piper/etc/test_sentences/test_es-419.jsonl similarity index 100% rename from piper/piper/etc/test_sentences/test_es-419.jsonl rename to mlu_370-piper/piper/etc/test_sentences/test_es-419.jsonl diff --git a/piper/piper/etc/test_sentences/test_es.jsonl b/mlu_370-piper/piper/etc/test_sentences/test_es.jsonl similarity index 100% rename from piper/piper/etc/test_sentences/test_es.jsonl rename to mlu_370-piper/piper/etc/test_sentences/test_es.jsonl diff --git a/piper/piper/etc/test_sentences/test_eu.jsonl b/mlu_370-piper/piper/etc/test_sentences/test_eu.jsonl similarity index 100% rename from piper/piper/etc/test_sentences/test_eu.jsonl rename to mlu_370-piper/piper/etc/test_sentences/test_eu.jsonl diff --git a/piper/piper/etc/test_sentences/test_fi.jsonl b/mlu_370-piper/piper/etc/test_sentences/test_fi.jsonl similarity index 100% rename from piper/piper/etc/test_sentences/test_fi.jsonl rename to mlu_370-piper/piper/etc/test_sentences/test_fi.jsonl diff --git a/piper/piper/etc/test_sentences/test_fr.jsonl b/mlu_370-piper/piper/etc/test_sentences/test_fr.jsonl similarity index 100% rename from piper/piper/etc/test_sentences/test_fr.jsonl rename to mlu_370-piper/piper/etc/test_sentences/test_fr.jsonl diff --git a/piper/piper/etc/test_sentences/test_hu.jsonl b/mlu_370-piper/piper/etc/test_sentences/test_hu.jsonl similarity index 100% rename from piper/piper/etc/test_sentences/test_hu.jsonl rename to mlu_370-piper/piper/etc/test_sentences/test_hu.jsonl diff --git a/piper/piper/etc/test_sentences/test_ka.jsonl b/mlu_370-piper/piper/etc/test_sentences/test_ka.jsonl similarity index 100% rename from piper/piper/etc/test_sentences/test_ka.jsonl rename to mlu_370-piper/piper/etc/test_sentences/test_ka.jsonl diff --git a/piper/piper/etc/test_sentences/test_lb.jsonl b/mlu_370-piper/piper/etc/test_sentences/test_lb.jsonl similarity index 100% rename from piper/piper/etc/test_sentences/test_lb.jsonl rename to mlu_370-piper/piper/etc/test_sentences/test_lb.jsonl diff --git a/piper/piper/etc/test_sentences/test_nb.jsonl b/mlu_370-piper/piper/etc/test_sentences/test_nb.jsonl similarity index 100% rename from piper/piper/etc/test_sentences/test_nb.jsonl rename to mlu_370-piper/piper/etc/test_sentences/test_nb.jsonl diff --git a/piper/piper/etc/test_sentences/test_ne.jsonl b/mlu_370-piper/piper/etc/test_sentences/test_ne.jsonl similarity index 100% rename from piper/piper/etc/test_sentences/test_ne.jsonl rename to mlu_370-piper/piper/etc/test_sentences/test_ne.jsonl diff --git a/piper/piper/etc/test_sentences/test_nl.jsonl b/mlu_370-piper/piper/etc/test_sentences/test_nl.jsonl similarity index 100% rename from piper/piper/etc/test_sentences/test_nl.jsonl rename to mlu_370-piper/piper/etc/test_sentences/test_nl.jsonl diff --git a/piper/piper/etc/test_sentences/test_pl.jsonl b/mlu_370-piper/piper/etc/test_sentences/test_pl.jsonl similarity index 100% rename from piper/piper/etc/test_sentences/test_pl.jsonl rename to mlu_370-piper/piper/etc/test_sentences/test_pl.jsonl diff --git a/piper/piper/etc/test_sentences/test_pt-br.jsonl b/mlu_370-piper/piper/etc/test_sentences/test_pt-br.jsonl similarity index 100% rename from piper/piper/etc/test_sentences/test_pt-br.jsonl rename to mlu_370-piper/piper/etc/test_sentences/test_pt-br.jsonl diff --git a/piper/piper/etc/test_sentences/test_pt.jsonl b/mlu_370-piper/piper/etc/test_sentences/test_pt.jsonl similarity index 100% rename from piper/piper/etc/test_sentences/test_pt.jsonl rename to mlu_370-piper/piper/etc/test_sentences/test_pt.jsonl diff --git a/piper/piper/etc/test_sentences/test_ro.jsonl b/mlu_370-piper/piper/etc/test_sentences/test_ro.jsonl similarity index 100% rename from piper/piper/etc/test_sentences/test_ro.jsonl rename to mlu_370-piper/piper/etc/test_sentences/test_ro.jsonl diff --git a/piper/piper/etc/test_sentences/test_ru.jsonl b/mlu_370-piper/piper/etc/test_sentences/test_ru.jsonl similarity index 100% rename from piper/piper/etc/test_sentences/test_ru.jsonl rename to mlu_370-piper/piper/etc/test_sentences/test_ru.jsonl diff --git a/piper/piper/etc/test_sentences/test_sk.jsonl b/mlu_370-piper/piper/etc/test_sentences/test_sk.jsonl similarity index 100% rename from piper/piper/etc/test_sentences/test_sk.jsonl rename to mlu_370-piper/piper/etc/test_sentences/test_sk.jsonl diff --git a/piper/piper/etc/test_sentences/test_sr.jsonl b/mlu_370-piper/piper/etc/test_sentences/test_sr.jsonl similarity index 100% rename from piper/piper/etc/test_sentences/test_sr.jsonl rename to mlu_370-piper/piper/etc/test_sentences/test_sr.jsonl diff --git a/piper/piper/etc/test_sentences/test_sw.jsonl b/mlu_370-piper/piper/etc/test_sentences/test_sw.jsonl similarity index 100% rename from piper/piper/etc/test_sentences/test_sw.jsonl rename to mlu_370-piper/piper/etc/test_sentences/test_sw.jsonl diff --git a/piper/piper/etc/test_sentences/test_tr.jsonl b/mlu_370-piper/piper/etc/test_sentences/test_tr.jsonl similarity index 100% rename from piper/piper/etc/test_sentences/test_tr.jsonl rename to mlu_370-piper/piper/etc/test_sentences/test_tr.jsonl diff --git a/piper/piper/etc/test_sentences/test_uk.jsonl b/mlu_370-piper/piper/etc/test_sentences/test_uk.jsonl similarity index 100% rename from piper/piper/etc/test_sentences/test_uk.jsonl rename to mlu_370-piper/piper/etc/test_sentences/test_uk.jsonl diff --git a/piper/piper/etc/test_sentences/test_vi.jsonl b/mlu_370-piper/piper/etc/test_sentences/test_vi.jsonl similarity index 100% rename from piper/piper/etc/test_sentences/test_vi.jsonl rename to mlu_370-piper/piper/etc/test_sentences/test_vi.jsonl diff --git a/piper/piper/etc/test_sentences/test_zh-cn.jsonl b/mlu_370-piper/piper/etc/test_sentences/test_zh-cn.jsonl similarity index 100% rename from piper/piper/etc/test_sentences/test_zh-cn.jsonl rename to mlu_370-piper/piper/etc/test_sentences/test_zh-cn.jsonl diff --git a/piper/piper/etc/test_sentences/tr.txt b/mlu_370-piper/piper/etc/test_sentences/tr.txt similarity index 100% rename from piper/piper/etc/test_sentences/tr.txt rename to mlu_370-piper/piper/etc/test_sentences/tr.txt diff --git a/piper/piper/etc/test_sentences/uk.txt b/mlu_370-piper/piper/etc/test_sentences/uk.txt similarity index 100% rename from piper/piper/etc/test_sentences/uk.txt rename to mlu_370-piper/piper/etc/test_sentences/uk.txt diff --git a/piper/piper/etc/test_sentences/vi.txt b/mlu_370-piper/piper/etc/test_sentences/vi.txt similarity index 100% rename from piper/piper/etc/test_sentences/vi.txt rename to mlu_370-piper/piper/etc/test_sentences/vi.txt diff --git a/piper/piper/etc/test_sentences/zh.txt b/mlu_370-piper/piper/etc/test_sentences/zh.txt similarity index 100% rename from piper/piper/etc/test_sentences/zh.txt rename to mlu_370-piper/piper/etc/test_sentences/zh.txt diff --git a/piper/piper/etc/test_voice.onnx b/mlu_370-piper/piper/etc/test_voice.onnx similarity index 100% rename from piper/piper/etc/test_voice.onnx rename to mlu_370-piper/piper/etc/test_voice.onnx diff --git a/piper/piper/etc/test_voice.onnx.json b/mlu_370-piper/piper/etc/test_voice.onnx.json similarity index 100% rename from piper/piper/etc/test_voice.onnx.json rename to mlu_370-piper/piper/etc/test_voice.onnx.json diff --git a/piper/piper/notebooks/lng/0.txt b/mlu_370-piper/piper/notebooks/lng/0.txt similarity index 100% rename from piper/piper/notebooks/lng/0.txt rename to mlu_370-piper/piper/notebooks/lng/0.txt diff --git a/piper/piper/notebooks/lng/es.lang b/mlu_370-piper/piper/notebooks/lng/es.lang similarity index 100% rename from piper/piper/notebooks/lng/es.lang rename to mlu_370-piper/piper/notebooks/lng/es.lang diff --git a/piper/piper/notebooks/lng/guía de traducción.txt b/mlu_370-piper/piper/notebooks/lng/guía de traducción.txt similarity index 100% rename from piper/piper/notebooks/lng/guía de traducción.txt rename to mlu_370-piper/piper/notebooks/lng/guía de traducción.txt diff --git a/piper/piper/notebooks/lng/translation guide.txt b/mlu_370-piper/piper/notebooks/lng/translation guide.txt similarity index 100% rename from piper/piper/notebooks/lng/translation guide.txt rename to mlu_370-piper/piper/notebooks/lng/translation guide.txt diff --git a/piper/piper/notebooks/piper_inference_(ONNX).ipynb b/mlu_370-piper/piper/notebooks/piper_inference_(ONNX).ipynb similarity index 100% rename from piper/piper/notebooks/piper_inference_(ONNX).ipynb rename to mlu_370-piper/piper/notebooks/piper_inference_(ONNX).ipynb diff --git a/piper/piper/notebooks/piper_inference_(ckpt).ipynb b/mlu_370-piper/piper/notebooks/piper_inference_(ckpt).ipynb similarity index 100% rename from piper/piper/notebooks/piper_inference_(ckpt).ipynb rename to mlu_370-piper/piper/notebooks/piper_inference_(ckpt).ipynb diff --git a/piper/piper/notebooks/piper_model_exporter.ipynb b/mlu_370-piper/piper/notebooks/piper_model_exporter.ipynb similarity index 100% rename from piper/piper/notebooks/piper_model_exporter.ipynb rename to mlu_370-piper/piper/notebooks/piper_model_exporter.ipynb diff --git a/piper/piper/notebooks/piper_multilenguaje_cuaderno_de_entrenamiento.ipynb b/mlu_370-piper/piper/notebooks/piper_multilenguaje_cuaderno_de_entrenamiento.ipynb similarity index 100% rename from piper/piper/notebooks/piper_multilenguaje_cuaderno_de_entrenamiento.ipynb rename to mlu_370-piper/piper/notebooks/piper_multilenguaje_cuaderno_de_entrenamiento.ipynb diff --git a/piper/piper/notebooks/piper_multilingual_training_notebook.ipynb b/mlu_370-piper/piper/notebooks/piper_multilingual_training_notebook.ipynb similarity index 100% rename from piper/piper/notebooks/piper_multilingual_training_notebook.ipynb rename to mlu_370-piper/piper/notebooks/piper_multilingual_training_notebook.ipynb diff --git a/piper/piper/notebooks/pretrained_models.json b/mlu_370-piper/piper/notebooks/pretrained_models.json similarity index 100% rename from piper/piper/notebooks/pretrained_models.json rename to mlu_370-piper/piper/notebooks/pretrained_models.json diff --git a/piper/piper/notebooks/translator.py b/mlu_370-piper/piper/notebooks/translator.py similarity index 100% rename from piper/piper/notebooks/translator.py rename to mlu_370-piper/piper/notebooks/translator.py diff --git a/piper/piper/notebooks/wav/en/downloaded.wav b/mlu_370-piper/piper/notebooks/wav/en/downloaded.wav similarity index 100% rename from piper/piper/notebooks/wav/en/downloaded.wav rename to mlu_370-piper/piper/notebooks/wav/en/downloaded.wav diff --git a/piper/piper/notebooks/wav/en/downloading.wav b/mlu_370-piper/piper/notebooks/wav/en/downloading.wav similarity index 100% rename from piper/piper/notebooks/wav/en/downloading.wav rename to mlu_370-piper/piper/notebooks/wav/en/downloading.wav diff --git a/piper/piper/notebooks/wav/en/dwnerror.wav b/mlu_370-piper/piper/notebooks/wav/en/dwnerror.wav similarity index 100% rename from piper/piper/notebooks/wav/en/dwnerror.wav rename to mlu_370-piper/piper/notebooks/wav/en/dwnerror.wav diff --git a/piper/piper/notebooks/wav/en/exit.wav b/mlu_370-piper/piper/notebooks/wav/en/exit.wav similarity index 100% rename from piper/piper/notebooks/wav/en/exit.wav rename to mlu_370-piper/piper/notebooks/wav/en/exit.wav diff --git a/piper/piper/notebooks/wav/en/gpuavailable.wav b/mlu_370-piper/piper/notebooks/wav/en/gpuavailable.wav similarity index 100% rename from piper/piper/notebooks/wav/en/gpuavailable.wav rename to mlu_370-piper/piper/notebooks/wav/en/gpuavailable.wav diff --git a/piper/piper/notebooks/wav/en/installed.wav b/mlu_370-piper/piper/notebooks/wav/en/installed.wav similarity index 100% rename from piper/piper/notebooks/wav/en/installed.wav rename to mlu_370-piper/piper/notebooks/wav/en/installed.wav diff --git a/piper/piper/notebooks/wav/en/installing.wav b/mlu_370-piper/piper/notebooks/wav/en/installing.wav similarity index 100% rename from piper/piper/notebooks/wav/en/installing.wav rename to mlu_370-piper/piper/notebooks/wav/en/installing.wav diff --git a/piper/piper/notebooks/wav/en/loaded.wav b/mlu_370-piper/piper/notebooks/wav/en/loaded.wav similarity index 100% rename from piper/piper/notebooks/wav/en/loaded.wav rename to mlu_370-piper/piper/notebooks/wav/en/loaded.wav diff --git a/piper/piper/notebooks/wav/en/multispeaker.wav b/mlu_370-piper/piper/notebooks/wav/en/multispeaker.wav similarity index 100% rename from piper/piper/notebooks/wav/en/multispeaker.wav rename to mlu_370-piper/piper/notebooks/wav/en/multispeaker.wav diff --git a/piper/piper/notebooks/wav/en/nogpu.wav b/mlu_370-piper/piper/notebooks/wav/en/nogpu.wav similarity index 100% rename from piper/piper/notebooks/wav/en/nogpu.wav rename to mlu_370-piper/piper/notebooks/wav/en/nogpu.wav diff --git a/piper/piper/notebooks/wav/en/noid.wav b/mlu_370-piper/piper/notebooks/wav/en/noid.wav similarity index 100% rename from piper/piper/notebooks/wav/en/noid.wav rename to mlu_370-piper/piper/notebooks/wav/en/noid.wav diff --git a/piper/piper/notebooks/wav/en/nomodel.wav b/mlu_370-piper/piper/notebooks/wav/en/nomodel.wav similarity index 100% rename from piper/piper/notebooks/wav/en/nomodel.wav rename to mlu_370-piper/piper/notebooks/wav/en/nomodel.wav diff --git a/piper/piper/notebooks/wav/en/novoices.wav b/mlu_370-piper/piper/notebooks/wav/en/novoices.wav similarity index 100% rename from piper/piper/notebooks/wav/en/novoices.wav rename to mlu_370-piper/piper/notebooks/wav/en/novoices.wav diff --git a/piper/piper/notebooks/wav/en/selectmodel.wav b/mlu_370-piper/piper/notebooks/wav/en/selectmodel.wav similarity index 100% rename from piper/piper/notebooks/wav/en/selectmodel.wav rename to mlu_370-piper/piper/notebooks/wav/en/selectmodel.wav diff --git a/piper/piper/notebooks/wav/en/starting.wav b/mlu_370-piper/piper/notebooks/wav/en/starting.wav similarity index 100% rename from piper/piper/notebooks/wav/en/starting.wav rename to mlu_370-piper/piper/notebooks/wav/en/starting.wav diff --git a/piper/piper/notebooks/wav/en/success.wav b/mlu_370-piper/piper/notebooks/wav/en/success.wav similarity index 100% rename from piper/piper/notebooks/wav/en/success.wav rename to mlu_370-piper/piper/notebooks/wav/en/success.wav diff --git a/piper/piper/notebooks/wav/en/waiting.wav b/mlu_370-piper/piper/notebooks/wav/en/waiting.wav similarity index 100% rename from piper/piper/notebooks/wav/en/waiting.wav rename to mlu_370-piper/piper/notebooks/wav/en/waiting.wav diff --git a/piper/piper/notebooks/wav/es/downloaded.wav b/mlu_370-piper/piper/notebooks/wav/es/downloaded.wav similarity index 100% rename from piper/piper/notebooks/wav/es/downloaded.wav rename to mlu_370-piper/piper/notebooks/wav/es/downloaded.wav diff --git a/piper/piper/notebooks/wav/es/downloading.wav b/mlu_370-piper/piper/notebooks/wav/es/downloading.wav similarity index 100% rename from piper/piper/notebooks/wav/es/downloading.wav rename to mlu_370-piper/piper/notebooks/wav/es/downloading.wav diff --git a/piper/piper/notebooks/wav/es/dwnerror.wav b/mlu_370-piper/piper/notebooks/wav/es/dwnerror.wav similarity index 100% rename from piper/piper/notebooks/wav/es/dwnerror.wav rename to mlu_370-piper/piper/notebooks/wav/es/dwnerror.wav diff --git a/piper/piper/notebooks/wav/es/exit.wav b/mlu_370-piper/piper/notebooks/wav/es/exit.wav similarity index 100% rename from piper/piper/notebooks/wav/es/exit.wav rename to mlu_370-piper/piper/notebooks/wav/es/exit.wav diff --git a/piper/piper/notebooks/wav/es/gpuavailable.wav b/mlu_370-piper/piper/notebooks/wav/es/gpuavailable.wav similarity index 100% rename from piper/piper/notebooks/wav/es/gpuavailable.wav rename to mlu_370-piper/piper/notebooks/wav/es/gpuavailable.wav diff --git a/piper/piper/notebooks/wav/es/installed.wav b/mlu_370-piper/piper/notebooks/wav/es/installed.wav similarity index 100% rename from piper/piper/notebooks/wav/es/installed.wav rename to mlu_370-piper/piper/notebooks/wav/es/installed.wav diff --git a/piper/piper/notebooks/wav/es/installing.wav b/mlu_370-piper/piper/notebooks/wav/es/installing.wav similarity index 100% rename from piper/piper/notebooks/wav/es/installing.wav rename to mlu_370-piper/piper/notebooks/wav/es/installing.wav diff --git a/piper/piper/notebooks/wav/es/loaded.wav b/mlu_370-piper/piper/notebooks/wav/es/loaded.wav similarity index 100% rename from piper/piper/notebooks/wav/es/loaded.wav rename to mlu_370-piper/piper/notebooks/wav/es/loaded.wav diff --git a/piper/piper/notebooks/wav/es/multispeaker.wav b/mlu_370-piper/piper/notebooks/wav/es/multispeaker.wav similarity index 100% rename from piper/piper/notebooks/wav/es/multispeaker.wav rename to mlu_370-piper/piper/notebooks/wav/es/multispeaker.wav diff --git a/piper/piper/notebooks/wav/es/nogpu.wav b/mlu_370-piper/piper/notebooks/wav/es/nogpu.wav similarity index 100% rename from piper/piper/notebooks/wav/es/nogpu.wav rename to mlu_370-piper/piper/notebooks/wav/es/nogpu.wav diff --git a/piper/piper/notebooks/wav/es/noid.wav b/mlu_370-piper/piper/notebooks/wav/es/noid.wav similarity index 100% rename from piper/piper/notebooks/wav/es/noid.wav rename to mlu_370-piper/piper/notebooks/wav/es/noid.wav diff --git a/piper/piper/notebooks/wav/es/nomodel.wav b/mlu_370-piper/piper/notebooks/wav/es/nomodel.wav similarity index 100% rename from piper/piper/notebooks/wav/es/nomodel.wav rename to mlu_370-piper/piper/notebooks/wav/es/nomodel.wav diff --git a/piper/piper/notebooks/wav/es/novoices.wav b/mlu_370-piper/piper/notebooks/wav/es/novoices.wav similarity index 100% rename from piper/piper/notebooks/wav/es/novoices.wav rename to mlu_370-piper/piper/notebooks/wav/es/novoices.wav diff --git a/piper/piper/notebooks/wav/es/selectmodel.wav b/mlu_370-piper/piper/notebooks/wav/es/selectmodel.wav similarity index 100% rename from piper/piper/notebooks/wav/es/selectmodel.wav rename to mlu_370-piper/piper/notebooks/wav/es/selectmodel.wav diff --git a/piper/piper/script/generate_supported_languages.py b/mlu_370-piper/piper/script/generate_supported_languages.py similarity index 100% rename from piper/piper/script/generate_supported_languages.py rename to mlu_370-piper/piper/script/generate_supported_languages.py diff --git a/piper/piper/script/generate_voices_md.py b/mlu_370-piper/piper/script/generate_voices_md.py similarity index 100% rename from piper/piper/script/generate_voices_md.py rename to mlu_370-piper/piper/script/generate_voices_md.py diff --git a/piper/piper/src/benchmark/benchmark_generator.py b/mlu_370-piper/piper/src/benchmark/benchmark_generator.py similarity index 100% rename from piper/piper/src/benchmark/benchmark_generator.py rename to mlu_370-piper/piper/src/benchmark/benchmark_generator.py diff --git a/piper/piper/src/benchmark/benchmark_onnx.py b/mlu_370-piper/piper/src/benchmark/benchmark_onnx.py similarity index 100% rename from piper/piper/src/benchmark/benchmark_onnx.py rename to mlu_370-piper/piper/src/benchmark/benchmark_onnx.py diff --git a/piper/piper/src/benchmark/benchmark_torchscript.py b/mlu_370-piper/piper/src/benchmark/benchmark_torchscript.py similarity index 100% rename from piper/piper/src/benchmark/benchmark_torchscript.py rename to mlu_370-piper/piper/src/benchmark/benchmark_torchscript.py diff --git a/piper/piper/src/benchmark/requirements.txt b/mlu_370-piper/piper/src/benchmark/requirements.txt similarity index 100% rename from piper/piper/src/benchmark/requirements.txt rename to mlu_370-piper/piper/src/benchmark/requirements.txt diff --git a/piper/piper/src/cpp/json.hpp b/mlu_370-piper/piper/src/cpp/json.hpp similarity index 100% rename from piper/piper/src/cpp/json.hpp rename to mlu_370-piper/piper/src/cpp/json.hpp diff --git a/piper/piper/src/cpp/main.cpp b/mlu_370-piper/piper/src/cpp/main.cpp similarity index 100% rename from piper/piper/src/cpp/main.cpp rename to mlu_370-piper/piper/src/cpp/main.cpp diff --git a/piper/piper/src/cpp/piper.cpp b/mlu_370-piper/piper/src/cpp/piper.cpp similarity index 100% rename from piper/piper/src/cpp/piper.cpp rename to mlu_370-piper/piper/src/cpp/piper.cpp diff --git a/piper/piper/src/cpp/piper.hpp b/mlu_370-piper/piper/src/cpp/piper.hpp similarity index 100% rename from piper/piper/src/cpp/piper.hpp rename to mlu_370-piper/piper/src/cpp/piper.hpp diff --git a/piper/piper/src/cpp/test.cpp b/mlu_370-piper/piper/src/cpp/test.cpp similarity index 100% rename from piper/piper/src/cpp/test.cpp rename to mlu_370-piper/piper/src/cpp/test.cpp diff --git a/piper/piper/src/cpp/utf8.h b/mlu_370-piper/piper/src/cpp/utf8.h similarity index 100% rename from piper/piper/src/cpp/utf8.h rename to mlu_370-piper/piper/src/cpp/utf8.h diff --git a/piper/piper/src/cpp/utf8/checked.h b/mlu_370-piper/piper/src/cpp/utf8/checked.h similarity index 100% rename from piper/piper/src/cpp/utf8/checked.h rename to mlu_370-piper/piper/src/cpp/utf8/checked.h diff --git a/piper/piper/src/cpp/utf8/core.h b/mlu_370-piper/piper/src/cpp/utf8/core.h similarity index 100% rename from piper/piper/src/cpp/utf8/core.h rename to mlu_370-piper/piper/src/cpp/utf8/core.h diff --git a/piper/piper/src/cpp/utf8/cpp11.h b/mlu_370-piper/piper/src/cpp/utf8/cpp11.h similarity index 100% rename from piper/piper/src/cpp/utf8/cpp11.h rename to mlu_370-piper/piper/src/cpp/utf8/cpp11.h diff --git a/piper/piper/src/cpp/utf8/cpp17.h b/mlu_370-piper/piper/src/cpp/utf8/cpp17.h similarity index 100% rename from piper/piper/src/cpp/utf8/cpp17.h rename to mlu_370-piper/piper/src/cpp/utf8/cpp17.h diff --git a/piper/piper/src/cpp/utf8/unchecked.h b/mlu_370-piper/piper/src/cpp/utf8/unchecked.h similarity index 100% rename from piper/piper/src/cpp/utf8/unchecked.h rename to mlu_370-piper/piper/src/cpp/utf8/unchecked.h diff --git a/piper/piper/src/cpp/wavfile.hpp b/mlu_370-piper/piper/src/cpp/wavfile.hpp similarity index 100% rename from piper/piper/src/cpp/wavfile.hpp rename to mlu_370-piper/piper/src/cpp/wavfile.hpp diff --git a/piper/piper/src/python/.dockerignore b/mlu_370-piper/piper/src/python/.dockerignore similarity index 100% rename from piper/piper/src/python/.dockerignore rename to mlu_370-piper/piper/src/python/.dockerignore diff --git a/piper/piper/src/python/Dockerfile b/mlu_370-piper/piper/src/python/Dockerfile similarity index 100% rename from piper/piper/src/python/Dockerfile rename to mlu_370-piper/piper/src/python/Dockerfile diff --git a/piper/piper/src/python/README.md b/mlu_370-piper/piper/src/python/README.md similarity index 100% rename from piper/piper/src/python/README.md rename to mlu_370-piper/piper/src/python/README.md diff --git a/piper/piper/src/python/build_monotonic_align.sh b/mlu_370-piper/piper/src/python/build_monotonic_align.sh similarity index 100% rename from piper/piper/src/python/build_monotonic_align.sh rename to mlu_370-piper/piper/src/python/build_monotonic_align.sh diff --git a/piper/piper/src/python/mypy.ini b/mlu_370-piper/piper/src/python/mypy.ini similarity index 100% rename from piper/piper/src/python/mypy.ini rename to mlu_370-piper/piper/src/python/mypy.ini diff --git a/piper/piper/src/python/piper_train/.gitignore b/mlu_370-piper/piper/src/python/piper_train/.gitignore similarity index 100% rename from piper/piper/src/python/piper_train/.gitignore rename to mlu_370-piper/piper/src/python/piper_train/.gitignore diff --git a/piper/piper/src/python/piper_train/.isort.cfg b/mlu_370-piper/piper/src/python/piper_train/.isort.cfg similarity index 100% rename from piper/piper/src/python/piper_train/.isort.cfg rename to mlu_370-piper/piper/src/python/piper_train/.isort.cfg diff --git a/piper/piper/src/python/piper_train/VERSION b/mlu_370-piper/piper/src/python/piper_train/VERSION similarity index 100% rename from piper/piper/src/python/piper_train/VERSION rename to mlu_370-piper/piper/src/python/piper_train/VERSION diff --git a/piper/piper/src/python/piper_train/__init__.py b/mlu_370-piper/piper/src/python/piper_train/__init__.py similarity index 100% rename from piper/piper/src/python/piper_train/__init__.py rename to mlu_370-piper/piper/src/python/piper_train/__init__.py diff --git a/piper/piper/src/python/piper_train/__main__.py b/mlu_370-piper/piper/src/python/piper_train/__main__.py similarity index 100% rename from piper/piper/src/python/piper_train/__main__.py rename to mlu_370-piper/piper/src/python/piper_train/__main__.py diff --git a/piper/piper/src/python/piper_train/_resources.py b/mlu_370-piper/piper/src/python/piper_train/_resources.py similarity index 100% rename from piper/piper/src/python/piper_train/_resources.py rename to mlu_370-piper/piper/src/python/piper_train/_resources.py diff --git a/piper/piper/src/python/piper_train/check_phonemes.py b/mlu_370-piper/piper/src/python/piper_train/check_phonemes.py similarity index 100% rename from piper/piper/src/python/piper_train/check_phonemes.py rename to mlu_370-piper/piper/src/python/piper_train/check_phonemes.py diff --git a/piper/piper/src/python/piper_train/clean_cached_audio.py b/mlu_370-piper/piper/src/python/piper_train/clean_cached_audio.py similarity index 100% rename from piper/piper/src/python/piper_train/clean_cached_audio.py rename to mlu_370-piper/piper/src/python/piper_train/clean_cached_audio.py diff --git a/piper/piper/src/python/piper_train/export_generator.py b/mlu_370-piper/piper/src/python/piper_train/export_generator.py similarity index 100% rename from piper/piper/src/python/piper_train/export_generator.py rename to mlu_370-piper/piper/src/python/piper_train/export_generator.py diff --git a/piper/piper/src/python/piper_train/export_onnx.py b/mlu_370-piper/piper/src/python/piper_train/export_onnx.py similarity index 100% rename from piper/piper/src/python/piper_train/export_onnx.py rename to mlu_370-piper/piper/src/python/piper_train/export_onnx.py diff --git a/piper/piper/src/python/piper_train/export_onnx_streaming.py b/mlu_370-piper/piper/src/python/piper_train/export_onnx_streaming.py similarity index 100% rename from piper/piper/src/python/piper_train/export_onnx_streaming.py rename to mlu_370-piper/piper/src/python/piper_train/export_onnx_streaming.py diff --git a/piper/piper/src/python/piper_train/export_torchscript.py b/mlu_370-piper/piper/src/python/piper_train/export_torchscript.py similarity index 100% rename from piper/piper/src/python/piper_train/export_torchscript.py rename to mlu_370-piper/piper/src/python/piper_train/export_torchscript.py diff --git a/piper/piper/src/python/piper_train/filter_utterances.py b/mlu_370-piper/piper/src/python/piper_train/filter_utterances.py similarity index 100% rename from piper/piper/src/python/piper_train/filter_utterances.py rename to mlu_370-piper/piper/src/python/piper_train/filter_utterances.py diff --git a/piper/piper/src/python/piper_train/infer.py b/mlu_370-piper/piper/src/python/piper_train/infer.py similarity index 100% rename from piper/piper/src/python/piper_train/infer.py rename to mlu_370-piper/piper/src/python/piper_train/infer.py diff --git a/piper/piper/src/python/piper_train/infer_generator.py b/mlu_370-piper/piper/src/python/piper_train/infer_generator.py similarity index 100% rename from piper/piper/src/python/piper_train/infer_generator.py rename to mlu_370-piper/piper/src/python/piper_train/infer_generator.py diff --git a/piper/piper/src/python/piper_train/infer_onnx.py b/mlu_370-piper/piper/src/python/piper_train/infer_onnx.py similarity index 100% rename from piper/piper/src/python/piper_train/infer_onnx.py rename to mlu_370-piper/piper/src/python/piper_train/infer_onnx.py diff --git a/piper/piper/src/python/piper_train/infer_onnx_streaming.py b/mlu_370-piper/piper/src/python/piper_train/infer_onnx_streaming.py similarity index 100% rename from piper/piper/src/python/piper_train/infer_onnx_streaming.py rename to mlu_370-piper/piper/src/python/piper_train/infer_onnx_streaming.py diff --git a/piper/piper/src/python/piper_train/infer_torchscript.py b/mlu_370-piper/piper/src/python/piper_train/infer_torchscript.py similarity index 100% rename from piper/piper/src/python/piper_train/infer_torchscript.py rename to mlu_370-piper/piper/src/python/piper_train/infer_torchscript.py diff --git a/piper/piper/src/python/piper_train/norm_audio/__init__.py b/mlu_370-piper/piper/src/python/piper_train/norm_audio/__init__.py similarity index 100% rename from piper/piper/src/python/piper_train/norm_audio/__init__.py rename to mlu_370-piper/piper/src/python/piper_train/norm_audio/__init__.py diff --git a/piper/piper/src/python/piper_train/norm_audio/models/silero_vad.onnx b/mlu_370-piper/piper/src/python/piper_train/norm_audio/models/silero_vad.onnx similarity index 100% rename from piper/piper/src/python/piper_train/norm_audio/models/silero_vad.onnx rename to mlu_370-piper/piper/src/python/piper_train/norm_audio/models/silero_vad.onnx diff --git a/piper/piper/src/python/piper_train/norm_audio/trim.py b/mlu_370-piper/piper/src/python/piper_train/norm_audio/trim.py similarity index 100% rename from piper/piper/src/python/piper_train/norm_audio/trim.py rename to mlu_370-piper/piper/src/python/piper_train/norm_audio/trim.py diff --git a/piper/piper/src/python/piper_train/norm_audio/vad.py b/mlu_370-piper/piper/src/python/piper_train/norm_audio/vad.py similarity index 100% rename from piper/piper/src/python/piper_train/norm_audio/vad.py rename to mlu_370-piper/piper/src/python/piper_train/norm_audio/vad.py diff --git a/piper/piper/src/python/piper_train/preprocess.py b/mlu_370-piper/piper/src/python/piper_train/preprocess.py similarity index 100% rename from piper/piper/src/python/piper_train/preprocess.py rename to mlu_370-piper/piper/src/python/piper_train/preprocess.py diff --git a/piper/piper/src/python/piper_train/py.typed b/mlu_370-piper/piper/src/python/piper_train/py.typed similarity index 100% rename from piper/piper/src/python/piper_train/py.typed rename to mlu_370-piper/piper/src/python/piper_train/py.typed diff --git a/piper/piper/src/python/piper_train/pylintrc b/mlu_370-piper/piper/src/python/piper_train/pylintrc similarity index 100% rename from piper/piper/src/python/piper_train/pylintrc rename to mlu_370-piper/piper/src/python/piper_train/pylintrc diff --git a/piper/piper/src/python/piper_train/select_speaker.py b/mlu_370-piper/piper/src/python/piper_train/select_speaker.py similarity index 100% rename from piper/piper/src/python/piper_train/select_speaker.py rename to mlu_370-piper/piper/src/python/piper_train/select_speaker.py diff --git a/piper/piper/src/python/piper_train/setup.cfg b/mlu_370-piper/piper/src/python/piper_train/setup.cfg similarity index 100% rename from piper/piper/src/python/piper_train/setup.cfg rename to mlu_370-piper/piper/src/python/piper_train/setup.cfg diff --git a/piper/piper/src/python/piper_train/vits/__init__.py b/mlu_370-piper/piper/src/python/piper_train/vits/__init__.py similarity index 100% rename from piper/piper/src/python/piper_train/vits/__init__.py rename to mlu_370-piper/piper/src/python/piper_train/vits/__init__.py diff --git a/piper/piper/src/python/piper_train/vits/attentions.py b/mlu_370-piper/piper/src/python/piper_train/vits/attentions.py similarity index 100% rename from piper/piper/src/python/piper_train/vits/attentions.py rename to mlu_370-piper/piper/src/python/piper_train/vits/attentions.py diff --git a/piper/piper/src/python/piper_train/vits/commons.py b/mlu_370-piper/piper/src/python/piper_train/vits/commons.py similarity index 100% rename from piper/piper/src/python/piper_train/vits/commons.py rename to mlu_370-piper/piper/src/python/piper_train/vits/commons.py diff --git a/piper/piper/src/python/piper_train/vits/config.py b/mlu_370-piper/piper/src/python/piper_train/vits/config.py similarity index 100% rename from piper/piper/src/python/piper_train/vits/config.py rename to mlu_370-piper/piper/src/python/piper_train/vits/config.py diff --git a/piper/piper/src/python/piper_train/vits/dataset.py b/mlu_370-piper/piper/src/python/piper_train/vits/dataset.py similarity index 100% rename from piper/piper/src/python/piper_train/vits/dataset.py rename to mlu_370-piper/piper/src/python/piper_train/vits/dataset.py diff --git a/piper/piper/src/python/piper_train/vits/lightning.py b/mlu_370-piper/piper/src/python/piper_train/vits/lightning.py similarity index 100% rename from piper/piper/src/python/piper_train/vits/lightning.py rename to mlu_370-piper/piper/src/python/piper_train/vits/lightning.py diff --git a/piper/piper/src/python/piper_train/vits/losses.py b/mlu_370-piper/piper/src/python/piper_train/vits/losses.py similarity index 100% rename from piper/piper/src/python/piper_train/vits/losses.py rename to mlu_370-piper/piper/src/python/piper_train/vits/losses.py diff --git a/piper/piper/src/python/piper_train/vits/mel_processing.py b/mlu_370-piper/piper/src/python/piper_train/vits/mel_processing.py similarity index 100% rename from piper/piper/src/python/piper_train/vits/mel_processing.py rename to mlu_370-piper/piper/src/python/piper_train/vits/mel_processing.py diff --git a/piper/piper/src/python/piper_train/vits/models.py b/mlu_370-piper/piper/src/python/piper_train/vits/models.py similarity index 100% rename from piper/piper/src/python/piper_train/vits/models.py rename to mlu_370-piper/piper/src/python/piper_train/vits/models.py diff --git a/piper/piper/src/python/piper_train/vits/modules.py b/mlu_370-piper/piper/src/python/piper_train/vits/modules.py similarity index 100% rename from piper/piper/src/python/piper_train/vits/modules.py rename to mlu_370-piper/piper/src/python/piper_train/vits/modules.py diff --git a/piper/piper/src/python/piper_train/vits/monotonic_align/Makefile b/mlu_370-piper/piper/src/python/piper_train/vits/monotonic_align/Makefile similarity index 100% rename from piper/piper/src/python/piper_train/vits/monotonic_align/Makefile rename to mlu_370-piper/piper/src/python/piper_train/vits/monotonic_align/Makefile diff --git a/piper/piper/src/python/piper_train/vits/monotonic_align/__init__.py b/mlu_370-piper/piper/src/python/piper_train/vits/monotonic_align/__init__.py similarity index 100% rename from piper/piper/src/python/piper_train/vits/monotonic_align/__init__.py rename to mlu_370-piper/piper/src/python/piper_train/vits/monotonic_align/__init__.py diff --git a/piper/piper/src/python/piper_train/vits/monotonic_align/core.c b/mlu_370-piper/piper/src/python/piper_train/vits/monotonic_align/core.c similarity index 100% rename from piper/piper/src/python/piper_train/vits/monotonic_align/core.c rename to mlu_370-piper/piper/src/python/piper_train/vits/monotonic_align/core.c diff --git a/piper/piper/src/python/piper_train/vits/monotonic_align/core.pyx b/mlu_370-piper/piper/src/python/piper_train/vits/monotonic_align/core.pyx similarity index 100% rename from piper/piper/src/python/piper_train/vits/monotonic_align/core.pyx rename to mlu_370-piper/piper/src/python/piper_train/vits/monotonic_align/core.pyx diff --git a/piper/piper/src/python/piper_train/vits/monotonic_align/setup.py b/mlu_370-piper/piper/src/python/piper_train/vits/monotonic_align/setup.py similarity index 100% rename from piper/piper/src/python/piper_train/vits/monotonic_align/setup.py rename to mlu_370-piper/piper/src/python/piper_train/vits/monotonic_align/setup.py diff --git a/piper/piper/src/python/piper_train/vits/transforms.py b/mlu_370-piper/piper/src/python/piper_train/vits/transforms.py similarity index 100% rename from piper/piper/src/python/piper_train/vits/transforms.py rename to mlu_370-piper/piper/src/python/piper_train/vits/transforms.py diff --git a/piper/piper/src/python/piper_train/vits/utils.py b/mlu_370-piper/piper/src/python/piper_train/vits/utils.py similarity index 100% rename from piper/piper/src/python/piper_train/vits/utils.py rename to mlu_370-piper/piper/src/python/piper_train/vits/utils.py diff --git a/piper/piper/src/python/piper_train/vits/wavfile.py b/mlu_370-piper/piper/src/python/piper_train/vits/wavfile.py similarity index 100% rename from piper/piper/src/python/piper_train/vits/wavfile.py rename to mlu_370-piper/piper/src/python/piper_train/vits/wavfile.py diff --git a/piper/piper/src/python/piper_train/voice_conversion.py b/mlu_370-piper/piper/src/python/piper_train/voice_conversion.py similarity index 100% rename from piper/piper/src/python/piper_train/voice_conversion.py rename to mlu_370-piper/piper/src/python/piper_train/voice_conversion.py diff --git a/piper/piper/src/python/requirements.txt b/mlu_370-piper/piper/src/python/requirements.txt similarity index 100% rename from piper/piper/src/python/requirements.txt rename to mlu_370-piper/piper/src/python/requirements.txt diff --git a/piper/piper/src/python/requirements_dev.txt b/mlu_370-piper/piper/src/python/requirements_dev.txt similarity index 100% rename from piper/piper/src/python/requirements_dev.txt rename to mlu_370-piper/piper/src/python/requirements_dev.txt diff --git a/piper/piper/src/python/run-docker b/mlu_370-piper/piper/src/python/run-docker similarity index 100% rename from piper/piper/src/python/run-docker rename to mlu_370-piper/piper/src/python/run-docker diff --git a/piper/piper/src/python/scripts/check.sh b/mlu_370-piper/piper/src/python/scripts/check.sh similarity index 100% rename from piper/piper/src/python/scripts/check.sh rename to mlu_370-piper/piper/src/python/scripts/check.sh diff --git a/piper/piper/src/python/scripts/setup.sh b/mlu_370-piper/piper/src/python/scripts/setup.sh similarity index 100% rename from piper/piper/src/python/scripts/setup.sh rename to mlu_370-piper/piper/src/python/scripts/setup.sh diff --git a/piper/piper/src/python/setup.py b/mlu_370-piper/piper/src/python/setup.py similarity index 100% rename from piper/piper/src/python/setup.py rename to mlu_370-piper/piper/src/python/setup.py diff --git a/piper/piper/src/python_run/.gitignore b/mlu_370-piper/piper/src/python_run/.gitignore similarity index 100% rename from piper/piper/src/python_run/.gitignore rename to mlu_370-piper/piper/src/python_run/.gitignore diff --git a/piper/piper/src/python_run/.isort.cfg b/mlu_370-piper/piper/src/python_run/.isort.cfg similarity index 100% rename from piper/piper/src/python_run/.isort.cfg rename to mlu_370-piper/piper/src/python_run/.isort.cfg diff --git a/piper/piper/src/python_run/MANIFEST.in b/mlu_370-piper/piper/src/python_run/MANIFEST.in similarity index 100% rename from piper/piper/src/python_run/MANIFEST.in rename to mlu_370-piper/piper/src/python_run/MANIFEST.in diff --git a/piper/piper/src/python_run/README_http.md b/mlu_370-piper/piper/src/python_run/README_http.md similarity index 100% rename from piper/piper/src/python_run/README_http.md rename to mlu_370-piper/piper/src/python_run/README_http.md diff --git a/piper/piper/src/python_run/mypy.ini b/mlu_370-piper/piper/src/python_run/mypy.ini similarity index 100% rename from piper/piper/src/python_run/mypy.ini rename to mlu_370-piper/piper/src/python_run/mypy.ini diff --git a/piper/piper/src/python_run/piper/__init__.py b/mlu_370-piper/piper/src/python_run/piper/__init__.py similarity index 100% rename from piper/piper/src/python_run/piper/__init__.py rename to mlu_370-piper/piper/src/python_run/piper/__init__.py diff --git a/piper/piper/src/python_run/piper/__main__.py b/mlu_370-piper/piper/src/python_run/piper/__main__.py similarity index 100% rename from piper/piper/src/python_run/piper/__main__.py rename to mlu_370-piper/piper/src/python_run/piper/__main__.py diff --git a/piper/piper/src/python_run/piper/config.py b/mlu_370-piper/piper/src/python_run/piper/config.py similarity index 100% rename from piper/piper/src/python_run/piper/config.py rename to mlu_370-piper/piper/src/python_run/piper/config.py diff --git a/piper/piper/src/python_run/piper/const.py b/mlu_370-piper/piper/src/python_run/piper/const.py similarity index 100% rename from piper/piper/src/python_run/piper/const.py rename to mlu_370-piper/piper/src/python_run/piper/const.py diff --git a/piper/piper/src/python_run/piper/download.py b/mlu_370-piper/piper/src/python_run/piper/download.py similarity index 100% rename from piper/piper/src/python_run/piper/download.py rename to mlu_370-piper/piper/src/python_run/piper/download.py diff --git a/piper/piper/src/python_run/piper/file_hash.py b/mlu_370-piper/piper/src/python_run/piper/file_hash.py similarity index 100% rename from piper/piper/src/python_run/piper/file_hash.py rename to mlu_370-piper/piper/src/python_run/piper/file_hash.py diff --git a/piper/piper/src/python_run/piper/http_server.py b/mlu_370-piper/piper/src/python_run/piper/http_server.py similarity index 100% rename from piper/piper/src/python_run/piper/http_server.py rename to mlu_370-piper/piper/src/python_run/piper/http_server.py diff --git a/piper/piper/src/python_run/piper/util.py b/mlu_370-piper/piper/src/python_run/piper/util.py similarity index 100% rename from piper/piper/src/python_run/piper/util.py rename to mlu_370-piper/piper/src/python_run/piper/util.py diff --git a/piper/piper/src/python_run/piper/voice.py b/mlu_370-piper/piper/src/python_run/piper/voice.py similarity index 100% rename from piper/piper/src/python_run/piper/voice.py rename to mlu_370-piper/piper/src/python_run/piper/voice.py diff --git a/piper/piper/src/python_run/piper/voices.json b/mlu_370-piper/piper/src/python_run/piper/voices.json similarity index 100% rename from piper/piper/src/python_run/piper/voices.json rename to mlu_370-piper/piper/src/python_run/piper/voices.json diff --git a/piper/piper/src/python_run/py.typed b/mlu_370-piper/piper/src/python_run/py.typed similarity index 100% rename from piper/piper/src/python_run/py.typed rename to mlu_370-piper/piper/src/python_run/py.typed diff --git a/piper/piper/src/python_run/pylintrc b/mlu_370-piper/piper/src/python_run/pylintrc similarity index 100% rename from piper/piper/src/python_run/pylintrc rename to mlu_370-piper/piper/src/python_run/pylintrc diff --git a/piper/piper/src/python_run/requirements.txt b/mlu_370-piper/piper/src/python_run/requirements.txt similarity index 100% rename from piper/piper/src/python_run/requirements.txt rename to mlu_370-piper/piper/src/python_run/requirements.txt diff --git a/piper/piper/src/python_run/requirements_dev.txt b/mlu_370-piper/piper/src/python_run/requirements_dev.txt similarity index 100% rename from piper/piper/src/python_run/requirements_dev.txt rename to mlu_370-piper/piper/src/python_run/requirements_dev.txt diff --git a/piper/piper/src/python_run/requirements_gpu.txt b/mlu_370-piper/piper/src/python_run/requirements_gpu.txt similarity index 100% rename from piper/piper/src/python_run/requirements_gpu.txt rename to mlu_370-piper/piper/src/python_run/requirements_gpu.txt diff --git a/piper/piper/src/python_run/requirements_http.txt b/mlu_370-piper/piper/src/python_run/requirements_http.txt similarity index 100% rename from piper/piper/src/python_run/requirements_http.txt rename to mlu_370-piper/piper/src/python_run/requirements_http.txt diff --git a/piper/piper/src/python_run/script/format b/mlu_370-piper/piper/src/python_run/script/format similarity index 100% rename from piper/piper/src/python_run/script/format rename to mlu_370-piper/piper/src/python_run/script/format diff --git a/piper/piper/src/python_run/script/lint b/mlu_370-piper/piper/src/python_run/script/lint similarity index 100% rename from piper/piper/src/python_run/script/lint rename to mlu_370-piper/piper/src/python_run/script/lint diff --git a/piper/piper/src/python_run/script/piper b/mlu_370-piper/piper/src/python_run/script/piper similarity index 100% rename from piper/piper/src/python_run/script/piper rename to mlu_370-piper/piper/src/python_run/script/piper diff --git a/piper/piper/src/python_run/script/setup b/mlu_370-piper/piper/src/python_run/script/setup similarity index 100% rename from piper/piper/src/python_run/script/setup rename to mlu_370-piper/piper/src/python_run/script/setup diff --git a/piper/piper/src/python_run/setup.cfg b/mlu_370-piper/piper/src/python_run/setup.cfg similarity index 100% rename from piper/piper/src/python_run/setup.cfg rename to mlu_370-piper/piper/src/python_run/setup.cfg diff --git a/piper/piper/src/python_run/setup.py b/mlu_370-piper/piper/src/python_run/setup.py similarity index 100% rename from piper/piper/src/python_run/setup.py rename to mlu_370-piper/piper/src/python_run/setup.py diff --git a/piper/piper_server.py b/mlu_370-piper/piper_server.py similarity index 100% rename from piper/piper_server.py rename to mlu_370-piper/piper_server.py diff --git a/piper/requirements_piper.txt b/mlu_370-piper/requirements_piper.txt similarity index 100% rename from piper/requirements_piper.txt rename to mlu_370-piper/requirements_piper.txt