├── .gitignore ├── LICENSE ├── README.md ├── base_models └── README.md ├── lich_king ├── audio │ ├── LK Annoyed 4.wav │ ├── LK Annoyed1.wav │ ├── LK Annoyed2.wav │ ├── LK Annoyed3.wav │ ├── LK Attack 1.wav │ ├── LK Attack 2.wav │ ├── LK Attack 5.wav │ ├── LK Attack 6.wav │ ├── LK Attack3.wav │ ├── LK Attack4.wav │ ├── LK Warcry.wav │ ├── LK What1.wav │ ├── LK What2.wav │ ├── LK What4.wav │ ├── LK Yes1.wav │ ├── LK Yes2.wav │ ├── LK Yes3.wav │ ├── LK Yes4.wav │ ├── LK Yes5.wav │ └── LKWhat 3.wav ├── train.txt ├── train.yaml └── validation.txt ├── requirements.txt └── src ├── __init__.py ├── custom_tts.py ├── data_utils.py ├── dataset.py ├── dvae_network.py ├── forward_pass_utils.py ├── loss_utils.py ├── optimizer_utils.py ├── speech_to_text.py ├── train.py ├── trainer.py ├── unified_voice_network.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewsilva9/tune_tortoise_autoregressor/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewsilva9/tune_tortoise_autoregressor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewsilva9/tune_tortoise_autoregressor/HEAD/README.md -------------------------------------------------------------------------------- /base_models/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewsilva9/tune_tortoise_autoregressor/HEAD/base_models/README.md -------------------------------------------------------------------------------- /lich_king/audio/LK Annoyed 4.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewsilva9/tune_tortoise_autoregressor/HEAD/lich_king/audio/LK Annoyed 4.wav -------------------------------------------------------------------------------- /lich_king/audio/LK Annoyed1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewsilva9/tune_tortoise_autoregressor/HEAD/lich_king/audio/LK Annoyed1.wav -------------------------------------------------------------------------------- /lich_king/audio/LK Annoyed2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewsilva9/tune_tortoise_autoregressor/HEAD/lich_king/audio/LK Annoyed2.wav -------------------------------------------------------------------------------- /lich_king/audio/LK Annoyed3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewsilva9/tune_tortoise_autoregressor/HEAD/lich_king/audio/LK Annoyed3.wav -------------------------------------------------------------------------------- /lich_king/audio/LK Attack 1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewsilva9/tune_tortoise_autoregressor/HEAD/lich_king/audio/LK Attack 1.wav -------------------------------------------------------------------------------- /lich_king/audio/LK Attack 2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewsilva9/tune_tortoise_autoregressor/HEAD/lich_king/audio/LK Attack 2.wav -------------------------------------------------------------------------------- /lich_king/audio/LK Attack 5.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewsilva9/tune_tortoise_autoregressor/HEAD/lich_king/audio/LK Attack 5.wav -------------------------------------------------------------------------------- /lich_king/audio/LK Attack 6.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewsilva9/tune_tortoise_autoregressor/HEAD/lich_king/audio/LK Attack 6.wav -------------------------------------------------------------------------------- /lich_king/audio/LK Attack3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewsilva9/tune_tortoise_autoregressor/HEAD/lich_king/audio/LK Attack3.wav -------------------------------------------------------------------------------- /lich_king/audio/LK Attack4.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewsilva9/tune_tortoise_autoregressor/HEAD/lich_king/audio/LK Attack4.wav -------------------------------------------------------------------------------- /lich_king/audio/LK Warcry.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewsilva9/tune_tortoise_autoregressor/HEAD/lich_king/audio/LK Warcry.wav -------------------------------------------------------------------------------- /lich_king/audio/LK What1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewsilva9/tune_tortoise_autoregressor/HEAD/lich_king/audio/LK What1.wav -------------------------------------------------------------------------------- /lich_king/audio/LK What2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewsilva9/tune_tortoise_autoregressor/HEAD/lich_king/audio/LK What2.wav -------------------------------------------------------------------------------- /lich_king/audio/LK What4.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewsilva9/tune_tortoise_autoregressor/HEAD/lich_king/audio/LK What4.wav -------------------------------------------------------------------------------- /lich_king/audio/LK Yes1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewsilva9/tune_tortoise_autoregressor/HEAD/lich_king/audio/LK Yes1.wav -------------------------------------------------------------------------------- /lich_king/audio/LK Yes2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewsilva9/tune_tortoise_autoregressor/HEAD/lich_king/audio/LK Yes2.wav -------------------------------------------------------------------------------- /lich_king/audio/LK Yes3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewsilva9/tune_tortoise_autoregressor/HEAD/lich_king/audio/LK Yes3.wav -------------------------------------------------------------------------------- /lich_king/audio/LK Yes4.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewsilva9/tune_tortoise_autoregressor/HEAD/lich_king/audio/LK Yes4.wav -------------------------------------------------------------------------------- /lich_king/audio/LK Yes5.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewsilva9/tune_tortoise_autoregressor/HEAD/lich_king/audio/LK Yes5.wav -------------------------------------------------------------------------------- /lich_king/audio/LKWhat 3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewsilva9/tune_tortoise_autoregressor/HEAD/lich_king/audio/LKWhat 3.wav -------------------------------------------------------------------------------- /lich_king/train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewsilva9/tune_tortoise_autoregressor/HEAD/lich_king/train.txt -------------------------------------------------------------------------------- /lich_king/train.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewsilva9/tune_tortoise_autoregressor/HEAD/lich_king/train.yaml -------------------------------------------------------------------------------- /lich_king/validation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewsilva9/tune_tortoise_autoregressor/HEAD/lich_king/validation.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewsilva9/tune_tortoise_autoregressor/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Created by Andrew Silva on 11/20/23 3 | """ 4 | -------------------------------------------------------------------------------- /src/custom_tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewsilva9/tune_tortoise_autoregressor/HEAD/src/custom_tts.py -------------------------------------------------------------------------------- /src/data_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewsilva9/tune_tortoise_autoregressor/HEAD/src/data_utils.py -------------------------------------------------------------------------------- /src/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewsilva9/tune_tortoise_autoregressor/HEAD/src/dataset.py -------------------------------------------------------------------------------- /src/dvae_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewsilva9/tune_tortoise_autoregressor/HEAD/src/dvae_network.py -------------------------------------------------------------------------------- /src/forward_pass_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewsilva9/tune_tortoise_autoregressor/HEAD/src/forward_pass_utils.py -------------------------------------------------------------------------------- /src/loss_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewsilva9/tune_tortoise_autoregressor/HEAD/src/loss_utils.py -------------------------------------------------------------------------------- /src/optimizer_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewsilva9/tune_tortoise_autoregressor/HEAD/src/optimizer_utils.py -------------------------------------------------------------------------------- /src/speech_to_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewsilva9/tune_tortoise_autoregressor/HEAD/src/speech_to_text.py -------------------------------------------------------------------------------- /src/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewsilva9/tune_tortoise_autoregressor/HEAD/src/train.py -------------------------------------------------------------------------------- /src/trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewsilva9/tune_tortoise_autoregressor/HEAD/src/trainer.py -------------------------------------------------------------------------------- /src/unified_voice_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewsilva9/tune_tortoise_autoregressor/HEAD/src/unified_voice_network.py -------------------------------------------------------------------------------- /src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewsilva9/tune_tortoise_autoregressor/HEAD/src/utils.py --------------------------------------------------------------------------------