mrfakename commited on
Commit
910037c
1 Parent(s): f499cc7

Sync from GitHub repo

Browse files

This Space is synced from the GitHub repo: https://github.com/SWivid/F5-TTS. Please submit contributions to the Space there

src/f5_tts/infer/README.md CHANGED
@@ -12,6 +12,8 @@ To avoid possible inference failures, make sure you have seen through the follow
12
  - Uppercased letters will be uttered letter by letter, so use lowercased letters for normal words.
13
  - Add some spaces (blank: " ") or punctuations (e.g. "," ".") to explicitly introduce some pauses.
14
  - Preprocess numbers to Chinese letters if you want to have them read in Chinese, otherwise in English.
 
 
15
 
16
 
17
  ## Gradio App
 
12
  - Uppercased letters will be uttered letter by letter, so use lowercased letters for normal words.
13
  - Add some spaces (blank: " ") or punctuations (e.g. "," ".") to explicitly introduce some pauses.
14
  - Preprocess numbers to Chinese letters if you want to have them read in Chinese, otherwise in English.
15
+ - If the generation output is blank (pure silence), check for ffmpeg installation (various tutorials online, blogs, videos, etc.).
16
+ - Try turn off use_ema if using an early-stage finetuned checkpoint (which goes just few updates).
17
 
18
 
19
  ## Gradio App
src/f5_tts/train/README.md CHANGED
@@ -48,6 +48,8 @@ Discussion board for Finetuning [#57](https://github.com/SWivid/F5-TTS/discussio
48
 
49
  Gradio UI training/finetuning with `src/f5_tts/train/finetune_gradio.py` see [#143](https://github.com/SWivid/F5-TTS/discussions/143).
50
 
 
 
51
  ### 3. Wandb Logging
52
 
53
  The `wandb/` dir will be created under path you run training/finetuning scripts.
 
48
 
49
  Gradio UI training/finetuning with `src/f5_tts/train/finetune_gradio.py` see [#143](https://github.com/SWivid/F5-TTS/discussions/143).
50
 
51
+ The `use_ema = True` is harmful for early-stage finetuned checkpoints (which goes just few updates, thus ema weights still dominated by pretrained ones), try turn it off and see if provide better results.
52
+
53
  ### 3. Wandb Logging
54
 
55
  The `wandb/` dir will be created under path you run training/finetuning scripts.