drewThomasson commited on
Commit
58e6134
·
verified ·
1 Parent(s): 0c092e8

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +5 -5
README.md CHANGED
@@ -14,22 +14,22 @@ This project fine-tunes a TTS (Text-to-Speech) model using an mp3 file extracted
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
 
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
+ ### dockerimage
18
+ Fine tuned with this docker image
19
+ [FineTune Xtts Space](https://hub.docker.com/r/athomasson2/fine_tune_xtts)
20
 
21
  ### Docker Setup
22
 
23
  #### With GPU
24
  To run the training with GPU support:
25
  ```bash
26
+ docker run --gpus all -it -v ${PWD}\training:/tmp/xtts_ft/ athomasson2/fine_tune_xtts:v5
27
  ```
28
 
29
  #### Without GPU
30
  To run without GPU support:
31
  ```bash
32
+ docker run -it -v ${PWD}/training:/tmp/xtts_ft/run/training athomasson2/fine_tune_xtts:v4_cpu
33
  ```
34
 
35
  ### Notes