Sync from GitHub repo
Browse filesThis Space is synced from the GitHub repo: https://github.com/SWivid/F5-TTS. Please submit contributions to the Space there
- README_REPO.md +15 -2
- pyproject.toml +2 -0
README_REPO.md
CHANGED
|
@@ -46,9 +46,13 @@ cd F5-TTS
|
|
| 46 |
pip install -e .
|
| 47 |
```
|
| 48 |
|
| 49 |
-
### 3.
|
| 50 |
```bash
|
|
|
|
| 51 |
docker build -t f5tts:v1 .
|
|
|
|
|
|
|
|
|
|
| 52 |
```
|
| 53 |
|
| 54 |
|
|
@@ -99,7 +103,16 @@ f5-tts_infer-cli -c src/f5_tts/infer/examples/multi/story.toml
|
|
| 99 |
- The [Issues](https://github.com/SWivid/F5-TTS/issues?q=is%3Aissue) are very useful, please try to find the solution by properly searching the keywords of problem encountered. If no answer found, then feel free to open an issue.
|
| 100 |
|
| 101 |
|
| 102 |
-
##
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 103 |
|
| 104 |
|
| 105 |
## [Evaluation](src/f5_tts/eval)
|
|
|
|
| 46 |
pip install -e .
|
| 47 |
```
|
| 48 |
|
| 49 |
+
### 3. Docker usage
|
| 50 |
```bash
|
| 51 |
+
# Build from Dockerfile
|
| 52 |
docker build -t f5tts:v1 .
|
| 53 |
+
|
| 54 |
+
# Or pull from GitHub Container Registry
|
| 55 |
+
docker pull ghcr.io/SWivid/F5-TTS:main
|
| 56 |
```
|
| 57 |
|
| 58 |
|
|
|
|
| 103 |
- The [Issues](https://github.com/SWivid/F5-TTS/issues?q=is%3Aissue) are very useful, please try to find the solution by properly searching the keywords of problem encountered. If no answer found, then feel free to open an issue.
|
| 104 |
|
| 105 |
|
| 106 |
+
## Training
|
| 107 |
+
|
| 108 |
+
### 1. Gradio App
|
| 109 |
+
|
| 110 |
+
Read [training & finetuning guidance](src/f5_tts/train) for more instructions.
|
| 111 |
+
|
| 112 |
+
```bash
|
| 113 |
+
# Quick start with Gradio web interface
|
| 114 |
+
f5-tts_finetune-gradio
|
| 115 |
+
```
|
| 116 |
|
| 117 |
|
| 118 |
## [Evaluation](src/f5_tts/eval)
|
pyproject.toml
CHANGED
|
@@ -57,3 +57,5 @@ Homepage = "https://github.com/SWivid/F5-TTS"
|
|
| 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"
|
|
|
|
|
|
|
|
|
| 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"
|