├── .gitignore ├── LICENSE ├── README.md ├── maha_tts ├── __init__.py ├── config.py ├── dataloaders │ └── __init__.py ├── inference.py ├── models │ ├── __init__.py │ ├── autoregressive.py │ ├── diff_model.py │ ├── modules.py │ └── vocoder.py ├── text │ ├── __init__.py │ ├── cleaners.py │ └── symbols.py └── utils │ ├── __init__.py │ ├── audio.py │ ├── diffusion.py │ └── stft.py ├── requirements.txt ├── setup.py └── tts.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubverse-ai/MahaTTS/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubverse-ai/MahaTTS/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubverse-ai/MahaTTS/HEAD/README.md -------------------------------------------------------------------------------- /maha_tts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubverse-ai/MahaTTS/HEAD/maha_tts/__init__.py -------------------------------------------------------------------------------- /maha_tts/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubverse-ai/MahaTTS/HEAD/maha_tts/config.py -------------------------------------------------------------------------------- /maha_tts/dataloaders/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /maha_tts/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubverse-ai/MahaTTS/HEAD/maha_tts/inference.py -------------------------------------------------------------------------------- /maha_tts/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /maha_tts/models/autoregressive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubverse-ai/MahaTTS/HEAD/maha_tts/models/autoregressive.py -------------------------------------------------------------------------------- /maha_tts/models/diff_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubverse-ai/MahaTTS/HEAD/maha_tts/models/diff_model.py -------------------------------------------------------------------------------- /maha_tts/models/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubverse-ai/MahaTTS/HEAD/maha_tts/models/modules.py -------------------------------------------------------------------------------- /maha_tts/models/vocoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubverse-ai/MahaTTS/HEAD/maha_tts/models/vocoder.py -------------------------------------------------------------------------------- /maha_tts/text/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /maha_tts/text/cleaners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubverse-ai/MahaTTS/HEAD/maha_tts/text/cleaners.py -------------------------------------------------------------------------------- /maha_tts/text/symbols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubverse-ai/MahaTTS/HEAD/maha_tts/text/symbols.py -------------------------------------------------------------------------------- /maha_tts/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /maha_tts/utils/audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubverse-ai/MahaTTS/HEAD/maha_tts/utils/audio.py -------------------------------------------------------------------------------- /maha_tts/utils/diffusion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubverse-ai/MahaTTS/HEAD/maha_tts/utils/diffusion.py -------------------------------------------------------------------------------- /maha_tts/utils/stft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubverse-ai/MahaTTS/HEAD/maha_tts/utils/stft.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubverse-ai/MahaTTS/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubverse-ai/MahaTTS/HEAD/setup.py -------------------------------------------------------------------------------- /tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubverse-ai/MahaTTS/HEAD/tts.py --------------------------------------------------------------------------------