diff --git a/README.md b/README.md index 8c15c2a..ddcdb66 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ [![arXiv](https://img.shields.io/badge/arXiv-2410.06885-b31b1b.svg?logo=arXiv)](https://arxiv.org/abs/2410.06885) [![demo](https://img.shields.io/badge/GitHub-Demo-orange.svg)](https://swivid.github.io/F5-TTS/) [![hfspace](https://img.shields.io/badge/🤗-HF%20Space-yellow)](https://huggingface.co/spaces/mrfakename/E2-F5-TTS) -[![msspace](https://img.shields.io/badge/🤖-MS%20Space-blue)](https://modelscope.cn/studios/modelscope/E2-F5-TTS) +[![msspace](https://img.shields.io/badge/🤖-MS%20Space-blue)](https://modelscope.cn/studios/AI-ModelScope/E2-F5-TTS) [![lab](https://img.shields.io/badge/🏫-X--LANCE-grey?labelColor=lightgrey)](https://x-lance.sjtu.edu.cn/) [![lab](https://img.shields.io/badge/🏫-SII-grey?labelColor=lightgrey)](https://www.sii.edu.cn/) [![lab](https://img.shields.io/badge/🏫-PCL-grey?labelColor=lightgrey)](https://www.pcl.ac.cn) @@ -27,8 +27,8 @@ ### Create a separate environment if needed ```bash -# Create a python 3.10 conda env (you could also use virtualenv) -conda create -n f5-tts python=3.10 +# Create a conda env with python_version>=3.10 (you could also use virtualenv) +conda create -n f5-tts python=3.11 conda activate f5-tts ``` diff --git a/pyproject.toml b/pyproject.toml index c5cbca6..d941193 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -15,7 +15,7 @@ classifiers = [ ] dependencies = [ "accelerate>=0.33.0", - "bitsandbytes>0.37.0; platform_machine != 'arm64' and platform_system != 'Darwin'", + "bitsandbytes>0.37.0; platform_machine!='arm64' and platform_system!='Darwin'", "cached_path", "click", "datasets", @@ -25,7 +25,7 @@ dependencies = [ "jieba", "librosa", "matplotlib", - "numpy<=1.26.4", + "numpy<=1.26.4; python_version<='3.10'", "pydantic<=2.10.6", "pydub", "pypinyin", diff --git a/src/f5_tts/infer/infer_gradio.py b/src/f5_tts/infer/infer_gradio.py index f4c3aef..f7d9f75 100644 --- a/src/f5_tts/infer/infer_gradio.py +++ b/src/f5_tts/infer/infer_gradio.py @@ -943,9 +943,9 @@ with gr.Blocks() as app_credits: with gr.Blocks() as app: gr.Markdown( f""" -# E2/F5 TTS +# F5-TTS Demo Space -This is {"a local web UI for [F5 TTS](https://github.com/SWivid/F5-TTS)" if not USING_SPACES else "an online demo for [F5-TTS](https://github.com/SWivid/F5-TTS)"} with advanced batch processing support. This app supports the following TTS models: +This is {"a local web UI for [F5-TTS](https://github.com/SWivid/F5-TTS)" if not USING_SPACES else "an online demo for [F5-TTS](https://github.com/SWivid/F5-TTS)"} with advanced batch processing support. This app supports the following TTS models: * [F5-TTS](https://arxiv.org/abs/2410.06885) (A Fairytaler that Fakes Fluent and Faithful Speech with Flow Matching) * [E2 TTS](https://arxiv.org/abs/2406.18009) (Embarrassingly Easy Fully Non-Autoregressive Zero-Shot TTS)