(A fork of) a multi-voice TTS system trained with an emphasis on quality
Go to file
2024-06-19 15:27:11 -05:00
data semblance of documentation, automagic model downloading, a little saner inference results folder 2024-06-19 10:08:14 -05:00
scripts encoding mel tokens + dataset preparation 2024-06-18 10:30:54 -05:00
tortoise_tts don't pad output mel tokens to speed up diffusion (despite copying it exactly from tortoise) 2024-06-19 15:27:11 -05:00
.gitignore initial "refractoring" 2024-06-17 22:48:34 -05:00
README.md backported old fork features (kv_cache (which looking back seems like a spook), ddim sampling, etc) 2024-06-19 14:49:24 -05:00
setup.py encoding mel tokens + dataset preparation 2024-06-18 10:30:54 -05:00

TorToiSe TTS

An unofficial PyTorch re-implementation of TorToise TTS.

Almost all of the documentation and usage are carried over from my VALL-E implementation, as documentation is lacking for this implementation, as I whipped it up over the course of two days using knowledge I haven't touched in a year.

Requirements

A working PyTorch environment.

  • python3 -m venv venv && source ./venv/bin/activate is sufficient.

Install

Simply run pip install git+https://git.ecker.tech/mrq/tortoise-tts@new or pip install git+https://github.com/e-c-k-e-r/tortoise-tts.

Usage

Inferencing

Using the default settings: python3 -m tortoise_tts --yaml="./data/config.yaml" "Read verse out loud for pleasure." "./path/to/a.wav"

To inference using the included Web UI: python3 -m tortoise_tts.webui --yaml="./data/config.yaml"

  • Pass --listen 0.0.0.0:7860 if you're accessing the web UI from outside of localhost (or pass the host machine's local IP instead)

Training / Finetuning

Training is as simple as copying the reference YAML from ./data/config.yaml to any training directory of your choice (for examples: ./training/ or ./training/lora-finetune/).

A pre-processed dataset is required. Refer to the VALL-E implementation for more details.

To start the trainer, run python3 -m tortoise_tts.train --yaml="./path/to/your/training/config.yaml.

  • Type save to save whenever. Type quit to quit and save whenever. Type eval to run evaluation / validation of the model.

For training a LoRA, uncomment the loras block in your training YAML.

To-Do

  • Reimplement original inferencing through TorToiSe (as done with api.py)
    • Reimplement candidate selection with the CLVP
    • Reimplement redaction with the Wav2Vec2
  • Implement training support (without DLAS)
    • Feature parity with the VALL-E training setup with preparing a dataset ahead of time
  • Automagic offloading to CPU for unused models (for training and inferencing)
  • Automagic handling of the original weights into compatible weights
  • Reimplement added features from my original fork:
    • "Better" conditioning latents calculating
    • Use of KV-cache for the AR
    • Re-enable DDIM sampler
  • Extend the original inference routine with additional features:
    • non-float32 / mixed precision for the entire stack
    • BitsAndBytes support
      • Provided Linears technically aren't used because GPT2 uses Conv1D instead...
    • LoRAs
    • Web UI
      • Feature parity with ai-voice-cloning
        • Although I feel a lot of its features are the wrong way to go about it.
    • Additional samplers for the autoregressive model
    • Additional samplers for the diffusion model
    • BigVGAN in place of the original vocoder
    • XFormers / flash_attention_2 for the autoregressive model
      • Beyond HF's internal implementation of handling alternative attention
      • Both the AR and diffusion models also do their own attention...
    • Some vector embedding store to find the "best" utterance to pick
  • Documentation

Why?

To correct the mess I've made with forking TorToiSe TTS originally with a bunch of slopcode, and the nightmare that ai-voice-cloning turned out.

Additional features can be applied to the program through a framework of my own that I'm very familiar with.

License

Unless otherwise credited/noted in this README or within the designated Python file, this repository is licensed under AGPLv3.