This commit is contained in:
James Betker 2022-05-17 12:15:13 -06:00
parent aef86d21bf
commit 5d5aacc38c
2 changed files with 6 additions and 2 deletions

View File

@ -7,7 +7,11 @@ Tortoise is a text-to-speech program built with the following priorities:
This repo contains all the code needed to run Tortoise TTS in inference mode. This repo contains all the code needed to run Tortoise TTS in inference mode.
### New features ### Version history
#### v2.4; 2022/5/117
- Removed CVVP model. Found that it does not, in fact, make an appreciable difference in the output.
- Add better debugging support; existing tools now spit out debug files which can be used to reproduce bad runs.
#### v2.3; 2022/5/12 #### v2.3; 2022/5/12
- New CLVP-large model for further improved decoding guidance. - New CLVP-large model for further improved decoding guidance.

View File

@ -6,7 +6,7 @@ with open("README.md", "r", encoding="utf-8") as fh:
setuptools.setup( setuptools.setup(
name="TorToiSe", name="TorToiSe",
packages=setuptools.find_packages(), packages=setuptools.find_packages(),
version="2.3.0", version="2.4.0",
author="James Betker", author="James Betker",
author_email="james@adamant.ai", author_email="james@adamant.ai",
description="A high quality multi-voice text-to-speech library", description="A high quality multi-voice text-to-speech library",