CoolFace
Apppublic

prabaerode/zero-shot-tts

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
pyproject.toml62 linesDownload Raw Back to root
1[build-system]2requires = ["setuptools >= 61.0", "setuptools-scm>=8.0"]3build-backend = "setuptools.build_meta"4 5[project]6name = "f5-tts"7dynamic = ["version"]8description = "F5-TTS: A Fairytaler that Fakes Fluent and Faithful Speech with Flow Matching"9readme = "README.md"10license = {text = "MIT License"}11classifiers = [12    "License :: OSI Approved :: MIT License",13    "Operating System :: OS Independent",14    "Programming Language :: Python :: 3",15]16dependencies = [17    "accelerate>=0.33.0",18    "bitsandbytes>0.37.0",19    "cached_path",20    "click",21    "datasets",22    "ema_pytorch>=0.5.2",23    "gradio>=3.45.2",24    "jieba",25    "librosa",26    "matplotlib",27    "numpy<=1.26.4",28    "pydub",29    "pypinyin",30    "safetensors",31    "soundfile",32    "tomli",33    "torch>=2.0.0",34    "torchaudio>=2.0.0",35    "torchdiffeq",36    "tqdm>=4.65.0",37    "transformers",38    "transformers_stream_generator",39    "vocos",40    "wandb",41    "x_transformers>=1.31.14",42]43 44[project.optional-dependencies]45eval = [46    "faster_whisper==0.10.1",47    "funasr",48    "jiwer",49    "modelscope",50    "zhconv",51    "zhon",52]53 54[project.urls]55Homepage = "https://github.com/SWivid/F5-TTS"56 57[project.scripts]58"f5-tts_infer-cli" = "f5_tts.infer.infer_cli:main"59"f5-tts_infer-gradio" = "f5_tts.infer.infer_gradio:main"60"f5-tts_finetune-cli" = "f5_tts.train.finetune_cli:main"61"f5-tts_finetune-gradio" = "f5_tts.train.finetune_gradio:main"62