mirror of
https://github.com/SWivid/F5-TTS.git
synced 2025-12-12 07:40:43 -08:00
remove numpy<=1.26.4 for python_version>=3.11 #1162; update links
This commit is contained in:
@@ -4,7 +4,7 @@
|
|||||||
[](https://arxiv.org/abs/2410.06885)
|
[](https://arxiv.org/abs/2410.06885)
|
||||||
[](https://swivid.github.io/F5-TTS/)
|
[](https://swivid.github.io/F5-TTS/)
|
||||||
[](https://huggingface.co/spaces/mrfakename/E2-F5-TTS)
|
[](https://huggingface.co/spaces/mrfakename/E2-F5-TTS)
|
||||||
[](https://modelscope.cn/studios/modelscope/E2-F5-TTS)
|
[](https://modelscope.cn/studios/AI-ModelScope/E2-F5-TTS)
|
||||||
[](https://x-lance.sjtu.edu.cn/)
|
[](https://x-lance.sjtu.edu.cn/)
|
||||||
[](https://www.sii.edu.cn/)
|
[](https://www.sii.edu.cn/)
|
||||||
[](https://www.pcl.ac.cn)
|
[](https://www.pcl.ac.cn)
|
||||||
@@ -27,8 +27,8 @@
|
|||||||
### Create a separate environment if needed
|
### Create a separate environment if needed
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
# Create a python 3.10 conda env (you could also use virtualenv)
|
# Create a conda env with python_version>=3.10 (you could also use virtualenv)
|
||||||
conda create -n f5-tts python=3.10
|
conda create -n f5-tts python=3.11
|
||||||
conda activate f5-tts
|
conda activate f5-tts
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|||||||
@@ -15,7 +15,7 @@ classifiers = [
|
|||||||
]
|
]
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"accelerate>=0.33.0",
|
"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",
|
"cached_path",
|
||||||
"click",
|
"click",
|
||||||
"datasets",
|
"datasets",
|
||||||
@@ -25,7 +25,7 @@ dependencies = [
|
|||||||
"jieba",
|
"jieba",
|
||||||
"librosa",
|
"librosa",
|
||||||
"matplotlib",
|
"matplotlib",
|
||||||
"numpy<=1.26.4",
|
"numpy<=1.26.4; python_version<='3.10'",
|
||||||
"pydantic<=2.10.6",
|
"pydantic<=2.10.6",
|
||||||
"pydub",
|
"pydub",
|
||||||
"pypinyin",
|
"pypinyin",
|
||||||
|
|||||||
@@ -943,9 +943,9 @@ with gr.Blocks() as app_credits:
|
|||||||
with gr.Blocks() as app:
|
with gr.Blocks() as app:
|
||||||
gr.Markdown(
|
gr.Markdown(
|
||||||
f"""
|
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)
|
* [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)
|
* [E2 TTS](https://arxiv.org/abs/2406.18009) (Embarrassingly Easy Fully Non-Autoregressive Zero-Shot TTS)
|
||||||
|
|||||||
Reference in New Issue
Block a user