diff --git a/tts/.gitignore b/ttsv/.gitignore similarity index 100% rename from tts/.gitignore rename to ttsv/.gitignore diff --git a/tts/LICENSE.md b/ttsv/LICENSE.md similarity index 100% rename from tts/LICENSE.md rename to ttsv/LICENSE.md diff --git a/tts/README.md b/ttsv/README.md similarity index 100% rename from tts/README.md rename to ttsv/README.md diff --git a/tts/__init__.py b/ttsv/__init__.py similarity index 100% rename from tts/__init__.py rename to ttsv/__init__.py diff --git a/tts/checkpoints/glow/.gitkeep b/ttsv/checkpoints/glow/.gitkeep similarity index 100% rename from tts/checkpoints/glow/.gitkeep rename to ttsv/checkpoints/glow/.gitkeep diff --git a/tts/checkpoints/hifi/.gitkeep b/ttsv/checkpoints/hifi/.gitkeep similarity index 100% rename from tts/checkpoints/hifi/.gitkeep rename to ttsv/checkpoints/hifi/.gitkeep diff --git a/tts/config/.gitkeep b/ttsv/config/.gitkeep similarity index 100% rename from tts/config/.gitkeep rename to ttsv/config/.gitkeep diff --git a/tts/config/glow/base.json b/ttsv/config/glow/base.json similarity index 100% rename from tts/config/glow/base.json rename to ttsv/config/glow/base.json diff --git a/tts/config/glow/base_blank.json b/ttsv/config/glow/base_blank.json similarity index 100% rename from tts/config/glow/base_blank.json rename to ttsv/config/glow/base_blank.json diff --git a/tts/config/hifi/config_v1.json b/ttsv/config/hifi/config_v1.json similarity index 100% rename from tts/config/hifi/config_v1.json rename to ttsv/config/hifi/config_v1.json diff --git a/tts/config/hifi/config_v2.json b/ttsv/config/hifi/config_v2.json similarity index 100% rename from tts/config/hifi/config_v2.json rename to ttsv/config/hifi/config_v2.json diff --git a/tts/config/hifi/config_v3.json b/ttsv/config/hifi/config_v3.json similarity index 100% rename from tts/config/hifi/config_v3.json rename to ttsv/config/hifi/config_v3.json diff --git a/tts/data/.gitkeep b/ttsv/data/.gitkeep similarity index 100% rename from tts/data/.gitkeep rename to ttsv/data/.gitkeep diff --git a/tts/install.sh b/ttsv/install.sh similarity index 100% rename from tts/install.sh rename to ttsv/install.sh diff --git a/tts/logs/glow/.gitkeep b/ttsv/logs/glow/.gitkeep similarity index 100% rename from tts/logs/glow/.gitkeep rename to ttsv/logs/glow/.gitkeep diff --git a/tts/logs/hifi/.gitkeep b/ttsv/logs/hifi/.gitkeep similarity index 100% rename from tts/logs/hifi/.gitkeep rename to ttsv/logs/hifi/.gitkeep diff --git a/tts/notebooks/vakyansh_tts_demo.ipynb b/ttsv/notebooks/vakyansh_tts_demo.ipynb similarity index 100% rename from tts/notebooks/vakyansh_tts_demo.ipynb rename to ttsv/notebooks/vakyansh_tts_demo.ipynb diff --git a/tts/results/api/.gitkeep b/ttsv/results/api/.gitkeep similarity index 100% rename from tts/results/api/.gitkeep rename to ttsv/results/api/.gitkeep diff --git a/tts/scripts/data/duration.sh b/ttsv/scripts/data/duration.sh similarity index 100% rename from tts/scripts/data/duration.sh rename to ttsv/scripts/data/duration.sh diff --git a/tts/scripts/data/resample.sh b/ttsv/scripts/data/resample.sh similarity index 100% rename from tts/scripts/data/resample.sh rename to ttsv/scripts/data/resample.sh diff --git a/tts/scripts/glow/prepare_data.sh b/ttsv/scripts/glow/prepare_data.sh similarity index 100% rename from tts/scripts/glow/prepare_data.sh rename to ttsv/scripts/glow/prepare_data.sh diff --git a/tts/scripts/glow/train_glow.sh b/ttsv/scripts/glow/train_glow.sh similarity index 100% rename from tts/scripts/glow/train_glow.sh rename to ttsv/scripts/glow/train_glow.sh diff --git a/tts/scripts/hifi/prepare_data.sh b/ttsv/scripts/hifi/prepare_data.sh similarity index 100% rename from tts/scripts/hifi/prepare_data.sh rename to ttsv/scripts/hifi/prepare_data.sh diff --git a/tts/scripts/hifi/train_hifi.sh b/ttsv/scripts/hifi/train_hifi.sh similarity index 100% rename from tts/scripts/hifi/train_hifi.sh rename to ttsv/scripts/hifi/train_hifi.sh diff --git a/tts/scripts/inference/advanced_infer.sh b/ttsv/scripts/inference/advanced_infer.sh similarity index 100% rename from tts/scripts/inference/advanced_infer.sh rename to ttsv/scripts/inference/advanced_infer.sh diff --git a/tts/scripts/inference/api.sh b/ttsv/scripts/inference/api.sh similarity index 100% rename from tts/scripts/inference/api.sh rename to ttsv/scripts/inference/api.sh diff --git a/tts/scripts/inference/gradio.sh b/ttsv/scripts/inference/gradio.sh similarity index 100% rename from tts/scripts/inference/gradio.sh rename to ttsv/scripts/inference/gradio.sh diff --git a/tts/scripts/inference/infer.sh b/ttsv/scripts/inference/infer.sh similarity index 100% rename from tts/scripts/inference/infer.sh rename to ttsv/scripts/inference/infer.sh diff --git a/tts/setup.py b/ttsv/setup.py similarity index 100% rename from tts/setup.py rename to ttsv/setup.py diff --git a/tts/src/glow_tts/attentions.py b/ttsv/src/glow_tts/attentions.py similarity index 100% rename from tts/src/glow_tts/attentions.py rename to ttsv/src/glow_tts/attentions.py diff --git a/tts/src/glow_tts/audio_processing.py b/ttsv/src/glow_tts/audio_processing.py similarity index 100% rename from tts/src/glow_tts/audio_processing.py rename to ttsv/src/glow_tts/audio_processing.py diff --git a/tts/src/glow_tts/commons.py b/ttsv/src/glow_tts/commons.py similarity index 100% rename from tts/src/glow_tts/commons.py rename to ttsv/src/glow_tts/commons.py diff --git a/tts/src/glow_tts/data_utils.py b/ttsv/src/glow_tts/data_utils.py similarity index 100% rename from tts/src/glow_tts/data_utils.py rename to ttsv/src/glow_tts/data_utils.py diff --git a/tts/src/glow_tts/generate_mels.py b/ttsv/src/glow_tts/generate_mels.py similarity index 100% rename from tts/src/glow_tts/generate_mels.py rename to ttsv/src/glow_tts/generate_mels.py diff --git a/tts/src/glow_tts/hifi/__init__.py b/ttsv/src/glow_tts/hifi/__init__.py similarity index 100% rename from tts/src/glow_tts/hifi/__init__.py rename to ttsv/src/glow_tts/hifi/__init__.py diff --git a/tts/src/glow_tts/hifi/env.py b/ttsv/src/glow_tts/hifi/env.py similarity index 100% rename from tts/src/glow_tts/hifi/env.py rename to ttsv/src/glow_tts/hifi/env.py diff --git a/tts/src/glow_tts/hifi/models.py b/ttsv/src/glow_tts/hifi/models.py similarity index 100% rename from tts/src/glow_tts/hifi/models.py rename to ttsv/src/glow_tts/hifi/models.py diff --git a/tts/src/glow_tts/hifi/utils.py b/ttsv/src/glow_tts/hifi/utils.py similarity index 100% rename from tts/src/glow_tts/hifi/utils.py rename to ttsv/src/glow_tts/hifi/utils.py diff --git a/tts/src/glow_tts/init.py b/ttsv/src/glow_tts/init.py similarity index 100% rename from tts/src/glow_tts/init.py rename to ttsv/src/glow_tts/init.py diff --git a/tts/src/glow_tts/models.py b/ttsv/src/glow_tts/models.py similarity index 100% rename from tts/src/glow_tts/models.py rename to ttsv/src/glow_tts/models.py diff --git a/tts/src/glow_tts/modules.py b/ttsv/src/glow_tts/modules.py similarity index 100% rename from tts/src/glow_tts/modules.py rename to ttsv/src/glow_tts/modules.py diff --git a/tts/src/glow_tts/monotonic_align/monotonic_align/__init__.py b/ttsv/src/glow_tts/monotonic_align/monotonic_align/__init__.py similarity index 100% rename from tts/src/glow_tts/monotonic_align/monotonic_align/__init__.py rename to ttsv/src/glow_tts/monotonic_align/monotonic_align/__init__.py diff --git a/tts/src/glow_tts/monotonic_align/monotonic_align/core.pyx b/ttsv/src/glow_tts/monotonic_align/monotonic_align/core.pyx similarity index 100% rename from tts/src/glow_tts/monotonic_align/monotonic_align/core.pyx rename to ttsv/src/glow_tts/monotonic_align/monotonic_align/core.pyx diff --git a/tts/src/glow_tts/monotonic_align/monotonic_align/mas.py b/ttsv/src/glow_tts/monotonic_align/monotonic_align/mas.py similarity index 100% rename from tts/src/glow_tts/monotonic_align/monotonic_align/mas.py rename to ttsv/src/glow_tts/monotonic_align/monotonic_align/mas.py diff --git a/tts/src/glow_tts/monotonic_align/pyproject.toml b/ttsv/src/glow_tts/monotonic_align/pyproject.toml similarity index 100% rename from tts/src/glow_tts/monotonic_align/pyproject.toml rename to ttsv/src/glow_tts/monotonic_align/pyproject.toml diff --git a/tts/src/glow_tts/monotonic_align/setup.py b/ttsv/src/glow_tts/monotonic_align/setup.py similarity index 100% rename from tts/src/glow_tts/monotonic_align/setup.py rename to ttsv/src/glow_tts/monotonic_align/setup.py diff --git a/tts/src/glow_tts/stft.py b/ttsv/src/glow_tts/stft.py similarity index 100% rename from tts/src/glow_tts/stft.py rename to ttsv/src/glow_tts/stft.py diff --git a/tts/src/glow_tts/t2s_fastapi.py b/ttsv/src/glow_tts/t2s_fastapi.py similarity index 100% rename from tts/src/glow_tts/t2s_fastapi.py rename to ttsv/src/glow_tts/t2s_fastapi.py diff --git a/tts/src/glow_tts/t2s_gradio.py b/ttsv/src/glow_tts/t2s_gradio.py similarity index 100% rename from tts/src/glow_tts/t2s_gradio.py rename to ttsv/src/glow_tts/t2s_gradio.py diff --git a/tts/src/glow_tts/text/__init__.py b/ttsv/src/glow_tts/text/__init__.py similarity index 100% rename from tts/src/glow_tts/text/__init__.py rename to ttsv/src/glow_tts/text/__init__.py diff --git a/tts/src/glow_tts/text/cleaners.py b/ttsv/src/glow_tts/text/cleaners.py similarity index 100% rename from tts/src/glow_tts/text/cleaners.py rename to ttsv/src/glow_tts/text/cleaners.py diff --git a/tts/src/glow_tts/text/numbers.py b/ttsv/src/glow_tts/text/numbers.py similarity index 100% rename from tts/src/glow_tts/text/numbers.py rename to ttsv/src/glow_tts/text/numbers.py diff --git a/tts/src/glow_tts/texttospeech.py b/ttsv/src/glow_tts/texttospeech.py similarity index 100% rename from tts/src/glow_tts/texttospeech.py rename to ttsv/src/glow_tts/texttospeech.py diff --git a/tts/src/glow_tts/train.py b/ttsv/src/glow_tts/train.py similarity index 100% rename from tts/src/glow_tts/train.py rename to ttsv/src/glow_tts/train.py diff --git a/tts/src/glow_tts/utils.py b/ttsv/src/glow_tts/utils.py similarity index 100% rename from tts/src/glow_tts/utils.py rename to ttsv/src/glow_tts/utils.py diff --git a/tts/src/hifi_gan/env.py b/ttsv/src/hifi_gan/env.py similarity index 100% rename from tts/src/hifi_gan/env.py rename to ttsv/src/hifi_gan/env.py diff --git a/tts/src/hifi_gan/inference.py b/ttsv/src/hifi_gan/inference.py similarity index 100% rename from tts/src/hifi_gan/inference.py rename to ttsv/src/hifi_gan/inference.py diff --git a/tts/src/hifi_gan/inference_e2e.py b/ttsv/src/hifi_gan/inference_e2e.py similarity index 100% rename from tts/src/hifi_gan/inference_e2e.py rename to ttsv/src/hifi_gan/inference_e2e.py diff --git a/tts/src/hifi_gan/meldataset.py b/ttsv/src/hifi_gan/meldataset.py similarity index 100% rename from tts/src/hifi_gan/meldataset.py rename to ttsv/src/hifi_gan/meldataset.py diff --git a/tts/src/hifi_gan/models.py b/ttsv/src/hifi_gan/models.py similarity index 100% rename from tts/src/hifi_gan/models.py rename to ttsv/src/hifi_gan/models.py diff --git a/tts/src/hifi_gan/train.py b/ttsv/src/hifi_gan/train.py similarity index 100% rename from tts/src/hifi_gan/train.py rename to ttsv/src/hifi_gan/train.py diff --git a/tts/src/hifi_gan/utils.py b/ttsv/src/hifi_gan/utils.py similarity index 100% rename from tts/src/hifi_gan/utils.py rename to ttsv/src/hifi_gan/utils.py diff --git a/tts/tts_infer/__init__.py b/ttsv/tts_infer/__init__.py similarity index 100% rename from tts/tts_infer/__init__.py rename to ttsv/tts_infer/__init__.py diff --git a/tts/tts_infer/example_inference.py b/ttsv/tts_infer/example_inference.py similarity index 100% rename from tts/tts_infer/example_inference.py rename to ttsv/tts_infer/example_inference.py diff --git a/tts/tts_infer/num_to_word_on_sent.py b/ttsv/tts_infer/num_to_word_on_sent.py similarity index 100% rename from tts/tts_infer/num_to_word_on_sent.py rename to ttsv/tts_infer/num_to_word_on_sent.py diff --git a/tts/tts_infer/requirements.txt b/ttsv/tts_infer/requirements.txt similarity index 100% rename from tts/tts_infer/requirements.txt rename to ttsv/tts_infer/requirements.txt diff --git a/tts/tts_infer/transliterate.py b/ttsv/tts_infer/transliterate.py similarity index 100% rename from tts/tts_infer/transliterate.py rename to ttsv/tts_infer/transliterate.py diff --git a/tts/tts_infer/tts.py b/ttsv/tts_infer/tts.py similarity index 100% rename from tts/tts_infer/tts.py rename to ttsv/tts_infer/tts.py diff --git a/tts/utils/__init__.py b/ttsv/utils/__init__.py similarity index 100% rename from tts/utils/__init__.py rename to ttsv/utils/__init__.py diff --git a/tts/utils/data/duration.py b/ttsv/utils/data/duration.py similarity index 100% rename from tts/utils/data/duration.py rename to ttsv/utils/data/duration.py diff --git a/tts/utils/data/resample.py b/ttsv/utils/data/resample.py similarity index 100% rename from tts/utils/data/resample.py rename to ttsv/utils/data/resample.py diff --git a/tts/utils/glow/prepare_iitm_data_glow.py b/ttsv/utils/glow/prepare_iitm_data_glow.py similarity index 100% rename from tts/utils/glow/prepare_iitm_data_glow.py rename to ttsv/utils/glow/prepare_iitm_data_glow.py diff --git a/tts/utils/glow/prepare_iitm_data_glow_en.py b/ttsv/utils/glow/prepare_iitm_data_glow_en.py similarity index 100% rename from tts/utils/glow/prepare_iitm_data_glow_en.py rename to ttsv/utils/glow/prepare_iitm_data_glow_en.py diff --git a/tts/utils/hifi/prepare_iitm_data_hifi.py b/ttsv/utils/hifi/prepare_iitm_data_hifi.py similarity index 100% rename from tts/utils/hifi/prepare_iitm_data_hifi.py rename to ttsv/utils/hifi/prepare_iitm_data_hifi.py diff --git a/tts/utils/inference/advanced_tts.py b/ttsv/utils/inference/advanced_tts.py similarity index 100% rename from tts/utils/inference/advanced_tts.py rename to ttsv/utils/inference/advanced_tts.py diff --git a/tts/utils/inference/api.py b/ttsv/utils/inference/api.py similarity index 100% rename from tts/utils/inference/api.py rename to ttsv/utils/inference/api.py diff --git a/tts/utils/inference/num_to_word_on_sent.py b/ttsv/utils/inference/num_to_word_on_sent.py similarity index 100% rename from tts/utils/inference/num_to_word_on_sent.py rename to ttsv/utils/inference/num_to_word_on_sent.py diff --git a/tts/utils/inference/run_gradio.py b/ttsv/utils/inference/run_gradio.py similarity index 100% rename from tts/utils/inference/run_gradio.py rename to ttsv/utils/inference/run_gradio.py diff --git a/tts/utils/inference/transliterate.py b/ttsv/utils/inference/transliterate.py similarity index 100% rename from tts/utils/inference/transliterate.py rename to ttsv/utils/inference/transliterate.py diff --git a/tts/utils/inference/tts.py b/ttsv/utils/inference/tts.py similarity index 100% rename from tts/utils/inference/tts.py rename to ttsv/utils/inference/tts.py