Update README.md
Browse files
README.md
CHANGED
@@ -6,21 +6,32 @@ base_model:
|
|
6 |
- coqui/XTTS-v1
|
7 |
---
|
8 |
|
|
|
9 |
|
10 |
-
|
11 |
-
mp3 copy used for training is in files
|
12 |
|
13 |
-
|
14 |
-
https://
|
|
|
15 |
|
16 |
-
|
|
|
|
|
17 |
|
18 |
-
|
|
|
|
|
|
|
|
|
19 |
docker run -it -p 7860:7860 --gpus all --pull always --platform=linux/amd64 registry.hf.space/drewthomasson-finetune-xtts:latest python app.py
|
|
|
20 |
|
21 |
-
|
|
|
|
|
22 |
docker run -it -p 7860:7860 --pull always --platform=linux/amd64 registry.hf.space/drewthomasson-finetune-xtts:latest python app.py
|
|
|
23 |
|
24 |
-
|
25 |
-
|
26 |
-
|
|
|
6 |
- coqui/XTTS-v1
|
7 |
---
|
8 |
|
9 |
+
# Fine-Tuned Xtts Model
|
10 |
|
11 |
+
This project fine-tunes a TTS (Text-to-Speech) model using an mp3 file extracted from a YouTube video. The training was conducted on a Hugging Face Space running locally via Docker. A GPU is recommended for faster training.
|
|
|
12 |
|
13 |
+
### Training Data
|
14 |
+
- **Source Video**: [YouTube Video](https://www.youtube.com/watch?v=u6J20_Aem3Y)
|
15 |
+
- **Training Audio**: The mp3 file used for training is included in the `files` directory.
|
16 |
|
17 |
+
### Hugging Face Space
|
18 |
+
The fine-tuning process is based on the Hugging Face Space found here:
|
19 |
+
[FineTune Xtts Space](https://huggingface.co/spaces/drewThomasson/FineTune_Xtts)
|
20 |
|
21 |
+
### Docker Setup
|
22 |
+
|
23 |
+
#### With GPU
|
24 |
+
To run the training with GPU support:
|
25 |
+
```bash
|
26 |
docker run -it -p 7860:7860 --gpus all --pull always --platform=linux/amd64 registry.hf.space/drewthomasson-finetune-xtts:latest python app.py
|
27 |
+
```
|
28 |
|
29 |
+
#### Without GPU
|
30 |
+
To run without GPU support:
|
31 |
+
```bash
|
32 |
docker run -it -p 7860:7860 --pull always --platform=linux/amd64 registry.hf.space/drewthomasson-finetune-xtts:latest python app.py
|
33 |
+
```
|
34 |
|
35 |
+
### Notes
|
36 |
+
- Ensure you have a GPU available for optimal performance during training.
|
37 |
+
- The Docker image pulls the latest version each time it's run.
|