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
- Dockerfile +0 -1
- README_REPO.md +0 -6
- pyproject.toml +1 -1
Dockerfile
CHANGED
|
@@ -19,7 +19,6 @@ WORKDIR /workspace
|
|
| 19 |
RUN git clone https://github.com/SWivid/F5-TTS.git \
|
| 20 |
&& cd F5-TTS \
|
| 21 |
&& git submodule update --init --recursive \
|
| 22 |
-
&& sed -i '7iimport sys\nsys.path.append(os.path.dirname(os.path.abspath(__file__)))' src/third_party/BigVGAN/bigvgan.py \
|
| 23 |
&& pip install -e . --no-cache-dir
|
| 24 |
|
| 25 |
ENV SHELL=/bin/bash
|
|
|
|
| 19 |
RUN git clone https://github.com/SWivid/F5-TTS.git \
|
| 20 |
&& cd F5-TTS \
|
| 21 |
&& git submodule update --init --recursive \
|
|
|
|
| 22 |
&& pip install -e . --no-cache-dir
|
| 23 |
|
| 24 |
ENV SHELL=/bin/bash
|
README_REPO.md
CHANGED
|
@@ -46,12 +46,6 @@ cd F5-TTS
|
|
| 46 |
# git submodule update --init --recursive # (optional, if need bigvgan)
|
| 47 |
pip install -e .
|
| 48 |
```
|
| 49 |
-
If initialize submodule, you should add the following code at the beginning of `src/third_party/BigVGAN/bigvgan.py`.
|
| 50 |
-
```python
|
| 51 |
-
import os
|
| 52 |
-
import sys
|
| 53 |
-
sys.path.append(os.path.dirname(os.path.abspath(__file__)))
|
| 54 |
-
```
|
| 55 |
|
| 56 |
### 3. Docker usage
|
| 57 |
```bash
|
|
|
|
| 46 |
# git submodule update --init --recursive # (optional, if need bigvgan)
|
| 47 |
pip install -e .
|
| 48 |
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 49 |
|
| 50 |
### 3. Docker usage
|
| 51 |
```bash
|
pyproject.toml
CHANGED
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
| 4 |
|
| 5 |
[project]
|
| 6 |
name = "f5-tts"
|
| 7 |
-
version = "0.3.
|
| 8 |
description = "F5-TTS: A Fairytaler that Fakes Fluent and Faithful Speech with Flow Matching"
|
| 9 |
readme = "README.md"
|
| 10 |
license = {text = "MIT License"}
|
|
|
|
| 4 |
|
| 5 |
[project]
|
| 6 |
name = "f5-tts"
|
| 7 |
+
version = "0.3.4"
|
| 8 |
description = "F5-TTS: A Fairytaler that Fakes Fluent and Faithful Speech with Flow Matching"
|
| 9 |
readme = "README.md"
|
| 10 |
license = {text = "MIT License"}
|