Skip to content

Commit 186799d

Browse files
committed
remove numpy<=1.26.4 for python_version>=3.11 #1162; update links
1 parent 31bb78f commit 186799d

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[![arXiv](https://img.shields.io/badge/arXiv-2410.06885-b31b1b.svg?logo=arXiv)](https://arxiv.org/abs/2410.06885)
55
[![demo](https://img.shields.io/badge/GitHub-Demo-orange.svg)](https://swivid.github.io/F5-TTS/)
66
[![hfspace](https://img.shields.io/badge/🤗-HF%20Space-yellow)](https://huggingface.co/spaces/mrfakename/E2-F5-TTS)
7-
[![msspace](https://img.shields.io/badge/🤖-MS%20Space-blue)](https://modelscope.cn/studios/modelscope/E2-F5-TTS)
7+
[![msspace](https://img.shields.io/badge/🤖-MS%20Space-blue)](https://modelscope.cn/studios/AI-ModelScope/E2-F5-TTS)
88
[![lab](https://img.shields.io/badge/🏫-X--LANCE-grey?labelColor=lightgrey)](https://x-lance.sjtu.edu.cn/)
99
[![lab](https://img.shields.io/badge/🏫-SII-grey?labelColor=lightgrey)](https://www.sii.edu.cn/)
1010
[![lab](https://img.shields.io/badge/🏫-PCL-grey?labelColor=lightgrey)](https://www.pcl.ac.cn)
@@ -27,8 +27,8 @@
2727
### Create a separate environment if needed
2828

2929
```bash
30-
# Create a python 3.10 conda env (you could also use virtualenv)
31-
conda create -n f5-tts python=3.10
30+
# Create a conda env with python_version>=3.10 (you could also use virtualenv)
31+
conda create -n f5-tts python=3.11
3232
conda activate f5-tts
3333
```
3434

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ classifiers = [
1515
]
1616
dependencies = [
1717
"accelerate>=0.33.0",
18-
"bitsandbytes>0.37.0; platform_machine != 'arm64' and platform_system != 'Darwin'",
18+
"bitsandbytes>0.37.0; platform_machine!='arm64' and platform_system!='Darwin'",
1919
"cached_path",
2020
"click",
2121
"datasets",
@@ -25,7 +25,7 @@ dependencies = [
2525
"jieba",
2626
"librosa",
2727
"matplotlib",
28-
"numpy<=1.26.4",
28+
"numpy<=1.26.4; python_version<='3.10'",
2929
"pydantic<=2.10.6",
3030
"pydub",
3131
"pypinyin",

src/f5_tts/infer/infer_gradio.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -943,9 +943,9 @@ def clear_conversation():
943943
with gr.Blocks() as app:
944944
gr.Markdown(
945945
f"""
946-
# E2/F5 TTS
946+
# F5-TTS Demo Space
947947
948-
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:
948+
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:
949949
950950
* [F5-TTS](https://arxiv.org/abs/2410.06885) (A Fairytaler that Fakes Fluent and Faithful Speech with Flow Matching)
951951
* [E2 TTS](https://arxiv.org/abs/2406.18009) (Embarrassingly Easy Fully Non-Autoregressive Zero-Shot TTS)

0 commit comments

Comments
 (0)