You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
626 B

4 years ago
  1. # Tia TTS
  2. Experimental TTS for CPU inference using Tacotron2 and Squeezewave.
  3. ## Install
  4. Initialize the submodules:
  5. `git submodule update --init --recursive`
  6. Install the python dependencies:
  7. `pip install -r requirements.txt`
  8. Copy your models into the directory. This was trained on 22khz tacotron2 and squeezewave models.
  9. Squeezewave is loaded using a state_dict so we can take advantage of the existing pretrained models provided by the paper's author while maintaining compatibility with the tweaked architecture to enable denoising without necessitating retraining the vocoder.
  10. Run the project:
  11. `python synthesize.py`