This is the Text-to-Speech (TTS) toolkit used by the Small Teams "Speech Generation for Indigenous Language Education" project.
-
Install Python 3.10, 3.11, or 3.12 and create a venv or a conda env for EveryVoice.
-
Install
sox
.- On Ubuntu,
sudo apt-get install sox libsox-dev
should work. - Other Linux distros should have equivalent packages.
- With Conda,
conda install sox -c conda-forge
is reliable.
- On Ubuntu,
-
Install
ffmpeg
:- On Ubuntu,
sudo apt-get install ffmpeg
should work. - Other Linux distros should have an equivalent package.
- With Conda,
conda install ffmpeg
is reliable. - Or, use the official bundles from https://www.ffmpeg.org/download.html
- On Ubuntu,
-
Install
torch
andtorchaudio
version 2.1.0 for your platform and CUDA version: follow the instructions at https://pytorch.org/get-started/locally/ but specifytorch==2.1.0 torchaudio==2.1.0
in the install command and removetorchvision
. -
Run
pip install everyvoice
First, you'll need to install conda
. Miniforge3 is a fully open-source option which is free for all users and works well. You can also use Anaconda3 or Miniconda3 if you have or can get a license.
git clone https://github.com/EveryVoiceTTS/EveryVoice.git
cd EveryVoice
git submodule update --init
To run EveryVoice, you need to create a new environment using Conda and Python 3.12, install all our dependencies and EveryVoice itself.
We have automated the procedure required to do all this in the script make-everyvoice-env
, which you can run like this:
./make-everyvoice-env --path <env-path-of-your-choice>
conda activate <env-path-of-your-choice>
Add the option --cuda CUDA_VERSION
if you need to override the default CUDA version, or --cpu
to use Torch compiled for CPU use only.
If the automated installation process does not work for you, or if you prefer to do the full installation manually, please refer to EveryVoice / Installation.
Read the full EveryVoice documentation.
In particular, read the Guides to get familiar with the whole process.
To build and view the documentation locally:
pip install -e '.[docs]'
mkdocs serve
and browse to http://127.0.0.1:8000/.
Feel free to dive in! Open an issue or submit PRs.
This repo follows the Contributor Covenant Code of Conduct.
Please make sure our standard Git hooks are activated, by running these commands in your sandbox (if you used our make-everyvoice-env
script then this step is already done for you):
pip install -e '.[dev]'
pre-commit install
gitlint install-hook
git submodule foreach 'pre-commit install'
git submodule foreach 'gitlint install-hook'
Have a look at Contributing.md for the full details on the Conventional Commit messages we prefer, our code formatting conventions, our Git hooks, and recommendations on how to make effective pull requests.
To publish a new version of the project, follow these steps:
-
Determine the Version Bump Decide whether your changes constitute a:
- Major version bump (breaking changes),
- Minor version bump (new features, backward-compatible, any change to the schema), or
- Patch version bump (bug fixes, small changes).
-
Update Version Files
- Update the
everyvoice._version
file to reflect the new version. - Keep all
submodule._version
files in sync with this version, except for thewav2vec2aligner
submodule (which can be installed separately). - Keep the
everyvoice
dependency in allsubmodule/pyproject.toml
files in sync with the everyvoice Major.minor version, except inwav2vec2aligner
. - Commit the resulting changes, including all submodules.
- Update the
-
Update the Documentation
- Make sure the documentation reflects the current state of the code.
- Look for references to the current or most recent version and update them if necessary.
-
Update Schema (for Major/Minor bumps) If you bumped a major or minor version:
- Run
everyvoice update-schema
. You may need to delete existing schema files if you get an error message, but you should only do so if you are sure that those schema files have not already been published. I.e. we might already have schema files related to an alpha release - those can be overwritten, but we should never change published schema files. - Commit the resulting changes.
- Run
-
Open a Pull Request
- Create a PR with your changes.
- Wait for tests to pass and for the PR to be merged into
main
.
-
Tag the Release After merging:
git tag -a -m vX.Y.Z vX.Y.Z git push 'vX.Y.Z'
-
Update SchemaStore (for Major/Minor bumps) Once the CI has built and released your version, if you bumped a major or minor version:
Submit a PR to SchemaStore to update the schema reference.
The only file you need to change is:
src/api/json/catalog.json
This repository draws on many other wonderful code bases. Many thanks to:
- https://github.com/nocotan/pytorch-lightning-gans
- https://github.com/rishikksh20/iSTFTNet-pytorch
- https://github.com/jik876/hifi-gan
- https://github.com/ming024/FastSpeech2
- https://github.com/MiniXC/LightningFastSpeech2
- https://github.com/DigitalPhonetics/IMS-Toucan
There are many ways to run the unit tests, if you installed EveryVoice from source:
- Run all the dev tests:
everyvoice/run_tests.py dev
oreveryvoice test dev
- Run the tests with verbose logs:
everyvoice/run_tests.py --verbose dev
- Show the names of the other suites you can run:
everyvoice/run_tests.py -h
- Run all the tests in one test file:
python -m unittest everyvoice/tests/test_<somefilename>.py
- Run one specific test case:
python -m unittest everyvoice.tests.<filename>.<class_name>.<function_name>