mirror of
https://github.com/coqui-ai/TTS.git
synced 2026-02-24 20:19:54 +01:00
* initial commit * Tortoise inference * revert path change * style fix * remove accidental remove * style fixes * style fixes * removed unwanted assests and deps * remove changes * remove cvvp * style fix black * added tortoise config and updated config and args, refactoring the code * added tortoise to api * Pull mel_norm from url * Use TTS cleaners * Let download model files * add ability to pass tortoise presets through coqui api * fix tests * fix style and tests * fix tts commandline for tortoise * Add config.json to tortoise * Use kwargs * Use regular model api for loading tortoise * Add load from dir to synthesizer * Fix Tortoise floats * Use model_dir when there are multiple urls * Use `synthesize` when exists * lint fixes and resolve preset bug * resolve a download bug and update model link * fix json * do tortoise inference from voice dir * fix * fix test * fix speaker id and remove assests * update inference_tests.yml * replace inference_test.yml * fix extra dir as None * fix tests * remove space * Reformat docstring * Add docs * Update docs * lint fixes --------- Co-authored-by: Eren Gölge <egolge@coqui.ai> Co-authored-by: Eren Gölge <erogol@hotmail.com>
52 lines
798 B
Plaintext
52 lines
798 B
Plaintext
# core deps
|
|
numpy==1.21.6;python_version<"3.10"
|
|
numpy;python_version=="3.10"
|
|
cython==0.29.28
|
|
scipy>=1.4.0
|
|
torch>=1.7
|
|
torchaudio
|
|
soundfile
|
|
librosa==0.10.0.*
|
|
numba==0.55.1;python_version<"3.9"
|
|
numba==0.56.4;python_version>="3.9"
|
|
inflect==5.6.0
|
|
tqdm
|
|
anyascii
|
|
pyyaml
|
|
fsspec>=2021.04.0
|
|
aiohttp
|
|
packaging
|
|
# deps for examples
|
|
flask
|
|
# deps for inference
|
|
pysbd
|
|
# deps for notebooks
|
|
umap-learn==0.5.1
|
|
pandas
|
|
# deps for training
|
|
matplotlib
|
|
# coqui stack
|
|
trainer==0.0.20
|
|
# config management
|
|
coqpit>=0.0.16
|
|
# chinese g2p deps
|
|
jieba
|
|
pypinyin
|
|
# japanese g2p deps
|
|
mecab-python3==1.0.5
|
|
unidic-lite==1.0.8
|
|
# gruut+supported langs
|
|
gruut[de,es,fr]==2.2.3
|
|
# deps for korean
|
|
jamo
|
|
nltk
|
|
g2pkk>=0.1.1
|
|
# deps for bangla
|
|
bangla==0.0.2
|
|
bnnumerizer
|
|
bnunicodenormalizer==0.1.1
|
|
|
|
#deps for tortoise
|
|
k_diffusion
|
|
einops
|
|
transformers |