sachin commited on
Commit
6af230e
·
1 Parent(s): 664a539
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. Dockerfile +0 -13
  2. f5_tts/__init__.py +0 -0
  3. f5_tts/api.py +0 -166
  4. f5_tts/configs/E2TTS_Base_train.yaml +0 -44
  5. f5_tts/configs/E2TTS_Small_train.yaml +0 -44
  6. f5_tts/configs/F5TTS_Base_train.yaml +0 -46
  7. f5_tts/configs/F5TTS_Small_train.yaml +0 -46
  8. f5_tts/eval/README.md +0 -49
  9. f5_tts/eval/ecapa_tdnn.py +0 -330
  10. f5_tts/eval/eval_infer_batch.py +0 -207
  11. f5_tts/eval/eval_infer_batch.sh +0 -13
  12. f5_tts/eval/eval_librispeech_test_clean.py +0 -84
  13. f5_tts/eval/eval_seedtts_testset.py +0 -84
  14. f5_tts/eval/utils_eval.py +0 -405
  15. f5_tts/infer/README.md +0 -193
  16. f5_tts/infer/SHARED.md +0 -103
  17. f5_tts/infer/__init__.py +0 -0
  18. f5_tts/infer/examples/basic/basic.toml +0 -11
  19. f5_tts/infer/examples/multi/story.toml +0 -19
  20. f5_tts/infer/examples/multi/story.txt +0 -1
  21. f5_tts/infer/examples/vocab.txt +0 -2545
  22. f5_tts/infer/infer_batch_parallel.py +0 -171
  23. f5_tts/infer/infer_cli.py +0 -226
  24. f5_tts/infer/infer_cli_batch.py +0 -245
  25. f5_tts/infer/infer_gradio.py +0 -855
  26. f5_tts/infer/infer_gradio_orig.py +0 -853
  27. f5_tts/infer/speech_edit.py +0 -193
  28. f5_tts/infer/utils_infer.py +0 -550
  29. f5_tts/model/__init__.py +0 -10
  30. f5_tts/model/backbones/README.md +0 -20
  31. f5_tts/model/backbones/__init__.py +0 -0
  32. f5_tts/model/backbones/dit.py +0 -163
  33. f5_tts/model/backbones/mmdit.py +0 -146
  34. f5_tts/model/backbones/unett.py +0 -219
  35. f5_tts/model/cfm.py +0 -285
  36. f5_tts/model/dataset.py +0 -331
  37. f5_tts/model/modules.py +0 -658
  38. f5_tts/model/trainer.py +0 -380
  39. f5_tts/model/utils.py +0 -191
  40. f5_tts/scripts/count_max_epoch.py +0 -33
  41. f5_tts/scripts/count_params_gflops.py +0 -39
  42. f5_tts/socket_server.py +0 -159
  43. f5_tts/train/README.md +0 -82
  44. f5_tts/train/datasets/prepare_csv_wavs.py +0 -166
  45. f5_tts/train/datasets/prepare_csvs_wavs_v2.py +0 -160
  46. f5_tts/train/datasets/prepare_csvs_wavs_v3.py +0 -168
  47. f5_tts/train/datasets/prepare_emilia.py +0 -230
  48. f5_tts/train/datasets/prepare_in22_en_10k.py +0 -170
  49. f5_tts/train/datasets/prepare_libritts.py +0 -92
  50. f5_tts/train/datasets/prepare_ljspeech.py +0 -65
Dockerfile CHANGED
@@ -1,20 +1,7 @@
1
  FROM slabstech/dhwani-server-base
2
  WORKDIR /app
3
 
4
- RUN mkdir -p /app/models
5
 
6
- # Define build argument for HF_TOKEN
7
- ARG HF_TOKEN_DOCKER
8
-
9
- # Set environment variable for the build process
10
- ENV HF_TOKEN=$HF_TOKEN_DOCKER
11
-
12
- # Copy and run the model download script
13
- COPY download_models.py .
14
- COPY . .
15
- RUN python download_models.py
16
-
17
- COPY dhwani_config.json .
18
  COPY . .
19
 
20
  # Set up user
 
1
  FROM slabstech/dhwani-server-base
2
  WORKDIR /app
3
 
 
4
 
 
 
 
 
 
 
 
 
 
 
 
 
5
  COPY . .
6
 
7
  # Set up user
f5_tts/__init__.py DELETED
File without changes
f5_tts/api.py DELETED
@@ -1,166 +0,0 @@
1
- import random
2
- import sys
3
- from importlib.resources import files
4
-
5
- import soundfile as sf
6
- import tqdm
7
- from cached_path import cached_path
8
-
9
- from f5_tts.infer.utils_infer import (
10
- hop_length,
11
- infer_process,
12
- load_model,
13
- load_vocoder,
14
- preprocess_ref_audio_text,
15
- remove_silence_for_generated_wav,
16
- save_spectrogram,
17
- transcribe,
18
- target_sample_rate,
19
- )
20
- from f5_tts.model import DiT, UNetT
21
- from f5_tts.model.utils import seed_everything
22
-
23
-
24
- class F5TTS:
25
- def __init__(
26
- self,
27
- model_type="F5-TTS",
28
- ckpt_file="",
29
- vocab_file="",
30
- ode_method="euler",
31
- use_ema=True,
32
- vocoder_name="vocos",
33
- local_path=None,
34
- device=None,
35
- hf_cache_dir=None,
36
- ):
37
- # Initialize parameters
38
- self.final_wave = None
39
- self.target_sample_rate = target_sample_rate
40
- self.hop_length = hop_length
41
- self.seed = -1
42
- self.mel_spec_type = vocoder_name
43
-
44
- # Set device
45
- if device is not None:
46
- self.device = device
47
- else:
48
- import torch
49
-
50
- self.device = "cuda" if torch.cuda.is_available() else "mps" if torch.backends.mps.is_available() else "cpu"
51
-
52
- # Load models
53
- self.load_vocoder_model(vocoder_name, local_path=local_path, hf_cache_dir=hf_cache_dir)
54
- self.load_ema_model(
55
- model_type, ckpt_file, vocoder_name, vocab_file, ode_method, use_ema, hf_cache_dir=hf_cache_dir
56
- )
57
-
58
- def load_vocoder_model(self, vocoder_name, local_path=None, hf_cache_dir=None):
59
- self.vocoder = load_vocoder(vocoder_name, local_path is not None, local_path, self.device, hf_cache_dir)
60
-
61
- def load_ema_model(self, model_type, ckpt_file, mel_spec_type, vocab_file, ode_method, use_ema, hf_cache_dir=None):
62
- if model_type == "F5-TTS":
63
- if not ckpt_file:
64
- if mel_spec_type == "vocos":
65
- ckpt_file = str(
66
- cached_path("hf://SWivid/F5-TTS/F5TTS_Base/model_1200000.safetensors", cache_dir=hf_cache_dir)
67
- )
68
- elif mel_spec_type == "bigvgan":
69
- ckpt_file = str(
70
- cached_path("hf://SWivid/F5-TTS/F5TTS_Base_bigvgan/model_1250000.pt", cache_dir=hf_cache_dir)
71
- )
72
- model_cfg = dict(dim=1024, depth=22, heads=16, ff_mult=2, text_dim=512, conv_layers=4)
73
- model_cls = DiT
74
- elif model_type == "E2-TTS":
75
- if not ckpt_file:
76
- ckpt_file = str(
77
- cached_path("hf://SWivid/E2-TTS/E2TTS_Base/model_1200000.safetensors", cache_dir=hf_cache_dir)
78
- )
79
- model_cfg = dict(dim=1024, depth=24, heads=16, ff_mult=4)
80
- model_cls = UNetT
81
- else:
82
- raise ValueError(f"Unknown model type: {model_type}")
83
-
84
- self.ema_model = load_model(
85
- model_cls, model_cfg, ckpt_file, mel_spec_type, vocab_file, ode_method, use_ema, self.device
86
- )
87
-
88
- def transcribe(self, ref_audio, language=None):
89
- return transcribe(ref_audio, language)
90
-
91
- def export_wav(self, wav, file_wave, remove_silence=False):
92
- sf.write(file_wave, wav, self.target_sample_rate)
93
-
94
- if remove_silence:
95
- remove_silence_for_generated_wav(file_wave)
96
-
97
- def export_spectrogram(self, spect, file_spect):
98
- save_spectrogram(spect, file_spect)
99
-
100
- def infer(
101
- self,
102
- ref_file,
103
- ref_text,
104
- gen_text,
105
- show_info=print,
106
- progress=tqdm,
107
- target_rms=0.1,
108
- cross_fade_duration=0.15,
109
- sway_sampling_coef=-1,
110
- cfg_strength=2,
111
- nfe_step=32,
112
- speed=1.0,
113
- fix_duration=None,
114
- remove_silence=False,
115
- file_wave=None,
116
- file_spect=None,
117
- seed=-1,
118
- ):
119
- if seed == -1:
120
- seed = random.randint(0, sys.maxsize)
121
- seed_everything(seed)
122
- self.seed = seed
123
-
124
- ref_file, ref_text = preprocess_ref_audio_text(ref_file, ref_text, device=self.device)
125
-
126
- wav, sr, spect = infer_process(
127
- ref_file,
128
- ref_text,
129
- gen_text,
130
- self.ema_model,
131
- self.vocoder,
132
- self.mel_spec_type,
133
- show_info=show_info,
134
- progress=progress,
135
- target_rms=target_rms,
136
- cross_fade_duration=cross_fade_duration,
137
- nfe_step=nfe_step,
138
- cfg_strength=cfg_strength,
139
- sway_sampling_coef=sway_sampling_coef,
140
- speed=speed,
141
- fix_duration=fix_duration,
142
- device=self.device,
143
- )
144
-
145
- if file_wave is not None:
146
- self.export_wav(wav, file_wave, remove_silence)
147
-
148
- if file_spect is not None:
149
- self.export_spectrogram(spect, file_spect)
150
-
151
- return wav, sr, spect
152
-
153
-
154
- if __name__ == "__main__":
155
- f5tts = F5TTS()
156
-
157
- wav, sr, spect = f5tts.infer(
158
- ref_file=str(files("f5_tts").joinpath("infer/examples/basic/basic_ref_en.wav")),
159
- ref_text="some call me nature, others call me mother nature.",
160
- gen_text="""I don't really care what you call me. I've been a silent spectator, watching species evolve, empires rise and fall. But always remember, I am mighty and enduring. Respect me and I'll nurture you; ignore me and you shall face the consequences.""",
161
- file_wave=str(files("f5_tts").joinpath("../../tests/api_out.wav")),
162
- file_spect=str(files("f5_tts").joinpath("../../tests/api_out.png")),
163
- seed=-1, # random seed = -1
164
- )
165
-
166
- print("seed :", f5tts.seed)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f5_tts/configs/E2TTS_Base_train.yaml DELETED
@@ -1,44 +0,0 @@
1
- hydra:
2
- run:
3
- dir: ckpts/${model.name}_${model.mel_spec.mel_spec_type}_${model.tokenizer}_${datasets.name}/${now:%Y-%m-%d}/${now:%H-%M-%S}
4
-
5
- datasets:
6
- name: Emilia_ZH_EN # dataset name
7
- batch_size_per_gpu: 38400 # 8 GPUs, 8 * 38400 = 307200
8
- batch_size_type: frame # "frame" or "sample"
9
- max_samples: 64 # max sequences per batch if use frame-wise batch_size. we set 32 for small models, 64 for base models
10
- num_workers: 16
11
-
12
- optim:
13
- epochs: 15
14
- learning_rate: 7.5e-5
15
- num_warmup_updates: 20000 # warmup steps
16
- grad_accumulation_steps: 1 # note: updates = steps / grad_accumulation_steps
17
- max_grad_norm: 1.0 # gradient clipping
18
- bnb_optimizer: False # use bnb 8bit AdamW optimizer or not
19
-
20
- model:
21
- name: E2TTS_Base
22
- tokenizer: pinyin
23
- tokenizer_path: None # if tokenizer = 'custom', define the path to the tokenizer you want to use (should be vocab.txt)
24
- arch:
25
- dim: 1024
26
- depth: 24
27
- heads: 16
28
- ff_mult: 4
29
- mel_spec:
30
- target_sample_rate: 24000
31
- n_mel_channels: 100
32
- hop_length: 256
33
- win_length: 1024
34
- n_fft: 1024
35
- mel_spec_type: vocos # 'vocos' or 'bigvgan'
36
- vocoder:
37
- is_local: False # use local offline ckpt or not
38
- local_path: None # local vocoder path
39
-
40
- ckpts:
41
- logger: wandb # wandb | tensorboard | None
42
- save_per_updates: 50000 # save checkpoint per steps
43
- last_per_steps: 5000 # save last checkpoint per steps
44
- save_dir: ckpts/${model.name}_${model.mel_spec.mel_spec_type}_${model.tokenizer}_${datasets.name}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f5_tts/configs/E2TTS_Small_train.yaml DELETED
@@ -1,44 +0,0 @@
1
- hydra:
2
- run:
3
- dir: ckpts/${model.name}_${model.mel_spec.mel_spec_type}_${model.tokenizer}_${datasets.name}/${now:%Y-%m-%d}/${now:%H-%M-%S}
4
-
5
- datasets:
6
- name: Emilia_ZH_EN
7
- batch_size_per_gpu: 38400 # 8 GPUs, 8 * 38400 = 307200
8
- batch_size_type: frame # "frame" or "sample"
9
- max_samples: 64 # max sequences per batch if use frame-wise batch_size. we set 32 for small models, 64 for base models
10
- num_workers: 16
11
-
12
- optim:
13
- epochs: 15
14
- learning_rate: 7.5e-5
15
- num_warmup_updates: 20000 # warmup steps
16
- grad_accumulation_steps: 1 # note: updates = steps / grad_accumulation_steps
17
- max_grad_norm: 1.0
18
- bnb_optimizer: False
19
-
20
- model:
21
- name: E2TTS_Small
22
- tokenizer: pinyin
23
- tokenizer_path: None # if tokenizer = 'custom', define the path to the tokenizer you want to use (should be vocab.txt)
24
- arch:
25
- dim: 768
26
- depth: 20
27
- heads: 12
28
- ff_mult: 4
29
- mel_spec:
30
- target_sample_rate: 24000
31
- n_mel_channels: 100
32
- hop_length: 256
33
- win_length: 1024
34
- n_fft: 1024
35
- mel_spec_type: vocos # 'vocos' or 'bigvgan'
36
- vocoder:
37
- is_local: False # use local offline ckpt or not
38
- local_path: None # local vocoder path
39
-
40
- ckpts:
41
- logger: wandb # wandb | tensorboard | None
42
- save_per_updates: 50000 # save checkpoint per steps
43
- last_per_steps: 5000 # save last checkpoint per steps
44
- save_dir: ckpts/${model.name}_${model.mel_spec.mel_spec_type}_${model.tokenizer}_${datasets.name}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f5_tts/configs/F5TTS_Base_train.yaml DELETED
@@ -1,46 +0,0 @@
1
- hydra:
2
- run:
3
- dir: ckpts/${model.name}_${model.mel_spec.mel_spec_type}_${model.tokenizer}_${datasets.name}/${now:%Y-%m-%d}/${now:%H-%M-%S}
4
-
5
- datasets:
6
- name: Emilia_ZH_EN # dataset name
7
- batch_size_per_gpu: 38400 # 8 GPUs, 8 * 38400 = 307200
8
- batch_size_type: frame # "frame" or "sample"
9
- max_samples: 64 # max sequences per batch if use frame-wise batch_size. we set 32 for small models, 64 for base models
10
- num_workers: 16
11
-
12
- optim:
13
- epochs: 15
14
- learning_rate: 7.5e-5
15
- num_warmup_updates: 20000 # warmup steps
16
- grad_accumulation_steps: 1 # note: updates = steps / grad_accumulation_steps
17
- max_grad_norm: 1.0 # gradient clipping
18
- bnb_optimizer: False # use bnb 8bit AdamW optimizer or not
19
-
20
- model:
21
- name: F5TTS_Base # model name
22
- tokenizer: pinyin # tokenizer type
23
- tokenizer_path: None # if tokenizer = 'custom', define the path to the tokenizer you want to use (should be vocab.txt)
24
- arch:
25
- dim: 1024
26
- depth: 22
27
- heads: 16
28
- ff_mult: 2
29
- text_dim: 512
30
- conv_layers: 4
31
- mel_spec:
32
- target_sample_rate: 24000
33
- n_mel_channels: 100
34
- hop_length: 256
35
- win_length: 1024
36
- n_fft: 1024
37
- mel_spec_type: vocos # 'vocos' or 'bigvgan'
38
- vocoder:
39
- is_local: False # use local offline ckpt or not
40
- local_path: None # local vocoder path
41
-
42
- ckpts:
43
- logger: wandb # wandb | tensorboard | None
44
- save_per_updates: 50000 # save checkpoint per steps
45
- last_per_steps: 5000 # save last checkpoint per steps
46
- save_dir: ckpts/${model.name}_${model.mel_spec.mel_spec_type}_${model.tokenizer}_${datasets.name}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f5_tts/configs/F5TTS_Small_train.yaml DELETED
@@ -1,46 +0,0 @@
1
- hydra:
2
- run:
3
- dir: ckpts/${model.name}_${model.mel_spec.mel_spec_type}_${model.tokenizer}_${datasets.name}/${now:%Y-%m-%d}/${now:%H-%M-%S}
4
-
5
- datasets:
6
- name: Emilia_ZH_EN
7
- batch_size_per_gpu: 38400 # 8 GPUs, 8 * 38400 = 307200
8
- batch_size_type: frame # "frame" or "sample"
9
- max_samples: 64 # max sequences per batch if use frame-wise batch_size. we set 32 for small models, 64 for base models
10
- num_workers: 16
11
-
12
- optim:
13
- epochs: 15
14
- learning_rate: 7.5e-5
15
- num_warmup_updates: 20000 # warmup steps
16
- grad_accumulation_steps: 1 # note: updates = steps / grad_accumulation_steps
17
- max_grad_norm: 1.0 # gradient clipping
18
- bnb_optimizer: False # use bnb 8bit AdamW optimizer or not
19
-
20
- model:
21
- name: F5TTS_Small
22
- tokenizer: pinyin
23
- tokenizer_path: None # if tokenizer = 'custom', define the path to the tokenizer you want to use (should be vocab.txt)
24
- arch:
25
- dim: 768
26
- depth: 18
27
- heads: 12
28
- ff_mult: 2
29
- text_dim: 512
30
- conv_layers: 4
31
- mel_spec:
32
- target_sample_rate: 24000
33
- n_mel_channels: 100
34
- hop_length: 256
35
- win_length: 1024
36
- n_fft: 1024
37
- mel_spec_type: vocos # 'vocos' or 'bigvgan'
38
- vocoder:
39
- is_local: False # use local offline ckpt or not
40
- local_path: None # local vocoder path
41
-
42
- ckpts:
43
- logger: wandb # wandb | tensorboard | None
44
- save_per_updates: 50000 # save checkpoint per steps
45
- last_per_steps: 5000 # save last checkpoint per steps
46
- save_dir: ckpts/${model.name}_${model.mel_spec.mel_spec_type}_${model.tokenizer}_${datasets.name}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f5_tts/eval/README.md DELETED
@@ -1,49 +0,0 @@
1
-
2
- # Evaluation
3
-
4
- Install packages for evaluation:
5
-
6
- ```bash
7
- pip install -e .[eval]
8
- ```
9
-
10
- ## Generating Samples for Evaluation
11
-
12
- ### Prepare Test Datasets
13
-
14
- 1. *Seed-TTS testset*: Download from [seed-tts-eval](https://github.com/BytedanceSpeech/seed-tts-eval).
15
- 2. *LibriSpeech test-clean*: Download from [OpenSLR](http://www.openslr.org/12/).
16
- 3. Unzip the downloaded datasets and place them in the `data/` directory.
17
- 4. Update the path for *LibriSpeech test-clean* data in `src/f5_tts/eval/eval_infer_batch.py`
18
- 5. Our filtered LibriSpeech-PC 4-10s subset: `data/librispeech_pc_test_clean_cross_sentence.lst`
19
-
20
- ### Batch Inference for Test Set
21
-
22
- To run batch inference for evaluations, execute the following commands:
23
-
24
- ```bash
25
- # batch inference for evaluations
26
- accelerate config # if not set before
27
- bash src/f5_tts/eval/eval_infer_batch.sh
28
- ```
29
-
30
- ## Objective Evaluation on Generated Results
31
-
32
- ### Download Evaluation Model Checkpoints
33
-
34
- 1. Chinese ASR Model: [Paraformer-zh](https://huggingface.co/funasr/paraformer-zh)
35
- 2. English ASR Model: [Faster-Whisper](https://huggingface.co/Systran/faster-whisper-large-v3)
36
- 3. WavLM Model: Download from [Google Drive](https://drive.google.com/file/d/1-aE1NfzpRCLxA4GUxX9ITI3F9LlbtEGP/view).
37
-
38
- Then update in the following scripts with the paths you put evaluation model ckpts to.
39
-
40
- ### Objective Evaluation
41
-
42
- Update the path with your batch-inferenced results, and carry out WER / SIM evaluations:
43
- ```bash
44
- # Evaluation for Seed-TTS test set
45
- python src/f5_tts/eval/eval_seedtts_testset.py --gen_wav_dir <GEN_WAVE_DIR>
46
-
47
- # Evaluation for LibriSpeech-PC test-clean (cross-sentence)
48
- python src/f5_tts/eval/eval_librispeech_test_clean.py --gen_wav_dir <GEN_WAVE_DIR> --librispeech_test_clean_path <TEST_CLEAN_PATH>
49
- ```
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f5_tts/eval/ecapa_tdnn.py DELETED
@@ -1,330 +0,0 @@
1
- # just for speaker similarity evaluation, third-party code
2
-
3
- # From https://github.com/microsoft/UniSpeech/blob/main/downstreams/speaker_verification/models/
4
- # part of the code is borrowed from https://github.com/lawlict/ECAPA-TDNN
5
-
6
- import os
7
- import torch
8
- import torch.nn as nn
9
- import torch.nn.functional as F
10
-
11
-
12
- """ Res2Conv1d + BatchNorm1d + ReLU
13
- """
14
-
15
-
16
- class Res2Conv1dReluBn(nn.Module):
17
- """
18
- in_channels == out_channels == channels
19
- """
20
-
21
- def __init__(self, channels, kernel_size=1, stride=1, padding=0, dilation=1, bias=True, scale=4):
22
- super().__init__()
23
- assert channels % scale == 0, "{} % {} != 0".format(channels, scale)
24
- self.scale = scale
25
- self.width = channels // scale
26
- self.nums = scale if scale == 1 else scale - 1
27
-
28
- self.convs = []
29
- self.bns = []
30
- for i in range(self.nums):
31
- self.convs.append(nn.Conv1d(self.width, self.width, kernel_size, stride, padding, dilation, bias=bias))
32
- self.bns.append(nn.BatchNorm1d(self.width))
33
- self.convs = nn.ModuleList(self.convs)
34
- self.bns = nn.ModuleList(self.bns)
35
-
36
- def forward(self, x):
37
- out = []
38
- spx = torch.split(x, self.width, 1)
39
- for i in range(self.nums):
40
- if i == 0:
41
- sp = spx[i]
42
- else:
43
- sp = sp + spx[i]
44
- # Order: conv -> relu -> bn
45
- sp = self.convs[i](sp)
46
- sp = self.bns[i](F.relu(sp))
47
- out.append(sp)
48
- if self.scale != 1:
49
- out.append(spx[self.nums])
50
- out = torch.cat(out, dim=1)
51
-
52
- return out
53
-
54
-
55
- """ Conv1d + BatchNorm1d + ReLU
56
- """
57
-
58
-
59
- class Conv1dReluBn(nn.Module):
60
- def __init__(self, in_channels, out_channels, kernel_size=1, stride=1, padding=0, dilation=1, bias=True):
61
- super().__init__()
62
- self.conv = nn.Conv1d(in_channels, out_channels, kernel_size, stride, padding, dilation, bias=bias)
63
- self.bn = nn.BatchNorm1d(out_channels)
64
-
65
- def forward(self, x):
66
- return self.bn(F.relu(self.conv(x)))
67
-
68
-
69
- """ The SE connection of 1D case.
70
- """
71
-
72
-
73
- class SE_Connect(nn.Module):
74
- def __init__(self, channels, se_bottleneck_dim=128):
75
- super().__init__()
76
- self.linear1 = nn.Linear(channels, se_bottleneck_dim)
77
- self.linear2 = nn.Linear(se_bottleneck_dim, channels)
78
-
79
- def forward(self, x):
80
- out = x.mean(dim=2)
81
- out = F.relu(self.linear1(out))
82
- out = torch.sigmoid(self.linear2(out))
83
- out = x * out.unsqueeze(2)
84
-
85
- return out
86
-
87
-
88
- """ SE-Res2Block of the ECAPA-TDNN architecture.
89
- """
90
-
91
- # def SE_Res2Block(channels, kernel_size, stride, padding, dilation, scale):
92
- # return nn.Sequential(
93
- # Conv1dReluBn(channels, 512, kernel_size=1, stride=1, padding=0),
94
- # Res2Conv1dReluBn(512, kernel_size, stride, padding, dilation, scale=scale),
95
- # Conv1dReluBn(512, channels, kernel_size=1, stride=1, padding=0),
96
- # SE_Connect(channels)
97
- # )
98
-
99
-
100
- class SE_Res2Block(nn.Module):
101
- def __init__(self, in_channels, out_channels, kernel_size, stride, padding, dilation, scale, se_bottleneck_dim):
102
- super().__init__()
103
- self.Conv1dReluBn1 = Conv1dReluBn(in_channels, out_channels, kernel_size=1, stride=1, padding=0)
104
- self.Res2Conv1dReluBn = Res2Conv1dReluBn(out_channels, kernel_size, stride, padding, dilation, scale=scale)
105
- self.Conv1dReluBn2 = Conv1dReluBn(out_channels, out_channels, kernel_size=1, stride=1, padding=0)
106
- self.SE_Connect = SE_Connect(out_channels, se_bottleneck_dim)
107
-
108
- self.shortcut = None
109
- if in_channels != out_channels:
110
- self.shortcut = nn.Conv1d(
111
- in_channels=in_channels,
112
- out_channels=out_channels,
113
- kernel_size=1,
114
- )
115
-
116
- def forward(self, x):
117
- residual = x
118
- if self.shortcut:
119
- residual = self.shortcut(x)
120
-
121
- x = self.Conv1dReluBn1(x)
122
- x = self.Res2Conv1dReluBn(x)
123
- x = self.Conv1dReluBn2(x)
124
- x = self.SE_Connect(x)
125
-
126
- return x + residual
127
-
128
-
129
- """ Attentive weighted mean and standard deviation pooling.
130
- """
131
-
132
-
133
- class AttentiveStatsPool(nn.Module):
134
- def __init__(self, in_dim, attention_channels=128, global_context_att=False):
135
- super().__init__()
136
- self.global_context_att = global_context_att
137
-
138
- # Use Conv1d with stride == 1 rather than Linear, then we don't need to transpose inputs.
139
- if global_context_att:
140
- self.linear1 = nn.Conv1d(in_dim * 3, attention_channels, kernel_size=1) # equals W and b in the paper
141
- else:
142
- self.linear1 = nn.Conv1d(in_dim, attention_channels, kernel_size=1) # equals W and b in the paper
143
- self.linear2 = nn.Conv1d(attention_channels, in_dim, kernel_size=1) # equals V and k in the paper
144
-
145
- def forward(self, x):
146
- if self.global_context_att:
147
- context_mean = torch.mean(x, dim=-1, keepdim=True).expand_as(x)
148
- context_std = torch.sqrt(torch.var(x, dim=-1, keepdim=True) + 1e-10).expand_as(x)
149
- x_in = torch.cat((x, context_mean, context_std), dim=1)
150
- else:
151
- x_in = x
152
-
153
- # DON'T use ReLU here! In experiments, I find ReLU hard to converge.
154
- alpha = torch.tanh(self.linear1(x_in))
155
- # alpha = F.relu(self.linear1(x_in))
156
- alpha = torch.softmax(self.linear2(alpha), dim=2)
157
- mean = torch.sum(alpha * x, dim=2)
158
- residuals = torch.sum(alpha * (x**2), dim=2) - mean**2
159
- std = torch.sqrt(residuals.clamp(min=1e-9))
160
- return torch.cat([mean, std], dim=1)
161
-
162
-
163
- class ECAPA_TDNN(nn.Module):
164
- def __init__(
165
- self,
166
- feat_dim=80,
167
- channels=512,
168
- emb_dim=192,
169
- global_context_att=False,
170
- feat_type="wavlm_large",
171
- sr=16000,
172
- feature_selection="hidden_states",
173
- update_extract=False,
174
- config_path=None,
175
- ):
176
- super().__init__()
177
-
178
- self.feat_type = feat_type
179
- self.feature_selection = feature_selection
180
- self.update_extract = update_extract
181
- self.sr = sr
182
-
183
- torch.hub._validate_not_a_forked_repo = lambda a, b, c: True
184
- try:
185
- local_s3prl_path = os.path.expanduser("~/.cache/torch/hub/s3prl_s3prl_main")
186
- self.feature_extract = torch.hub.load(local_s3prl_path, feat_type, source="local", config_path=config_path)
187
- except: # noqa: E722
188
- self.feature_extract = torch.hub.load("s3prl/s3prl", feat_type)
189
-
190
- if len(self.feature_extract.model.encoder.layers) == 24 and hasattr(
191
- self.feature_extract.model.encoder.layers[23].self_attn, "fp32_attention"
192
- ):
193
- self.feature_extract.model.encoder.layers[23].self_attn.fp32_attention = False
194
- if len(self.feature_extract.model.encoder.layers) == 24 and hasattr(
195
- self.feature_extract.model.encoder.layers[11].self_attn, "fp32_attention"
196
- ):
197
- self.feature_extract.model.encoder.layers[11].self_attn.fp32_attention = False
198
-
199
- self.feat_num = self.get_feat_num()
200
- self.feature_weight = nn.Parameter(torch.zeros(self.feat_num))
201
-
202
- if feat_type != "fbank" and feat_type != "mfcc":
203
- freeze_list = ["final_proj", "label_embs_concat", "mask_emb", "project_q", "quantizer"]
204
- for name, param in self.feature_extract.named_parameters():
205
- for freeze_val in freeze_list:
206
- if freeze_val in name:
207
- param.requires_grad = False
208
- break
209
-
210
- if not self.update_extract:
211
- for param in self.feature_extract.parameters():
212
- param.requires_grad = False
213
-
214
- self.instance_norm = nn.InstanceNorm1d(feat_dim)
215
- # self.channels = [channels] * 4 + [channels * 3]
216
- self.channels = [channels] * 4 + [1536]
217
-
218
- self.layer1 = Conv1dReluBn(feat_dim, self.channels[0], kernel_size=5, padding=2)
219
- self.layer2 = SE_Res2Block(
220
- self.channels[0],
221
- self.channels[1],
222
- kernel_size=3,
223
- stride=1,
224
- padding=2,
225
- dilation=2,
226
- scale=8,
227
- se_bottleneck_dim=128,
228
- )
229
- self.layer3 = SE_Res2Block(
230
- self.channels[1],
231
- self.channels[2],
232
- kernel_size=3,
233
- stride=1,
234
- padding=3,
235
- dilation=3,
236
- scale=8,
237
- se_bottleneck_dim=128,
238
- )
239
- self.layer4 = SE_Res2Block(
240
- self.channels[2],
241
- self.channels[3],
242
- kernel_size=3,
243
- stride=1,
244
- padding=4,
245
- dilation=4,
246
- scale=8,
247
- se_bottleneck_dim=128,
248
- )
249
-
250
- # self.conv = nn.Conv1d(self.channels[-1], self.channels[-1], kernel_size=1)
251
- cat_channels = channels * 3
252
- self.conv = nn.Conv1d(cat_channels, self.channels[-1], kernel_size=1)
253
- self.pooling = AttentiveStatsPool(
254
- self.channels[-1], attention_channels=128, global_context_att=global_context_att
255
- )
256
- self.bn = nn.BatchNorm1d(self.channels[-1] * 2)
257
- self.linear = nn.Linear(self.channels[-1] * 2, emb_dim)
258
-
259
- def get_feat_num(self):
260
- self.feature_extract.eval()
261
- wav = [torch.randn(self.sr).to(next(self.feature_extract.parameters()).device)]
262
- with torch.no_grad():
263
- features = self.feature_extract(wav)
264
- select_feature = features[self.feature_selection]
265
- if isinstance(select_feature, (list, tuple)):
266
- return len(select_feature)
267
- else:
268
- return 1
269
-
270
- def get_feat(self, x):
271
- if self.update_extract:
272
- x = self.feature_extract([sample for sample in x])
273
- else:
274
- with torch.no_grad():
275
- if self.feat_type == "fbank" or self.feat_type == "mfcc":
276
- x = self.feature_extract(x) + 1e-6 # B x feat_dim x time_len
277
- else:
278
- x = self.feature_extract([sample for sample in x])
279
-
280
- if self.feat_type == "fbank":
281
- x = x.log()
282
-
283
- if self.feat_type != "fbank" and self.feat_type != "mfcc":
284
- x = x[self.feature_selection]
285
- if isinstance(x, (list, tuple)):
286
- x = torch.stack(x, dim=0)
287
- else:
288
- x = x.unsqueeze(0)
289
- norm_weights = F.softmax(self.feature_weight, dim=-1).unsqueeze(-1).unsqueeze(-1).unsqueeze(-1)
290
- x = (norm_weights * x).sum(dim=0)
291
- x = torch.transpose(x, 1, 2) + 1e-6
292
-
293
- x = self.instance_norm(x)
294
- return x
295
-
296
- def forward(self, x):
297
- x = self.get_feat(x)
298
-
299
- out1 = self.layer1(x)
300
- out2 = self.layer2(out1)
301
- out3 = self.layer3(out2)
302
- out4 = self.layer4(out3)
303
-
304
- out = torch.cat([out2, out3, out4], dim=1)
305
- out = F.relu(self.conv(out))
306
- out = self.bn(self.pooling(out))
307
- out = self.linear(out)
308
-
309
- return out
310
-
311
-
312
- def ECAPA_TDNN_SMALL(
313
- feat_dim,
314
- emb_dim=256,
315
- feat_type="wavlm_large",
316
- sr=16000,
317
- feature_selection="hidden_states",
318
- update_extract=False,
319
- config_path=None,
320
- ):
321
- return ECAPA_TDNN(
322
- feat_dim=feat_dim,
323
- channels=512,
324
- emb_dim=emb_dim,
325
- feat_type=feat_type,
326
- sr=sr,
327
- feature_selection=feature_selection,
328
- update_extract=update_extract,
329
- config_path=config_path,
330
- )
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f5_tts/eval/eval_infer_batch.py DELETED
@@ -1,207 +0,0 @@
1
- import os
2
- import sys
3
-
4
- sys.path.append(os.getcwd())
5
-
6
- import argparse
7
- import time
8
- from importlib.resources import files
9
-
10
- import torch
11
- import torchaudio
12
- from accelerate import Accelerator
13
- from tqdm import tqdm
14
-
15
- from f5_tts.eval.utils_eval import (
16
- get_inference_prompt,
17
- get_librispeech_test_clean_metainfo,
18
- get_seedtts_testset_metainfo,
19
- )
20
- from f5_tts.infer.utils_infer import load_checkpoint, load_vocoder
21
- from f5_tts.model import CFM, DiT, UNetT
22
- from f5_tts.model.utils import get_tokenizer
23
-
24
- accelerator = Accelerator()
25
- device = f"cuda:{accelerator.process_index}"
26
-
27
-
28
- # --------------------- Dataset Settings -------------------- #
29
-
30
- target_sample_rate = 24000
31
- n_mel_channels = 100
32
- hop_length = 256
33
- win_length = 1024
34
- n_fft = 1024
35
- target_rms = 0.1
36
-
37
- rel_path = str(files("f5_tts").joinpath("../../"))
38
-
39
-
40
- def main():
41
- # ---------------------- infer setting ---------------------- #
42
-
43
- parser = argparse.ArgumentParser(description="batch inference")
44
-
45
- parser.add_argument("-s", "--seed", default=None, type=int)
46
- parser.add_argument("-d", "--dataset", default="Emilia_ZH_EN")
47
- parser.add_argument("-n", "--expname", required=True)
48
- parser.add_argument("-c", "--ckptstep", default=1200000, type=int)
49
- parser.add_argument("-m", "--mel_spec_type", default="vocos", type=str, choices=["bigvgan", "vocos"])
50
- parser.add_argument("-to", "--tokenizer", default="pinyin", type=str, choices=["pinyin", "char"])
51
-
52
- parser.add_argument("-nfe", "--nfestep", default=32, type=int)
53
- parser.add_argument("-o", "--odemethod", default="euler")
54
- parser.add_argument("-ss", "--swaysampling", default=-1, type=float)
55
-
56
- parser.add_argument("-t", "--testset", required=True)
57
-
58
- args = parser.parse_args()
59
-
60
- seed = args.seed
61
- dataset_name = args.dataset
62
- exp_name = args.expname
63
- ckpt_step = args.ckptstep
64
- ckpt_path = rel_path + f"/ckpts/{exp_name}/model_{ckpt_step}.pt"
65
- mel_spec_type = args.mel_spec_type
66
- tokenizer = args.tokenizer
67
-
68
- nfe_step = args.nfestep
69
- ode_method = args.odemethod
70
- sway_sampling_coef = args.swaysampling
71
-
72
- testset = args.testset
73
-
74
- infer_batch_size = 1 # max frames. 1 for ddp single inference (recommended)
75
- cfg_strength = 2.0
76
- speed = 1.0
77
- use_truth_duration = False
78
- no_ref_audio = False
79
-
80
- if exp_name == "F5TTS_Base":
81
- model_cls = DiT
82
- model_cfg = dict(dim=1024, depth=22, heads=16, ff_mult=2, text_dim=512, conv_layers=4)
83
-
84
- elif exp_name == "E2TTS_Base":
85
- model_cls = UNetT
86
- model_cfg = dict(dim=1024, depth=24, heads=16, ff_mult=4)
87
-
88
- if testset == "ls_pc_test_clean":
89
- metalst = rel_path + "/data/librispeech_pc_test_clean_cross_sentence.lst"
90
- librispeech_test_clean_path = "<SOME_PATH>/LibriSpeech/test-clean" # test-clean path
91
- metainfo = get_librispeech_test_clean_metainfo(metalst, librispeech_test_clean_path)
92
-
93
- elif testset == "seedtts_test_zh":
94
- metalst = rel_path + "/data/seedtts_testset/zh/meta.lst"
95
- metainfo = get_seedtts_testset_metainfo(metalst)
96
-
97
- elif testset == "seedtts_test_en":
98
- metalst = rel_path + "/data/seedtts_testset/en/meta.lst"
99
- metainfo = get_seedtts_testset_metainfo(metalst)
100
-
101
- # path to save genereted wavs
102
- output_dir = (
103
- f"{rel_path}/"
104
- f"results/{exp_name}_{ckpt_step}/{testset}/"
105
- f"seed{seed}_{ode_method}_nfe{nfe_step}_{mel_spec_type}"
106
- f"{f'_ss{sway_sampling_coef}' if sway_sampling_coef else ''}"
107
- f"_cfg{cfg_strength}_speed{speed}"
108
- f"{'_gt-dur' if use_truth_duration else ''}"
109
- f"{'_no-ref-audio' if no_ref_audio else ''}"
110
- )
111
-
112
- # -------------------------------------------------#
113
-
114
- use_ema = True
115
-
116
- prompts_all = get_inference_prompt(
117
- metainfo,
118
- speed=speed,
119
- tokenizer=tokenizer,
120
- target_sample_rate=target_sample_rate,
121
- n_mel_channels=n_mel_channels,
122
- hop_length=hop_length,
123
- mel_spec_type=mel_spec_type,
124
- target_rms=target_rms,
125
- use_truth_duration=use_truth_duration,
126
- infer_batch_size=infer_batch_size,
127
- )
128
-
129
- # Vocoder model
130
- local = False
131
- if mel_spec_type == "vocos":
132
- vocoder_local_path = "../checkpoints/charactr/vocos-mel-24khz"
133
- elif mel_spec_type == "bigvgan":
134
- vocoder_local_path = "../checkpoints/bigvgan_v2_24khz_100band_256x"
135
- vocoder = load_vocoder(vocoder_name=mel_spec_type, is_local=local, local_path=vocoder_local_path)
136
-
137
- # Tokenizer
138
- vocab_char_map, vocab_size = get_tokenizer(dataset_name, tokenizer)
139
-
140
- # Model
141
- model = CFM(
142
- transformer=model_cls(**model_cfg, text_num_embeds=vocab_size, mel_dim=n_mel_channels),
143
- mel_spec_kwargs=dict(
144
- n_fft=n_fft,
145
- hop_length=hop_length,
146
- win_length=win_length,
147
- n_mel_channels=n_mel_channels,
148
- target_sample_rate=target_sample_rate,
149
- mel_spec_type=mel_spec_type,
150
- ),
151
- odeint_kwargs=dict(
152
- method=ode_method,
153
- ),
154
- vocab_char_map=vocab_char_map,
155
- ).to(device)
156
-
157
- dtype = torch.float32 if mel_spec_type == "bigvgan" else None
158
- model = load_checkpoint(model, ckpt_path, device, dtype=dtype, use_ema=use_ema)
159
-
160
- if not os.path.exists(output_dir) and accelerator.is_main_process:
161
- os.makedirs(output_dir)
162
-
163
- # start batch inference
164
- accelerator.wait_for_everyone()
165
- start = time.time()
166
-
167
- with accelerator.split_between_processes(prompts_all) as prompts:
168
- for prompt in tqdm(prompts, disable=not accelerator.is_local_main_process):
169
- utts, ref_rms_list, ref_mels, ref_mel_lens, total_mel_lens, final_text_list = prompt
170
- ref_mels = ref_mels.to(device)
171
- ref_mel_lens = torch.tensor(ref_mel_lens, dtype=torch.long).to(device)
172
- total_mel_lens = torch.tensor(total_mel_lens, dtype=torch.long).to(device)
173
-
174
- # Inference
175
- with torch.inference_mode():
176
- generated, _ = model.sample(
177
- cond=ref_mels,
178
- text=final_text_list,
179
- duration=total_mel_lens,
180
- lens=ref_mel_lens,
181
- steps=nfe_step,
182
- cfg_strength=cfg_strength,
183
- sway_sampling_coef=sway_sampling_coef,
184
- no_ref_audio=no_ref_audio,
185
- seed=seed,
186
- )
187
- # Final result
188
- for i, gen in enumerate(generated):
189
- gen = gen[ref_mel_lens[i] : total_mel_lens[i], :].unsqueeze(0)
190
- gen_mel_spec = gen.permute(0, 2, 1).to(torch.float32)
191
- if mel_spec_type == "vocos":
192
- generated_wave = vocoder.decode(gen_mel_spec).cpu()
193
- elif mel_spec_type == "bigvgan":
194
- generated_wave = vocoder(gen_mel_spec).squeeze(0).cpu()
195
-
196
- if ref_rms_list[i] < target_rms:
197
- generated_wave = generated_wave * ref_rms_list[i] / target_rms
198
- torchaudio.save(f"{output_dir}/{utts[i]}.wav", generated_wave, target_sample_rate)
199
-
200
- accelerator.wait_for_everyone()
201
- if accelerator.is_main_process:
202
- timediff = time.time() - start
203
- print(f"Done batch inference in {timediff / 60 :.2f} minutes.")
204
-
205
-
206
- if __name__ == "__main__":
207
- main()
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f5_tts/eval/eval_infer_batch.sh DELETED
@@ -1,13 +0,0 @@
1
- #!/bin/bash
2
-
3
- # e.g. F5-TTS, 16 NFE
4
- accelerate launch src/f5_tts/eval/eval_infer_batch.py -s 0 -n "F5TTS_Base" -t "seedtts_test_zh" -nfe 16
5
- accelerate launch src/f5_tts/eval/eval_infer_batch.py -s 0 -n "F5TTS_Base" -t "seedtts_test_en" -nfe 16
6
- accelerate launch src/f5_tts/eval/eval_infer_batch.py -s 0 -n "F5TTS_Base" -t "ls_pc_test_clean" -nfe 16
7
-
8
- # e.g. Vanilla E2 TTS, 32 NFE
9
- accelerate launch src/f5_tts/eval/eval_infer_batch.py -s 0 -n "E2TTS_Base" -t "seedtts_test_zh" -o "midpoint" -ss 0
10
- accelerate launch src/f5_tts/eval/eval_infer_batch.py -s 0 -n "E2TTS_Base" -t "seedtts_test_en" -o "midpoint" -ss 0
11
- accelerate launch src/f5_tts/eval/eval_infer_batch.py -s 0 -n "E2TTS_Base" -t "ls_pc_test_clean" -o "midpoint" -ss 0
12
-
13
- # etc.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f5_tts/eval/eval_librispeech_test_clean.py DELETED
@@ -1,84 +0,0 @@
1
- # Evaluate with Librispeech test-clean, ~3s prompt to generate 4-10s audio (the way of valle/voicebox evaluation)
2
-
3
- import sys
4
- import os
5
- import argparse
6
-
7
- sys.path.append(os.getcwd())
8
-
9
- import multiprocessing as mp
10
- from importlib.resources import files
11
-
12
- import numpy as np
13
-
14
- from f5_tts.eval.utils_eval import (
15
- get_librispeech_test,
16
- run_asr_wer,
17
- run_sim,
18
- )
19
-
20
- rel_path = str(files("f5_tts").joinpath("../../"))
21
-
22
-
23
- def get_args():
24
- parser = argparse.ArgumentParser()
25
- parser.add_argument("-e", "--eval_task", type=str, default="wer", choices=["sim", "wer"])
26
- parser.add_argument("-l", "--lang", type=str, default="en")
27
- parser.add_argument("-g", "--gen_wav_dir", type=str, required=True)
28
- parser.add_argument("-p", "--librispeech_test_clean_path", type=str, required=True)
29
- parser.add_argument("-n", "--gpu_nums", type=int, default=8, help="Number of GPUs to use")
30
- parser.add_argument("--local", action="store_true", help="Use local custom checkpoint directory")
31
- return parser.parse_args()
32
-
33
-
34
- def main():
35
- args = get_args()
36
- eval_task = args.eval_task
37
- lang = args.lang
38
- librispeech_test_clean_path = args.librispeech_test_clean_path # test-clean path
39
- gen_wav_dir = args.gen_wav_dir
40
- metalst = rel_path + "/data/librispeech_pc_test_clean_cross_sentence.lst"
41
-
42
- gpus = list(range(args.gpu_nums))
43
- test_set = get_librispeech_test(metalst, gen_wav_dir, gpus, librispeech_test_clean_path)
44
-
45
- ## In LibriSpeech, some speakers utilized varying voice characteristics for different characters in the book,
46
- ## leading to a low similarity for the ground truth in some cases.
47
- # test_set = get_librispeech_test(metalst, gen_wav_dir, gpus, librispeech_test_clean_path, eval_ground_truth = True) # eval ground truth
48
-
49
- local = args.local
50
- if local: # use local custom checkpoint dir
51
- asr_ckpt_dir = "../checkpoints/Systran/faster-whisper-large-v3"
52
- else:
53
- asr_ckpt_dir = "" # auto download to cache dir
54
- wavlm_ckpt_dir = "../checkpoints/UniSpeech/wavlm_large_finetune.pth"
55
-
56
- # --------------------------- WER ---------------------------
57
- if eval_task == "wer":
58
- wers = []
59
- with mp.Pool(processes=len(gpus)) as pool:
60
- args = [(rank, lang, sub_test_set, asr_ckpt_dir) for (rank, sub_test_set) in test_set]
61
- results = pool.map(run_asr_wer, args)
62
- for wers_ in results:
63
- wers.extend(wers_)
64
-
65
- wer = round(np.mean(wers) * 100, 3)
66
- print(f"\nTotal {len(wers)} samples")
67
- print(f"WER : {wer}%")
68
-
69
- # --------------------------- SIM ---------------------------
70
- if eval_task == "sim":
71
- sim_list = []
72
- with mp.Pool(processes=len(gpus)) as pool:
73
- args = [(rank, sub_test_set, wavlm_ckpt_dir) for (rank, sub_test_set) in test_set]
74
- results = pool.map(run_sim, args)
75
- for sim_ in results:
76
- sim_list.extend(sim_)
77
-
78
- sim = round(sum(sim_list) / len(sim_list), 3)
79
- print(f"\nTotal {len(sim_list)} samples")
80
- print(f"SIM : {sim}")
81
-
82
-
83
- if __name__ == "__main__":
84
- main()
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f5_tts/eval/eval_seedtts_testset.py DELETED
@@ -1,84 +0,0 @@
1
- # Evaluate with Seed-TTS testset
2
-
3
- import sys
4
- import os
5
- import argparse
6
-
7
- sys.path.append(os.getcwd())
8
-
9
- import multiprocessing as mp
10
- from importlib.resources import files
11
-
12
- import numpy as np
13
-
14
- from f5_tts.eval.utils_eval import (
15
- get_seed_tts_test,
16
- run_asr_wer,
17
- run_sim,
18
- )
19
-
20
- rel_path = str(files("f5_tts").joinpath("../../"))
21
-
22
-
23
- def get_args():
24
- parser = argparse.ArgumentParser()
25
- parser.add_argument("-e", "--eval_task", type=str, default="wer", choices=["sim", "wer"])
26
- parser.add_argument("-l", "--lang", type=str, default="en", choices=["zh", "en"])
27
- parser.add_argument("-g", "--gen_wav_dir", type=str, required=True)
28
- parser.add_argument("-n", "--gpu_nums", type=int, default=8, help="Number of GPUs to use")
29
- parser.add_argument("--local", action="store_true", help="Use local custom checkpoint directory")
30
- return parser.parse_args()
31
-
32
-
33
- def main():
34
- args = get_args()
35
- eval_task = args.eval_task
36
- lang = args.lang
37
- gen_wav_dir = args.gen_wav_dir
38
- metalst = rel_path + f"/data/seedtts_testset/{lang}/meta.lst" # seed-tts testset
39
-
40
- # NOTE. paraformer-zh result will be slightly different according to the number of gpus, cuz batchsize is different
41
- # zh 1.254 seems a result of 4 workers wer_seed_tts
42
- gpus = list(range(args.gpu_nums))
43
- test_set = get_seed_tts_test(metalst, gen_wav_dir, gpus)
44
-
45
- local = args.local
46
- if local: # use local custom checkpoint dir
47
- if lang == "zh":
48
- asr_ckpt_dir = "../checkpoints/funasr" # paraformer-zh dir under funasr
49
- elif lang == "en":
50
- asr_ckpt_dir = "../checkpoints/Systran/faster-whisper-large-v3"
51
- else:
52
- asr_ckpt_dir = "" # auto download to cache dir
53
- wavlm_ckpt_dir = "../checkpoints/UniSpeech/wavlm_large_finetune.pth"
54
-
55
- # --------------------------- WER ---------------------------
56
-
57
- if eval_task == "wer":
58
- wers = []
59
- with mp.Pool(processes=len(gpus)) as pool:
60
- args = [(rank, lang, sub_test_set, asr_ckpt_dir) for (rank, sub_test_set) in test_set]
61
- results = pool.map(run_asr_wer, args)
62
- for wers_ in results:
63
- wers.extend(wers_)
64
-
65
- wer = round(np.mean(wers) * 100, 3)
66
- print(f"\nTotal {len(wers)} samples")
67
- print(f"WER : {wer}%")
68
-
69
- # --------------------------- SIM ---------------------------
70
- if eval_task == "sim":
71
- sim_list = []
72
- with mp.Pool(processes=len(gpus)) as pool:
73
- args = [(rank, sub_test_set, wavlm_ckpt_dir) for (rank, sub_test_set) in test_set]
74
- results = pool.map(run_sim, args)
75
- for sim_ in results:
76
- sim_list.extend(sim_)
77
-
78
- sim = round(sum(sim_list) / len(sim_list), 3)
79
- print(f"\nTotal {len(sim_list)} samples")
80
- print(f"SIM : {sim}")
81
-
82
-
83
- if __name__ == "__main__":
84
- main()
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f5_tts/eval/utils_eval.py DELETED
@@ -1,405 +0,0 @@
1
- import math
2
- import os
3
- import random
4
- import string
5
-
6
- import torch
7
- import torch.nn.functional as F
8
- import torchaudio
9
- from tqdm import tqdm
10
-
11
- from f5_tts.eval.ecapa_tdnn import ECAPA_TDNN_SMALL
12
- from f5_tts.model.modules import MelSpec
13
- from f5_tts.model.utils import convert_char_to_pinyin
14
-
15
-
16
- # seedtts testset metainfo: utt, prompt_text, prompt_wav, gt_text, gt_wav
17
- def get_seedtts_testset_metainfo(metalst):
18
- f = open(metalst)
19
- lines = f.readlines()
20
- f.close()
21
- metainfo = []
22
- for line in lines:
23
- if len(line.strip().split("|")) == 5:
24
- utt, prompt_text, prompt_wav, gt_text, gt_wav = line.strip().split("|")
25
- elif len(line.strip().split("|")) == 4:
26
- utt, prompt_text, prompt_wav, gt_text = line.strip().split("|")
27
- gt_wav = os.path.join(os.path.dirname(metalst), "wavs", utt + ".wav")
28
- if not os.path.isabs(prompt_wav):
29
- prompt_wav = os.path.join(os.path.dirname(metalst), prompt_wav)
30
- metainfo.append((utt, prompt_text, prompt_wav, gt_text, gt_wav))
31
- return metainfo
32
-
33
-
34
- # librispeech test-clean metainfo: gen_utt, ref_txt, ref_wav, gen_txt, gen_wav
35
- def get_librispeech_test_clean_metainfo(metalst, librispeech_test_clean_path):
36
- f = open(metalst)
37
- lines = f.readlines()
38
- f.close()
39
- metainfo = []
40
- for line in lines:
41
- ref_utt, ref_dur, ref_txt, gen_utt, gen_dur, gen_txt = line.strip().split("\t")
42
-
43
- # ref_txt = ref_txt[0] + ref_txt[1:].lower() + '.' # if use librispeech test-clean (no-pc)
44
- ref_spk_id, ref_chaptr_id, _ = ref_utt.split("-")
45
- ref_wav = os.path.join(librispeech_test_clean_path, ref_spk_id, ref_chaptr_id, ref_utt + ".flac")
46
-
47
- # gen_txt = gen_txt[0] + gen_txt[1:].lower() + '.' # if use librispeech test-clean (no-pc)
48
- gen_spk_id, gen_chaptr_id, _ = gen_utt.split("-")
49
- gen_wav = os.path.join(librispeech_test_clean_path, gen_spk_id, gen_chaptr_id, gen_utt + ".flac")
50
-
51
- metainfo.append((gen_utt, ref_txt, ref_wav, " " + gen_txt, gen_wav))
52
-
53
- return metainfo
54
-
55
-
56
- # padded to max length mel batch
57
- def padded_mel_batch(ref_mels):
58
- max_mel_length = torch.LongTensor([mel.shape[-1] for mel in ref_mels]).amax()
59
- padded_ref_mels = []
60
- for mel in ref_mels:
61
- padded_ref_mel = F.pad(mel, (0, max_mel_length - mel.shape[-1]), value=0)
62
- padded_ref_mels.append(padded_ref_mel)
63
- padded_ref_mels = torch.stack(padded_ref_mels)
64
- padded_ref_mels = padded_ref_mels.permute(0, 2, 1)
65
- return padded_ref_mels
66
-
67
-
68
- # get prompts from metainfo containing: utt, prompt_text, prompt_wav, gt_text, gt_wav
69
-
70
-
71
- def get_inference_prompt(
72
- metainfo,
73
- speed=1.0,
74
- tokenizer="pinyin",
75
- polyphone=True,
76
- target_sample_rate=24000,
77
- n_fft=1024,
78
- win_length=1024,
79
- n_mel_channels=100,
80
- hop_length=256,
81
- mel_spec_type="vocos",
82
- target_rms=0.1,
83
- use_truth_duration=False,
84
- infer_batch_size=1,
85
- num_buckets=200,
86
- min_secs=3,
87
- max_secs=40,
88
- ):
89
- prompts_all = []
90
-
91
- min_tokens = min_secs * target_sample_rate // hop_length
92
- max_tokens = max_secs * target_sample_rate // hop_length
93
-
94
- batch_accum = [0] * num_buckets
95
- utts, ref_rms_list, ref_mels, ref_mel_lens, total_mel_lens, final_text_list = (
96
- [[] for _ in range(num_buckets)] for _ in range(6)
97
- )
98
-
99
- mel_spectrogram = MelSpec(
100
- n_fft=n_fft,
101
- hop_length=hop_length,
102
- win_length=win_length,
103
- n_mel_channels=n_mel_channels,
104
- target_sample_rate=target_sample_rate,
105
- mel_spec_type=mel_spec_type,
106
- )
107
-
108
- for utt, prompt_text, prompt_wav, gt_text, gt_wav in tqdm(metainfo, desc="Processing prompts..."):
109
- # Audio
110
- ref_audio, ref_sr = torchaudio.load(prompt_wav)
111
- ref_rms = torch.sqrt(torch.mean(torch.square(ref_audio)))
112
- if ref_rms < target_rms:
113
- ref_audio = ref_audio * target_rms / ref_rms
114
- assert ref_audio.shape[-1] > 5000, f"Empty prompt wav: {prompt_wav}, or torchaudio backend issue."
115
- if ref_sr != target_sample_rate:
116
- resampler = torchaudio.transforms.Resample(ref_sr, target_sample_rate)
117
- ref_audio = resampler(ref_audio)
118
-
119
- # Text
120
- if len(prompt_text[-1].encode("utf-8")) == 1:
121
- prompt_text = prompt_text + " "
122
- text = [prompt_text + gt_text]
123
- if tokenizer == "pinyin":
124
- text_list = convert_char_to_pinyin(text, polyphone=polyphone)
125
- else:
126
- text_list = text
127
-
128
- # Duration, mel frame length
129
- ref_mel_len = ref_audio.shape[-1] // hop_length
130
- if use_truth_duration:
131
- gt_audio, gt_sr = torchaudio.load(gt_wav)
132
- if gt_sr != target_sample_rate:
133
- resampler = torchaudio.transforms.Resample(gt_sr, target_sample_rate)
134
- gt_audio = resampler(gt_audio)
135
- total_mel_len = ref_mel_len + int(gt_audio.shape[-1] / hop_length / speed)
136
-
137
- # # test vocoder resynthesis
138
- # ref_audio = gt_audio
139
- else:
140
- ref_text_len = len(prompt_text.encode("utf-8"))
141
- gen_text_len = len(gt_text.encode("utf-8"))
142
- total_mel_len = ref_mel_len + int(ref_mel_len / ref_text_len * gen_text_len / speed)
143
-
144
- # to mel spectrogram
145
- ref_mel = mel_spectrogram(ref_audio)
146
- ref_mel = ref_mel.squeeze(0)
147
-
148
- # deal with batch
149
- assert infer_batch_size > 0, "infer_batch_size should be greater than 0."
150
- assert (
151
- min_tokens <= total_mel_len <= max_tokens
152
- ), f"Audio {utt} has duration {total_mel_len*hop_length//target_sample_rate}s out of range [{min_secs}, {max_secs}]."
153
- bucket_i = math.floor((total_mel_len - min_tokens) / (max_tokens - min_tokens + 1) * num_buckets)
154
-
155
- utts[bucket_i].append(utt)
156
- ref_rms_list[bucket_i].append(ref_rms)
157
- ref_mels[bucket_i].append(ref_mel)
158
- ref_mel_lens[bucket_i].append(ref_mel_len)
159
- total_mel_lens[bucket_i].append(total_mel_len)
160
- final_text_list[bucket_i].extend(text_list)
161
-
162
- batch_accum[bucket_i] += total_mel_len
163
-
164
- if batch_accum[bucket_i] >= infer_batch_size:
165
- # print(f"\n{len(ref_mels[bucket_i][0][0])}\n{ref_mel_lens[bucket_i]}\n{total_mel_lens[bucket_i]}")
166
- prompts_all.append(
167
- (
168
- utts[bucket_i],
169
- ref_rms_list[bucket_i],
170
- padded_mel_batch(ref_mels[bucket_i]),
171
- ref_mel_lens[bucket_i],
172
- total_mel_lens[bucket_i],
173
- final_text_list[bucket_i],
174
- )
175
- )
176
- batch_accum[bucket_i] = 0
177
- (
178
- utts[bucket_i],
179
- ref_rms_list[bucket_i],
180
- ref_mels[bucket_i],
181
- ref_mel_lens[bucket_i],
182
- total_mel_lens[bucket_i],
183
- final_text_list[bucket_i],
184
- ) = [], [], [], [], [], []
185
-
186
- # add residual
187
- for bucket_i, bucket_frames in enumerate(batch_accum):
188
- if bucket_frames > 0:
189
- prompts_all.append(
190
- (
191
- utts[bucket_i],
192
- ref_rms_list[bucket_i],
193
- padded_mel_batch(ref_mels[bucket_i]),
194
- ref_mel_lens[bucket_i],
195
- total_mel_lens[bucket_i],
196
- final_text_list[bucket_i],
197
- )
198
- )
199
- # not only leave easy work for last workers
200
- random.seed(666)
201
- random.shuffle(prompts_all)
202
-
203
- return prompts_all
204
-
205
-
206
- # get wav_res_ref_text of seed-tts test metalst
207
- # https://github.com/BytedanceSpeech/seed-tts-eval
208
-
209
-
210
- def get_seed_tts_test(metalst, gen_wav_dir, gpus):
211
- f = open(metalst)
212
- lines = f.readlines()
213
- f.close()
214
-
215
- test_set_ = []
216
- for line in tqdm(lines):
217
- if len(line.strip().split("|")) == 5:
218
- utt, prompt_text, prompt_wav, gt_text, gt_wav = line.strip().split("|")
219
- elif len(line.strip().split("|")) == 4:
220
- utt, prompt_text, prompt_wav, gt_text = line.strip().split("|")
221
-
222
- if not os.path.exists(os.path.join(gen_wav_dir, utt + ".wav")):
223
- continue
224
- gen_wav = os.path.join(gen_wav_dir, utt + ".wav")
225
- if not os.path.isabs(prompt_wav):
226
- prompt_wav = os.path.join(os.path.dirname(metalst), prompt_wav)
227
-
228
- test_set_.append((gen_wav, prompt_wav, gt_text))
229
-
230
- num_jobs = len(gpus)
231
- if num_jobs == 1:
232
- return [(gpus[0], test_set_)]
233
-
234
- wav_per_job = len(test_set_) // num_jobs + 1
235
- test_set = []
236
- for i in range(num_jobs):
237
- test_set.append((gpus[i], test_set_[i * wav_per_job : (i + 1) * wav_per_job]))
238
-
239
- return test_set
240
-
241
-
242
- # get librispeech test-clean cross sentence test
243
-
244
-
245
- def get_librispeech_test(metalst, gen_wav_dir, gpus, librispeech_test_clean_path, eval_ground_truth=False):
246
- f = open(metalst)
247
- lines = f.readlines()
248
- f.close()
249
-
250
- test_set_ = []
251
- for line in tqdm(lines):
252
- ref_utt, ref_dur, ref_txt, gen_utt, gen_dur, gen_txt = line.strip().split("\t")
253
-
254
- if eval_ground_truth:
255
- gen_spk_id, gen_chaptr_id, _ = gen_utt.split("-")
256
- gen_wav = os.path.join(librispeech_test_clean_path, gen_spk_id, gen_chaptr_id, gen_utt + ".flac")
257
- else:
258
- if not os.path.exists(os.path.join(gen_wav_dir, gen_utt + ".wav")):
259
- raise FileNotFoundError(f"Generated wav not found: {gen_utt}")
260
- gen_wav = os.path.join(gen_wav_dir, gen_utt + ".wav")
261
-
262
- ref_spk_id, ref_chaptr_id, _ = ref_utt.split("-")
263
- ref_wav = os.path.join(librispeech_test_clean_path, ref_spk_id, ref_chaptr_id, ref_utt + ".flac")
264
-
265
- test_set_.append((gen_wav, ref_wav, gen_txt))
266
-
267
- num_jobs = len(gpus)
268
- if num_jobs == 1:
269
- return [(gpus[0], test_set_)]
270
-
271
- wav_per_job = len(test_set_) // num_jobs + 1
272
- test_set = []
273
- for i in range(num_jobs):
274
- test_set.append((gpus[i], test_set_[i * wav_per_job : (i + 1) * wav_per_job]))
275
-
276
- return test_set
277
-
278
-
279
- # load asr model
280
-
281
-
282
- def load_asr_model(lang, ckpt_dir=""):
283
- if lang == "zh":
284
- from funasr import AutoModel
285
-
286
- model = AutoModel(
287
- model=os.path.join(ckpt_dir, "paraformer-zh"),
288
- # vad_model = os.path.join(ckpt_dir, "fsmn-vad"),
289
- # punc_model = os.path.join(ckpt_dir, "ct-punc"),
290
- # spk_model = os.path.join(ckpt_dir, "cam++"),
291
- disable_update=True,
292
- ) # following seed-tts setting
293
- elif lang == "en":
294
- from faster_whisper import WhisperModel
295
-
296
- model_size = "large-v3" if ckpt_dir == "" else ckpt_dir
297
- model = WhisperModel(model_size, device="cuda", compute_type="float16")
298
- return model
299
-
300
-
301
- # WER Evaluation, the way Seed-TTS does
302
-
303
-
304
- def run_asr_wer(args):
305
- rank, lang, test_set, ckpt_dir = args
306
-
307
- if lang == "zh":
308
- import zhconv
309
-
310
- torch.cuda.set_device(rank)
311
- elif lang == "en":
312
- os.environ["CUDA_VISIBLE_DEVICES"] = str(rank)
313
- else:
314
- raise NotImplementedError(
315
- "lang support only 'zh' (funasr paraformer-zh), 'en' (faster-whisper-large-v3), for now."
316
- )
317
-
318
- asr_model = load_asr_model(lang, ckpt_dir=ckpt_dir)
319
-
320
- from zhon.hanzi import punctuation
321
-
322
- punctuation_all = punctuation + string.punctuation
323
- wers = []
324
-
325
- from jiwer import compute_measures
326
-
327
- for gen_wav, prompt_wav, truth in tqdm(test_set):
328
- if lang == "zh":
329
- res = asr_model.generate(input=gen_wav, batch_size_s=300, disable_pbar=True)
330
- hypo = res[0]["text"]
331
- hypo = zhconv.convert(hypo, "zh-cn")
332
- elif lang == "en":
333
- segments, _ = asr_model.transcribe(gen_wav, beam_size=5, language="en")
334
- hypo = ""
335
- for segment in segments:
336
- hypo = hypo + " " + segment.text
337
-
338
- # raw_truth = truth
339
- # raw_hypo = hypo
340
-
341
- for x in punctuation_all:
342
- truth = truth.replace(x, "")
343
- hypo = hypo.replace(x, "")
344
-
345
- truth = truth.replace(" ", " ")
346
- hypo = hypo.replace(" ", " ")
347
-
348
- if lang == "zh":
349
- truth = " ".join([x for x in truth])
350
- hypo = " ".join([x for x in hypo])
351
- elif lang == "en":
352
- truth = truth.lower()
353
- hypo = hypo.lower()
354
-
355
- measures = compute_measures(truth, hypo)
356
- wer = measures["wer"]
357
-
358
- # ref_list = truth.split(" ")
359
- # subs = measures["substitutions"] / len(ref_list)
360
- # dele = measures["deletions"] / len(ref_list)
361
- # inse = measures["insertions"] / len(ref_list)
362
-
363
- wers.append(wer)
364
-
365
- return wers
366
-
367
-
368
- # SIM Evaluation
369
-
370
-
371
- def run_sim(args):
372
- rank, test_set, ckpt_dir = args
373
- device = f"cuda:{rank}"
374
-
375
- model = ECAPA_TDNN_SMALL(feat_dim=1024, feat_type="wavlm_large", config_path=None)
376
- state_dict = torch.load(ckpt_dir, weights_only=True, map_location=lambda storage, loc: storage)
377
- model.load_state_dict(state_dict["model"], strict=False)
378
-
379
- use_gpu = True if torch.cuda.is_available() else False
380
- if use_gpu:
381
- model = model.cuda(device)
382
- model.eval()
383
-
384
- sim_list = []
385
- for wav1, wav2, truth in tqdm(test_set):
386
- wav1, sr1 = torchaudio.load(wav1)
387
- wav2, sr2 = torchaudio.load(wav2)
388
-
389
- resample1 = torchaudio.transforms.Resample(orig_freq=sr1, new_freq=16000)
390
- resample2 = torchaudio.transforms.Resample(orig_freq=sr2, new_freq=16000)
391
- wav1 = resample1(wav1)
392
- wav2 = resample2(wav2)
393
-
394
- if use_gpu:
395
- wav1 = wav1.cuda(device)
396
- wav2 = wav2.cuda(device)
397
- with torch.no_grad():
398
- emb1 = model(wav1)
399
- emb2 = model(wav2)
400
-
401
- sim = F.cosine_similarity(emb1, emb2)[0].item()
402
- # print(f"VSim score between two audios: {sim:.4f} (-1.0, 1.0).")
403
- sim_list.append(sim)
404
-
405
- return sim_list
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f5_tts/infer/README.md DELETED
@@ -1,193 +0,0 @@
1
- # Inference
2
-
3
- The pretrained model checkpoints can be reached at [🤗 Hugging Face](https://huggingface.co/SWivid/F5-TTS) and [🤖 Model Scope](https://www.modelscope.cn/models/SWivid/F5-TTS_Emilia-ZH-EN), or will be automatically downloaded when running inference scripts.
4
-
5
- **More checkpoints with whole community efforts can be found in [SHARED.md](SHARED.md), supporting more languages.**
6
-
7
- Currently support **30s for a single** generation, which is the **total length** including both prompt and output audio. However, you can provide `infer_cli` and `infer_gradio` with longer text, will automatically do chunk generation. Long reference audio will be **clip short to ~15s**.
8
-
9
- To avoid possible inference failures, make sure you have seen through the following instructions.
10
-
11
- - Use reference audio <15s and leave some silence (e.g. 1s) at the end. Otherwise there is a risk of truncating in the middle of word, leading to suboptimal generation.
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
20
-
21
- Currently supported features:
22
-
23
- - Basic TTS with Chunk Inference
24
- - Multi-Style / Multi-Speaker Generation
25
- - Voice Chat powered by Qwen2.5-3B-Instruct
26
-
27
- The cli command `f5-tts_infer-gradio` equals to `python src/f5_tts/infer/infer_gradio.py`, which launches a Gradio APP (web interface) for inference.
28
-
29
- The script will load model checkpoints from Huggingface. You can also manually download files and update the path to `load_model()` in `infer_gradio.py`. Currently only load TTS models first, will load ASR model to do transcription if `ref_text` not provided, will load LLM model if use Voice Chat.
30
-
31
- Could also be used as a component for larger application.
32
- ```python
33
- import gradio as gr
34
- from f5_tts.infer.infer_gradio import app
35
-
36
- with gr.Blocks() as main_app:
37
- gr.Markdown("# This is an example of using F5-TTS within a bigger Gradio app")
38
-
39
- # ... other Gradio components
40
-
41
- app.render()
42
-
43
- main_app.launch()
44
- ```
45
-
46
-
47
- ## CLI Inference
48
-
49
- The cli command `f5-tts_infer-cli` equals to `python src/f5_tts/infer/infer_cli.py`, which is a command line tool for inference.
50
-
51
- The script will load model checkpoints from Huggingface. You can also manually download files and use `--ckpt_file` to specify the model you want to load, or directly update in `infer_cli.py`.
52
-
53
- For change vocab.txt use `--vocab_file` to provide your `vocab.txt` file.
54
-
55
- Basically you can inference with flags:
56
- ```bash
57
- # Leave --ref_text "" will have ASR model transcribe (extra GPU memory usage)
58
- f5-tts_infer-cli \
59
- --model "F5-TTS" \
60
- --ref_audio "ref_audio.wav" \
61
- --ref_text "The content, subtitle or transcription of reference audio." \
62
- --gen_text "Some text you want TTS model generate for you."
63
-
64
- # Choose Vocoder
65
- f5-tts_infer-cli --vocoder_name bigvgan --load_vocoder_from_local --ckpt_file <YOUR_CKPT_PATH, eg:ckpts/F5TTS_Base_bigvgan/model_1250000.pt>
66
- f5-tts_infer-cli --vocoder_name vocos --load_vocoder_from_local --ckpt_file <YOUR_CKPT_PATH, eg:ckpts/F5TTS_Base/model_1200000.safetensors>
67
- ```
68
-
69
- And a `.toml` file would help with more flexible usage.
70
-
71
- ```bash
72
- f5-tts_infer-cli -c custom.toml
73
- ```
74
-
75
- For example, you can use `.toml` to pass in variables, refer to `src/f5_tts/infer/examples/basic/basic.toml`:
76
-
77
- ```toml
78
- # F5-TTS | E2-TTS
79
- model = "F5-TTS"
80
- ref_audio = "infer/examples/basic/basic_ref_en.wav"
81
- # If an empty "", transcribes the reference audio automatically.
82
- ref_text = "Some call me nature, others call me mother nature."
83
- gen_text = "I don't really care what you call me. I've been a silent spectator, watching species evolve, empires rise and fall. But always remember, I am mighty and enduring."
84
- # File with text to generate. Ignores the text above.
85
- gen_file = ""
86
- remove_silence = false
87
- output_dir = "tests"
88
- ```
89
-
90
- You can also leverage `.toml` file to do multi-style generation, refer to `src/f5_tts/infer/examples/multi/story.toml`.
91
-
92
- ```toml
93
- # F5-TTS | E2-TTS
94
- model = "F5-TTS"
95
- ref_audio = "infer/examples/multi/main.flac"
96
- # If an empty "", transcribes the reference audio automatically.
97
- ref_text = ""
98
- gen_text = ""
99
- # File with text to generate. Ignores the text above.
100
- gen_file = "infer/examples/multi/story.txt"
101
- remove_silence = true
102
- output_dir = "tests"
103
-
104
- [voices.town]
105
- ref_audio = "infer/examples/multi/town.flac"
106
- ref_text = ""
107
-
108
- [voices.country]
109
- ref_audio = "infer/examples/multi/country.flac"
110
- ref_text = ""
111
- ```
112
- You should mark the voice with `[main]` `[town]` `[country]` whenever you want to change voice, refer to `src/f5_tts/infer/examples/multi/story.txt`.
113
-
114
- ## Speech Editing
115
-
116
- To test speech editing capabilities, use the following command:
117
-
118
- ```bash
119
- python src/f5_tts/infer/speech_edit.py
120
- ```
121
-
122
- ## Socket Realtime Client
123
-
124
- To communicate with socket server you need to run
125
- ```bash
126
- python src/f5_tts/socket_server.py
127
- ```
128
-
129
- <details>
130
- <summary>Then create client to communicate</summary>
131
-
132
- ``` python
133
- import socket
134
- import numpy as np
135
- import asyncio
136
- import pyaudio
137
-
138
- async def listen_to_voice(text, server_ip='localhost', server_port=9999):
139
- client_socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
140
- client_socket.connect((server_ip, server_port))
141
-
142
- async def play_audio_stream():
143
- buffer = b''
144
- p = pyaudio.PyAudio()
145
- stream = p.open(format=pyaudio.paFloat32,
146
- channels=1,
147
- rate=24000, # Ensure this matches the server's sampling rate
148
- output=True,
149
- frames_per_buffer=2048)
150
-
151
- try:
152
- while True:
153
- chunk = await asyncio.get_event_loop().run_in_executor(None, client_socket.recv, 1024)
154
- if not chunk: # End of stream
155
- break
156
- if b"END_OF_AUDIO" in chunk:
157
- buffer += chunk.replace(b"END_OF_AUDIO", b"")
158
- if buffer:
159
- audio_array = np.frombuffer(buffer, dtype=np.float32).copy() # Make a writable copy
160
- stream.write(audio_array.tobytes())
161
- break
162
- buffer += chunk
163
- if len(buffer) >= 4096:
164
- audio_array = np.frombuffer(buffer[:4096], dtype=np.float32).copy() # Make a writable copy
165
- stream.write(audio_array.tobytes())
166
- buffer = buffer[4096:]
167
- finally:
168
- stream.stop_stream()
169
- stream.close()
170
- p.terminate()
171
-
172
- try:
173
- # Send only the text to the server
174
- await asyncio.get_event_loop().run_in_executor(None, client_socket.sendall, text.encode('utf-8'))
175
- await play_audio_stream()
176
- print("Audio playback finished.")
177
-
178
- except Exception as e:
179
- print(f"Error in listen_to_voice: {e}")
180
-
181
- finally:
182
- client_socket.close()
183
-
184
- # Example usage: Replace this with your actual server IP and port
185
- async def main():
186
- await listen_to_voice("my name is jenny..", server_ip='localhost', server_port=9998)
187
-
188
- # Run the main async function
189
- asyncio.run(main())
190
- ```
191
-
192
- </details>
193
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f5_tts/infer/SHARED.md DELETED
@@ -1,103 +0,0 @@
1
- <!-- omit in toc -->
2
- # Shared Model Cards
3
-
4
- <!-- omit in toc -->
5
- ### **Prerequisites of using**
6
- - This document is serving as a quick lookup table for the community training/finetuning result, with various language support.
7
- - The models in this repository are open source and are based on voluntary contributions from contributors.
8
- - The use of models must be conditioned on respect for the respective creators. The convenience brought comes from their efforts.
9
-
10
- <!-- omit in toc -->
11
- ### **Welcome to share here**
12
- - Have a pretrained/finetuned result: model checkpoint (pruned best to facilitate inference, i.e. leave only `ema_model_state_dict`) and corresponding vocab file (for tokenization).
13
- - Host a public [huggingface model repository](https://huggingface.co/new) and upload the model related files.
14
- - Make a pull request adding a model card to the current page, i.e. `src\f5_tts\infer\SHARED.md`.
15
-
16
- <!-- omit in toc -->
17
- ### Supported Languages
18
- - [Multilingual](#multilingual)
19
- - [F5-TTS Base @ pretrain @ zh \& en](#f5-tts-base--pretrain--zh--en)
20
- - [English](#english)
21
- - [Finnish](#finnish)
22
- - [Finnish Common\_Voice Vox\_Populi @ finetune @ fi](#finnish-common_voice-vox_populi--finetune--fi)
23
- - [French](#french)
24
- - [French LibriVox @ finetune @ fr](#french-librivox--finetune--fr)
25
- - [Japanese](#japanese)
26
- - [F5-TTS Japanese @ pretrain/finetune @ ja](#f5-tts-japanese--pretrainfinetune--ja)
27
- - [Mandarin](#mandarin)
28
- - [Spanish](#spanish)
29
- - [F5-TTS Spanish @ pretrain/finetune @ es](#f5-tts-spanish--pretrainfinetune--es)
30
-
31
-
32
- ## Multilingual
33
-
34
- #### F5-TTS Base @ pretrain @ zh & en
35
- |Model|🤗Hugging Face|Data (Hours)|Model License|
36
- |:---:|:------------:|:-----------:|:-------------:|
37
- |F5-TTS Base|[ckpt & vocab](https://huggingface.co/SWivid/F5-TTS/tree/main/F5TTS_Base)|[Emilia 95K zh&en](https://huggingface.co/datasets/amphion/Emilia-Dataset/tree/fc71e07)|cc-by-nc-4.0|
38
-
39
- ```bash
40
- MODEL_CKPT: hf://SWivid/F5-TTS/F5TTS_Base/model_1200000.safetensors
41
- VOCAB_FILE: hf://SWivid/F5-TTS/F5TTS_Base/vocab.txt
42
- ```
43
-
44
- *Other infos, e.g. Author info, Github repo, Link to some sampled results, Usage instruction, Tutorial (Blog, Video, etc.) ...*
45
-
46
-
47
- ## English
48
-
49
-
50
- ## Finnish
51
-
52
- #### Finnish Common_Voice Vox_Populi @ finetune @ fi
53
- |Model|🤗Hugging Face|Data|Model License|
54
- |:---:|:------------:|:-----------:|:-------------:|
55
- |F5-TTS Finnish|[ckpt & vocab](https://huggingface.co/AsmoKoskinen/F5-TTS_Finnish_Model)|[Common Voice](https://huggingface.co/datasets/mozilla-foundation/common_voice_17_0), [Vox Populi](https://huggingface.co/datasets/facebook/voxpopuli)|cc-by-nc-4.0|
56
-
57
- ```bash
58
- MODEL_CKPT: hf://AsmoKoskinen/F5-TTS_Finish_Model/model_common_voice_fi_vox_populi_fi_20241206.safetensors
59
- VOCAB_FILE: hf://AsmoKoskinen/F5-TTS_Finish_Model/vocab.txt
60
- ```
61
-
62
-
63
- ## French
64
-
65
- #### French LibriVox @ finetune @ fr
66
- |Model|🤗Hugging Face|Data (Hours)|Model License|
67
- |:---:|:------------:|:-----------:|:-------------:|
68
- |F5-TTS French|[ckpt & vocab](https://huggingface.co/RASPIAUDIO/F5-French-MixedSpeakers-reduced)|[LibriVox](https://librivox.org/)|cc-by-nc-4.0|
69
-
70
- ```bash
71
- MODEL_CKPT: hf://RASPIAUDIO/F5-French-MixedSpeakers-reduced/model_last_reduced.pt
72
- VOCAB_FILE: hf://RASPIAUDIO/F5-French-MixedSpeakers-reduced/vocab.txt
73
- ```
74
-
75
- - [Online Inference with Hugging Face Space](https://huggingface.co/spaces/RASPIAUDIO/f5-tts_french).
76
- - [Tutorial video to train a new language model](https://www.youtube.com/watch?v=UO4usaOojys).
77
- - [Discussion about this training can be found here](https://github.com/SWivid/F5-TTS/issues/434).
78
-
79
-
80
- ## Japanese
81
-
82
- #### F5-TTS Japanese @ pretrain/finetune @ ja
83
- |Model|🤗Hugging Face|Data (Hours)|Model License|
84
- |:---:|:------------:|:-----------:|:-------------:|
85
- |F5-TTS Japanese|[ckpt & vocab](https://huggingface.co/Jmica/F5TTS/tree/main/JA_8500000)|[Emilia 1.7k JA](https://huggingface.co/datasets/amphion/Emilia-Dataset/tree/fc71e07) & [Galgame Dataset 5.4k](https://huggingface.co/datasets/OOPPEENN/Galgame_Dataset)|cc-by-nc-4.0|
86
-
87
- ```bash
88
- MODEL_CKPT: hf://Jmica/F5TTS/JA_8500000/model_8499660.pt
89
- VOCAB_FILE: hf://Jmica/F5TTS/JA_8500000/vocab_updated.txt
90
- ```
91
-
92
-
93
- ## Mandarin
94
-
95
-
96
- ## Spanish
97
-
98
- #### F5-TTS Spanish @ pretrain/finetune @ es
99
- |Model|🤗Hugging Face|Data (Hours)|Model License|
100
- |:---:|:------------:|:-----------:|:-------------:|
101
- |F5-TTS Spanish|[ckpt & vocab](https://huggingface.co/jpgallegoar/F5-Spanish)|[Voxpopuli](https://huggingface.co/datasets/facebook/voxpopuli) & Crowdsourced & TEDx, 218 hours|cc0-1.0|
102
-
103
- - @jpgallegoar [GitHub repo](https://github.com/jpgallegoar/Spanish-F5), Jupyter Notebook and Gradio usage for Spanish model.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f5_tts/infer/__init__.py DELETED
File without changes
f5_tts/infer/examples/basic/basic.toml DELETED
@@ -1,11 +0,0 @@
1
- # F5-TTS | E2-TTS
2
- model = "F5-TTS"
3
- ref_audio = "infer/examples/basic/basic_ref_en.wav"
4
- # If an empty "", transcribes the reference audio automatically.
5
- ref_text = "Some call me nature, others call me mother nature."
6
- gen_text = "I don't really care what you call me. I've been a silent spectator, watching species evolve, empires rise and fall. But always remember, I am mighty and enduring."
7
- # File with text to generate. Ignores the text above.
8
- gen_file = ""
9
- remove_silence = false
10
- output_dir = "tests"
11
- output_file = "infer_cli_out.wav"
 
 
 
 
 
 
 
 
 
 
 
 
f5_tts/infer/examples/multi/story.toml DELETED
@@ -1,19 +0,0 @@
1
- # F5-TTS | E2-TTS
2
- model = "F5-TTS"
3
- ref_audio = "infer/examples/multi/main.flac"
4
- # If an empty "", transcribes the reference audio automatically.
5
- ref_text = ""
6
- gen_text = ""
7
- # File with text to generate. Ignores the text above.
8
- gen_file = "infer/examples/multi/story.txt"
9
- remove_silence = true
10
- output_dir = "tests"
11
-
12
- [voices.town]
13
- ref_audio = "infer/examples/multi/town.flac"
14
- ref_text = ""
15
-
16
- [voices.country]
17
- ref_audio = "infer/examples/multi/country.flac"
18
- ref_text = ""
19
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f5_tts/infer/examples/multi/story.txt DELETED
@@ -1 +0,0 @@
1
- A Town Mouse and a Country Mouse were acquaintances, and the Country Mouse one day invited his friend to come and see him at his home in the fields. The Town Mouse came, and they sat down to a dinner of barleycorns and roots, the latter of which had a distinctly earthy flavour. The fare was not much to the taste of the guest, and presently he broke out with [town] “My poor dear friend, you live here no better than the ants. Now, you should just see how I fare! My larder is a regular horn of plenty. You must come and stay with me, and I promise you you shall live on the fat of the land.” [main] So when he returned to town he took the Country Mouse with him, and showed him into a larder containing flour and oatmeal and figs and honey and dates. The Country Mouse had never seen anything like it, and sat down to enjoy the luxuries his friend provided: but before they had well begun, the door of the larder opened and someone came in. The two Mice scampered off and hid themselves in a narrow and exceedingly uncomfortable hole. Presently, when all was quiet, they ventured out again; but someone else came in, and off they scuttled again. This was too much for the visitor. [country] “Goodbye,” [main] said he, [country] “I’m off. You live in the lap of luxury, I can see, but you are surrounded by dangers; whereas at home I can enjoy my simple dinner of roots and corn in peace.”
 
 
f5_tts/infer/examples/vocab.txt DELETED
@@ -1,2545 +0,0 @@
1
-
2
- !
3
- "
4
- #
5
- $
6
- %
7
- &
8
- '
9
- (
10
- )
11
- *
12
- +
13
- ,
14
- -
15
- .
16
- /
17
- 0
18
- 1
19
- 2
20
- 3
21
- 4
22
- 5
23
- 6
24
- 7
25
- 8
26
- 9
27
- :
28
- ;
29
- =
30
- >
31
- ?
32
- @
33
- A
34
- B
35
- C
36
- D
37
- E
38
- F
39
- G
40
- H
41
- I
42
- J
43
- K
44
- L
45
- M
46
- N
47
- O
48
- P
49
- Q
50
- R
51
- S
52
- T
53
- U
54
- V
55
- W
56
- X
57
- Y
58
- Z
59
- [
60
- \
61
- ]
62
- _
63
- a
64
- a1
65
- ai1
66
- ai2
67
- ai3
68
- ai4
69
- an1
70
- an3
71
- an4
72
- ang1
73
- ang2
74
- ang4
75
- ao1
76
- ao2
77
- ao3
78
- ao4
79
- b
80
- ba
81
- ba1
82
- ba2
83
- ba3
84
- ba4
85
- bai1
86
- bai2
87
- bai3
88
- bai4
89
- ban1
90
- ban2
91
- ban3
92
- ban4
93
- bang1
94
- bang2
95
- bang3
96
- bang4
97
- bao1
98
- bao2
99
- bao3
100
- bao4
101
- bei
102
- bei1
103
- bei2
104
- bei3
105
- bei4
106
- ben1
107
- ben2
108
- ben3
109
- ben4
110
- beng
111
- beng1
112
- beng2
113
- beng3
114
- beng4
115
- bi1
116
- bi2
117
- bi3
118
- bi4
119
- bian1
120
- bian2
121
- bian3
122
- bian4
123
- biao1
124
- biao2
125
- biao3
126
- bie1
127
- bie2
128
- bie3
129
- bie4
130
- bin1
131
- bin4
132
- bing1
133
- bing2
134
- bing3
135
- bing4
136
- bo
137
- bo1
138
- bo2
139
- bo3
140
- bo4
141
- bu2
142
- bu3
143
- bu4
144
- c
145
- ca1
146
- cai1
147
- cai2
148
- cai3
149
- cai4
150
- can1
151
- can2
152
- can3
153
- can4
154
- cang1
155
- cang2
156
- cao1
157
- cao2
158
- cao3
159
- ce4
160
- cen1
161
- cen2
162
- ceng1
163
- ceng2
164
- ceng4
165
- cha1
166
- cha2
167
- cha3
168
- cha4
169
- chai1
170
- chai2
171
- chan1
172
- chan2
173
- chan3
174
- chan4
175
- chang1
176
- chang2
177
- chang3
178
- chang4
179
- chao1
180
- chao2
181
- chao3
182
- che1
183
- che2
184
- che3
185
- che4
186
- chen1
187
- chen2
188
- chen3
189
- chen4
190
- cheng1
191
- cheng2
192
- cheng3
193
- cheng4
194
- chi1
195
- chi2
196
- chi3
197
- chi4
198
- chong1
199
- chong2
200
- chong3
201
- chong4
202
- chou1
203
- chou2
204
- chou3
205
- chou4
206
- chu1
207
- chu2
208
- chu3
209
- chu4
210
- chua1
211
- chuai1
212
- chuai2
213
- chuai3
214
- chuai4
215
- chuan1
216
- chuan2
217
- chuan3
218
- chuan4
219
- chuang1
220
- chuang2
221
- chuang3
222
- chuang4
223
- chui1
224
- chui2
225
- chun1
226
- chun2
227
- chun3
228
- chuo1
229
- chuo4
230
- ci1
231
- ci2
232
- ci3
233
- ci4
234
- cong1
235
- cong2
236
- cou4
237
- cu1
238
- cu4
239
- cuan1
240
- cuan2
241
- cuan4
242
- cui1
243
- cui3
244
- cui4
245
- cun1
246
- cun2
247
- cun4
248
- cuo1
249
- cuo2
250
- cuo4
251
- d
252
- da
253
- da1
254
- da2
255
- da3
256
- da4
257
- dai1
258
- dai2
259
- dai3
260
- dai4
261
- dan1
262
- dan2
263
- dan3
264
- dan4
265
- dang1
266
- dang2
267
- dang3
268
- dang4
269
- dao1
270
- dao2
271
- dao3
272
- dao4
273
- de
274
- de1
275
- de2
276
- dei3
277
- den4
278
- deng1
279
- deng2
280
- deng3
281
- deng4
282
- di1
283
- di2
284
- di3
285
- di4
286
- dia3
287
- dian1
288
- dian2
289
- dian3
290
- dian4
291
- diao1
292
- diao3
293
- diao4
294
- die1
295
- die2
296
- die4
297
- ding1
298
- ding2
299
- ding3
300
- ding4
301
- diu1
302
- dong1
303
- dong3
304
- dong4
305
- dou1
306
- dou2
307
- dou3
308
- dou4
309
- du1
310
- du2
311
- du3
312
- du4
313
- duan1
314
- duan2
315
- duan3
316
- duan4
317
- dui1
318
- dui4
319
- dun1
320
- dun3
321
- dun4
322
- duo1
323
- duo2
324
- duo3
325
- duo4
326
- e
327
- e1
328
- e2
329
- e3
330
- e4
331
- ei2
332
- en1
333
- en4
334
- er
335
- er2
336
- er3
337
- er4
338
- f
339
- fa1
340
- fa2
341
- fa3
342
- fa4
343
- fan1
344
- fan2
345
- fan3
346
- fan4
347
- fang1
348
- fang2
349
- fang3
350
- fang4
351
- fei1
352
- fei2
353
- fei3
354
- fei4
355
- fen1
356
- fen2
357
- fen3
358
- fen4
359
- feng1
360
- feng2
361
- feng3
362
- feng4
363
- fo2
364
- fou2
365
- fou3
366
- fu1
367
- fu2
368
- fu3
369
- fu4
370
- g
371
- ga1
372
- ga2
373
- ga3
374
- ga4
375
- gai1
376
- gai2
377
- gai3
378
- gai4
379
- gan1
380
- gan2
381
- gan3
382
- gan4
383
- gang1
384
- gang2
385
- gang3
386
- gang4
387
- gao1
388
- gao2
389
- gao3
390
- gao4
391
- ge1
392
- ge2
393
- ge3
394
- ge4
395
- gei2
396
- gei3
397
- gen1
398
- gen2
399
- gen3
400
- gen4
401
- geng1
402
- geng3
403
- geng4
404
- gong1
405
- gong3
406
- gong4
407
- gou1
408
- gou2
409
- gou3
410
- gou4
411
- gu
412
- gu1
413
- gu2
414
- gu3
415
- gu4
416
- gua1
417
- gua2
418
- gua3
419
- gua4
420
- guai1
421
- guai2
422
- guai3
423
- guai4
424
- guan1
425
- guan2
426
- guan3
427
- guan4
428
- guang1
429
- guang2
430
- guang3
431
- guang4
432
- gui1
433
- gui2
434
- gui3
435
- gui4
436
- gun3
437
- gun4
438
- guo1
439
- guo2
440
- guo3
441
- guo4
442
- h
443
- ha1
444
- ha2
445
- ha3
446
- hai1
447
- hai2
448
- hai3
449
- hai4
450
- han1
451
- han2
452
- han3
453
- han4
454
- hang1
455
- hang2
456
- hang4
457
- hao1
458
- hao2
459
- hao3
460
- hao4
461
- he1
462
- he2
463
- he4
464
- hei1
465
- hen2
466
- hen3
467
- hen4
468
- heng1
469
- heng2
470
- heng4
471
- hong1
472
- hong2
473
- hong3
474
- hong4
475
- hou1
476
- hou2
477
- hou3
478
- hou4
479
- hu1
480
- hu2
481
- hu3
482
- hu4
483
- hua1
484
- hua2
485
- hua4
486
- huai2
487
- huai4
488
- huan1
489
- huan2
490
- huan3
491
- huan4
492
- huang1
493
- huang2
494
- huang3
495
- huang4
496
- hui1
497
- hui2
498
- hui3
499
- hui4
500
- hun1
501
- hun2
502
- hun4
503
- huo
504
- huo1
505
- huo2
506
- huo3
507
- huo4
508
- i
509
- j
510
- ji1
511
- ji2
512
- ji3
513
- ji4
514
- jia
515
- jia1
516
- jia2
517
- jia3
518
- jia4
519
- jian1
520
- jian2
521
- jian3
522
- jian4
523
- jiang1
524
- jiang2
525
- jiang3
526
- jiang4
527
- jiao1
528
- jiao2
529
- jiao3
530
- jiao4
531
- jie1
532
- jie2
533
- jie3
534
- jie4
535
- jin1
536
- jin2
537
- jin3
538
- jin4
539
- jing1
540
- jing2
541
- jing3
542
- jing4
543
- jiong3
544
- jiu1
545
- jiu2
546
- jiu3
547
- jiu4
548
- ju1
549
- ju2
550
- ju3
551
- ju4
552
- juan1
553
- juan2
554
- juan3
555
- juan4
556
- jue1
557
- jue2
558
- jue4
559
- jun1
560
- jun4
561
- k
562
- ka1
563
- ka2
564
- ka3
565
- kai1
566
- kai2
567
- kai3
568
- kai4
569
- kan1
570
- kan2
571
- kan3
572
- kan4
573
- kang1
574
- kang2
575
- kang4
576
- kao1
577
- kao2
578
- kao3
579
- kao4
580
- ke1
581
- ke2
582
- ke3
583
- ke4
584
- ken3
585
- keng1
586
- kong1
587
- kong3
588
- kong4
589
- kou1
590
- kou2
591
- kou3
592
- kou4
593
- ku1
594
- ku2
595
- ku3
596
- ku4
597
- kua1
598
- kua3
599
- kua4
600
- kuai3
601
- kuai4
602
- kuan1
603
- kuan2
604
- kuan3
605
- kuang1
606
- kuang2
607
- kuang4
608
- kui1
609
- kui2
610
- kui3
611
- kui4
612
- kun1
613
- kun3
614
- kun4
615
- kuo4
616
- l
617
- la
618
- la1
619
- la2
620
- la3
621
- la4
622
- lai2
623
- lai4
624
- lan2
625
- lan3
626
- lan4
627
- lang1
628
- lang2
629
- lang3
630
- lang4
631
- lao1
632
- lao2
633
- lao3
634
- lao4
635
- le
636
- le1
637
- le4
638
- lei
639
- lei1
640
- lei2
641
- lei3
642
- lei4
643
- leng1
644
- leng2
645
- leng3
646
- leng4
647
- li
648
- li1
649
- li2
650
- li3
651
- li4
652
- lia3
653
- lian2
654
- lian3
655
- lian4
656
- liang2
657
- liang3
658
- liang4
659
- liao1
660
- liao2
661
- liao3
662
- liao4
663
- lie1
664
- lie2
665
- lie3
666
- lie4
667
- lin1
668
- lin2
669
- lin3
670
- lin4
671
- ling2
672
- ling3
673
- ling4
674
- liu1
675
- liu2
676
- liu3
677
- liu4
678
- long1
679
- long2
680
- long3
681
- long4
682
- lou1
683
- lou2
684
- lou3
685
- lou4
686
- lu1
687
- lu2
688
- lu3
689
- lu4
690
- luan2
691
- luan3
692
- luan4
693
- lun1
694
- lun2
695
- lun4
696
- luo1
697
- luo2
698
- luo3
699
- luo4
700
- lv2
701
- lv3
702
- lv4
703
- lve3
704
- lve4
705
- m
706
- ma
707
- ma1
708
- ma2
709
- ma3
710
- ma4
711
- mai2
712
- mai3
713
- mai4
714
- man1
715
- man2
716
- man3
717
- man4
718
- mang2
719
- mang3
720
- mao1
721
- mao2
722
- mao3
723
- mao4
724
- me
725
- mei2
726
- mei3
727
- mei4
728
- men
729
- men1
730
- men2
731
- men4
732
- meng
733
- meng1
734
- meng2
735
- meng3
736
- meng4
737
- mi1
738
- mi2
739
- mi3
740
- mi4
741
- mian2
742
- mian3
743
- mian4
744
- miao1
745
- miao2
746
- miao3
747
- miao4
748
- mie1
749
- mie4
750
- min2
751
- min3
752
- ming2
753
- ming3
754
- ming4
755
- miu4
756
- mo1
757
- mo2
758
- mo3
759
- mo4
760
- mou1
761
- mou2
762
- mou3
763
- mu2
764
- mu3
765
- mu4
766
- n
767
- n2
768
- na1
769
- na2
770
- na3
771
- na4
772
- nai2
773
- nai3
774
- nai4
775
- nan1
776
- nan2
777
- nan3
778
- nan4
779
- nang1
780
- nang2
781
- nang3
782
- nao1
783
- nao2
784
- nao3
785
- nao4
786
- ne
787
- ne2
788
- ne4
789
- nei3
790
- nei4
791
- nen4
792
- neng2
793
- ni1
794
- ni2
795
- ni3
796
- ni4
797
- nian1
798
- nian2
799
- nian3
800
- nian4
801
- niang2
802
- niang4
803
- niao2
804
- niao3
805
- niao4
806
- nie1
807
- nie4
808
- nin2
809
- ning2
810
- ning3
811
- ning4
812
- niu1
813
- niu2
814
- niu3
815
- niu4
816
- nong2
817
- nong4
818
- nou4
819
- nu2
820
- nu3
821
- nu4
822
- nuan3
823
- nuo2
824
- nuo4
825
- nv2
826
- nv3
827
- nve4
828
- o
829
- o1
830
- o2
831
- ou1
832
- ou2
833
- ou3
834
- ou4
835
- p
836
- pa1
837
- pa2
838
- pa4
839
- pai1
840
- pai2
841
- pai3
842
- pai4
843
- pan1
844
- pan2
845
- pan4
846
- pang1
847
- pang2
848
- pang4
849
- pao1
850
- pao2
851
- pao3
852
- pao4
853
- pei1
854
- pei2
855
- pei4
856
- pen1
857
- pen2
858
- pen4
859
- peng1
860
- peng2
861
- peng3
862
- peng4
863
- pi1
864
- pi2
865
- pi3
866
- pi4
867
- pian1
868
- pian2
869
- pian4
870
- piao1
871
- piao2
872
- piao3
873
- piao4
874
- pie1
875
- pie2
876
- pie3
877
- pin1
878
- pin2
879
- pin3
880
- pin4
881
- ping1
882
- ping2
883
- po1
884
- po2
885
- po3
886
- po4
887
- pou1
888
- pu1
889
- pu2
890
- pu3
891
- pu4
892
- q
893
- qi1
894
- qi2
895
- qi3
896
- qi4
897
- qia1
898
- qia3
899
- qia4
900
- qian1
901
- qian2
902
- qian3
903
- qian4
904
- qiang1
905
- qiang2
906
- qiang3
907
- qiang4
908
- qiao1
909
- qiao2
910
- qiao3
911
- qiao4
912
- qie1
913
- qie2
914
- qie3
915
- qie4
916
- qin1
917
- qin2
918
- qin3
919
- qin4
920
- qing1
921
- qing2
922
- qing3
923
- qing4
924
- qiong1
925
- qiong2
926
- qiu1
927
- qiu2
928
- qiu3
929
- qu1
930
- qu2
931
- qu3
932
- qu4
933
- quan1
934
- quan2
935
- quan3
936
- quan4
937
- que1
938
- que2
939
- que4
940
- qun2
941
- r
942
- ran2
943
- ran3
944
- rang1
945
- rang2
946
- rang3
947
- rang4
948
- rao2
949
- rao3
950
- rao4
951
- re2
952
- re3
953
- re4
954
- ren2
955
- ren3
956
- ren4
957
- reng1
958
- reng2
959
- ri4
960
- rong1
961
- rong2
962
- rong3
963
- rou2
964
- rou4
965
- ru2
966
- ru3
967
- ru4
968
- ruan2
969
- ruan3
970
- rui3
971
- rui4
972
- run4
973
- ruo4
974
- s
975
- sa1
976
- sa2
977
- sa3
978
- sa4
979
- sai1
980
- sai4
981
- san1
982
- san2
983
- san3
984
- san4
985
- sang1
986
- sang3
987
- sang4
988
- sao1
989
- sao2
990
- sao3
991
- sao4
992
- se4
993
- sen1
994
- seng1
995
- sha1
996
- sha2
997
- sha3
998
- sha4
999
- shai1
1000
- shai2
1001
- shai3
1002
- shai4
1003
- shan1
1004
- shan3
1005
- shan4
1006
- shang
1007
- shang1
1008
- shang3
1009
- shang4
1010
- shao1
1011
- shao2
1012
- shao3
1013
- shao4
1014
- she1
1015
- she2
1016
- she3
1017
- she4
1018
- shei2
1019
- shen1
1020
- shen2
1021
- shen3
1022
- shen4
1023
- sheng1
1024
- sheng2
1025
- sheng3
1026
- sheng4
1027
- shi
1028
- shi1
1029
- shi2
1030
- shi3
1031
- shi4
1032
- shou1
1033
- shou2
1034
- shou3
1035
- shou4
1036
- shu1
1037
- shu2
1038
- shu3
1039
- shu4
1040
- shua1
1041
- shua2
1042
- shua3
1043
- shua4
1044
- shuai1
1045
- shuai3
1046
- shuai4
1047
- shuan1
1048
- shuan4
1049
- shuang1
1050
- shuang3
1051
- shui2
1052
- shui3
1053
- shui4
1054
- shun3
1055
- shun4
1056
- shuo1
1057
- shuo4
1058
- si1
1059
- si2
1060
- si3
1061
- si4
1062
- song1
1063
- song3
1064
- song4
1065
- sou1
1066
- sou3
1067
- sou4
1068
- su1
1069
- su2
1070
- su4
1071
- suan1
1072
- suan4
1073
- sui1
1074
- sui2
1075
- sui3
1076
- sui4
1077
- sun1
1078
- sun3
1079
- suo
1080
- suo1
1081
- suo2
1082
- suo3
1083
- t
1084
- ta1
1085
- ta2
1086
- ta3
1087
- ta4
1088
- tai1
1089
- tai2
1090
- tai4
1091
- tan1
1092
- tan2
1093
- tan3
1094
- tan4
1095
- tang1
1096
- tang2
1097
- tang3
1098
- tang4
1099
- tao1
1100
- tao2
1101
- tao3
1102
- tao4
1103
- te4
1104
- teng2
1105
- ti1
1106
- ti2
1107
- ti3
1108
- ti4
1109
- tian1
1110
- tian2
1111
- tian3
1112
- tiao1
1113
- tiao2
1114
- tiao3
1115
- tiao4
1116
- tie1
1117
- tie2
1118
- tie3
1119
- tie4
1120
- ting1
1121
- ting2
1122
- ting3
1123
- tong1
1124
- tong2
1125
- tong3
1126
- tong4
1127
- tou
1128
- tou1
1129
- tou2
1130
- tou4
1131
- tu1
1132
- tu2
1133
- tu3
1134
- tu4
1135
- tuan1
1136
- tuan2
1137
- tui1
1138
- tui2
1139
- tui3
1140
- tui4
1141
- tun1
1142
- tun2
1143
- tun4
1144
- tuo1
1145
- tuo2
1146
- tuo3
1147
- tuo4
1148
- u
1149
- v
1150
- w
1151
- wa
1152
- wa1
1153
- wa2
1154
- wa3
1155
- wa4
1156
- wai1
1157
- wai3
1158
- wai4
1159
- wan1
1160
- wan2
1161
- wan3
1162
- wan4
1163
- wang1
1164
- wang2
1165
- wang3
1166
- wang4
1167
- wei1
1168
- wei2
1169
- wei3
1170
- wei4
1171
- wen1
1172
- wen2
1173
- wen3
1174
- wen4
1175
- weng1
1176
- weng4
1177
- wo1
1178
- wo2
1179
- wo3
1180
- wo4
1181
- wu1
1182
- wu2
1183
- wu3
1184
- wu4
1185
- x
1186
- xi1
1187
- xi2
1188
- xi3
1189
- xi4
1190
- xia1
1191
- xia2
1192
- xia4
1193
- xian1
1194
- xian2
1195
- xian3
1196
- xian4
1197
- xiang1
1198
- xiang2
1199
- xiang3
1200
- xiang4
1201
- xiao1
1202
- xiao2
1203
- xiao3
1204
- xiao4
1205
- xie1
1206
- xie2
1207
- xie3
1208
- xie4
1209
- xin1
1210
- xin2
1211
- xin4
1212
- xing1
1213
- xing2
1214
- xing3
1215
- xing4
1216
- xiong1
1217
- xiong2
1218
- xiu1
1219
- xiu3
1220
- xiu4
1221
- xu
1222
- xu1
1223
- xu2
1224
- xu3
1225
- xu4
1226
- xuan1
1227
- xuan2
1228
- xuan3
1229
- xuan4
1230
- xue1
1231
- xue2
1232
- xue3
1233
- xue4
1234
- xun1
1235
- xun2
1236
- xun4
1237
- y
1238
- ya
1239
- ya1
1240
- ya2
1241
- ya3
1242
- ya4
1243
- yan1
1244
- yan2
1245
- yan3
1246
- yan4
1247
- yang1
1248
- yang2
1249
- yang3
1250
- yang4
1251
- yao1
1252
- yao2
1253
- yao3
1254
- yao4
1255
- ye1
1256
- ye2
1257
- ye3
1258
- ye4
1259
- yi
1260
- yi1
1261
- yi2
1262
- yi3
1263
- yi4
1264
- yin1
1265
- yin2
1266
- yin3
1267
- yin4
1268
- ying1
1269
- ying2
1270
- ying3
1271
- ying4
1272
- yo1
1273
- yong1
1274
- yong2
1275
- yong3
1276
- yong4
1277
- you1
1278
- you2
1279
- you3
1280
- you4
1281
- yu1
1282
- yu2
1283
- yu3
1284
- yu4
1285
- yuan1
1286
- yuan2
1287
- yuan3
1288
- yuan4
1289
- yue1
1290
- yue4
1291
- yun1
1292
- yun2
1293
- yun3
1294
- yun4
1295
- z
1296
- za1
1297
- za2
1298
- za3
1299
- zai1
1300
- zai3
1301
- zai4
1302
- zan1
1303
- zan2
1304
- zan3
1305
- zan4
1306
- zang1
1307
- zang4
1308
- zao1
1309
- zao2
1310
- zao3
1311
- zao4
1312
- ze2
1313
- ze4
1314
- zei2
1315
- zen3
1316
- zeng1
1317
- zeng4
1318
- zha1
1319
- zha2
1320
- zha3
1321
- zha4
1322
- zhai1
1323
- zhai2
1324
- zhai3
1325
- zhai4
1326
- zhan1
1327
- zhan2
1328
- zhan3
1329
- zhan4
1330
- zhang1
1331
- zhang2
1332
- zhang3
1333
- zhang4
1334
- zhao1
1335
- zhao2
1336
- zhao3
1337
- zhao4
1338
- zhe
1339
- zhe1
1340
- zhe2
1341
- zhe3
1342
- zhe4
1343
- zhen1
1344
- zhen2
1345
- zhen3
1346
- zhen4
1347
- zheng1
1348
- zheng2
1349
- zheng3
1350
- zheng4
1351
- zhi1
1352
- zhi2
1353
- zhi3
1354
- zhi4
1355
- zhong1
1356
- zhong2
1357
- zhong3
1358
- zhong4
1359
- zhou1
1360
- zhou2
1361
- zhou3
1362
- zhou4
1363
- zhu1
1364
- zhu2
1365
- zhu3
1366
- zhu4
1367
- zhua1
1368
- zhua2
1369
- zhua3
1370
- zhuai1
1371
- zhuai3
1372
- zhuai4
1373
- zhuan1
1374
- zhuan2
1375
- zhuan3
1376
- zhuan4
1377
- zhuang1
1378
- zhuang4
1379
- zhui1
1380
- zhui4
1381
- zhun1
1382
- zhun2
1383
- zhun3
1384
- zhuo1
1385
- zhuo2
1386
- zi
1387
- zi1
1388
- zi2
1389
- zi3
1390
- zi4
1391
- zong1
1392
- zong2
1393
- zong3
1394
- zong4
1395
- zou1
1396
- zou2
1397
- zou3
1398
- zou4
1399
- zu1
1400
- zu2
1401
- zu3
1402
- zuan1
1403
- zuan3
1404
- zuan4
1405
- zui2
1406
- zui3
1407
- zui4
1408
- zun1
1409
- zuo
1410
- zuo1
1411
- zuo2
1412
- zuo3
1413
- zuo4
1414
- {
1415
- ~
1416
- ¡
1417
- ¢
1418
- £
1419
- ¥
1420
- §
1421
- ¨
1422
- ©
1423
- «
1424
- ®
1425
- ¯
1426
- °
1427
- ±
1428
- ²
1429
- ³
1430
- ´
1431
- µ
1432
- ·
1433
- ¹
1434
- º
1435
- »
1436
- ¼
1437
- ½
1438
- ¾
1439
- ¿
1440
- À
1441
- Á
1442
- Â
1443
- Ã
1444
- Ä
1445
- Å
1446
- Æ
1447
- Ç
1448
- È
1449
- É
1450
- Ê
1451
- Í
1452
- Î
1453
- Ñ
1454
- Ó
1455
- Ö
1456
- ×
1457
- Ø
1458
- Ú
1459
- Ü
1460
- Ý
1461
- Þ
1462
- ß
1463
- à
1464
- á
1465
- â
1466
- ã
1467
- ä
1468
- å
1469
- æ
1470
- ç
1471
- è
1472
- é
1473
- ê
1474
- ë
1475
- ì
1476
- í
1477
- î
1478
- ï
1479
- ð
1480
- ñ
1481
- ò
1482
- ó
1483
- ô
1484
- õ
1485
- ö
1486
- ø
1487
- ù
1488
- ú
1489
- û
1490
- ü
1491
- ý
1492
- Ā
1493
- ā
1494
- ă
1495
- ą
1496
- ć
1497
- Č
1498
- č
1499
- Đ
1500
- đ
1501
- ē
1502
- ė
1503
- ę
1504
- ě
1505
- ĝ
1506
- ğ
1507
- ħ
1508
- ī
1509
- į
1510
- İ
1511
- ı
1512
- Ł
1513
- ł
1514
- ń
1515
- ņ
1516
- ň
1517
- ŋ
1518
- Ō
1519
- ō
1520
- ő
1521
- œ
1522
- ř
1523
- Ś
1524
- ś
1525
- Ş
1526
- ş
1527
- Š
1528
- š
1529
- Ť
1530
- ť
1531
- ũ
1532
- ū
1533
- ź
1534
- Ż
1535
- ż
1536
- Ž
1537
- ž
1538
- ơ
1539
- ư
1540
- ǎ
1541
- ǐ
1542
- ǒ
1543
- ǔ
1544
- ǚ
1545
- ș
1546
- ț
1547
- ɑ
1548
- ɔ
1549
- ɕ
1550
- ə
1551
- ɛ
1552
- ɜ
1553
- ɡ
1554
- ɣ
1555
- ɪ
1556
- ɫ
1557
- ɴ
1558
- ɹ
1559
- ɾ
1560
- ʃ
1561
- ʊ
1562
- ʌ
1563
- ʒ
1564
- ʔ
1565
- ʰ
1566
- ʷ
1567
- ʻ
1568
- ʾ
1569
- ʿ
1570
- ˈ
1571
- ː
1572
- ˙
1573
- ˜
1574
- ˢ
1575
- ́
1576
- ̅
1577
- Α
1578
- Β
1579
- Δ
1580
- Ε
1581
- Θ
1582
- Κ
1583
- Λ
1584
- Μ
1585
- Ξ
1586
- Π
1587
- Σ
1588
- Τ
1589
- Φ
1590
- Χ
1591
- Ψ
1592
- Ω
1593
- ά
1594
- έ
1595
- ή
1596
- ί
1597
- α
1598
- β
1599
- γ
1600
- δ
1601
- ε
1602
- ζ
1603
- η
1604
- θ
1605
- ι
1606
- κ
1607
- λ
1608
- μ
1609
- ν
1610
- ξ
1611
- ο
1612
- π
1613
- ρ
1614
- ς
1615
- σ
1616
- τ
1617
- υ
1618
- φ
1619
- χ
1620
- ψ
1621
- ω
1622
- ϊ
1623
- ό
1624
- ύ
1625
- ώ
1626
- ϕ
1627
- ϵ
1628
- Ё
1629
- А
1630
- Б
1631
- В
1632
- Г
1633
- Д
1634
- Е
1635
- Ж
1636
- З
1637
- И
1638
- Й
1639
- К
1640
- Л
1641
- М
1642
- Н
1643
- О
1644
- П
1645
- Р
1646
- С
1647
- Т
1648
- У
1649
- Ф
1650
- Х
1651
- Ц
1652
- Ч
1653
- Ш
1654
- Щ
1655
- Ы
1656
- Ь
1657
- Э
1658
- Ю
1659
- Я
1660
- а
1661
- б
1662
- в
1663
- г
1664
- д
1665
- е
1666
- ж
1667
- з
1668
- и
1669
- й
1670
- к
1671
- л
1672
- м
1673
- н
1674
- о
1675
- п
1676
- р
1677
- с
1678
- т
1679
- у
1680
- ф
1681
- х
1682
- ц
1683
- ч
1684
- ш
1685
- щ
1686
- ъ
1687
- ы
1688
- ь
1689
- э
1690
- ю
1691
- я
1692
- ё
1693
- і
1694
- ְ
1695
- ִ
1696
- ֵ
1697
- ֶ
1698
- ַ
1699
- ָ
1700
- ֹ
1701
- ּ
1702
- ־
1703
- ׁ
1704
- א
1705
- ב
1706
- ג
1707
- ד
1708
- ה
1709
- ו
1710
- ז
1711
- ח
1712
- ט
1713
- י
1714
- כ
1715
- ל
1716
- ם
1717
- מ
1718
- ן
1719
- נ
1720
- ס
1721
- ע
1722
- פ
1723
- ק
1724
- ר
1725
- ש
1726
- ת
1727
- أ
1728
- ب
1729
- ة
1730
- ت
1731
- ج
1732
- ح
1733
- د
1734
- ر
1735
- ز
1736
- س
1737
- ص
1738
- ط
1739
- ع
1740
- ق
1741
- ك
1742
- ل
1743
- م
1744
- ن
1745
- ه
1746
- و
1747
- ي
1748
- َ
1749
- ُ
1750
- ِ
1751
- ْ
1752
-
1753
-
1754
-
1755
-
1756
-
1757
-
1758
-
1759
-
1760
-
1761
-
1762
-
1763
-
1764
-
1765
-
1766
-
1767
-
1768
-
1769
-
1770
-
1771
-
1772
-
1773
-
1774
-
1775
-
1776
-
1777
-
1778
-
1779
-
1780
-
1781
-
1782
-
1783
-
1784
-
1785
-
1786
-
1787
-
1788
-
1789
-
1790
-
1791
-
1792
-
1793
-
1794
-
1795
-
1796
-
1797
-
1798
-
1799
-
1800
- ế
1801
-
1802
-
1803
-
1804
-
1805
-
1806
-
1807
-
1808
-
1809
-
1810
-
1811
-
1812
-
1813
-
1814
-
1815
-
1816
-
1817
-
1818
-
1819
-
1820
-
1821
-
1822
-
1823
-
1824
-
1825
-
1826
-
1827
-
1828
-
1829
-
1830
- ���
1831
-
1832
-
1833
-
1834
-
1835
-
1836
-
1837
-
1838
-
1839
-
1840
-
1841
-
1842
-
1843
-
1844
-
1845
-
1846
-
1847
-
1848
-
1849
-
1850
-
1851
-
1852
-
1853
-
1854
-
1855
-
1856
-
1857
-
1858
-
1859
-
1860
-
1861
-
1862
-
1863
-
1864
-
1865
-
1866
-
1867
-
1868
-
1869
-
1870
-
1871
-
1872
-
1873
-
1874
-
1875
-
1876
-
1877
-
1878
-
1879
-
1880
-
1881
-
1882
-
1883
-
1884
-
1885
-
1886
-
1887
-
1888
-
1889
-
1890
-
1891
-
1892
-
1893
-
1894
-
1895
-
1896
-
1897
-
1898
-
1899
-
1900
-
1901
-
1902
-
1903
-
1904
-
1905
-
1906
-
1907
-
1908
-
1909
-
1910
-
1911
-
1912
-
1913
-
1914
-
1915
-
1916
-
1917
-
1918
-
1919
-
1920
-
1921
-
1922
-
1923
-
1924
-
1925
-
1926
-
1927
-
1928
-
1929
-
1930
-
1931
-
1932
-
1933
-
1934
-
1935
-
1936
-
1937
-
1938
-
1939
-
1940
-
1941
-
1942
-
1943
-
1944
-
1945
-
1946
-
1947
-
1948
-
1949
-
1950
-
1951
-
1952
-
1953
-
1954
-
1955
-
1956
-
1957
-
1958
-
1959
-
1960
-
1961
-
1962
-
1963
-
1964
-
1965
-
1966
-
1967
-
1968
-
1969
-
1970
-
1971
-
1972
-
1973
-
1974
-
1975
-
1976
-
1977
-
1978
-
1979
-
1980
-
1981
-
1982
-
1983
-
1984
-
1985
-
1986
-
1987
-
1988
-
1989
-
1990
-
1991
-
1992
-
1993
-
1994
-
1995
-
1996
-
1997
-
1998
-
1999
-
2000
-
2001
-
2002
-
2003
-
2004
-
2005
-
2006
-
2007
-
2008
-
2009
-
2010
-
2011
-
2012
-
2013
-
2014
-
2015
-
2016
-
2017
-
2018
-
2019
-
2020
-
2021
-
2022
-
2023
-
2024
-
2025
-
2026
-
2027
-
2028
-
2029
-
2030
-
2031
-
2032
-
2033
-
2034
-
2035
-
2036
-
2037
-
2038
-
2039
-
2040
-
2041
-
2042
-
2043
-
2044
-
2045
-
2046
-
2047
-
2048
-
2049
-
2050
-
2051
-
2052
-
2053
-
2054
-
2055
-
2056
-
2057
-
2058
-
2059
-
2060
-
2061
-
2062
-
2063
-
2064
-
2065
-
2066
-
2067
-
2068
-
2069
-
2070
-
2071
-
2072
-
2073
-
2074
-
2075
-
2076
-
2077
-
2078
-
2079
-
2080
-
2081
-
2082
-
2083
-
2084
-
2085
-
2086
-
2087
-
2088
-
2089
-
2090
-
2091
-
2092
-
2093
-
2094
-
2095
-
2096
-
2097
-
2098
-
2099
-
2100
-
2101
-
2102
-
2103
-
2104
-
2105
-
2106
-
2107
-
2108
-
2109
-
2110
-
2111
-
2112
-
2113
-
2114
-
2115
-
2116
-
2117
-
2118
-
2119
-
2120
-
2121
-
2122
-
2123
-
2124
-
2125
-
2126
-
2127
-
2128
-
2129
-
2130
-
2131
-
2132
-
2133
-
2134
-
2135
-
2136
-
2137
-
2138
-
2139
-
2140
-
2141
-
2142
-
2143
-
2144
-
2145
-
2146
-
2147
-
2148
-
2149
-
2150
-
2151
-
2152
-
2153
-
2154
-
2155
-
2156
-
2157
-
2158
-
2159
-
2160
-
2161
-
2162
-
2163
-
2164
-
2165
-
2166
-
2167
-
2168
-
2169
-
2170
-
2171
-
2172
-
2173
-
2174
-
2175
-
2176
-
2177
-
2178
-
2179
-
2180
-
2181
-
2182
-
2183
-
2184
-
2185
-
2186
-
2187
-
2188
-
2189
-
2190
-
2191
-
2192
-
2193
-
2194
-
2195
-
2196
-
2197
-
2198
-
2199
-
2200
-
2201
-
2202
-
2203
-
2204
-
2205
-
2206
-
2207
-
2208
-
2209
-
2210
-
2211
-
2212
-
2213
-
2214
-
2215
-
2216
-
2217
-
2218
-
2219
-
2220
-
2221
-
2222
-
2223
-
2224
-
2225
-
2226
-
2227
-
2228
-
2229
-
2230
-
2231
-
2232
-
2233
-
2234
-
2235
-
2236
-
2237
-
2238
-
2239
-
2240
-
2241
-
2242
-
2243
-
2244
-
2245
-
2246
-
2247
-
2248
-
2249
-
2250
-
2251
-
2252
-
2253
-
2254
-
2255
-
2256
-
2257
-
2258
-
2259
-
2260
-
2261
-
2262
-
2263
-
2264
-
2265
-
2266
-
2267
-
2268
-
2269
-
2270
-
2271
-
2272
-
2273
-
2274
-
2275
-
2276
-
2277
-
2278
-
2279
-
2280
-
2281
-
2282
-
2283
-
2284
-
2285
-
2286
-
2287
-
2288
-
2289
-
2290
-
2291
-
2292
-
2293
-
2294
-
2295
-
2296
-
2297
-
2298
-
2299
-
2300
-
2301
-
2302
-
2303
-
2304
-
2305
-
2306
-
2307
-
2308
-
2309
-
2310
-
2311
-
2312
-
2313
-
2314
-
2315
-
2316
-
2317
-
2318
-
2319
-
2320
-
2321
-
2322
-
2323
-
2324
-
2325
-
2326
-
2327
-
2328
-
2329
-
2330
-
2331
-
2332
-
2333
-
2334
-
2335
-
2336
-
2337
-
2338
-
2339
-
2340
-
2341
-
2342
-
2343
-
2344
-
2345
-
2346
-
2347
-
2348
-
2349
-
2350
-
2351
-
2352
-
2353
-
2354
-
2355
-
2356
-
2357
-
2358
-
2359
-
2360
-
2361
-
2362
-
2363
-
2364
-
2365
-
2366
-
2367
-
2368
-
2369
-
2370
-
2371
-
2372
-
2373
-
2374
-
2375
-
2376
-
2377
-
2378
-
2379
-
2380
-
2381
-
2382
-
2383
-
2384
-
2385
-
2386
-
2387
-
2388
-
2389
-
2390
-
2391
-
2392
-
2393
-
2394
-
2395
-
2396
-
2397
-
2398
-
2399
-
2400
-
2401
-
2402
-
2403
-
2404
-
2405
-
2406
-
2407
-
2408
-
2409
-
2410
-
2411
-
2412
-
2413
-
2414
-
2415
-
2416
-
2417
-
2418
-
2419
-
2420
-
2421
-
2422
-
2423
-
2424
-
2425
-
2426
-
2427
-
2428
-
2429
-
2430
-
2431
-
2432
-
2433
-
2434
-
2435
-
2436
-
2437
-
2438
-
2439
-
2440
-
2441
-
2442
-
2443
-
2444
-
2445
-
2446
-
2447
-
2448
-
2449
-
2450
-
2451
-
2452
-
2453
-
2454
-
2455
-
2456
-
2457
-
2458
-
2459
-
2460
-
2461
-
2462
-
2463
-
2464
-
2465
-
2466
-
2467
-
2468
-
2469
-
2470
-
2471
-
2472
-
2473
-
2474
-
2475
-
2476
-
2477
-
2478
-
2479
-
2480
-
2481
-
2482
-
2483
-
2484
-
2485
-
2486
-
2487
-
2488
-
2489
-
2490
-
2491
-
2492
-
2493
-
2494
-
2495
-
2496
-
2497
-
2498
-
2499
-
2500
-
2501
-
2502
-
2503
-
2504
-
2505
-
2506
-
2507
-
2508
-
2509
-
2510
-
2511
-
2512
-
2513
-
2514
-
2515
-
2516
-
2517
-
2518
-
2519
-
2520
-
2521
-
2522
-
2523
-
2524
-
2525
-
2526
-
2527
-
2528
-
2529
-
2530
-
2531
-
2532
-
2533
-
2534
-
2535
-
2536
-
2537
-
2538
-
2539
-
2540
-
2541
-
2542
-
2543
-
2544
-
2545
- 𠮶
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f5_tts/infer/infer_batch_parallel.py DELETED
@@ -1,171 +0,0 @@
1
- import argparse
2
- import codecs
3
- import os
4
- import re
5
- from pathlib import Path
6
-
7
- import numpy as np
8
- import soundfile as sf
9
- import tomli
10
- from cached_path import cached_path
11
- import pandas as pd
12
- from tqdm import tqdm
13
-
14
- from f5_tts.infer.utils_infer import (
15
- infer_process,
16
- load_model,
17
- load_vocoder,
18
- preprocess_ref_audio_text,
19
- remove_silence_for_generated_wav,
20
- )
21
- from f5_tts.model import DiT, UNetT
22
-
23
-
24
- def run_batch_inference(prompt_paths, prompt_texts, texts, languages, categories, model_obj, vocoder, mel_spec_type, remove_silence, speed, output_dir):
25
- count = 0
26
- for ref_audio in prompt_paths:
27
- if not isinstance(ref_audio, str) or not os.path.isfile(ref_audio):
28
- print(f"Invalid ref_audio: {ref_audio}")
29
- count += 1
30
- print(count)
31
- # raise ValueError(f"Invalid ref_audio: {ref_audio}")
32
-
33
- for idx, (ref_audio, ref_text, text_gen, language, category) in tqdm(enumerate(zip(prompt_paths, prompt_texts, texts, languages, categories))):
34
- voices = {"main": {"ref_audio": ref_audio, "ref_text": ref_text}}
35
- for voice in voices:
36
- voices[voice]["ref_audio"], voices[voice]["ref_text"] = preprocess_ref_audio_text(
37
- voices[voice]["ref_audio"], voices[voice]["ref_text"]
38
- )
39
- print("Voice:", voice)
40
- print("Ref_audio:", voices[voice]["ref_audio"])
41
- print("Ref_text:", voices[voice]["ref_text"])
42
-
43
- generated_audio_segments = []
44
- reg1 = r"(?=\[\w+\])"
45
- chunks = re.split(reg1, text_gen)
46
- reg2 = r"\[(\w+)\]"
47
- for text in chunks:
48
- if not text.strip():
49
- continue
50
- match = re.match(reg2, text)
51
- if match:
52
- voice = match[1]
53
- else:
54
- print("No voice tag found, using main.")
55
- voice = "main"
56
- if voice not in voices:
57
- print(f"Voice {voice} not found, using main.")
58
- voice = "main"
59
- text = re.sub(reg2, "", text)
60
- gen_text = text.strip()
61
- ref_audio = voices[voice]["ref_audio"]
62
- ref_text = voices[voice]["ref_text"]
63
- print(f"Voice: {voice}")
64
- audio, final_sample_rate, spectragram = infer_process(
65
- ref_audio, ref_text, gen_text, model_obj, vocoder, mel_spec_type=mel_spec_type, speed=speed
66
- )
67
- generated_audio_segments.append(audio)
68
-
69
- if generated_audio_segments:
70
- final_wave = np.concatenate(generated_audio_segments)
71
- filename = f"{language.upper()}_{category.upper()}_{idx}.wav"
72
- outfile_dir = os.path.join(output_dir, language)
73
- os.makedirs(outfile_dir, exist_ok=True)
74
- wave_path = Path(outfile_dir) / filename
75
- with open(wave_path, "wb") as f:
76
- sf.write(f.name, final_wave, final_sample_rate)
77
- if remove_silence:
78
- remove_silence_for_generated_wav(f.name)
79
- print(f"Generated audio saved to: {f.name}")
80
-
81
-
82
- def main():
83
- parser = argparse.ArgumentParser(
84
- prog="python3 infer-cli.py",
85
- description="Commandline interface for E2/F5 TTS with Advanced Batch Processing.",
86
- epilog="Specify options above to override one or more settings from config.",
87
- )
88
-
89
- parser.add_argument(
90
- "-m",
91
- "--model",
92
- help="F5-TTS | E2-TTS",
93
- )
94
- parser.add_argument(
95
- "-p",
96
- "--ckpt_file",
97
- help="The Checkpoint .pt",
98
- )
99
- parser.add_argument(
100
- "-v",
101
- "--vocab_file",
102
- help="The vocab .txt",
103
- )
104
-
105
- parser.add_argument(
106
- "-f",
107
- "--generate_csv",
108
- type=str,
109
- )
110
- parser.add_argument(
111
- "-o",
112
- "--output_dir",
113
- type=str,
114
- help="Path to output folder..",
115
- )
116
- parser.add_argument(
117
- "--remove_silence",
118
- help="Remove silence.",
119
- )
120
- parser.add_argument("--vocoder_name", type=str, default="vocos", choices=["vocos", "bigvgan"], help="vocoder name")
121
- parser.add_argument(
122
- "--load_vocoder_from_local",
123
- action="store_true",
124
- help="load vocoder from local. Default: ../checkpoints/charactr/vocos-mel-24khz",
125
- )
126
- parser.add_argument(
127
- "--speed",
128
- type=float,
129
- default=1.0,
130
- help="Adjust the speed of the audio generation (default: 1.0)",
131
- )
132
- args = parser.parse_args()
133
-
134
- # Read texts and prompts to generate
135
- filepath = args.generate_csv
136
- df = pd.read_csv(filepath)
137
- prompt_paths = df['prompt_path'].tolist()
138
- prompt_texts = df['prompt_text'].tolist()
139
- texts = df['text'].tolist()
140
- languages = df['language'].tolist()
141
- categories = df['category'].tolist()
142
-
143
- # Model config
144
- model = args.model
145
- ckpt_file = args.ckpt_file
146
- vocab_file = args.vocab_file
147
- remove_silence = args.remove_silence
148
- speed = args.speed
149
- vocoder_name = args.vocoder_name
150
- mel_spec_type = args.vocoder_name
151
- if vocoder_name == "vocos":
152
- vocoder_local_path = "../checkpoints/vocos-mel-24khz"
153
- elif vocoder_name == "bigvgan":
154
- vocoder_local_path = "../checkpoints/bigvgan_v2_24khz_100band_256x"
155
- vocoder = load_vocoder(vocoder_name=mel_spec_type, is_local=args.load_vocoder_from_local, local_path=vocoder_local_path)
156
-
157
- # load models
158
- model_cls = DiT
159
- model_cfg = dict(dim=1024, depth=22, heads=16, ff_mult=2, text_dim=512, conv_layers=4)
160
- print(f"Using {model}...")
161
- ema_model = load_model(model_cls, model_cfg, ckpt_file, mel_spec_type=mel_spec_type, vocab_file=vocab_file)
162
-
163
- # Batch inference
164
- output_dir = args.output_dir
165
- if not os.path.exists(output_dir):
166
- os.makedirs(output_dir)
167
- run_batch_inference(prompt_paths, prompt_texts, texts, languages, categories, ema_model, vocoder, mel_spec_type, remove_silence, speed, output_dir)
168
-
169
-
170
- if __name__ == "__main__":
171
- main()
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f5_tts/infer/infer_cli.py DELETED
@@ -1,226 +0,0 @@
1
- import argparse
2
- import codecs
3
- import os
4
- import re
5
- from importlib.resources import files
6
- from pathlib import Path
7
-
8
- import numpy as np
9
- import soundfile as sf
10
- import tomli
11
- from cached_path import cached_path
12
-
13
- from f5_tts.infer.utils_infer import (
14
- infer_process,
15
- load_model,
16
- load_vocoder,
17
- preprocess_ref_audio_text,
18
- remove_silence_for_generated_wav,
19
- )
20
- from f5_tts.model import DiT, UNetT
21
-
22
- parser = argparse.ArgumentParser(
23
- prog="python3 infer-cli.py",
24
- description="Commandline interface for E2/F5 TTS with Advanced Batch Processing.",
25
- epilog="Specify options above to override one or more settings from config.",
26
- )
27
- parser.add_argument(
28
- "-c",
29
- "--config",
30
- help="Configuration file. Default=infer/examples/basic/basic.toml",
31
- default=os.path.join(files("f5_tts").joinpath("infer/examples/basic"), "basic.toml"),
32
- )
33
- parser.add_argument(
34
- "-m",
35
- "--model",
36
- help="F5-TTS | E2-TTS",
37
- )
38
- parser.add_argument(
39
- "-p",
40
- "--ckpt_file",
41
- help="The Checkpoint .pt",
42
- )
43
- parser.add_argument(
44
- "-v",
45
- "--vocab_file",
46
- help="The vocab .txt",
47
- )
48
- parser.add_argument("-r", "--ref_audio", type=str, help="Reference audio file < 15 seconds.")
49
- parser.add_argument("-s", "--ref_text", type=str, default="666", help="Subtitle for the reference audio.")
50
- parser.add_argument(
51
- "-t",
52
- "--gen_text",
53
- type=str,
54
- help="Text to generate.",
55
- )
56
- parser.add_argument(
57
- "-f",
58
- "--gen_file",
59
- type=str,
60
- help="File with text to generate. Ignores --gen_text",
61
- )
62
- parser.add_argument(
63
- "-o",
64
- "--output_dir",
65
- type=str,
66
- help="Path to output folder..",
67
- )
68
- parser.add_argument(
69
- "-w",
70
- "--output_file",
71
- type=str,
72
- help="Filename of output file..",
73
- )
74
- parser.add_argument(
75
- "--remove_silence",
76
- help="Remove silence.",
77
- )
78
- parser.add_argument("--vocoder_name", type=str, default="vocos", choices=["vocos", "bigvgan"], help="vocoder name")
79
- parser.add_argument(
80
- "--load_vocoder_from_local",
81
- action="store_true",
82
- help="load vocoder from local. Default: ../checkpoints/charactr/vocos-mel-24khz",
83
- )
84
- parser.add_argument(
85
- "--speed",
86
- type=float,
87
- default=1.0,
88
- help="Adjust the speed of the audio generation (default: 1.0)",
89
- )
90
- args = parser.parse_args()
91
-
92
- config = tomli.load(open(args.config, "rb"))
93
-
94
- ref_audio = args.ref_audio if args.ref_audio else config["ref_audio"]
95
- ref_text = args.ref_text if args.ref_text != "666" else config["ref_text"]
96
- gen_text = args.gen_text if args.gen_text else config["gen_text"]
97
- gen_file = args.gen_file if args.gen_file else config["gen_file"]
98
-
99
- # patches for pip pkg user
100
- if "infer/examples/" in ref_audio:
101
- ref_audio = str(files("f5_tts").joinpath(f"{ref_audio}"))
102
- if "infer/examples/" in gen_file:
103
- gen_file = str(files("f5_tts").joinpath(f"{gen_file}"))
104
- if "voices" in config:
105
- for voice in config["voices"]:
106
- voice_ref_audio = config["voices"][voice]["ref_audio"]
107
- if "infer/examples/" in voice_ref_audio:
108
- config["voices"][voice]["ref_audio"] = str(files("f5_tts").joinpath(f"{voice_ref_audio}"))
109
-
110
- if gen_file:
111
- gen_text = codecs.open(gen_file, "r", "utf-8").read()
112
- output_dir = args.output_dir if args.output_dir else config["output_dir"]
113
- output_file = args.output_file if args.output_file else config["output_file"]
114
- model = args.model if args.model else config["model"]
115
- ckpt_file = args.ckpt_file if args.ckpt_file else ""
116
- vocab_file = args.vocab_file if args.vocab_file else ""
117
- remove_silence = args.remove_silence if args.remove_silence else config["remove_silence"]
118
- speed = args.speed
119
-
120
- wave_path = Path(output_dir) / output_file
121
- # spectrogram_path = Path(output_dir) / "infer_cli_out.png"
122
-
123
- vocoder_name = args.vocoder_name
124
- mel_spec_type = args.vocoder_name
125
- if vocoder_name == "vocos":
126
- vocoder_local_path = "../checkpoints/vocos-mel-24khz"
127
- elif vocoder_name == "bigvgan":
128
- vocoder_local_path = "../checkpoints/bigvgan_v2_24khz_100band_256x"
129
-
130
- vocoder = load_vocoder(vocoder_name=mel_spec_type, is_local=args.load_vocoder_from_local, local_path=vocoder_local_path)
131
-
132
-
133
- # load models
134
- if model == "F5-TTS":
135
- model_cls = DiT
136
- model_cfg = dict(dim=1024, depth=22, heads=16, ff_mult=2, text_dim=512, conv_layers=4)
137
- if ckpt_file == "":
138
- if vocoder_name == "vocos":
139
- repo_name = "F5-TTS"
140
- exp_name = "F5TTS_Base"
141
- ckpt_step = 1200000
142
- ckpt_file = "/home/tts/ttsteam/repos/en_f5/F5-TTS/ckpts/expresso/model_356000.pt"
143
- # ckpt_file = f"ckpts/{exp_name}/model_{ckpt_step}.pt" # .pt | .safetensors; local path
144
- elif vocoder_name == "bigvgan":
145
- repo_name = "F5-TTS"
146
- exp_name = "F5TTS_Base_bigvgan"
147
- ckpt_step = 1250000
148
- ckpt_file = str(cached_path(f"hf://SWivid/{repo_name}/{exp_name}/model_{ckpt_step}.pt"))
149
-
150
- elif model == "E2-TTS":
151
- assert vocoder_name == "vocos", "E2-TTS only supports vocoder vocos"
152
- model_cls = UNetT
153
- model_cfg = dict(dim=1024, depth=24, heads=16, ff_mult=4)
154
- if ckpt_file == "":
155
- repo_name = "E2-TTS"
156
- exp_name = "E2TTS_Base"
157
- ckpt_step = 1200000
158
- ckpt_file = str(cached_path(f"hf://SWivid/{repo_name}/{exp_name}/model_{ckpt_step}.safetensors"))
159
- # ckpt_file = f"ckpts/{exp_name}/model_{ckpt_step}.pt" # .pt | .safetensors; local path
160
-
161
-
162
- print(f"Using {model}...")
163
- ema_model = load_model(model_cls, model_cfg, ckpt_file, mel_spec_type=mel_spec_type, vocab_file=vocab_file)
164
-
165
-
166
- def main_process(ref_audio, ref_text, text_gen, model_obj, mel_spec_type, remove_silence, speed):
167
- main_voice = {"ref_audio": ref_audio, "ref_text": ref_text}
168
- if "voices" not in config:
169
- voices = {"main": main_voice}
170
- else:
171
- voices = config["voices"]
172
- voices["main"] = main_voice
173
- for voice in voices:
174
- voices[voice]["ref_audio"], voices[voice]["ref_text"] = preprocess_ref_audio_text(
175
- voices[voice]["ref_audio"], voices[voice]["ref_text"]
176
- )
177
- print("Voice:", voice)
178
- print("Ref_audio:", voices[voice]["ref_audio"])
179
- print("Ref_text:", voices[voice]["ref_text"])
180
-
181
- generated_audio_segments = []
182
- reg1 = r"(?=\[\w+\])"
183
- chunks = re.split(reg1, text_gen)
184
- reg2 = r"\[(\w+)\]"
185
- for text in chunks:
186
- if not text.strip():
187
- continue
188
- match = re.match(reg2, text)
189
- if match:
190
- voice = match[1]
191
- else:
192
- print("No voice tag found, using main.")
193
- voice = "main"
194
- if voice not in voices:
195
- print(f"Voice {voice} not found, using main.")
196
- voice = "main"
197
- text = re.sub(reg2, "", text)
198
- gen_text = text.strip()
199
- ref_audio = voices[voice]["ref_audio"]
200
- ref_text = voices[voice]["ref_text"]
201
- print(f"Voice: {voice}")
202
- audio, final_sample_rate, spectragram = infer_process(
203
- ref_audio, ref_text, gen_text, model_obj, vocoder, mel_spec_type=mel_spec_type, speed=speed
204
- )
205
- generated_audio_segments.append(audio)
206
-
207
- if generated_audio_segments:
208
- final_wave = np.concatenate(generated_audio_segments)
209
-
210
- if not os.path.exists(output_dir):
211
- os.makedirs(output_dir)
212
-
213
- with open(wave_path, "wb") as f:
214
- sf.write(f.name, final_wave, final_sample_rate)
215
- # Remove silence
216
- if remove_silence:
217
- remove_silence_for_generated_wav(f.name)
218
- print(f.name)
219
-
220
-
221
- def main():
222
- main_process(ref_audio, ref_text, gen_text, ema_model, mel_spec_type, remove_silence, speed)
223
-
224
-
225
- if __name__ == "__main__":
226
- main()
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f5_tts/infer/infer_cli_batch.py DELETED
@@ -1,245 +0,0 @@
1
- import argparse
2
- import codecs
3
- import os
4
- import re
5
- from importlib.resources import files
6
- from pathlib import Path
7
-
8
- import numpy as np
9
- import soundfile as sf
10
- import tomli
11
- from cached_path import cached_path
12
- import pandas as pd
13
-
14
- from f5_tts.infer.utils_infer import (
15
- infer_process,
16
- load_model,
17
- load_vocoder,
18
- preprocess_ref_audio_text,
19
- remove_silence_for_generated_wav,
20
- )
21
- from f5_tts.model import DiT, UNetT
22
-
23
- parser = argparse.ArgumentParser(
24
- prog="python3 infer-cli.py",
25
- description="Commandline interface for E2/F5 TTS with Advanced Batch Processing.",
26
- epilog="Specify options above to override one or more settings from config.",
27
- )
28
- parser.add_argument(
29
- "-c",
30
- "--config",
31
- help="Configuration file. Default=infer/examples/basic/basic.toml",
32
- default=os.path.join(files("f5_tts").joinpath("infer/examples/basic"), "basic.toml"),
33
- )
34
- parser.add_argument(
35
- "-m",
36
- "--model",
37
- help="F5-TTS | E2-TTS",
38
- )
39
- parser.add_argument(
40
- "-p",
41
- "--ckpt_file",
42
- help="The Checkpoint .pt",
43
- )
44
- parser.add_argument(
45
- "-v",
46
- "--vocab_file",
47
- help="The vocab .txt",
48
- )
49
- parser.add_argument("-r", "--ref_audio", type=str, help="Reference audio file < 15 seconds.")
50
- parser.add_argument("-s", "--ref_text", type=str, default="666", help="Subtitle for the reference audio.")
51
- parser.add_argument(
52
- "-t",
53
- "--gen_text",
54
- type=str,
55
- help="Text to generate.",
56
- )
57
- parser.add_argument(
58
- "-f",
59
- "--gen_file",
60
- type=str,
61
- help="File with text to generate. Ignores --gen_text",
62
- )
63
- parser.add_argument(
64
- "-o",
65
- "--output_dir",
66
- type=str,
67
- help="Path to output folder..",
68
- )
69
- parser.add_argument(
70
- "-w",
71
- "--output_file",
72
- type=str,
73
- help="Filename of output file..",
74
- )
75
- parser.add_argument(
76
- "--remove_silence",
77
- help="Remove silence.",
78
- )
79
- parser.add_argument("--vocoder_name", type=str, default="vocos", choices=["vocos", "bigvgan"], help="vocoder name")
80
- parser.add_argument(
81
- "--load_vocoder_from_local",
82
- action="store_true",
83
- help="load vocoder from local. Default: ../checkpoints/charactr/vocos-mel-24khz",
84
- )
85
- parser.add_argument(
86
- "--speed",
87
- type=float,
88
- default=1.0,
89
- help="Adjust the speed of the audio generation (default: 1.0)",
90
- )
91
- args = parser.parse_args()
92
-
93
- config = tomli.load(open(args.config, "rb"))
94
-
95
- ref_audio = args.ref_audio if args.ref_audio else config["ref_audio"]
96
- ref_text = args.ref_text if args.ref_text != "666" else config["ref_text"]
97
- gen_file = args.gen_file if args.gen_file else config["gen_file"]
98
-
99
-
100
- if gen_file:
101
- # Read texts from CSV file
102
- df = pd.read_csv(gen_file)
103
- text_list = df['text'].tolist()
104
- else:
105
- # If no file provided, use single text
106
- gen_text = args.gen_text if args.gen_text else config["gen_text"]
107
- text_list = [gen_text]
108
- output_dir = args.output_dir if args.output_dir else config["output_dir"]
109
- output_file = args.output_file if args.output_file else config["output_file"]
110
- model = args.model if args.model else config["model"]
111
- ckpt_file = args.ckpt_file if args.ckpt_file else ""
112
- vocab_file = args.vocab_file if args.vocab_file else ""
113
- remove_silence = args.remove_silence if args.remove_silence else config["remove_silence"]
114
- speed = args.speed
115
-
116
- wave_path = Path(output_dir) / output_file
117
- # spectrogram_path = Path(output_dir) / "infer_cli_out.png"
118
-
119
-
120
- # patches for pip pkg user
121
- if "infer/examples/" in ref_audio:
122
- ref_audio = str(files("f5_tts").joinpath(f"{ref_audio}"))
123
- if "infer/examples/" in gen_file:
124
- gen_file = str(files("f5_tts").joinpath(f"{gen_file}"))
125
- if "voices" in config:
126
- for voice in config["voices"]:
127
- voice_ref_audio = config["voices"][voice]["ref_audio"]
128
- if "infer/examples/" in voice_ref_audio:
129
- config["voices"][voice]["ref_audio"] = str(files("f5_tts").joinpath(f"{voice_ref_audio}"))
130
-
131
- vocoder_name = args.vocoder_name
132
- mel_spec_type = args.vocoder_name
133
- if vocoder_name == "vocos":
134
- vocoder_local_path = "../checkpoints/vocos-mel-24khz"
135
- elif vocoder_name == "bigvgan":
136
- vocoder_local_path = "../checkpoints/bigvgan_v2_24khz_100band_256x"
137
-
138
- vocoder = load_vocoder(vocoder_name=mel_spec_type, is_local=args.load_vocoder_from_local, local_path=vocoder_local_path)
139
-
140
-
141
- # load models
142
- if model == "F5-TTS":
143
- model_cls = DiT
144
- model_cfg = dict(dim=1024, depth=22, heads=16, ff_mult=2, text_dim=512, conv_layers=4)
145
- if ckpt_file == "":
146
- if vocoder_name == "vocos":
147
- repo_name = "F5-TTS"
148
- exp_name = "F5TTS_Base"
149
- ckpt_step = 1200000
150
- ckpt_file = str(cached_path(f"hf://SWivid/{repo_name}/{exp_name}/model_{ckpt_step}.safetensors"))
151
- # ckpt_file = f"ckpts/{exp_name}/model_{ckpt_step}.pt" # .pt | .safetensors; local path
152
- elif vocoder_name == "bigvgan":
153
- repo_name = "F5-TTS"
154
- exp_name = "F5TTS_Base_bigvgan"
155
- ckpt_step = 1250000
156
- ckpt_file = str(cached_path(f"hf://SWivid/{repo_name}/{exp_name}/model_{ckpt_step}.pt"))
157
-
158
- elif model == "E2-TTS":
159
- assert vocoder_name == "vocos", "E2-TTS only supports vocoder vocos"
160
- model_cls = UNetT
161
- model_cfg = dict(dim=1024, depth=24, heads=16, ff_mult=4)
162
- if ckpt_file == "":
163
- repo_name = "E2-TTS"
164
- exp_name = "E2TTS_Base"
165
- ckpt_step = 1200000
166
- ckpt_file = str(cached_path(f"hf://SWivid/{repo_name}/{exp_name}/model_{ckpt_step}.safetensors"))
167
- # ckpt_file = f"ckpts/{exp_name}/model_{ckpt_step}.pt" # .pt | .safetensors; local path
168
-
169
-
170
- print(f"Using {model}...")
171
- ema_model = load_model(model_cls, model_cfg, ckpt_file, mel_spec_type=mel_spec_type, vocab_file=vocab_file)
172
-
173
-
174
- def main_process(ref_audio, ref_text, text_list, model_obj, mel_spec_type, remove_silence, speed):
175
- main_voice = {"ref_audio": ref_audio, "ref_text": ref_text}
176
- if "voices" not in config:
177
- voices = {"main": main_voice}
178
- else:
179
- voices = config["voices"]
180
- voices["main"] = main_voice
181
- for voice in voices:
182
- voices[voice]["ref_audio"], voices[voice]["ref_text"] = preprocess_ref_audio_text(
183
- voices[voice]["ref_audio"], voices[voice]["ref_text"]
184
- )
185
- print("Voice:", voice)
186
- print("Ref_audio:", voices[voice]["ref_audio"])
187
- print("Ref_text:", voices[voice]["ref_text"])
188
-
189
- # Process each text in the list
190
- for idx, text_gen in enumerate(text_list):
191
- generated_audio_segments = []
192
- reg1 = r"(?=\[\w+\])"
193
- chunks = re.split(reg1, text_gen)
194
- reg2 = r"\[(\w+)\]"
195
- for text in chunks:
196
- if not text.strip():
197
- continue
198
- match = re.match(reg2, text)
199
- if match:
200
- voice = match[1]
201
- else:
202
- print("No voice tag found, using main.")
203
- voice = "main"
204
- if voice not in voices:
205
- print(f"Voice {voice} not found, using main.")
206
- voice = "main"
207
- text = re.sub(reg2, "", text)
208
- gen_text = text.strip()
209
- ref_audio = voices[voice]["ref_audio"]
210
- ref_text = voices[voice]["ref_text"]
211
- print(f"Voice: {voice}")
212
- audio, final_sample_rate, spectragram = infer_process(
213
- ref_audio, ref_text, gen_text, model_obj, vocoder, mel_spec_type=mel_spec_type, speed=speed
214
- )
215
- generated_audio_segments.append(audio)
216
-
217
- if generated_audio_segments:
218
- final_wave = np.concatenate(generated_audio_segments)
219
-
220
- if not os.path.exists(output_dir):
221
- os.makedirs(output_dir)
222
-
223
- # Get first 3 words from the text
224
- first_three_words = '_'.join(text_gen.split()[:3])
225
- # Remove any special characters that might cause issues in filenames
226
- first_three_words = re.sub(r'[^\w\s-]', '', first_three_words)
227
- # Create filename with index and first 3 words
228
- filename = f"{Path(output_file).stem}__sentence{(idx+1):03d}_{first_three_words}{Path(output_file).suffix}"
229
-
230
- wave_path = Path(output_dir) / filename
231
-
232
- with open(wave_path, "wb") as f:
233
- sf.write(f.name, final_wave, final_sample_rate)
234
- # Remove silence
235
- if remove_silence:
236
- remove_silence_for_generated_wav(f.name)
237
- print(f"Generated audio saved to: {f.name}")
238
-
239
-
240
- def main():
241
- main_process(ref_audio, ref_text, text_list, ema_model, mel_spec_type, remove_silence, speed)
242
-
243
-
244
- if __name__ == "__main__":
245
- main()
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f5_tts/infer/infer_gradio.py DELETED
@@ -1,855 +0,0 @@
1
- # ruff: noqa: E402
2
- # Above allows ruff to ignore E402: module level import not at top of file
3
-
4
- import os
5
- import re
6
- import shutil
7
- import tempfile
8
- from datetime import datetime
9
- from collections import OrderedDict
10
- from importlib.resources import files
11
-
12
- import click
13
- import gradio as gr
14
- import numpy as np
15
- import soundfile as sf
16
- import torchaudio
17
- from cached_path import cached_path
18
- from transformers import AutoModelForCausalLM, AutoTokenizer
19
-
20
- try:
21
- import spaces
22
-
23
- USING_SPACES = True
24
- except ImportError:
25
- USING_SPACES = False
26
-
27
-
28
- def gpu_decorator(func):
29
- if USING_SPACES:
30
- return spaces.GPU(func)
31
- else:
32
- return func
33
-
34
-
35
- from f5_tts.model import DiT, UNetT
36
- from f5_tts.infer.utils_infer import (
37
- load_vocoder,
38
- load_model,
39
- preprocess_ref_audio_text,
40
- infer_process,
41
- remove_silence_for_generated_wav,
42
- save_spectrogram,
43
- )
44
-
45
-
46
- DEFAULT_TTS_MODEL = "F5-TTS"
47
- tts_model_choice = DEFAULT_TTS_MODEL
48
-
49
-
50
- # load models
51
-
52
- vocoder = load_vocoder()
53
-
54
-
55
- def load_f5tts(ckpt_path=str(cached_path("hf://SWivid/F5-TTS/F5TTS_Base/model_1200000.safetensors"))):
56
- F5TTS_model_cfg = dict(dim=1024, depth=22, heads=16, ff_mult=2, text_dim=512, conv_layers=4)
57
-
58
- ckpt_path = "/home/tts/ttsteam/repos/F5-TTS/runs/indic_5/model_1176000.pt"
59
- vocab_path = "/home/tts/ttsteam/repos/F5-TTS/runs/indic_5/vocab.txt"
60
- return load_model(DiT, F5TTS_model_cfg, ckpt_path, vocab_file=vocab_path)
61
-
62
-
63
- def load_e2tts(ckpt_path=str(cached_path("hf://SWivid/E2-TTS/E2TTS_Base/model_1200000.safetensors"))):
64
- E2TTS_model_cfg = dict(dim=1024, depth=24, heads=16, ff_mult=4)
65
- return load_model(UNetT, E2TTS_model_cfg, ckpt_path)
66
-
67
-
68
- def load_custom(ckpt_path: str, vocab_path="", model_cfg=None):
69
- ckpt_path, vocab_path = ckpt_path.strip(), vocab_path.strip()
70
- if ckpt_path.startswith("hf://"):
71
- ckpt_path = str(cached_path(ckpt_path))
72
- if vocab_path.startswith("hf://"):
73
- vocab_path = str(cached_path(vocab_path))
74
- if model_cfg is None:
75
- model_cfg = dict(dim=1024, depth=22, heads=16, ff_mult=2, text_dim=512, conv_layers=4)
76
- return load_model(DiT, model_cfg, ckpt_path, vocab_file=vocab_path)
77
-
78
-
79
- F5TTS_ema_model = load_f5tts()
80
- E2TTS_ema_model = load_e2tts() if USING_SPACES else None
81
- custom_ema_model, pre_custom_path = None, ""
82
-
83
- chat_model_state = None
84
- chat_tokenizer_state = None
85
-
86
-
87
- @gpu_decorator
88
- def generate_response(messages, model, tokenizer):
89
- """Generate response using Qwen"""
90
- text = tokenizer.apply_chat_template(
91
- messages,
92
- tokenize=False,
93
- add_generation_prompt=True,
94
- )
95
-
96
- model_inputs = tokenizer([text], return_tensors="pt").to(model.device)
97
- generated_ids = model.generate(
98
- **model_inputs,
99
- max_new_tokens=512,
100
- temperature=0.7,
101
- top_p=0.95,
102
- )
103
-
104
- generated_ids = [
105
- output_ids[len(input_ids) :] for input_ids, output_ids in zip(model_inputs.input_ids, generated_ids)
106
- ]
107
- return tokenizer.batch_decode(generated_ids, skip_special_tokens=True)[0]
108
-
109
-
110
- @gpu_decorator
111
- def infer(
112
- ref_audio_orig, ref_text, gen_text, model, remove_silence, cross_fade_duration=0.15, speed=1, show_info=gr.Info
113
- ):
114
-
115
- print("ref audio is: ", type(ref_audio_orig), ref_audio_orig)
116
- current_time = datetime.now().strftime("%Y%m%d_%H%M%S")
117
- shutil.copy(ref_audio_orig, os.path.join("/home/tts/ttsteam/repos/F5-TTS/runs/indic_5/infers", f"reference_audio_{current_time}.wav"))
118
- ref_audio, ref_text = preprocess_ref_audio_text(ref_audio_orig, ref_text, show_info=show_info)
119
-
120
- if model == "F5-TTS":
121
- ema_model = F5TTS_ema_model
122
- elif model == "E2-TTS":
123
- global E2TTS_ema_model
124
- if E2TTS_ema_model is None:
125
- show_info("Loading E2-TTS model...")
126
- E2TTS_ema_model = load_e2tts()
127
- ema_model = E2TTS_ema_model
128
- elif isinstance(model, list) and model[0] == "Custom":
129
- assert not USING_SPACES, "Only official checkpoints allowed in Spaces."
130
- global custom_ema_model, pre_custom_path
131
- if pre_custom_path != model[1]:
132
- show_info("Loading Custom TTS model...")
133
- custom_ema_model = load_custom(model[1], vocab_path=model[2])
134
- pre_custom_path = model[1]
135
- ema_model = custom_ema_model
136
-
137
- final_wave, final_sample_rate, combined_spectrogram = infer_process(
138
- ref_audio,
139
- ref_text,
140
- gen_text,
141
- ema_model,
142
- vocoder,
143
- cross_fade_duration=cross_fade_duration,
144
- speed=speed,
145
- show_info=show_info,
146
- progress=gr.Progress(),
147
- )
148
-
149
- # Remove silence
150
- if remove_silence:
151
- with tempfile.NamedTemporaryFile(delete=False, suffix=".wav") as f:
152
- sf.write(f.name, final_wave, final_sample_rate)
153
- remove_silence_for_generated_wav(f.name)
154
- final_wave, _ = torchaudio.load(f.name)
155
- final_wave = final_wave.squeeze().cpu().numpy()
156
-
157
- gen_time = datetime.now().strftime("%Y%m%d_%H%M%S")
158
- sf.write(os.path.join("/home/tts/ttsteam/repos/F5-TTS/runs/indic_5/infers", f"reference_audio_{current_time}_gen_{gen_time}.wav"), final_wave, final_sample_rate)
159
-
160
- # Save the spectrogram
161
- with tempfile.NamedTemporaryFile(suffix=".png", delete=False) as tmp_spectrogram:
162
- spectrogram_path = tmp_spectrogram.name
163
- save_spectrogram(combined_spectrogram, spectrogram_path)
164
-
165
- return (final_sample_rate, final_wave), spectrogram_path, ref_text
166
-
167
-
168
- with gr.Blocks() as app_credits:
169
- gr.Markdown("""
170
- # Credits
171
-
172
- * [mrfakename](https://github.com/fakerybakery) for the original [online demo](https://huggingface.co/spaces/mrfakename/E2-F5-TTS)
173
- * [RootingInLoad](https://github.com/RootingInLoad) for initial chunk generation and podcast app exploration
174
- * [jpgallegoar](https://github.com/jpgallegoar) for multiple speech-type generation & voice chat
175
- """)
176
- with gr.Blocks() as app_tts:
177
- gr.Markdown("# Batched TTS")
178
- ref_audio_input = gr.Audio(label="Reference Audio", type="filepath")
179
- gen_text_input = gr.Textbox(label="Text to Generate", lines=10)
180
- generate_btn = gr.Button("Synthesize", variant="primary")
181
- with gr.Accordion("Advanced Settings", open=False):
182
- ref_text_input = gr.Textbox(
183
- label="Reference Text",
184
- info="Leave blank to automatically transcribe the reference audio. If you enter text it will override automatic transcription.",
185
- lines=2,
186
- )
187
- remove_silence = gr.Checkbox(
188
- label="Remove Silences",
189
- info="The model tends to produce silences, especially on longer audio. We can manually remove silences if needed. Note that this is an experimental feature and may produce strange results. This will also increase generation time.",
190
- value=False,
191
- )
192
- speed_slider = gr.Slider(
193
- label="Speed",
194
- minimum=0.3,
195
- maximum=3.0,
196
- value=1.0,
197
- step=0.1,
198
- info="Adjust the speed of the audio.",
199
- )
200
- cross_fade_duration_slider = gr.Slider(
201
- label="Cross-Fade Duration (s)",
202
- minimum=0.0,
203
- maximum=1.0,
204
- value=0.15,
205
- step=0.01,
206
- info="Set the duration of the cross-fade between audio clips.",
207
- )
208
-
209
- audio_output = gr.Audio(label="Synthesized Audio")
210
- spectrogram_output = gr.Image(label="Spectrogram")
211
-
212
- @gpu_decorator
213
- def basic_tts(
214
- ref_audio_input,
215
- ref_text_input,
216
- gen_text_input,
217
- remove_silence,
218
- cross_fade_duration_slider,
219
- speed_slider,
220
- ):
221
- audio_out, spectrogram_path, ref_text_out = infer(
222
- ref_audio_input,
223
- ref_text_input,
224
- gen_text_input,
225
- tts_model_choice,
226
- remove_silence,
227
- cross_fade_duration_slider,
228
- speed_slider,
229
- )
230
- return audio_out, spectrogram_path, gr.update(value=ref_text_out)
231
-
232
- generate_btn.click(
233
- basic_tts,
234
- inputs=[
235
- ref_audio_input,
236
- ref_text_input,
237
- gen_text_input,
238
- remove_silence,
239
- cross_fade_duration_slider,
240
- speed_slider,
241
- ],
242
- outputs=[audio_output, spectrogram_output, ref_text_input],
243
- )
244
-
245
-
246
- def parse_speechtypes_text(gen_text):
247
- # Pattern to find {speechtype}
248
- pattern = r"\{(.*?)\}"
249
-
250
- # Split the text by the pattern
251
- tokens = re.split(pattern, gen_text)
252
-
253
- segments = []
254
-
255
- current_style = "Regular"
256
-
257
- for i in range(len(tokens)):
258
- if i % 2 == 0:
259
- # This is text
260
- text = tokens[i].strip()
261
- if text:
262
- segments.append({"style": current_style, "text": text})
263
- else:
264
- # This is style
265
- style = tokens[i].strip()
266
- current_style = style
267
-
268
- return segments
269
-
270
-
271
- with gr.Blocks() as app_multistyle:
272
- # New section for multistyle generation
273
- gr.Markdown(
274
- """
275
- # Multiple Speech-Type Generation
276
-
277
- This section allows you to generate multiple speech types or multiple people's voices. Enter your text in the format shown below, and the system will generate speech using the appropriate type. If unspecified, the model will use the regular speech type. The current speech type will be used until the next speech type is specified.
278
- """
279
- )
280
-
281
- with gr.Row():
282
- gr.Markdown(
283
- """
284
- **Example Input:**
285
- {Regular} Hello, I'd like to order a sandwich please.
286
- {Surprised} What do you mean you're out of bread?
287
- {Sad} I really wanted a sandwich though...
288
- {Angry} You know what, darn you and your little shop!
289
- {Whisper} I'll just go back home and cry now.
290
- {Shouting} Why me?!
291
- """
292
- )
293
-
294
- gr.Markdown(
295
- """
296
- **Example Input 2:**
297
- {Speaker1_Happy} Hello, I'd like to order a sandwich please.
298
- {Speaker2_Regular} Sorry, we're out of bread.
299
- {Speaker1_Sad} I really wanted a sandwich though...
300
- {Speaker2_Whisper} I'll give you the last one I was hiding.
301
- """
302
- )
303
-
304
- gr.Markdown(
305
- "Upload different audio clips for each speech type. The first speech type is mandatory. You can add additional speech types by clicking the 'Add Speech Type' button."
306
- )
307
-
308
- # Regular speech type (mandatory)
309
- with gr.Row():
310
- with gr.Column():
311
- regular_name = gr.Textbox(value="Regular", label="Speech Type Name")
312
- regular_insert = gr.Button("Insert Label", variant="secondary")
313
- regular_audio = gr.Audio(label="Regular Reference Audio", type="filepath")
314
- regular_ref_text = gr.Textbox(label="Reference Text (Regular)", lines=2)
315
-
316
- # Regular speech type (max 100)
317
- max_speech_types = 100
318
- speech_type_rows = [] # 99
319
- speech_type_names = [regular_name] # 100
320
- speech_type_audios = [regular_audio] # 100
321
- speech_type_ref_texts = [regular_ref_text] # 100
322
- speech_type_delete_btns = [] # 99
323
- speech_type_insert_btns = [regular_insert] # 100
324
-
325
- # Additional speech types (99 more)
326
- for i in range(max_speech_types - 1):
327
- with gr.Row(visible=False) as row:
328
- with gr.Column():
329
- name_input = gr.Textbox(label="Speech Type Name")
330
- delete_btn = gr.Button("Delete Type", variant="secondary")
331
- insert_btn = gr.Button("Insert Label", variant="secondary")
332
- audio_input = gr.Audio(label="Reference Audio", type="filepath")
333
- ref_text_input = gr.Textbox(label="Reference Text", lines=2)
334
- speech_type_rows.append(row)
335
- speech_type_names.append(name_input)
336
- speech_type_audios.append(audio_input)
337
- speech_type_ref_texts.append(ref_text_input)
338
- speech_type_delete_btns.append(delete_btn)
339
- speech_type_insert_btns.append(insert_btn)
340
-
341
- # Button to add speech type
342
- add_speech_type_btn = gr.Button("Add Speech Type")
343
-
344
- # Keep track of current number of speech types
345
- speech_type_count = gr.State(value=1)
346
-
347
- # Function to add a speech type
348
- def add_speech_type_fn(speech_type_count):
349
- if speech_type_count < max_speech_types:
350
- speech_type_count += 1
351
- # Prepare updates for the rows
352
- row_updates = []
353
- for i in range(1, max_speech_types):
354
- if i < speech_type_count:
355
- row_updates.append(gr.update(visible=True))
356
- else:
357
- row_updates.append(gr.update())
358
- else:
359
- # Optionally, show a warning
360
- row_updates = [gr.update() for _ in range(1, max_speech_types)]
361
- return [speech_type_count] + row_updates
362
-
363
- add_speech_type_btn.click(
364
- add_speech_type_fn, inputs=speech_type_count, outputs=[speech_type_count] + speech_type_rows
365
- )
366
-
367
- # Function to delete a speech type
368
- def make_delete_speech_type_fn(index):
369
- def delete_speech_type_fn(speech_type_count):
370
- # Prepare updates
371
- row_updates = []
372
-
373
- for i in range(1, max_speech_types):
374
- if i == index:
375
- row_updates.append(gr.update(visible=False))
376
- else:
377
- row_updates.append(gr.update())
378
-
379
- speech_type_count = max(1, speech_type_count)
380
-
381
- return [speech_type_count] + row_updates
382
-
383
- return delete_speech_type_fn
384
-
385
- # Update delete button clicks
386
- for i, delete_btn in enumerate(speech_type_delete_btns):
387
- delete_fn = make_delete_speech_type_fn(i)
388
- delete_btn.click(delete_fn, inputs=speech_type_count, outputs=[speech_type_count] + speech_type_rows)
389
-
390
- # Text input for the prompt
391
- gen_text_input_multistyle = gr.Textbox(
392
- label="Text to Generate",
393
- lines=10,
394
- placeholder="Enter the script with speaker names (or emotion types) at the start of each block, e.g.:\n\n{Regular} Hello, I'd like to order a sandwich please.\n{Surprised} What do you mean you're out of bread?\n{Sad} I really wanted a sandwich though...\n{Angry} You know what, darn you and your little shop!\n{Whisper} I'll just go back home and cry now.\n{Shouting} Why me?!",
395
- )
396
-
397
- def make_insert_speech_type_fn(index):
398
- def insert_speech_type_fn(current_text, speech_type_name):
399
- current_text = current_text or ""
400
- speech_type_name = speech_type_name or "None"
401
- updated_text = current_text + f"{{{speech_type_name}}} "
402
- return gr.update(value=updated_text)
403
-
404
- return insert_speech_type_fn
405
-
406
- for i, insert_btn in enumerate(speech_type_insert_btns):
407
- insert_fn = make_insert_speech_type_fn(i)
408
- insert_btn.click(
409
- insert_fn,
410
- inputs=[gen_text_input_multistyle, speech_type_names[i]],
411
- outputs=gen_text_input_multistyle,
412
- )
413
-
414
- with gr.Accordion("Advanced Settings", open=False):
415
- remove_silence_multistyle = gr.Checkbox(
416
- label="Remove Silences",
417
- value=True,
418
- )
419
-
420
- # Generate button
421
- generate_multistyle_btn = gr.Button("Generate Multi-Style Speech", variant="primary")
422
-
423
- # Output audio
424
- audio_output_multistyle = gr.Audio(label="Synthesized Audio")
425
-
426
- @gpu_decorator
427
- def generate_multistyle_speech(
428
- gen_text,
429
- *args,
430
- ):
431
- speech_type_names_list = args[:max_speech_types]
432
- speech_type_audios_list = args[max_speech_types : 2 * max_speech_types]
433
- speech_type_ref_texts_list = args[2 * max_speech_types : 3 * max_speech_types]
434
- remove_silence = args[3 * max_speech_types]
435
- # Collect the speech types and their audios into a dict
436
- speech_types = OrderedDict()
437
-
438
- ref_text_idx = 0
439
- for name_input, audio_input, ref_text_input in zip(
440
- speech_type_names_list, speech_type_audios_list, speech_type_ref_texts_list
441
- ):
442
- if name_input and audio_input:
443
- speech_types[name_input] = {"audio": audio_input, "ref_text": ref_text_input}
444
- else:
445
- speech_types[f"@{ref_text_idx}@"] = {"audio": "", "ref_text": ""}
446
- ref_text_idx += 1
447
-
448
- # Parse the gen_text into segments
449
- segments = parse_speechtypes_text(gen_text)
450
-
451
- # For each segment, generate speech
452
- generated_audio_segments = []
453
- current_style = "Regular"
454
-
455
- for segment in segments:
456
- style = segment["style"]
457
- text = segment["text"]
458
-
459
- if style in speech_types:
460
- current_style = style
461
- else:
462
- # If style not available, default to Regular
463
- current_style = "Regular"
464
-
465
- ref_audio = speech_types[current_style]["audio"]
466
- ref_text = speech_types[current_style].get("ref_text", "")
467
-
468
- # Generate speech for this segment
469
- audio_out, _, ref_text_out = infer(
470
- ref_audio, ref_text, text, tts_model_choice, remove_silence, 0, show_info=print
471
- ) # show_info=print no pull to top when generating
472
- sr, audio_data = audio_out
473
-
474
- generated_audio_segments.append(audio_data)
475
- speech_types[current_style]["ref_text"] = ref_text_out
476
-
477
- # Concatenate all audio segments
478
- if generated_audio_segments:
479
- final_audio_data = np.concatenate(generated_audio_segments)
480
- return [(sr, final_audio_data)] + [
481
- gr.update(value=speech_types[style]["ref_text"]) for style in speech_types
482
- ]
483
- else:
484
- gr.Warning("No audio generated.")
485
- return [None] + [gr.update(value=speech_types[style]["ref_text"]) for style in speech_types]
486
-
487
- generate_multistyle_btn.click(
488
- generate_multistyle_speech,
489
- inputs=[
490
- gen_text_input_multistyle,
491
- ]
492
- + speech_type_names
493
- + speech_type_audios
494
- + speech_type_ref_texts
495
- + [
496
- remove_silence_multistyle,
497
- ],
498
- outputs=[audio_output_multistyle] + speech_type_ref_texts,
499
- )
500
-
501
- # Validation function to disable Generate button if speech types are missing
502
- def validate_speech_types(gen_text, regular_name, *args):
503
- speech_type_names_list = args[:max_speech_types]
504
-
505
- # Collect the speech types names
506
- speech_types_available = set()
507
- if regular_name:
508
- speech_types_available.add(regular_name)
509
- for name_input in speech_type_names_list:
510
- if name_input:
511
- speech_types_available.add(name_input)
512
-
513
- # Parse the gen_text to get the speech types used
514
- segments = parse_speechtypes_text(gen_text)
515
- speech_types_in_text = set(segment["style"] for segment in segments)
516
-
517
- # Check if all speech types in text are available
518
- missing_speech_types = speech_types_in_text - speech_types_available
519
-
520
- if missing_speech_types:
521
- # Disable the generate button
522
- return gr.update(interactive=False)
523
- else:
524
- # Enable the generate button
525
- return gr.update(interactive=True)
526
-
527
- gen_text_input_multistyle.change(
528
- validate_speech_types,
529
- inputs=[gen_text_input_multistyle, regular_name] + speech_type_names,
530
- outputs=generate_multistyle_btn,
531
- )
532
-
533
-
534
- with gr.Blocks() as app_chat:
535
- gr.Markdown(
536
- """
537
- # Voice Chat
538
- Have a conversation with an AI using your reference voice!
539
- 1. Upload a reference audio clip and optionally its transcript.
540
- 2. Load the chat model.
541
- 3. Record your message through your microphone.
542
- 4. The AI will respond using the reference voice.
543
- """
544
- )
545
-
546
- if not USING_SPACES:
547
- load_chat_model_btn = gr.Button("Load Chat Model", variant="primary")
548
-
549
- chat_interface_container = gr.Column(visible=False)
550
-
551
- @gpu_decorator
552
- def load_chat_model():
553
- global chat_model_state, chat_tokenizer_state
554
- if chat_model_state is None:
555
- show_info = gr.Info
556
- show_info("Loading chat model...")
557
- model_name = "Qwen/Qwen2.5-3B-Instruct"
558
- chat_model_state = AutoModelForCausalLM.from_pretrained(
559
- model_name, torch_dtype="auto", device_map="auto"
560
- )
561
- chat_tokenizer_state = AutoTokenizer.from_pretrained(model_name)
562
- show_info("Chat model loaded.")
563
-
564
- return gr.update(visible=False), gr.update(visible=True)
565
-
566
- load_chat_model_btn.click(load_chat_model, outputs=[load_chat_model_btn, chat_interface_container])
567
-
568
- else:
569
- chat_interface_container = gr.Column()
570
-
571
- if chat_model_state is None:
572
- model_name = "Qwen/Qwen2.5-3B-Instruct"
573
- chat_model_state = AutoModelForCausalLM.from_pretrained(model_name, torch_dtype="auto", device_map="auto")
574
- chat_tokenizer_state = AutoTokenizer.from_pretrained(model_name)
575
-
576
- with chat_interface_container:
577
- with gr.Row():
578
- with gr.Column():
579
- ref_audio_chat = gr.Audio(label="Reference Audio", type="filepath")
580
- with gr.Column():
581
- with gr.Accordion("Advanced Settings", open=False):
582
- remove_silence_chat = gr.Checkbox(
583
- label="Remove Silences",
584
- value=True,
585
- )
586
- ref_text_chat = gr.Textbox(
587
- label="Reference Text",
588
- info="Optional: Leave blank to auto-transcribe",
589
- lines=2,
590
- )
591
- system_prompt_chat = gr.Textbox(
592
- label="System Prompt",
593
- value="You are not an AI assistant, you are whoever the user says you are. You must stay in character. Keep your responses concise since they will be spoken out loud.",
594
- lines=2,
595
- )
596
-
597
- chatbot_interface = gr.Chatbot(label="Conversation")
598
-
599
- with gr.Row():
600
- with gr.Column():
601
- audio_input_chat = gr.Microphone(
602
- label="Speak your message",
603
- type="filepath",
604
- )
605
- audio_output_chat = gr.Audio(autoplay=True)
606
- with gr.Column():
607
- text_input_chat = gr.Textbox(
608
- label="Type your message",
609
- lines=1,
610
- )
611
- send_btn_chat = gr.Button("Send Message")
612
- clear_btn_chat = gr.Button("Clear Conversation")
613
-
614
- conversation_state = gr.State(
615
- value=[
616
- {
617
- "role": "system",
618
- "content": "You are not an AI assistant, you are whoever the user says you are. You must stay in character. Keep your responses concise since they will be spoken out loud.",
619
- }
620
- ]
621
- )
622
-
623
- # Modify process_audio_input to use model and tokenizer from state
624
- @gpu_decorator
625
- def process_audio_input(audio_path, text, history, conv_state):
626
- """Handle audio or text input from user"""
627
-
628
- if not audio_path and not text.strip():
629
- return history, conv_state, ""
630
-
631
- if audio_path:
632
- text = preprocess_ref_audio_text(audio_path, text)[1]
633
-
634
- if not text.strip():
635
- return history, conv_state, ""
636
-
637
- conv_state.append({"role": "user", "content": text})
638
- history.append((text, None))
639
-
640
- response = generate_response(conv_state, chat_model_state, chat_tokenizer_state)
641
-
642
- conv_state.append({"role": "assistant", "content": response})
643
- history[-1] = (text, response)
644
-
645
- return history, conv_state, ""
646
-
647
- @gpu_decorator
648
- def generate_audio_response(history, ref_audio, ref_text, remove_silence):
649
- """Generate TTS audio for AI response"""
650
- if not history or not ref_audio:
651
- return None
652
-
653
- last_user_message, last_ai_response = history[-1]
654
- if not last_ai_response:
655
- return None
656
-
657
- audio_result, _, ref_text_out = infer(
658
- ref_audio,
659
- ref_text,
660
- last_ai_response,
661
- tts_model_choice,
662
- remove_silence,
663
- cross_fade_duration=0.15,
664
- speed=1.0,
665
- show_info=print, # show_info=print no pull to top when generating
666
- )
667
- return audio_result, gr.update(value=ref_text_out)
668
-
669
- def clear_conversation():
670
- """Reset the conversation"""
671
- return [], [
672
- {
673
- "role": "system",
674
- "content": "You are not an AI assistant, you are whoever the user says you are. You must stay in character. Keep your responses concise since they will be spoken out loud.",
675
- }
676
- ]
677
-
678
- def update_system_prompt(new_prompt):
679
- """Update the system prompt and reset the conversation"""
680
- new_conv_state = [{"role": "system", "content": new_prompt}]
681
- return [], new_conv_state
682
-
683
- # Handle audio input
684
- audio_input_chat.stop_recording(
685
- process_audio_input,
686
- inputs=[audio_input_chat, text_input_chat, chatbot_interface, conversation_state],
687
- outputs=[chatbot_interface, conversation_state],
688
- ).then(
689
- generate_audio_response,
690
- inputs=[chatbot_interface, ref_audio_chat, ref_text_chat, remove_silence_chat],
691
- outputs=[audio_output_chat, ref_text_chat],
692
- ).then(
693
- lambda: None,
694
- None,
695
- audio_input_chat,
696
- )
697
-
698
- # Handle text input
699
- text_input_chat.submit(
700
- process_audio_input,
701
- inputs=[audio_input_chat, text_input_chat, chatbot_interface, conversation_state],
702
- outputs=[chatbot_interface, conversation_state],
703
- ).then(
704
- generate_audio_response,
705
- inputs=[chatbot_interface, ref_audio_chat, ref_text_chat, remove_silence_chat],
706
- outputs=[audio_output_chat, ref_text_chat],
707
- ).then(
708
- lambda: None,
709
- None,
710
- text_input_chat,
711
- )
712
-
713
- # Handle send button
714
- send_btn_chat.click(
715
- process_audio_input,
716
- inputs=[audio_input_chat, text_input_chat, chatbot_interface, conversation_state],
717
- outputs=[chatbot_interface, conversation_state],
718
- ).then(
719
- generate_audio_response,
720
- inputs=[chatbot_interface, ref_audio_chat, ref_text_chat, remove_silence_chat],
721
- outputs=[audio_output_chat, ref_text_chat],
722
- ).then(
723
- lambda: None,
724
- None,
725
- text_input_chat,
726
- )
727
-
728
- # Handle clear button
729
- clear_btn_chat.click(
730
- clear_conversation,
731
- outputs=[chatbot_interface, conversation_state],
732
- )
733
-
734
- # Handle system prompt change and reset conversation
735
- system_prompt_chat.change(
736
- update_system_prompt,
737
- inputs=system_prompt_chat,
738
- outputs=[chatbot_interface, conversation_state],
739
- )
740
-
741
-
742
- with gr.Blocks() as app:
743
- gr.Markdown(
744
- """
745
- # Panchi TTS
746
-
747
- **NOTE: Reference text will be automatically transcribed with Whisper if not provided. For best results, keep your reference clips short (<15s). Ensure the audio is fully uploaded before generating.**
748
- """
749
- )
750
-
751
- last_used_custom = files("f5_tts").joinpath("infer/.cache/last_used_custom.txt")
752
-
753
- def load_last_used_custom():
754
- try:
755
- with open(last_used_custom, "r") as f:
756
- return f.read().split(",")
757
- except FileNotFoundError:
758
- last_used_custom.parent.mkdir(parents=True, exist_ok=True)
759
- return [
760
- "hf://SWivid/F5-TTS/F5TTS_Base/model_1200000.safetensors",
761
- "hf://SWivid/F5-TTS/F5TTS_Base/vocab.txt",
762
- ]
763
-
764
- def switch_tts_model(new_choice):
765
- global tts_model_choice
766
- if new_choice == "Custom": # override in case webpage is refreshed
767
- custom_ckpt_path, custom_vocab_path = load_last_used_custom()
768
- tts_model_choice = ["Custom", custom_ckpt_path, custom_vocab_path]
769
- return gr.update(visible=True, value=custom_ckpt_path), gr.update(visible=True, value=custom_vocab_path)
770
- else:
771
- tts_model_choice = new_choice
772
- return gr.update(visible=False), gr.update(visible=False)
773
-
774
- def set_custom_model(custom_ckpt_path, custom_vocab_path):
775
- global tts_model_choice
776
- tts_model_choice = ["Custom", custom_ckpt_path, custom_vocab_path]
777
- with open(last_used_custom, "w") as f:
778
- f.write(f"{custom_ckpt_path},{custom_vocab_path}")
779
-
780
- with gr.Row():
781
- if not USING_SPACES:
782
- choose_tts_model = gr.Radio(
783
- choices=[DEFAULT_TTS_MODEL, "E2-TTS", "Custom"], label="Choose TTS Model", value=DEFAULT_TTS_MODEL
784
- )
785
- else:
786
- choose_tts_model = gr.Radio(
787
- choices=[DEFAULT_TTS_MODEL, "E2-TTS"], label="Choose TTS Model", value=DEFAULT_TTS_MODEL
788
- )
789
- custom_ckpt_path = gr.Dropdown(
790
- choices=["hf://SWivid/F5-TTS/F5TTS_Base/model_1200000.safetensors"],
791
- value=load_last_used_custom()[0],
792
- allow_custom_value=True,
793
- label="MODEL CKPT: local_path | hf://user_id/repo_id/model_ckpt",
794
- visible=False,
795
- )
796
- custom_vocab_path = gr.Dropdown(
797
- choices=["hf://SWivid/F5-TTS/F5TTS_Base/vocab.txt"],
798
- value=load_last_used_custom()[1],
799
- allow_custom_value=True,
800
- label="VOCAB FILE: local_path | hf://user_id/repo_id/vocab_file",
801
- visible=False,
802
- )
803
-
804
- choose_tts_model.change(
805
- switch_tts_model,
806
- inputs=[choose_tts_model],
807
- outputs=[custom_ckpt_path, custom_vocab_path],
808
- show_progress="hidden",
809
- )
810
- custom_ckpt_path.change(
811
- set_custom_model,
812
- inputs=[custom_ckpt_path, custom_vocab_path],
813
- show_progress="hidden",
814
- )
815
- custom_vocab_path.change(
816
- set_custom_model,
817
- inputs=[custom_ckpt_path, custom_vocab_path],
818
- show_progress="hidden",
819
- )
820
-
821
- gr.TabbedInterface(
822
- [app_tts, app_multistyle, app_chat, app_credits],
823
- ["Basic-TTS", "Multi-Speech", "Voice-Chat", "Credits"],
824
- )
825
-
826
-
827
- @click.command()
828
- @click.option("--port", "-p", default=None, type=int, help="Port to run the app on")
829
- @click.option("--host", "-H", default=None, help="Host to run the app on")
830
- @click.option(
831
- "--share",
832
- "-s",
833
- default=False,
834
- is_flag=True,
835
- help="Share the app via Gradio share link",
836
- )
837
- @click.option("--api", "-a", default=True, is_flag=True, help="Allow API access")
838
- @click.option(
839
- "--root_path",
840
- "-r",
841
- default=None,
842
- type=str,
843
- help='The root path (or "mount point") of the application, if it\'s not served from the root ("/") of the domain. Often used when the application is behind a reverse proxy that forwards requests to the application, e.g. set "/myapp" or full URL for application served at "https://example.com/myapp".',
844
- )
845
- def main(port, host, share, api, root_path):
846
- global app
847
- print("Starting app...")
848
- app.queue(api_open=api).launch(server_name=host, server_port=port, share=share, show_api=api, root_path=root_path)
849
-
850
-
851
- if __name__ == "__main__":
852
- if not USING_SPACES:
853
- main()
854
- else:
855
- app.queue().launch()
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f5_tts/infer/infer_gradio_orig.py DELETED
@@ -1,853 +0,0 @@
1
- # ruff: noqa: E402
2
- # Above allows ruff to ignore E402: module level import not at top of file
3
-
4
- import re
5
- import tempfile
6
- from collections import OrderedDict
7
- from importlib.resources import files
8
-
9
- import click
10
- import gradio as gr
11
- import numpy as np
12
- import soundfile as sf
13
- import torchaudio
14
- from cached_path import cached_path
15
- from transformers import AutoModelForCausalLM, AutoTokenizer
16
-
17
- try:
18
- import spaces
19
-
20
- USING_SPACES = True
21
- except ImportError:
22
- USING_SPACES = False
23
-
24
-
25
- def gpu_decorator(func):
26
- if USING_SPACES:
27
- return spaces.GPU(func)
28
- else:
29
- return func
30
-
31
-
32
- from f5_tts.model import DiT, UNetT
33
- from f5_tts.infer.utils_infer import (
34
- load_vocoder,
35
- load_model,
36
- preprocess_ref_audio_text,
37
- infer_process,
38
- remove_silence_for_generated_wav,
39
- save_spectrogram,
40
- )
41
-
42
-
43
- DEFAULT_TTS_MODEL = "F5-TTS"
44
- tts_model_choice = DEFAULT_TTS_MODEL
45
-
46
-
47
- # load models
48
-
49
- vocoder = load_vocoder()
50
-
51
-
52
- def load_f5tts(ckpt_path=str(cached_path("hf://SWivid/F5-TTS/F5TTS_Base/model_1200000.safetensors"))):
53
- F5TTS_model_cfg = dict(dim=1024, depth=22, heads=16, ff_mult=2, text_dim=512, conv_layers=4)
54
-
55
- ckpt_path = "/home/tts/ttsteam/repos/F5-TTS/runs/indic_langs_11/ckpt/model_336000.pt"
56
- return load_model(DiT, F5TTS_model_cfg, ckpt_path)
57
-
58
-
59
- def load_e2tts(ckpt_path=str(cached_path("hf://SWivid/E2-TTS/E2TTS_Base/model_1200000.safetensors"))):
60
- E2TTS_model_cfg = dict(dim=1024, depth=24, heads=16, ff_mult=4)
61
- return load_model(UNetT, E2TTS_model_cfg, ckpt_path)
62
-
63
-
64
- def load_custom(ckpt_path: str, vocab_path="", model_cfg=None):
65
- ckpt_path, vocab_path = ckpt_path.strip(), vocab_path.strip()
66
- if ckpt_path.startswith("hf://"):
67
- ckpt_path = str(cached_path(ckpt_path))
68
- if vocab_path.startswith("hf://"):
69
- vocab_path = str(cached_path(vocab_path))
70
- if model_cfg is None:
71
- model_cfg = dict(dim=1024, depth=22, heads=16, ff_mult=2, text_dim=512, conv_layers=4)
72
- return load_model(DiT, model_cfg, ckpt_path, vocab_file=vocab_path)
73
-
74
-
75
- F5TTS_ema_model = load_f5tts()
76
- E2TTS_ema_model = load_e2tts() if USING_SPACES else None
77
- custom_ema_model, pre_custom_path = None, ""
78
-
79
- chat_model_state = None
80
- chat_tokenizer_state = None
81
-
82
-
83
- @gpu_decorator
84
- def generate_response(messages, model, tokenizer):
85
- """Generate response using Qwen"""
86
- text = tokenizer.apply_chat_template(
87
- messages,
88
- tokenize=False,
89
- add_generation_prompt=True,
90
- )
91
-
92
- model_inputs = tokenizer([text], return_tensors="pt").to(model.device)
93
- generated_ids = model.generate(
94
- **model_inputs,
95
- max_new_tokens=512,
96
- temperature=0.7,
97
- top_p=0.95,
98
- )
99
-
100
- generated_ids = [
101
- output_ids[len(input_ids) :] for input_ids, output_ids in zip(model_inputs.input_ids, generated_ids)
102
- ]
103
- return tokenizer.batch_decode(generated_ids, skip_special_tokens=True)[0]
104
-
105
-
106
- @gpu_decorator
107
- def infer(
108
- ref_audio_orig, ref_text, gen_text, model, remove_silence, cross_fade_duration=0.15, speed=1, show_info=gr.Info
109
- ):
110
- ref_audio, ref_text = preprocess_ref_audio_text(ref_audio_orig, ref_text, show_info=show_info)
111
-
112
- if model == "F5-TTS":
113
- ema_model = F5TTS_ema_model
114
- elif model == "E2-TTS":
115
- global E2TTS_ema_model
116
- if E2TTS_ema_model is None:
117
- show_info("Loading E2-TTS model...")
118
- E2TTS_ema_model = load_e2tts()
119
- ema_model = E2TTS_ema_model
120
- elif isinstance(model, list) and model[0] == "Custom":
121
- assert not USING_SPACES, "Only official checkpoints allowed in Spaces."
122
- global custom_ema_model, pre_custom_path
123
- if pre_custom_path != model[1]:
124
- show_info("Loading Custom TTS model...")
125
- custom_ema_model = load_custom(model[1], vocab_path=model[2])
126
- pre_custom_path = model[1]
127
- ema_model = custom_ema_model
128
-
129
- final_wave, final_sample_rate, combined_spectrogram = infer_process(
130
- ref_audio,
131
- ref_text,
132
- gen_text,
133
- ema_model,
134
- vocoder,
135
- cross_fade_duration=cross_fade_duration,
136
- speed=speed,
137
- show_info=show_info,
138
- progress=gr.Progress(),
139
- )
140
-
141
- # Remove silence
142
- if remove_silence:
143
- with tempfile.NamedTemporaryFile(delete=False, suffix=".wav") as f:
144
- sf.write(f.name, final_wave, final_sample_rate)
145
- remove_silence_for_generated_wav(f.name)
146
- final_wave, _ = torchaudio.load(f.name)
147
- final_wave = final_wave.squeeze().cpu().numpy()
148
-
149
- # Save the spectrogram
150
- with tempfile.NamedTemporaryFile(suffix=".png", delete=False) as tmp_spectrogram:
151
- spectrogram_path = tmp_spectrogram.name
152
- save_spectrogram(combined_spectrogram, spectrogram_path)
153
-
154
- return (final_sample_rate, final_wave), spectrogram_path, ref_text
155
-
156
-
157
- with gr.Blocks() as app_credits:
158
- gr.Markdown("""
159
- # Credits
160
-
161
- * [mrfakename](https://github.com/fakerybakery) for the original [online demo](https://huggingface.co/spaces/mrfakename/E2-F5-TTS)
162
- * [RootingInLoad](https://github.com/RootingInLoad) for initial chunk generation and podcast app exploration
163
- * [jpgallegoar](https://github.com/jpgallegoar) for multiple speech-type generation & voice chat
164
- """)
165
- with gr.Blocks() as app_tts:
166
- gr.Markdown("# Batched TTS")
167
- ref_audio_input = gr.Audio(label="Reference Audio", type="filepath")
168
- gen_text_input = gr.Textbox(label="Text to Generate", lines=10)
169
- generate_btn = gr.Button("Synthesize", variant="primary")
170
- with gr.Accordion("Advanced Settings", open=False):
171
- ref_text_input = gr.Textbox(
172
- label="Reference Text",
173
- info="Leave blank to automatically transcribe the reference audio. If you enter text it will override automatic transcription.",
174
- lines=2,
175
- )
176
- remove_silence = gr.Checkbox(
177
- label="Remove Silences",
178
- info="The model tends to produce silences, especially on longer audio. We can manually remove silences if needed. Note that this is an experimental feature and may produce strange results. This will also increase generation time.",
179
- value=False,
180
- )
181
- speed_slider = gr.Slider(
182
- label="Speed",
183
- minimum=0.3,
184
- maximum=2.0,
185
- value=1.0,
186
- step=0.1,
187
- info="Adjust the speed of the audio.",
188
- )
189
- cross_fade_duration_slider = gr.Slider(
190
- label="Cross-Fade Duration (s)",
191
- minimum=0.0,
192
- maximum=1.0,
193
- value=0.15,
194
- step=0.01,
195
- info="Set the duration of the cross-fade between audio clips.",
196
- )
197
-
198
- audio_output = gr.Audio(label="Synthesized Audio")
199
- spectrogram_output = gr.Image(label="Spectrogram")
200
-
201
- @gpu_decorator
202
- def basic_tts(
203
- ref_audio_input,
204
- ref_text_input,
205
- gen_text_input,
206
- remove_silence,
207
- cross_fade_duration_slider,
208
- speed_slider,
209
- ):
210
- audio_out, spectrogram_path, ref_text_out = infer(
211
- ref_audio_input,
212
- ref_text_input,
213
- gen_text_input,
214
- tts_model_choice,
215
- remove_silence,
216
- cross_fade_duration_slider,
217
- speed_slider,
218
- )
219
- return audio_out, spectrogram_path, gr.update(value=ref_text_out)
220
-
221
- generate_btn.click(
222
- basic_tts,
223
- inputs=[
224
- ref_audio_input,
225
- ref_text_input,
226
- gen_text_input,
227
- remove_silence,
228
- cross_fade_duration_slider,
229
- speed_slider,
230
- ],
231
- outputs=[audio_output, spectrogram_output, ref_text_input],
232
- )
233
-
234
-
235
- def parse_speechtypes_text(gen_text):
236
- # Pattern to find {speechtype}
237
- pattern = r"\{(.*?)\}"
238
-
239
- # Split the text by the pattern
240
- tokens = re.split(pattern, gen_text)
241
-
242
- segments = []
243
-
244
- current_style = "Regular"
245
-
246
- for i in range(len(tokens)):
247
- if i % 2 == 0:
248
- # This is text
249
- text = tokens[i].strip()
250
- if text:
251
- segments.append({"style": current_style, "text": text})
252
- else:
253
- # This is style
254
- style = tokens[i].strip()
255
- current_style = style
256
-
257
- return segments
258
-
259
-
260
- with gr.Blocks() as app_multistyle:
261
- # New section for multistyle generation
262
- gr.Markdown(
263
- """
264
- # Multiple Speech-Type Generation
265
-
266
- This section allows you to generate multiple speech types or multiple people's voices. Enter your text in the format shown below, and the system will generate speech using the appropriate type. If unspecified, the model will use the regular speech type. The current speech type will be used until the next speech type is specified.
267
- """
268
- )
269
-
270
- with gr.Row():
271
- gr.Markdown(
272
- """
273
- **Example Input:**
274
- {Regular} Hello, I'd like to order a sandwich please.
275
- {Surprised} What do you mean you're out of bread?
276
- {Sad} I really wanted a sandwich though...
277
- {Angry} You know what, darn you and your little shop!
278
- {Whisper} I'll just go back home and cry now.
279
- {Shouting} Why me?!
280
- """
281
- )
282
-
283
- gr.Markdown(
284
- """
285
- **Example Input 2:**
286
- {Speaker1_Happy} Hello, I'd like to order a sandwich please.
287
- {Speaker2_Regular} Sorry, we're out of bread.
288
- {Speaker1_Sad} I really wanted a sandwich though...
289
- {Speaker2_Whisper} I'll give you the last one I was hiding.
290
- """
291
- )
292
-
293
- gr.Markdown(
294
- "Upload different audio clips for each speech type. The first speech type is mandatory. You can add additional speech types by clicking the 'Add Speech Type' button."
295
- )
296
-
297
- # Regular speech type (mandatory)
298
- with gr.Row():
299
- with gr.Column():
300
- regular_name = gr.Textbox(value="Regular", label="Speech Type Name")
301
- regular_insert = gr.Button("Insert Label", variant="secondary")
302
- regular_audio = gr.Audio(label="Regular Reference Audio", type="filepath")
303
- regular_ref_text = gr.Textbox(label="Reference Text (Regular)", lines=2)
304
-
305
- # Regular speech type (max 100)
306
- max_speech_types = 100
307
- speech_type_rows = [] # 99
308
- speech_type_names = [regular_name] # 100
309
- speech_type_audios = [regular_audio] # 100
310
- speech_type_ref_texts = [regular_ref_text] # 100
311
- speech_type_delete_btns = [] # 99
312
- speech_type_insert_btns = [regular_insert] # 100
313
-
314
- # Additional speech types (99 more)
315
- for i in range(max_speech_types - 1):
316
- with gr.Row(visible=False) as row:
317
- with gr.Column():
318
- name_input = gr.Textbox(label="Speech Type Name")
319
- delete_btn = gr.Button("Delete Type", variant="secondary")
320
- insert_btn = gr.Button("Insert Label", variant="secondary")
321
- audio_input = gr.Audio(label="Reference Audio", type="filepath")
322
- ref_text_input = gr.Textbox(label="Reference Text", lines=2)
323
- speech_type_rows.append(row)
324
- speech_type_names.append(name_input)
325
- speech_type_audios.append(audio_input)
326
- speech_type_ref_texts.append(ref_text_input)
327
- speech_type_delete_btns.append(delete_btn)
328
- speech_type_insert_btns.append(insert_btn)
329
-
330
- # Button to add speech type
331
- add_speech_type_btn = gr.Button("Add Speech Type")
332
-
333
- # Keep track of current number of speech types
334
- speech_type_count = gr.State(value=1)
335
-
336
- # Function to add a speech type
337
- def add_speech_type_fn(speech_type_count):
338
- if speech_type_count < max_speech_types:
339
- speech_type_count += 1
340
- # Prepare updates for the rows
341
- row_updates = []
342
- for i in range(1, max_speech_types):
343
- if i < speech_type_count:
344
- row_updates.append(gr.update(visible=True))
345
- else:
346
- row_updates.append(gr.update())
347
- else:
348
- # Optionally, show a warning
349
- row_updates = [gr.update() for _ in range(1, max_speech_types)]
350
- return [speech_type_count] + row_updates
351
-
352
- add_speech_type_btn.click(
353
- add_speech_type_fn, inputs=speech_type_count, outputs=[speech_type_count] + speech_type_rows
354
- )
355
-
356
- # Function to delete a speech type
357
- def make_delete_speech_type_fn(index):
358
- def delete_speech_type_fn(speech_type_count):
359
- # Prepare updates
360
- row_updates = []
361
-
362
- for i in range(1, max_speech_types):
363
- if i == index:
364
- row_updates.append(gr.update(visible=False))
365
- else:
366
- row_updates.append(gr.update())
367
-
368
- speech_type_count = max(1, speech_type_count)
369
-
370
- return [speech_type_count] + row_updates
371
-
372
- return delete_speech_type_fn
373
-
374
- # Update delete button clicks
375
- for i, delete_btn in enumerate(speech_type_delete_btns):
376
- delete_fn = make_delete_speech_type_fn(i)
377
- delete_btn.click(delete_fn, inputs=speech_type_count, outputs=[speech_type_count] + speech_type_rows)
378
-
379
- # Text input for the prompt
380
- gen_text_input_multistyle = gr.Textbox(
381
- label="Text to Generate",
382
- lines=10,
383
- placeholder="Enter the script with speaker names (or emotion types) at the start of each block, e.g.:\n\n{Regular} Hello, I'd like to order a sandwich please.\n{Surprised} What do you mean you're out of bread?\n{Sad} I really wanted a sandwich though...\n{Angry} You know what, darn you and your little shop!\n{Whisper} I'll just go back home and cry now.\n{Shouting} Why me?!",
384
- )
385
-
386
- def make_insert_speech_type_fn(index):
387
- def insert_speech_type_fn(current_text, speech_type_name):
388
- current_text = current_text or ""
389
- speech_type_name = speech_type_name or "None"
390
- updated_text = current_text + f"{{{speech_type_name}}} "
391
- return gr.update(value=updated_text)
392
-
393
- return insert_speech_type_fn
394
-
395
- for i, insert_btn in enumerate(speech_type_insert_btns):
396
- insert_fn = make_insert_speech_type_fn(i)
397
- insert_btn.click(
398
- insert_fn,
399
- inputs=[gen_text_input_multistyle, speech_type_names[i]],
400
- outputs=gen_text_input_multistyle,
401
- )
402
-
403
- with gr.Accordion("Advanced Settings", open=False):
404
- remove_silence_multistyle = gr.Checkbox(
405
- label="Remove Silences",
406
- value=True,
407
- )
408
-
409
- # Generate button
410
- generate_multistyle_btn = gr.Button("Generate Multi-Style Speech", variant="primary")
411
-
412
- # Output audio
413
- audio_output_multistyle = gr.Audio(label="Synthesized Audio")
414
-
415
- @gpu_decorator
416
- def generate_multistyle_speech(
417
- gen_text,
418
- *args,
419
- ):
420
- speech_type_names_list = args[:max_speech_types]
421
- speech_type_audios_list = args[max_speech_types : 2 * max_speech_types]
422
- speech_type_ref_texts_list = args[2 * max_speech_types : 3 * max_speech_types]
423
- remove_silence = args[3 * max_speech_types]
424
- # Collect the speech types and their audios into a dict
425
- speech_types = OrderedDict()
426
-
427
- ref_text_idx = 0
428
- for name_input, audio_input, ref_text_input in zip(
429
- speech_type_names_list, speech_type_audios_list, speech_type_ref_texts_list
430
- ):
431
- if name_input and audio_input:
432
- speech_types[name_input] = {"audio": audio_input, "ref_text": ref_text_input}
433
- else:
434
- speech_types[f"@{ref_text_idx}@"] = {"audio": "", "ref_text": ""}
435
- ref_text_idx += 1
436
-
437
- # Parse the gen_text into segments
438
- segments = parse_speechtypes_text(gen_text)
439
-
440
- # For each segment, generate speech
441
- generated_audio_segments = []
442
- current_style = "Regular"
443
-
444
- for segment in segments:
445
- style = segment["style"]
446
- text = segment["text"]
447
-
448
- if style in speech_types:
449
- current_style = style
450
- else:
451
- # If style not available, default to Regular
452
- current_style = "Regular"
453
-
454
- ref_audio = speech_types[current_style]["audio"]
455
- ref_text = speech_types[current_style].get("ref_text", "")
456
-
457
- # Generate speech for this segment
458
- audio_out, _, ref_text_out = infer(
459
- ref_audio, ref_text, text, tts_model_choice, remove_silence, 0, show_info=print
460
- ) # show_info=print no pull to top when generating
461
- sr, audio_data = audio_out
462
-
463
- generated_audio_segments.append(audio_data)
464
- speech_types[current_style]["ref_text"] = ref_text_out
465
-
466
- # Concatenate all audio segments
467
- if generated_audio_segments:
468
- final_audio_data = np.concatenate(generated_audio_segments)
469
- return [(sr, final_audio_data)] + [
470
- gr.update(value=speech_types[style]["ref_text"]) for style in speech_types
471
- ]
472
- else:
473
- gr.Warning("No audio generated.")
474
- return [None] + [gr.update(value=speech_types[style]["ref_text"]) for style in speech_types]
475
-
476
- generate_multistyle_btn.click(
477
- generate_multistyle_speech,
478
- inputs=[
479
- gen_text_input_multistyle,
480
- ]
481
- + speech_type_names
482
- + speech_type_audios
483
- + speech_type_ref_texts
484
- + [
485
- remove_silence_multistyle,
486
- ],
487
- outputs=[audio_output_multistyle] + speech_type_ref_texts,
488
- )
489
-
490
- # Validation function to disable Generate button if speech types are missing
491
- def validate_speech_types(gen_text, regular_name, *args):
492
- speech_type_names_list = args[:max_speech_types]
493
-
494
- # Collect the speech types names
495
- speech_types_available = set()
496
- if regular_name:
497
- speech_types_available.add(regular_name)
498
- for name_input in speech_type_names_list:
499
- if name_input:
500
- speech_types_available.add(name_input)
501
-
502
- # Parse the gen_text to get the speech types used
503
- segments = parse_speechtypes_text(gen_text)
504
- speech_types_in_text = set(segment["style"] for segment in segments)
505
-
506
- # Check if all speech types in text are available
507
- missing_speech_types = speech_types_in_text - speech_types_available
508
-
509
- if missing_speech_types:
510
- # Disable the generate button
511
- return gr.update(interactive=False)
512
- else:
513
- # Enable the generate button
514
- return gr.update(interactive=True)
515
-
516
- gen_text_input_multistyle.change(
517
- validate_speech_types,
518
- inputs=[gen_text_input_multistyle, regular_name] + speech_type_names,
519
- outputs=generate_multistyle_btn,
520
- )
521
-
522
-
523
- with gr.Blocks() as app_chat:
524
- gr.Markdown(
525
- """
526
- # Voice Chat
527
- Have a conversation with an AI using your reference voice!
528
- 1. Upload a reference audio clip and optionally its transcript.
529
- 2. Load the chat model.
530
- 3. Record your message through your microphone.
531
- 4. The AI will respond using the reference voice.
532
- """
533
- )
534
-
535
- if not USING_SPACES:
536
- load_chat_model_btn = gr.Button("Load Chat Model", variant="primary")
537
-
538
- chat_interface_container = gr.Column(visible=False)
539
-
540
- @gpu_decorator
541
- def load_chat_model():
542
- global chat_model_state, chat_tokenizer_state
543
- if chat_model_state is None:
544
- show_info = gr.Info
545
- show_info("Loading chat model...")
546
- model_name = "Qwen/Qwen2.5-3B-Instruct"
547
- chat_model_state = AutoModelForCausalLM.from_pretrained(
548
- model_name, torch_dtype="auto", device_map="auto"
549
- )
550
- chat_tokenizer_state = AutoTokenizer.from_pretrained(model_name)
551
- show_info("Chat model loaded.")
552
-
553
- return gr.update(visible=False), gr.update(visible=True)
554
-
555
- load_chat_model_btn.click(load_chat_model, outputs=[load_chat_model_btn, chat_interface_container])
556
-
557
- else:
558
- chat_interface_container = gr.Column()
559
-
560
- if chat_model_state is None:
561
- model_name = "Qwen/Qwen2.5-3B-Instruct"
562
- chat_model_state = AutoModelForCausalLM.from_pretrained(model_name, torch_dtype="auto", device_map="auto")
563
- chat_tokenizer_state = AutoTokenizer.from_pretrained(model_name)
564
-
565
- with chat_interface_container:
566
- with gr.Row():
567
- with gr.Column():
568
- ref_audio_chat = gr.Audio(label="Reference Audio", type="filepath")
569
- with gr.Column():
570
- with gr.Accordion("Advanced Settings", open=False):
571
- remove_silence_chat = gr.Checkbox(
572
- label="Remove Silences",
573
- value=True,
574
- )
575
- ref_text_chat = gr.Textbox(
576
- label="Reference Text",
577
- info="Optional: Leave blank to auto-transcribe",
578
- lines=2,
579
- )
580
- system_prompt_chat = gr.Textbox(
581
- label="System Prompt",
582
- value="You are not an AI assistant, you are whoever the user says you are. You must stay in character. Keep your responses concise since they will be spoken out loud.",
583
- lines=2,
584
- )
585
-
586
- chatbot_interface = gr.Chatbot(label="Conversation")
587
-
588
- with gr.Row():
589
- with gr.Column():
590
- audio_input_chat = gr.Microphone(
591
- label="Speak your message",
592
- type="filepath",
593
- )
594
- audio_output_chat = gr.Audio(autoplay=True)
595
- with gr.Column():
596
- text_input_chat = gr.Textbox(
597
- label="Type your message",
598
- lines=1,
599
- )
600
- send_btn_chat = gr.Button("Send Message")
601
- clear_btn_chat = gr.Button("Clear Conversation")
602
-
603
- conversation_state = gr.State(
604
- value=[
605
- {
606
- "role": "system",
607
- "content": "You are not an AI assistant, you are whoever the user says you are. You must stay in character. Keep your responses concise since they will be spoken out loud.",
608
- }
609
- ]
610
- )
611
-
612
- # Modify process_audio_input to use model and tokenizer from state
613
- @gpu_decorator
614
- def process_audio_input(audio_path, text, history, conv_state):
615
- """Handle audio or text input from user"""
616
-
617
- if not audio_path and not text.strip():
618
- return history, conv_state, ""
619
-
620
- if audio_path:
621
- text = preprocess_ref_audio_text(audio_path, text)[1]
622
-
623
- if not text.strip():
624
- return history, conv_state, ""
625
-
626
- conv_state.append({"role": "user", "content": text})
627
- history.append((text, None))
628
-
629
- response = generate_response(conv_state, chat_model_state, chat_tokenizer_state)
630
-
631
- conv_state.append({"role": "assistant", "content": response})
632
- history[-1] = (text, response)
633
-
634
- return history, conv_state, ""
635
-
636
- @gpu_decorator
637
- def generate_audio_response(history, ref_audio, ref_text, remove_silence):
638
- """Generate TTS audio for AI response"""
639
- if not history or not ref_audio:
640
- return None
641
-
642
- last_user_message, last_ai_response = history[-1]
643
- if not last_ai_response:
644
- return None
645
-
646
- audio_result, _, ref_text_out = infer(
647
- ref_audio,
648
- ref_text,
649
- last_ai_response,
650
- tts_model_choice,
651
- remove_silence,
652
- cross_fade_duration=0.15,
653
- speed=1.0,
654
- show_info=print, # show_info=print no pull to top when generating
655
- )
656
- return audio_result, gr.update(value=ref_text_out)
657
-
658
- def clear_conversation():
659
- """Reset the conversation"""
660
- return [], [
661
- {
662
- "role": "system",
663
- "content": "You are not an AI assistant, you are whoever the user says you are. You must stay in character. Keep your responses concise since they will be spoken out loud.",
664
- }
665
- ]
666
-
667
- def update_system_prompt(new_prompt):
668
- """Update the system prompt and reset the conversation"""
669
- new_conv_state = [{"role": "system", "content": new_prompt}]
670
- return [], new_conv_state
671
-
672
- # Handle audio input
673
- audio_input_chat.stop_recording(
674
- process_audio_input,
675
- inputs=[audio_input_chat, text_input_chat, chatbot_interface, conversation_state],
676
- outputs=[chatbot_interface, conversation_state],
677
- ).then(
678
- generate_audio_response,
679
- inputs=[chatbot_interface, ref_audio_chat, ref_text_chat, remove_silence_chat],
680
- outputs=[audio_output_chat, ref_text_chat],
681
- ).then(
682
- lambda: None,
683
- None,
684
- audio_input_chat,
685
- )
686
-
687
- # Handle text input
688
- text_input_chat.submit(
689
- process_audio_input,
690
- inputs=[audio_input_chat, text_input_chat, chatbot_interface, conversation_state],
691
- outputs=[chatbot_interface, conversation_state],
692
- ).then(
693
- generate_audio_response,
694
- inputs=[chatbot_interface, ref_audio_chat, ref_text_chat, remove_silence_chat],
695
- outputs=[audio_output_chat, ref_text_chat],
696
- ).then(
697
- lambda: None,
698
- None,
699
- text_input_chat,
700
- )
701
-
702
- # Handle send button
703
- send_btn_chat.click(
704
- process_audio_input,
705
- inputs=[audio_input_chat, text_input_chat, chatbot_interface, conversation_state],
706
- outputs=[chatbot_interface, conversation_state],
707
- ).then(
708
- generate_audio_response,
709
- inputs=[chatbot_interface, ref_audio_chat, ref_text_chat, remove_silence_chat],
710
- outputs=[audio_output_chat, ref_text_chat],
711
- ).then(
712
- lambda: None,
713
- None,
714
- text_input_chat,
715
- )
716
-
717
- # Handle clear button
718
- clear_btn_chat.click(
719
- clear_conversation,
720
- outputs=[chatbot_interface, conversation_state],
721
- )
722
-
723
- # Handle system prompt change and reset conversation
724
- system_prompt_chat.change(
725
- update_system_prompt,
726
- inputs=system_prompt_chat,
727
- outputs=[chatbot_interface, conversation_state],
728
- )
729
-
730
-
731
- with gr.Blocks() as app:
732
- gr.Markdown(
733
- """
734
- # E2/F5 TTS
735
-
736
- This is a local web UI for F5 TTS with advanced batch processing support. This app supports the following TTS models:
737
-
738
- * [F5-TTS](https://arxiv.org/abs/2410.06885) (A Fairytaler that Fakes Fluent and Faithful Speech with Flow Matching)
739
- * [E2 TTS](https://arxiv.org/abs/2406.18009) (Embarrassingly Easy Fully Non-Autoregressive Zero-Shot TTS)
740
-
741
- The checkpoints currently support English and Chinese.
742
-
743
- If you're having issues, try converting your reference audio to WAV or MP3, clipping it to 15s with ✂ in the bottom right corner (otherwise might have non-optimal auto-trimmed result).
744
-
745
- **NOTE: Reference text will be automatically transcribed with Whisper if not provided. For best results, keep your reference clips short (<15s). Ensure the audio is fully uploaded before generating.**
746
- """
747
- )
748
-
749
- last_used_custom = files("f5_tts").joinpath("infer/.cache/last_used_custom.txt")
750
-
751
- def load_last_used_custom():
752
- try:
753
- with open(last_used_custom, "r") as f:
754
- return f.read().split(",")
755
- except FileNotFoundError:
756
- last_used_custom.parent.mkdir(parents=True, exist_ok=True)
757
- return [
758
- "hf://SWivid/F5-TTS/F5TTS_Base/model_1200000.safetensors",
759
- "hf://SWivid/F5-TTS/F5TTS_Base/vocab.txt",
760
- ]
761
-
762
- def switch_tts_model(new_choice):
763
- global tts_model_choice
764
- if new_choice == "Custom": # override in case webpage is refreshed
765
- custom_ckpt_path, custom_vocab_path = load_last_used_custom()
766
- tts_model_choice = ["Custom", custom_ckpt_path, custom_vocab_path]
767
- return gr.update(visible=True, value=custom_ckpt_path), gr.update(visible=True, value=custom_vocab_path)
768
- else:
769
- tts_model_choice = new_choice
770
- return gr.update(visible=False), gr.update(visible=False)
771
-
772
- def set_custom_model(custom_ckpt_path, custom_vocab_path):
773
- global tts_model_choice
774
- tts_model_choice = ["Custom", custom_ckpt_path, custom_vocab_path]
775
- with open(last_used_custom, "w") as f:
776
- f.write(f"{custom_ckpt_path},{custom_vocab_path}")
777
-
778
- with gr.Row():
779
- if not USING_SPACES:
780
- choose_tts_model = gr.Radio(
781
- choices=[DEFAULT_TTS_MODEL, "E2-TTS", "Custom"], label="Choose TTS Model", value=DEFAULT_TTS_MODEL
782
- )
783
- else:
784
- choose_tts_model = gr.Radio(
785
- choices=[DEFAULT_TTS_MODEL, "E2-TTS"], label="Choose TTS Model", value=DEFAULT_TTS_MODEL
786
- )
787
- custom_ckpt_path = gr.Dropdown(
788
- choices=["hf://SWivid/F5-TTS/F5TTS_Base/model_1200000.safetensors"],
789
- value=load_last_used_custom()[0],
790
- allow_custom_value=True,
791
- label="MODEL CKPT: local_path | hf://user_id/repo_id/model_ckpt",
792
- visible=False,
793
- )
794
- custom_vocab_path = gr.Dropdown(
795
- choices=["hf://SWivid/F5-TTS/F5TTS_Base/vocab.txt"],
796
- value=load_last_used_custom()[1],
797
- allow_custom_value=True,
798
- label="VOCAB FILE: local_path | hf://user_id/repo_id/vocab_file",
799
- visible=False,
800
- )
801
-
802
- choose_tts_model.change(
803
- switch_tts_model,
804
- inputs=[choose_tts_model],
805
- outputs=[custom_ckpt_path, custom_vocab_path],
806
- show_progress="hidden",
807
- )
808
- custom_ckpt_path.change(
809
- set_custom_model,
810
- inputs=[custom_ckpt_path, custom_vocab_path],
811
- show_progress="hidden",
812
- )
813
- custom_vocab_path.change(
814
- set_custom_model,
815
- inputs=[custom_ckpt_path, custom_vocab_path],
816
- show_progress="hidden",
817
- )
818
-
819
- gr.TabbedInterface(
820
- [app_tts, app_multistyle, app_chat, app_credits],
821
- ["Basic-TTS", "Multi-Speech", "Voice-Chat", "Credits"],
822
- )
823
-
824
-
825
- @click.command()
826
- @click.option("--port", "-p", default=None, type=int, help="Port to run the app on")
827
- @click.option("--host", "-H", default=None, help="Host to run the app on")
828
- @click.option(
829
- "--share",
830
- "-s",
831
- default=False,
832
- is_flag=True,
833
- help="Share the app via Gradio share link",
834
- )
835
- @click.option("--api", "-a", default=True, is_flag=True, help="Allow API access")
836
- @click.option(
837
- "--root_path",
838
- "-r",
839
- default=None,
840
- type=str,
841
- help='The root path (or "mount point") of the application, if it\'s not served from the root ("/") of the domain. Often used when the application is behind a reverse proxy that forwards requests to the application, e.g. set "/myapp" or full URL for application served at "https://example.com/myapp".',
842
- )
843
- def main(port, host, share, api, root_path):
844
- global app
845
- print("Starting app...")
846
- app.queue(api_open=api).launch(server_name=host, server_port=port, share=share, show_api=api, root_path=root_path)
847
-
848
-
849
- if __name__ == "__main__":
850
- if not USING_SPACES:
851
- main()
852
- else:
853
- app.queue().launch()
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f5_tts/infer/speech_edit.py DELETED
@@ -1,193 +0,0 @@
1
- import os
2
-
3
- os.environ["PYTOCH_ENABLE_MPS_FALLBACK"] = "1" # for MPS device compatibility
4
-
5
- import torch
6
- import torch.nn.functional as F
7
- import torchaudio
8
-
9
- from f5_tts.infer.utils_infer import load_checkpoint, load_vocoder, save_spectrogram
10
- from f5_tts.model import CFM, DiT, UNetT
11
- from f5_tts.model.utils import convert_char_to_pinyin, get_tokenizer
12
-
13
- device = "cuda" if torch.cuda.is_available() else "mps" if torch.backends.mps.is_available() else "cpu"
14
-
15
-
16
- # --------------------- Dataset Settings -------------------- #
17
-
18
- target_sample_rate = 24000
19
- n_mel_channels = 100
20
- hop_length = 256
21
- win_length = 1024
22
- n_fft = 1024
23
- mel_spec_type = "vocos" # 'vocos' or 'bigvgan'
24
- target_rms = 0.1
25
-
26
- tokenizer = "pinyin"
27
- dataset_name = "Emilia_ZH_EN"
28
-
29
-
30
- # ---------------------- infer setting ---------------------- #
31
-
32
- seed = None # int | None
33
-
34
- exp_name = "F5TTS_Base" # F5TTS_Base | E2TTS_Base
35
- ckpt_step = 1200000
36
-
37
- nfe_step = 32 # 16, 32
38
- cfg_strength = 2.0
39
- ode_method = "euler" # euler | midpoint
40
- sway_sampling_coef = -1.0
41
- speed = 1.0
42
-
43
- if exp_name == "F5TTS_Base":
44
- model_cls = DiT
45
- model_cfg = dict(dim=1024, depth=22, heads=16, ff_mult=2, text_dim=512, conv_layers=4)
46
-
47
- elif exp_name == "E2TTS_Base":
48
- model_cls = UNetT
49
- model_cfg = dict(dim=1024, depth=24, heads=16, ff_mult=4)
50
-
51
- ckpt_path = f"ckpts/{exp_name}/model_{ckpt_step}.safetensors"
52
- output_dir = "tests"
53
-
54
- # [leverage https://github.com/MahmoudAshraf97/ctc-forced-aligner to get char level alignment]
55
- # pip install git+https://github.com/MahmoudAshraf97/ctc-forced-aligner.git
56
- # [write the origin_text into a file, e.g. tests/test_edit.txt]
57
- # ctc-forced-aligner --audio_path "src/f5_tts/infer/examples/basic/basic_ref_en.wav" --text_path "tests/test_edit.txt" --language "zho" --romanize --split_size "char"
58
- # [result will be saved at same path of audio file]
59
- # [--language "zho" for Chinese, "eng" for English]
60
- # [if local ckpt, set --alignment_model "../checkpoints/mms-300m-1130-forced-aligner"]
61
-
62
- audio_to_edit = "src/f5_tts/infer/examples/basic/basic_ref_en.wav"
63
- origin_text = "Some call me nature, others call me mother nature."
64
- target_text = "Some call me optimist, others call me realist."
65
- parts_to_edit = [
66
- [1.42, 2.44],
67
- [4.04, 4.9],
68
- ] # stard_ends of "nature" & "mother nature", in seconds
69
- fix_duration = [
70
- 1.2,
71
- 1,
72
- ] # fix duration for "optimist" & "realist", in seconds
73
-
74
- # audio_to_edit = "src/f5_tts/infer/examples/basic/basic_ref_zh.wav"
75
- # origin_text = "对,这就是我,万人敬仰的太乙真人。"
76
- # target_text = "对,那就是你,万人敬仰的太白金星。"
77
- # parts_to_edit = [[0.84, 1.4], [1.92, 2.4], [4.26, 6.26], ]
78
- # fix_duration = None # use origin text duration
79
-
80
-
81
- # -------------------------------------------------#
82
-
83
- use_ema = True
84
-
85
- if not os.path.exists(output_dir):
86
- os.makedirs(output_dir)
87
-
88
- # Vocoder model
89
- local = False
90
- if mel_spec_type == "vocos":
91
- vocoder_local_path = "../checkpoints/charactr/vocos-mel-24khz"
92
- elif mel_spec_type == "bigvgan":
93
- vocoder_local_path = "../checkpoints/bigvgan_v2_24khz_100band_256x"
94
- vocoder = load_vocoder(vocoder_name=mel_spec_type, is_local=local, local_path=vocoder_local_path)
95
-
96
- # Tokenizer
97
- vocab_char_map, vocab_size = get_tokenizer(dataset_name, tokenizer)
98
-
99
- # Model
100
- model = CFM(
101
- transformer=model_cls(**model_cfg, text_num_embeds=vocab_size, mel_dim=n_mel_channels),
102
- mel_spec_kwargs=dict(
103
- n_fft=n_fft,
104
- hop_length=hop_length,
105
- win_length=win_length,
106
- n_mel_channels=n_mel_channels,
107
- target_sample_rate=target_sample_rate,
108
- mel_spec_type=mel_spec_type,
109
- ),
110
- odeint_kwargs=dict(
111
- method=ode_method,
112
- ),
113
- vocab_char_map=vocab_char_map,
114
- ).to(device)
115
-
116
- dtype = torch.float32 if mel_spec_type == "bigvgan" else None
117
- model = load_checkpoint(model, ckpt_path, device, dtype=dtype, use_ema=use_ema)
118
-
119
- # Audio
120
- audio, sr = torchaudio.load(audio_to_edit)
121
- if audio.shape[0] > 1:
122
- audio = torch.mean(audio, dim=0, keepdim=True)
123
- rms = torch.sqrt(torch.mean(torch.square(audio)))
124
- if rms < target_rms:
125
- audio = audio * target_rms / rms
126
- if sr != target_sample_rate:
127
- resampler = torchaudio.transforms.Resample(sr, target_sample_rate)
128
- audio = resampler(audio)
129
- offset = 0
130
- audio_ = torch.zeros(1, 0)
131
- edit_mask = torch.zeros(1, 0, dtype=torch.bool)
132
- for part in parts_to_edit:
133
- start, end = part
134
- part_dur = end - start if fix_duration is None else fix_duration.pop(0)
135
- part_dur = part_dur * target_sample_rate
136
- start = start * target_sample_rate
137
- audio_ = torch.cat((audio_, audio[:, round(offset) : round(start)], torch.zeros(1, round(part_dur))), dim=-1)
138
- edit_mask = torch.cat(
139
- (
140
- edit_mask,
141
- torch.ones(1, round((start - offset) / hop_length), dtype=torch.bool),
142
- torch.zeros(1, round(part_dur / hop_length), dtype=torch.bool),
143
- ),
144
- dim=-1,
145
- )
146
- offset = end * target_sample_rate
147
- # audio = torch.cat((audio_, audio[:, round(offset):]), dim = -1)
148
- edit_mask = F.pad(edit_mask, (0, audio.shape[-1] // hop_length - edit_mask.shape[-1] + 1), value=True)
149
- audio = audio.to(device)
150
- edit_mask = edit_mask.to(device)
151
-
152
- # Text
153
- text_list = [target_text]
154
- if tokenizer == "pinyin":
155
- final_text_list = convert_char_to_pinyin(text_list)
156
- else:
157
- final_text_list = [text_list]
158
- print(f"text : {text_list}")
159
- print(f"pinyin: {final_text_list}")
160
-
161
- # Duration
162
- ref_audio_len = 0
163
- duration = audio.shape[-1] // hop_length
164
-
165
- # Inference
166
- with torch.inference_mode():
167
- generated, trajectory = model.sample(
168
- cond=audio,
169
- text=final_text_list,
170
- duration=duration,
171
- steps=nfe_step,
172
- cfg_strength=cfg_strength,
173
- sway_sampling_coef=sway_sampling_coef,
174
- seed=seed,
175
- edit_mask=edit_mask,
176
- )
177
- print(f"Generated mel: {generated.shape}")
178
-
179
- # Final result
180
- generated = generated.to(torch.float32)
181
- generated = generated[:, ref_audio_len:, :]
182
- gen_mel_spec = generated.permute(0, 2, 1)
183
- if mel_spec_type == "vocos":
184
- generated_wave = vocoder.decode(gen_mel_spec).cpu()
185
- elif mel_spec_type == "bigvgan":
186
- generated_wave = vocoder(gen_mel_spec).squeeze(0).cpu()
187
-
188
- if rms < target_rms:
189
- generated_wave = generated_wave * rms / target_rms
190
-
191
- save_spectrogram(gen_mel_spec[0].cpu().numpy(), f"{output_dir}/speech_edit_out.png")
192
- torchaudio.save(f"{output_dir}/speech_edit_out.wav", generated_wave, target_sample_rate)
193
- print(f"Generated wav: {generated_wave.shape}")
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f5_tts/infer/utils_infer.py DELETED
@@ -1,550 +0,0 @@
1
- # A unified script for inference process
2
- # Make adjustments inside functions, and consider both gradio and cli scripts if need to change func output format
3
- import os
4
- import sys
5
-
6
- os.environ["PYTOCH_ENABLE_MPS_FALLBACK"] = "1" # for MPS device compatibility
7
- sys.path.append(f"../../{os.path.dirname(os.path.abspath(__file__))}/third_party/BigVGAN/")
8
-
9
- import hashlib
10
- import re
11
- import tempfile
12
- from importlib.resources import files
13
-
14
- import matplotlib
15
-
16
- matplotlib.use("Agg")
17
-
18
- import matplotlib.pylab as plt
19
- import numpy as np
20
- import torch
21
- import torchaudio
22
- import tqdm
23
- from huggingface_hub import snapshot_download, hf_hub_download
24
- from pydub import AudioSegment, silence
25
- from transformers import pipeline
26
- from vocos import Vocos
27
-
28
- from f5_tts.model import CFM
29
- from f5_tts.model.utils import (
30
- get_tokenizer,
31
- convert_char_to_pinyin,
32
- )
33
-
34
- _ref_audio_cache = {}
35
-
36
- device = "cuda" if torch.cuda.is_available() else "mps" if torch.backends.mps.is_available() else "cpu"
37
-
38
- # -----------------------------------------
39
-
40
- target_sample_rate = 24000
41
- n_mel_channels = 100
42
- hop_length = 256
43
- win_length = 1024
44
- n_fft = 1024
45
- mel_spec_type = "vocos"
46
- target_rms = 0.1
47
- cross_fade_duration = 0.15
48
- ode_method = "euler"
49
- nfe_step = 32 # 16, 32
50
- cfg_strength = 2.0
51
- sway_sampling_coef = -1.0
52
- speed = 1.0
53
- fix_duration = None
54
-
55
- # -----------------------------------------
56
-
57
-
58
- # chunk text into smaller pieces
59
-
60
-
61
- def chunk_text(text, max_chars=135):
62
- """
63
- Splits the input text into chunks, each with a maximum number of characters.
64
-
65
- Args:
66
- text (str): The text to be split.
67
- max_chars (int): The maximum number of characters per chunk.
68
-
69
- Returns:
70
- List[str]: A list of text chunks.
71
- """
72
- chunks = []
73
- current_chunk = ""
74
- # Split the text into sentences based on punctuation followed by whitespace
75
- sentences = re.split(r"(?<=[;:,.!?])\s+|(?<=[;:,。!?])", text)
76
-
77
- for sentence in sentences:
78
- if len(current_chunk.encode("utf-8")) + len(sentence.encode("utf-8")) <= max_chars:
79
- current_chunk += sentence + " " if sentence and len(sentence[-1].encode("utf-8")) == 1 else sentence
80
- else:
81
- if current_chunk:
82
- chunks.append(current_chunk.strip())
83
- current_chunk = sentence + " " if sentence and len(sentence[-1].encode("utf-8")) == 1 else sentence
84
-
85
- if current_chunk:
86
- chunks.append(current_chunk.strip())
87
-
88
- return chunks
89
-
90
-
91
- # load vocoder
92
- def load_vocoder(vocoder_name="vocos", is_local=False, local_path="", device=device, hf_cache_dir=None):
93
- if vocoder_name == "vocos":
94
- # vocoder = Vocos.from_pretrained("charactr/vocos-mel-24khz").to(device)
95
- if is_local:
96
- print(f"Load vocos from local path {local_path}")
97
- config_path = f"{local_path}/config.yaml"
98
- model_path = f"{local_path}/pytorch_model.bin"
99
- else:
100
- print("Download Vocos from huggingface charactr/vocos-mel-24khz")
101
- repo_id = "charactr/vocos-mel-24khz"
102
- config_path = hf_hub_download(repo_id=repo_id, cache_dir=hf_cache_dir, filename="config.yaml")
103
- model_path = hf_hub_download(repo_id=repo_id, cache_dir=hf_cache_dir, filename="pytorch_model.bin")
104
- vocoder = Vocos.from_hparams(config_path)
105
- state_dict = torch.load(model_path, map_location="cpu", weights_only=True)
106
- from vocos.feature_extractors import EncodecFeatures
107
-
108
- if isinstance(vocoder.feature_extractor, EncodecFeatures):
109
- encodec_parameters = {
110
- "feature_extractor.encodec." + key: value
111
- for key, value in vocoder.feature_extractor.encodec.state_dict().items()
112
- }
113
- state_dict.update(encodec_parameters)
114
- vocoder.load_state_dict(state_dict)
115
- vocoder = vocoder.eval().to(device)
116
- elif vocoder_name == "bigvgan":
117
- try:
118
- from third_party.BigVGAN import bigvgan
119
- except ImportError:
120
- print("You need to follow the README to init submodule and change the BigVGAN source code.")
121
- if is_local:
122
- """download from https://huggingface.co/nvidia/bigvgan_v2_24khz_100band_256x/tree/main"""
123
- vocoder = bigvgan.BigVGAN.from_pretrained(local_path, use_cuda_kernel=False)
124
- else:
125
- local_path = snapshot_download(repo_id="nvidia/bigvgan_v2_24khz_100band_256x", cache_dir=hf_cache_dir)
126
- vocoder = bigvgan.BigVGAN.from_pretrained(local_path, use_cuda_kernel=False)
127
-
128
- vocoder.remove_weight_norm()
129
- vocoder = vocoder.eval().to(device)
130
- return vocoder
131
-
132
-
133
- # load asr pipeline
134
-
135
- asr_pipe = None
136
-
137
-
138
- def initialize_asr_pipeline(device: str = device, dtype=None):
139
- if dtype is None:
140
- dtype = (
141
- torch.float16
142
- if "cuda" in device
143
- and torch.cuda.get_device_properties(device).major >= 6
144
- and not torch.cuda.get_device_name().endswith("[ZLUDA]")
145
- else torch.float32
146
- )
147
- global asr_pipe
148
- asr_pipe = pipeline(
149
- "automatic-speech-recognition",
150
- model="openai/whisper-large-v3-turbo",
151
- torch_dtype=dtype,
152
- device=device,
153
- )
154
-
155
-
156
- # transcribe
157
-
158
-
159
- def transcribe(ref_audio, language=None):
160
- global asr_pipe
161
- if asr_pipe is None:
162
- initialize_asr_pipeline(device=device)
163
- return asr_pipe(
164
- ref_audio,
165
- chunk_length_s=30,
166
- batch_size=128,
167
- generate_kwargs={"task": "transcribe", "language": language} if language else {"task": "transcribe"},
168
- return_timestamps=False,
169
- )["text"].strip()
170
-
171
-
172
- # load model checkpoint for inference
173
-
174
-
175
- def load_checkpoint(model, ckpt_path, device: str, dtype=None, use_ema=True):
176
- if dtype is None:
177
- dtype = torch.float32
178
- # dtype = (
179
- # torch.float16
180
- # if "cuda" in device
181
- # and torch.cuda.get_device_properties(device).major >= 6
182
- # and not torch.cuda.get_device_name().endswith("[ZLUDA]")
183
- # else torch.float32
184
- # )
185
- model = model.to(dtype)
186
-
187
- ckpt_type = ckpt_path.split(".")[-1]
188
- if ckpt_type == "safetensors":
189
- from safetensors.torch import load_file
190
-
191
- checkpoint = load_file(ckpt_path, device=device)
192
- else:
193
- checkpoint = torch.load(ckpt_path, map_location=device, weights_only=True)
194
-
195
- if use_ema:
196
- if ckpt_type == "safetensors":
197
- checkpoint = {"ema_model_state_dict": checkpoint}
198
- checkpoint["model_state_dict"] = {
199
- k.replace("ema_model.", ""): v
200
- for k, v in checkpoint["ema_model_state_dict"].items()
201
- if k not in ["initted", "step"]
202
- }
203
-
204
- # patch for backward compatibility, 305e3ea
205
- for key in ["mel_spec.mel_stft.mel_scale.fb", "mel_spec.mel_stft.spectrogram.window"]:
206
- if key in checkpoint["model_state_dict"]:
207
- del checkpoint["model_state_dict"][key]
208
-
209
- model.load_state_dict(checkpoint["model_state_dict"])
210
- else:
211
- if ckpt_type == "safetensors":
212
- checkpoint = {"model_state_dict": checkpoint}
213
- model.load_state_dict(checkpoint["model_state_dict"])
214
-
215
- del checkpoint
216
- torch.cuda.empty_cache()
217
-
218
- return model.to(device)
219
-
220
-
221
- # load model for inference
222
-
223
-
224
- def load_model(
225
- model_cls,
226
- model_cfg,
227
- mel_spec_type=mel_spec_type,
228
- vocab_file="",
229
- ode_method=ode_method,
230
- use_ema=True,
231
- device=device,
232
- ):
233
- if vocab_file == "":
234
- vocab_file = str(files("f5_tts").joinpath("infer/examples/vocab.txt"))
235
- tokenizer = "custom"
236
-
237
- print("\nvocab : ", vocab_file)
238
- print("token : ", tokenizer)
239
-
240
- vocab_char_map, vocab_size = get_tokenizer(vocab_file, tokenizer)
241
- model = CFM(
242
- transformer=model_cls(**model_cfg, text_num_embeds=vocab_size, mel_dim=n_mel_channels),
243
- mel_spec_kwargs=dict(
244
- n_fft=n_fft,
245
- hop_length=hop_length,
246
- win_length=win_length,
247
- n_mel_channels=n_mel_channels,
248
- target_sample_rate=target_sample_rate,
249
- mel_spec_type=mel_spec_type,
250
- ),
251
- odeint_kwargs=dict(
252
- method=ode_method,
253
- ),
254
- vocab_char_map=vocab_char_map,
255
- ).to(device)
256
-
257
- dtype = torch.float32 if mel_spec_type == "bigvgan" else None
258
- # model = load_checkpoint(model, ckpt_path, device, dtype=dtype, use_ema=use_ema)
259
-
260
- return model
261
-
262
-
263
- def remove_silence_edges(audio, silence_threshold=-42):
264
- # Remove silence from the start
265
- non_silent_start_idx = silence.detect_leading_silence(audio, silence_threshold=silence_threshold)
266
- audio = audio[non_silent_start_idx:]
267
-
268
- # Remove silence from the end
269
- non_silent_end_duration = audio.duration_seconds
270
- for ms in reversed(audio):
271
- if ms.dBFS > silence_threshold:
272
- break
273
- non_silent_end_duration -= 0.001
274
- trimmed_audio = audio[: int(non_silent_end_duration * 1000)]
275
-
276
- return trimmed_audio
277
-
278
-
279
- # preprocess reference audio and text
280
-
281
-
282
- def preprocess_ref_audio_text(ref_audio_orig, ref_text, clip_short=True, show_info=print, device=device):
283
- # show_info("Converting audio...")
284
- with tempfile.NamedTemporaryFile(delete=False, suffix=".wav") as f:
285
- aseg = AudioSegment.from_file(ref_audio_orig)
286
-
287
- if clip_short:
288
- # 1. try to find long silence for clipping
289
- non_silent_segs = silence.split_on_silence(
290
- aseg, min_silence_len=1000, silence_thresh=-50, keep_silence=1000, seek_step=10
291
- )
292
- non_silent_wave = AudioSegment.silent(duration=0)
293
- for non_silent_seg in non_silent_segs:
294
- if len(non_silent_wave) > 6000 and len(non_silent_wave + non_silent_seg) > 15000:
295
- show_info("Audio is over 15s, clipping short. (1)")
296
- break
297
- non_silent_wave += non_silent_seg
298
-
299
- # 2. try to find short silence for clipping if 1. failed
300
- if len(non_silent_wave) > 15000:
301
- non_silent_segs = silence.split_on_silence(
302
- aseg, min_silence_len=100, silence_thresh=-40, keep_silence=1000, seek_step=10
303
- )
304
- non_silent_wave = AudioSegment.silent(duration=0)
305
- for non_silent_seg in non_silent_segs:
306
- if len(non_silent_wave) > 6000 and len(non_silent_wave + non_silent_seg) > 15000:
307
- show_info("Audio is over 15s, clipping short. (2)")
308
- break
309
- non_silent_wave += non_silent_seg
310
-
311
- aseg = non_silent_wave
312
-
313
- # 3. if no proper silence found for clipping
314
- if len(aseg) > 15000:
315
- aseg = aseg[:15000]
316
- show_info("Audio is over 15s, clipping short. (3)")
317
-
318
- aseg = remove_silence_edges(aseg) + AudioSegment.silent(duration=50)
319
- aseg.export(f.name, format="wav")
320
- ref_audio = f.name
321
-
322
- # Compute a hash of the reference audio file
323
- with open(ref_audio, "rb") as audio_file:
324
- audio_data = audio_file.read()
325
- audio_hash = hashlib.md5(audio_data).hexdigest()
326
-
327
- if not ref_text.strip():
328
- global _ref_audio_cache
329
- if audio_hash in _ref_audio_cache:
330
- # Use cached asr transcription
331
- show_info("Using cached reference text...")
332
- ref_text = _ref_audio_cache[audio_hash]
333
- else:
334
- show_info("No reference text provided, transcribing reference audio...")
335
- ref_text = transcribe(ref_audio)
336
- # Cache the transcribed text (not caching custom ref_text, enabling users to do manual tweak)
337
- _ref_audio_cache[audio_hash] = ref_text
338
- else:
339
- # show_info("Using custom reference text...")
340
- pass
341
-
342
- # Ensure ref_text ends with a proper sentence-ending punctuation
343
- if not ref_text.endswith(". ") and not ref_text.endswith("。"):
344
- if ref_text.endswith("."):
345
- ref_text += " "
346
- else:
347
- ref_text += ". "
348
-
349
- # print("\nref_text ", ref_text)
350
-
351
- return ref_audio, ref_text
352
-
353
-
354
- # infer process: chunk text -> infer batches [i.e. infer_batch_process()]
355
-
356
-
357
- def infer_process(
358
- ref_audio,
359
- ref_text,
360
- gen_text,
361
- model_obj,
362
- vocoder,
363
- mel_spec_type=mel_spec_type,
364
- show_info=print,
365
- progress=tqdm,
366
- target_rms=target_rms,
367
- cross_fade_duration=cross_fade_duration,
368
- nfe_step=nfe_step,
369
- cfg_strength=cfg_strength,
370
- sway_sampling_coef=sway_sampling_coef,
371
- speed=speed,
372
- fix_duration=fix_duration,
373
- device=device,
374
- ):
375
- # Split the input text into batches
376
- audio, sr = torchaudio.load(ref_audio)
377
- max_chars = int(len(ref_text.encode("utf-8")) / (audio.shape[-1] / sr) * (25 - audio.shape[-1] / sr))
378
- gen_text_batches = chunk_text(gen_text, max_chars=max_chars)
379
- # for i, gen_text in enumerate(gen_text_batches):
380
- # print(f"gen_text {i}", gen_text)
381
- # print("\n")
382
-
383
- # show_info(f"Generating audio in {len(gen_text_batches)} batches...")
384
- return infer_batch_process(
385
- (audio, sr),
386
- ref_text,
387
- gen_text_batches,
388
- model_obj,
389
- vocoder,
390
- mel_spec_type=mel_spec_type,
391
- progress=progress,
392
- target_rms=target_rms,
393
- cross_fade_duration=cross_fade_duration,
394
- nfe_step=nfe_step,
395
- cfg_strength=cfg_strength,
396
- sway_sampling_coef=sway_sampling_coef,
397
- speed=speed,
398
- fix_duration=fix_duration,
399
- device=device,
400
- )
401
-
402
-
403
- # infer batches
404
-
405
-
406
- def infer_batch_process(
407
- ref_audio,
408
- ref_text,
409
- gen_text_batches,
410
- model_obj,
411
- vocoder,
412
- mel_spec_type="vocos",
413
- progress=tqdm,
414
- target_rms=0.1,
415
- cross_fade_duration=0.15,
416
- nfe_step=32,
417
- cfg_strength=2.0,
418
- sway_sampling_coef=-1,
419
- speed=1,
420
- fix_duration=None,
421
- device=None,
422
- ):
423
- audio, sr = ref_audio
424
- if audio.shape[0] > 1:
425
- audio = torch.mean(audio, dim=0, keepdim=True)
426
-
427
- rms = torch.sqrt(torch.mean(torch.square(audio)))
428
- if rms < target_rms:
429
- audio = audio * target_rms / rms
430
- if sr != target_sample_rate:
431
- resampler = torchaudio.transforms.Resample(sr, target_sample_rate)
432
- audio = resampler(audio)
433
- audio = audio.to(device)
434
-
435
- generated_waves = []
436
- spectrograms = []
437
-
438
- if len(ref_text[-1].encode("utf-8")) == 1:
439
- ref_text = ref_text + " "
440
- # for i, gen_text in enumerate(progress.tqdm(gen_text_batches)):
441
- for i, gen_text in enumerate(gen_text_batches):
442
- # Prepare the text
443
- text_list = [ref_text + gen_text]
444
- final_text_list = convert_char_to_pinyin(text_list)
445
-
446
- ref_audio_len = audio.shape[-1] // hop_length
447
- if fix_duration is not None:
448
- duration = int(fix_duration * target_sample_rate / hop_length)
449
- else:
450
- # Calculate duration
451
- ref_text_len = len(ref_text.encode("utf-8"))
452
- gen_text_len = len(gen_text.encode("utf-8"))
453
- duration = ref_audio_len + int(ref_audio_len / ref_text_len * gen_text_len / speed)
454
- # print("ref_text_len:", ref_text_len)
455
- # print("gen_text_len:", gen_text_len)
456
- # print("duration:", duration)
457
- # inference
458
- with torch.inference_mode():
459
- generated, _ = model_obj.sample(
460
- cond=audio,
461
- text=final_text_list,
462
- duration=duration,
463
- steps=nfe_step,
464
- cfg_strength=cfg_strength,
465
- sway_sampling_coef=sway_sampling_coef,
466
- )
467
-
468
- generated = generated.to(torch.float32)
469
- generated = generated[:, ref_audio_len:, :]
470
- generated_mel_spec = generated.permute(0, 2, 1)
471
- if mel_spec_type == "vocos":
472
- generated_wave = vocoder.decode(generated_mel_spec)
473
- elif mel_spec_type == "bigvgan":
474
- generated_wave = vocoder(generated_mel_spec)
475
- if rms < target_rms:
476
- generated_wave = generated_wave * rms / target_rms
477
-
478
- # wav -> numpy
479
- generated_wave = generated_wave.squeeze().cpu().numpy()
480
-
481
- generated_waves.append(generated_wave)
482
- spectrograms.append(generated_mel_spec[0].cpu().numpy())
483
-
484
- # Combine all generated waves with cross-fading
485
- if cross_fade_duration <= 0:
486
- # Simply concatenate
487
- final_wave = np.concatenate(generated_waves)
488
- else:
489
- final_wave = generated_waves[0]
490
- for i in range(1, len(generated_waves)):
491
- prev_wave = final_wave
492
- next_wave = generated_waves[i]
493
-
494
- # Calculate cross-fade samples, ensuring it does not exceed wave lengths
495
- cross_fade_samples = int(cross_fade_duration * target_sample_rate)
496
- cross_fade_samples = min(cross_fade_samples, len(prev_wave), len(next_wave))
497
-
498
- if cross_fade_samples <= 0:
499
- # No overlap possible, concatenate
500
- final_wave = np.concatenate([prev_wave, next_wave])
501
- continue
502
-
503
- # Overlapping parts
504
- prev_overlap = prev_wave[-cross_fade_samples:]
505
- next_overlap = next_wave[:cross_fade_samples]
506
-
507
- # Fade out and fade in
508
- fade_out = np.linspace(1, 0, cross_fade_samples)
509
- fade_in = np.linspace(0, 1, cross_fade_samples)
510
-
511
- # Cross-faded overlap
512
- cross_faded_overlap = prev_overlap * fade_out + next_overlap * fade_in
513
-
514
- # Combine
515
- new_wave = np.concatenate(
516
- [prev_wave[:-cross_fade_samples], cross_faded_overlap, next_wave[cross_fade_samples:]]
517
- )
518
-
519
- final_wave = new_wave
520
-
521
- # Create a combined spectrogram
522
- combined_spectrogram = np.concatenate(spectrograms, axis=1)
523
-
524
- return final_wave, target_sample_rate, combined_spectrogram
525
-
526
-
527
- # remove silence from generated wav
528
-
529
-
530
- def remove_silence_for_generated_wav(filename):
531
- aseg = AudioSegment.from_file(filename)
532
- non_silent_segs = silence.split_on_silence(
533
- aseg, min_silence_len=1000, silence_thresh=-50, keep_silence=500, seek_step=10
534
- )
535
- non_silent_wave = AudioSegment.silent(duration=0)
536
- for non_silent_seg in non_silent_segs:
537
- non_silent_wave += non_silent_seg
538
- aseg = non_silent_wave
539
- aseg.export(filename, format="wav")
540
-
541
-
542
- # save spectrogram
543
-
544
-
545
- def save_spectrogram(spectrogram, path):
546
- plt.figure(figsize=(12, 4))
547
- plt.imshow(spectrogram, origin="lower", aspect="auto")
548
- plt.colorbar()
549
- plt.savefig(path)
550
- plt.close()
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f5_tts/model/__init__.py DELETED
@@ -1,10 +0,0 @@
1
- from f5_tts.model.cfm import CFM
2
-
3
- from f5_tts.model.backbones.unett import UNetT
4
- from f5_tts.model.backbones.dit import DiT
5
- from f5_tts.model.backbones.mmdit import MMDiT
6
-
7
- from f5_tts.model.trainer import Trainer
8
-
9
-
10
- __all__ = ["CFM", "UNetT", "DiT", "MMDiT", "Trainer"]
 
 
 
 
 
 
 
 
 
 
 
f5_tts/model/backbones/README.md DELETED
@@ -1,20 +0,0 @@
1
- ## Backbones quick introduction
2
-
3
-
4
- ### unett.py
5
- - flat unet transformer
6
- - structure same as in e2-tts & voicebox paper except using rotary pos emb
7
- - update: allow possible abs pos emb & convnextv2 blocks for embedded text before concat
8
-
9
- ### dit.py
10
- - adaln-zero dit
11
- - embedded timestep as condition
12
- - concatted noised_input + masked_cond + embedded_text, linear proj in
13
- - possible abs pos emb & convnextv2 blocks for embedded text before concat
14
- - possible long skip connection (first layer to last layer)
15
-
16
- ### mmdit.py
17
- - sd3 structure
18
- - timestep as condition
19
- - left stream: text embedded and applied a abs pos emb
20
- - right stream: masked_cond & noised_input concatted and with same conv pos emb as unett
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f5_tts/model/backbones/__init__.py DELETED
File without changes
f5_tts/model/backbones/dit.py DELETED
@@ -1,163 +0,0 @@
1
- """
2
- ein notation:
3
- b - batch
4
- n - sequence
5
- nt - text sequence
6
- nw - raw wave length
7
- d - dimension
8
- """
9
-
10
- from __future__ import annotations
11
-
12
- import torch
13
- from torch import nn
14
- import torch.nn.functional as F
15
-
16
- from x_transformers.x_transformers import RotaryEmbedding
17
-
18
- from f5_tts.model.modules import (
19
- TimestepEmbedding,
20
- ConvNeXtV2Block,
21
- ConvPositionEmbedding,
22
- DiTBlock,
23
- AdaLayerNormZero_Final,
24
- precompute_freqs_cis,
25
- get_pos_embed_indices,
26
- )
27
-
28
-
29
- # Text embedding
30
-
31
-
32
- class TextEmbedding(nn.Module):
33
- def __init__(self, text_num_embeds, text_dim, conv_layers=0, conv_mult=2):
34
- super().__init__()
35
- self.text_embed = nn.Embedding(text_num_embeds + 1, text_dim) # use 0 as filler token
36
-
37
- if conv_layers > 0:
38
- self.extra_modeling = True
39
- self.precompute_max_pos = 4096 # ~44s of 24khz audio
40
- self.register_buffer("freqs_cis", precompute_freqs_cis(text_dim, self.precompute_max_pos), persistent=False)
41
- self.text_blocks = nn.Sequential(
42
- *[ConvNeXtV2Block(text_dim, text_dim * conv_mult) for _ in range(conv_layers)]
43
- )
44
- else:
45
- self.extra_modeling = False
46
-
47
- def forward(self, text: int["b nt"], seq_len, drop_text=False): # noqa: F722
48
- text = text + 1 # use 0 as filler token. preprocess of batch pad -1, see list_str_to_idx()
49
- text = text[:, :seq_len] # curtail if character tokens are more than the mel spec tokens
50
- batch, text_len = text.shape[0], text.shape[1]
51
- text = F.pad(text, (0, seq_len - text_len), value=0)
52
-
53
- if drop_text: # cfg for text
54
- text = torch.zeros_like(text)
55
-
56
- text = self.text_embed(text) # b n -> b n d
57
-
58
- # possible extra modeling
59
- if self.extra_modeling:
60
- # sinus pos emb
61
- batch_start = torch.zeros((batch,), dtype=torch.long)
62
- pos_idx = get_pos_embed_indices(batch_start, seq_len, max_pos=self.precompute_max_pos)
63
- text_pos_embed = self.freqs_cis[pos_idx]
64
- text = text + text_pos_embed
65
-
66
- # convnextv2 blocks
67
- text = self.text_blocks(text)
68
-
69
- return text
70
-
71
-
72
- # noised input audio and context mixing embedding
73
-
74
-
75
- class InputEmbedding(nn.Module):
76
- def __init__(self, mel_dim, text_dim, out_dim):
77
- super().__init__()
78
- self.proj = nn.Linear(mel_dim * 2 + text_dim, out_dim)
79
- self.conv_pos_embed = ConvPositionEmbedding(dim=out_dim)
80
-
81
- def forward(self, x: float["b n d"], cond: float["b n d"], text_embed: float["b n d"], drop_audio_cond=False): # noqa: F722
82
- if drop_audio_cond: # cfg for cond audio
83
- cond = torch.zeros_like(cond)
84
-
85
- x = self.proj(torch.cat((x, cond, text_embed), dim=-1))
86
- x = self.conv_pos_embed(x) + x
87
- return x
88
-
89
-
90
- # Transformer backbone using DiT blocks
91
-
92
-
93
- class DiT(nn.Module):
94
- def __init__(
95
- self,
96
- *,
97
- dim,
98
- depth=8,
99
- heads=8,
100
- dim_head=64,
101
- dropout=0.1,
102
- ff_mult=4,
103
- mel_dim=100,
104
- text_num_embeds=256,
105
- text_dim=None,
106
- conv_layers=0,
107
- long_skip_connection=False,
108
- ):
109
- super().__init__()
110
-
111
- self.time_embed = TimestepEmbedding(dim)
112
- if text_dim is None:
113
- text_dim = mel_dim
114
- self.text_embed = TextEmbedding(text_num_embeds, text_dim, conv_layers=conv_layers)
115
- self.input_embed = InputEmbedding(mel_dim, text_dim, dim)
116
-
117
- self.rotary_embed = RotaryEmbedding(dim_head)
118
-
119
- self.dim = dim
120
- self.depth = depth
121
-
122
- self.transformer_blocks = nn.ModuleList(
123
- [DiTBlock(dim=dim, heads=heads, dim_head=dim_head, ff_mult=ff_mult, dropout=dropout) for _ in range(depth)]
124
- )
125
- self.long_skip_connection = nn.Linear(dim * 2, dim, bias=False) if long_skip_connection else None
126
-
127
- self.norm_out = AdaLayerNormZero_Final(dim) # final modulation
128
- self.proj_out = nn.Linear(dim, mel_dim)
129
-
130
- def forward(
131
- self,
132
- x: float["b n d"], # nosied input audio # noqa: F722
133
- cond: float["b n d"], # masked cond audio # noqa: F722
134
- text: int["b nt"], # text # noqa: F722
135
- time: float["b"] | float[""], # time step # noqa: F821 F722
136
- drop_audio_cond, # cfg for cond audio
137
- drop_text, # cfg for text
138
- mask: bool["b n"] | None = None, # noqa: F722
139
- ):
140
- batch, seq_len = x.shape[0], x.shape[1]
141
- if time.ndim == 0:
142
- time = time.repeat(batch)
143
-
144
- # t: conditioning time, c: context (text + masked cond audio), x: noised input audio
145
- t = self.time_embed(time)
146
- text_embed = self.text_embed(text, seq_len, drop_text=drop_text)
147
- x = self.input_embed(x, cond, text_embed, drop_audio_cond=drop_audio_cond)
148
-
149
- rope = self.rotary_embed.forward_from_seq_len(seq_len)
150
-
151
- if self.long_skip_connection is not None:
152
- residual = x
153
-
154
- for block in self.transformer_blocks:
155
- x = block(x, t, mask=mask, rope=rope)
156
-
157
- if self.long_skip_connection is not None:
158
- x = self.long_skip_connection(torch.cat((x, residual), dim=-1))
159
-
160
- x = self.norm_out(x, t)
161
- output = self.proj_out(x)
162
-
163
- return output
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f5_tts/model/backbones/mmdit.py DELETED
@@ -1,146 +0,0 @@
1
- """
2
- ein notation:
3
- b - batch
4
- n - sequence
5
- nt - text sequence
6
- nw - raw wave length
7
- d - dimension
8
- """
9
-
10
- from __future__ import annotations
11
-
12
- import torch
13
- from torch import nn
14
-
15
- from x_transformers.x_transformers import RotaryEmbedding
16
-
17
- from f5_tts.model.modules import (
18
- TimestepEmbedding,
19
- ConvPositionEmbedding,
20
- MMDiTBlock,
21
- AdaLayerNormZero_Final,
22
- precompute_freqs_cis,
23
- get_pos_embed_indices,
24
- )
25
-
26
-
27
- # text embedding
28
-
29
-
30
- class TextEmbedding(nn.Module):
31
- def __init__(self, out_dim, text_num_embeds):
32
- super().__init__()
33
- self.text_embed = nn.Embedding(text_num_embeds + 1, out_dim) # will use 0 as filler token
34
-
35
- self.precompute_max_pos = 1024
36
- self.register_buffer("freqs_cis", precompute_freqs_cis(out_dim, self.precompute_max_pos), persistent=False)
37
-
38
- def forward(self, text: int["b nt"], drop_text=False) -> int["b nt d"]: # noqa: F722
39
- text = text + 1
40
- if drop_text:
41
- text = torch.zeros_like(text)
42
- text = self.text_embed(text)
43
-
44
- # sinus pos emb
45
- batch_start = torch.zeros((text.shape[0],), dtype=torch.long)
46
- batch_text_len = text.shape[1]
47
- pos_idx = get_pos_embed_indices(batch_start, batch_text_len, max_pos=self.precompute_max_pos)
48
- text_pos_embed = self.freqs_cis[pos_idx]
49
-
50
- text = text + text_pos_embed
51
-
52
- return text
53
-
54
-
55
- # noised input & masked cond audio embedding
56
-
57
-
58
- class AudioEmbedding(nn.Module):
59
- def __init__(self, in_dim, out_dim):
60
- super().__init__()
61
- self.linear = nn.Linear(2 * in_dim, out_dim)
62
- self.conv_pos_embed = ConvPositionEmbedding(out_dim)
63
-
64
- def forward(self, x: float["b n d"], cond: float["b n d"], drop_audio_cond=False): # noqa: F722
65
- if drop_audio_cond:
66
- cond = torch.zeros_like(cond)
67
- x = torch.cat((x, cond), dim=-1)
68
- x = self.linear(x)
69
- x = self.conv_pos_embed(x) + x
70
- return x
71
-
72
-
73
- # Transformer backbone using MM-DiT blocks
74
-
75
-
76
- class MMDiT(nn.Module):
77
- def __init__(
78
- self,
79
- *,
80
- dim,
81
- depth=8,
82
- heads=8,
83
- dim_head=64,
84
- dropout=0.1,
85
- ff_mult=4,
86
- text_num_embeds=256,
87
- mel_dim=100,
88
- ):
89
- super().__init__()
90
-
91
- self.time_embed = TimestepEmbedding(dim)
92
- self.text_embed = TextEmbedding(dim, text_num_embeds)
93
- self.audio_embed = AudioEmbedding(mel_dim, dim)
94
-
95
- self.rotary_embed = RotaryEmbedding(dim_head)
96
-
97
- self.dim = dim
98
- self.depth = depth
99
-
100
- self.transformer_blocks = nn.ModuleList(
101
- [
102
- MMDiTBlock(
103
- dim=dim,
104
- heads=heads,
105
- dim_head=dim_head,
106
- dropout=dropout,
107
- ff_mult=ff_mult,
108
- context_pre_only=i == depth - 1,
109
- )
110
- for i in range(depth)
111
- ]
112
- )
113
- self.norm_out = AdaLayerNormZero_Final(dim) # final modulation
114
- self.proj_out = nn.Linear(dim, mel_dim)
115
-
116
- def forward(
117
- self,
118
- x: float["b n d"], # nosied input audio # noqa: F722
119
- cond: float["b n d"], # masked cond audio # noqa: F722
120
- text: int["b nt"], # text # noqa: F722
121
- time: float["b"] | float[""], # time step # noqa: F821 F722
122
- drop_audio_cond, # cfg for cond audio
123
- drop_text, # cfg for text
124
- mask: bool["b n"] | None = None, # noqa: F722
125
- ):
126
- batch = x.shape[0]
127
- if time.ndim == 0:
128
- time = time.repeat(batch)
129
-
130
- # t: conditioning (time), c: context (text + masked cond audio), x: noised input audio
131
- t = self.time_embed(time)
132
- c = self.text_embed(text, drop_text=drop_text)
133
- x = self.audio_embed(x, cond, drop_audio_cond=drop_audio_cond)
134
-
135
- seq_len = x.shape[1]
136
- text_len = text.shape[1]
137
- rope_audio = self.rotary_embed.forward_from_seq_len(seq_len)
138
- rope_text = self.rotary_embed.forward_from_seq_len(text_len)
139
-
140
- for block in self.transformer_blocks:
141
- c, x = block(x, c, t, mask=mask, rope=rope_audio, c_rope=rope_text)
142
-
143
- x = self.norm_out(x, t)
144
- output = self.proj_out(x)
145
-
146
- return output
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f5_tts/model/backbones/unett.py DELETED
@@ -1,219 +0,0 @@
1
- """
2
- ein notation:
3
- b - batch
4
- n - sequence
5
- nt - text sequence
6
- nw - raw wave length
7
- d - dimension
8
- """
9
-
10
- from __future__ import annotations
11
- from typing import Literal
12
-
13
- import torch
14
- from torch import nn
15
- import torch.nn.functional as F
16
-
17
- from x_transformers import RMSNorm
18
- from x_transformers.x_transformers import RotaryEmbedding
19
-
20
- from f5_tts.model.modules import (
21
- TimestepEmbedding,
22
- ConvNeXtV2Block,
23
- ConvPositionEmbedding,
24
- Attention,
25
- AttnProcessor,
26
- FeedForward,
27
- precompute_freqs_cis,
28
- get_pos_embed_indices,
29
- )
30
-
31
-
32
- # Text embedding
33
-
34
-
35
- class TextEmbedding(nn.Module):
36
- def __init__(self, text_num_embeds, text_dim, conv_layers=0, conv_mult=2):
37
- super().__init__()
38
- self.text_embed = nn.Embedding(text_num_embeds + 1, text_dim) # use 0 as filler token
39
-
40
- if conv_layers > 0:
41
- self.extra_modeling = True
42
- self.precompute_max_pos = 4096 # ~44s of 24khz audio
43
- self.register_buffer("freqs_cis", precompute_freqs_cis(text_dim, self.precompute_max_pos), persistent=False)
44
- self.text_blocks = nn.Sequential(
45
- *[ConvNeXtV2Block(text_dim, text_dim * conv_mult) for _ in range(conv_layers)]
46
- )
47
- else:
48
- self.extra_modeling = False
49
-
50
- def forward(self, text: int["b nt"], seq_len, drop_text=False): # noqa: F722
51
- text = text + 1 # use 0 as filler token. preprocess of batch pad -1, see list_str_to_idx()
52
- text = text[:, :seq_len] # curtail if character tokens are more than the mel spec tokens
53
- batch, text_len = text.shape[0], text.shape[1]
54
- text = F.pad(text, (0, seq_len - text_len), value=0)
55
-
56
- if drop_text: # cfg for text
57
- text = torch.zeros_like(text)
58
-
59
- text = self.text_embed(text) # b n -> b n d
60
-
61
- # possible extra modeling
62
- if self.extra_modeling:
63
- # sinus pos emb
64
- batch_start = torch.zeros((batch,), dtype=torch.long)
65
- pos_idx = get_pos_embed_indices(batch_start, seq_len, max_pos=self.precompute_max_pos)
66
- text_pos_embed = self.freqs_cis[pos_idx]
67
- text = text + text_pos_embed
68
-
69
- # convnextv2 blocks
70
- text = self.text_blocks(text)
71
-
72
- return text
73
-
74
-
75
- # noised input audio and context mixing embedding
76
-
77
-
78
- class InputEmbedding(nn.Module):
79
- def __init__(self, mel_dim, text_dim, out_dim):
80
- super().__init__()
81
- self.proj = nn.Linear(mel_dim * 2 + text_dim, out_dim)
82
- self.conv_pos_embed = ConvPositionEmbedding(dim=out_dim)
83
-
84
- def forward(self, x: float["b n d"], cond: float["b n d"], text_embed: float["b n d"], drop_audio_cond=False): # noqa: F722
85
- if drop_audio_cond: # cfg for cond audio
86
- cond = torch.zeros_like(cond)
87
-
88
- x = self.proj(torch.cat((x, cond, text_embed), dim=-1))
89
- x = self.conv_pos_embed(x) + x
90
- return x
91
-
92
-
93
- # Flat UNet Transformer backbone
94
-
95
-
96
- class UNetT(nn.Module):
97
- def __init__(
98
- self,
99
- *,
100
- dim,
101
- depth=8,
102
- heads=8,
103
- dim_head=64,
104
- dropout=0.1,
105
- ff_mult=4,
106
- mel_dim=100,
107
- text_num_embeds=256,
108
- text_dim=None,
109
- conv_layers=0,
110
- skip_connect_type: Literal["add", "concat", "none"] = "concat",
111
- ):
112
- super().__init__()
113
- assert depth % 2 == 0, "UNet-Transformer's depth should be even."
114
-
115
- self.time_embed = TimestepEmbedding(dim)
116
- if text_dim is None:
117
- text_dim = mel_dim
118
- self.text_embed = TextEmbedding(text_num_embeds, text_dim, conv_layers=conv_layers)
119
- self.input_embed = InputEmbedding(mel_dim, text_dim, dim)
120
-
121
- self.rotary_embed = RotaryEmbedding(dim_head)
122
-
123
- # transformer layers & skip connections
124
-
125
- self.dim = dim
126
- self.skip_connect_type = skip_connect_type
127
- needs_skip_proj = skip_connect_type == "concat"
128
-
129
- self.depth = depth
130
- self.layers = nn.ModuleList([])
131
-
132
- for idx in range(depth):
133
- is_later_half = idx >= (depth // 2)
134
-
135
- attn_norm = RMSNorm(dim)
136
- attn = Attention(
137
- processor=AttnProcessor(),
138
- dim=dim,
139
- heads=heads,
140
- dim_head=dim_head,
141
- dropout=dropout,
142
- )
143
-
144
- ff_norm = RMSNorm(dim)
145
- ff = FeedForward(dim=dim, mult=ff_mult, dropout=dropout, approximate="tanh")
146
-
147
- skip_proj = nn.Linear(dim * 2, dim, bias=False) if needs_skip_proj and is_later_half else None
148
-
149
- self.layers.append(
150
- nn.ModuleList(
151
- [
152
- skip_proj,
153
- attn_norm,
154
- attn,
155
- ff_norm,
156
- ff,
157
- ]
158
- )
159
- )
160
-
161
- self.norm_out = RMSNorm(dim)
162
- self.proj_out = nn.Linear(dim, mel_dim)
163
-
164
- def forward(
165
- self,
166
- x: float["b n d"], # nosied input audio # noqa: F722
167
- cond: float["b n d"], # masked cond audio # noqa: F722
168
- text: int["b nt"], # text # noqa: F722
169
- time: float["b"] | float[""], # time step # noqa: F821 F722
170
- drop_audio_cond, # cfg for cond audio
171
- drop_text, # cfg for text
172
- mask: bool["b n"] | None = None, # noqa: F722
173
- ):
174
- batch, seq_len = x.shape[0], x.shape[1]
175
- if time.ndim == 0:
176
- time = time.repeat(batch)
177
-
178
- # t: conditioning time, c: context (text + masked cond audio), x: noised input audio
179
- t = self.time_embed(time)
180
- text_embed = self.text_embed(text, seq_len, drop_text=drop_text)
181
- x = self.input_embed(x, cond, text_embed, drop_audio_cond=drop_audio_cond)
182
-
183
- # postfix time t to input x, [b n d] -> [b n+1 d]
184
- x = torch.cat([t.unsqueeze(1), x], dim=1) # pack t to x
185
- if mask is not None:
186
- mask = F.pad(mask, (1, 0), value=1)
187
-
188
- rope = self.rotary_embed.forward_from_seq_len(seq_len + 1)
189
-
190
- # flat unet transformer
191
- skip_connect_type = self.skip_connect_type
192
- skips = []
193
- for idx, (maybe_skip_proj, attn_norm, attn, ff_norm, ff) in enumerate(self.layers):
194
- layer = idx + 1
195
-
196
- # skip connection logic
197
- is_first_half = layer <= (self.depth // 2)
198
- is_later_half = not is_first_half
199
-
200
- if is_first_half:
201
- skips.append(x)
202
-
203
- if is_later_half:
204
- skip = skips.pop()
205
- if skip_connect_type == "concat":
206
- x = torch.cat((x, skip), dim=-1)
207
- x = maybe_skip_proj(x)
208
- elif skip_connect_type == "add":
209
- x = x + skip
210
-
211
- # attention and feedforward blocks
212
- x = attn(attn_norm(x), rope=rope, mask=mask) + x
213
- x = ff(ff_norm(x)) + x
214
-
215
- assert len(skips) == 0
216
-
217
- x = self.norm_out(x)[:, 1:, :] # unpack t from x
218
-
219
- return self.proj_out(x)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f5_tts/model/cfm.py DELETED
@@ -1,285 +0,0 @@
1
- """
2
- ein notation:
3
- b - batch
4
- n - sequence
5
- nt - text sequence
6
- nw - raw wave length
7
- d - dimension
8
- """
9
-
10
- from __future__ import annotations
11
-
12
- from random import random
13
- from typing import Callable
14
-
15
- import torch
16
- import torch.nn.functional as F
17
- from torch import nn
18
- from torch.nn.utils.rnn import pad_sequence
19
- from torchdiffeq import odeint
20
-
21
- from f5_tts.model.modules import MelSpec
22
- from f5_tts.model.utils import (
23
- default,
24
- exists,
25
- lens_to_mask,
26
- list_str_to_idx,
27
- list_str_to_tensor,
28
- mask_from_frac_lengths,
29
- )
30
-
31
-
32
- class CFM(nn.Module):
33
- def __init__(
34
- self,
35
- transformer: nn.Module,
36
- sigma=0.0,
37
- odeint_kwargs: dict = dict(
38
- # atol = 1e-5,
39
- # rtol = 1e-5,
40
- method="euler" # 'midpoint'
41
- ),
42
- audio_drop_prob=0.3,
43
- cond_drop_prob=0.2,
44
- num_channels=None,
45
- mel_spec_module: nn.Module | None = None,
46
- mel_spec_kwargs: dict = dict(),
47
- frac_lengths_mask: tuple[float, float] = (0.7, 1.0),
48
- vocab_char_map: dict[str:int] | None = None,
49
- ):
50
- super().__init__()
51
-
52
- self.frac_lengths_mask = frac_lengths_mask
53
-
54
- # mel spec
55
- self.mel_spec = default(mel_spec_module, MelSpec(**mel_spec_kwargs))
56
- num_channels = default(num_channels, self.mel_spec.n_mel_channels)
57
- self.num_channels = num_channels
58
-
59
- # classifier-free guidance
60
- self.audio_drop_prob = audio_drop_prob
61
- self.cond_drop_prob = cond_drop_prob
62
-
63
- # transformer
64
- self.transformer = transformer
65
- dim = transformer.dim
66
- self.dim = dim
67
-
68
- # conditional flow related
69
- self.sigma = sigma
70
-
71
- # sampling related
72
- self.odeint_kwargs = odeint_kwargs
73
-
74
- # vocab map for tokenization
75
- self.vocab_char_map = vocab_char_map
76
-
77
- @property
78
- def device(self):
79
- return next(self.parameters()).device
80
-
81
- @torch.no_grad()
82
- def sample(
83
- self,
84
- cond: float["b n d"] | float["b nw"], # noqa: F722
85
- text: int["b nt"] | list[str], # noqa: F722
86
- duration: int | int["b"], # noqa: F821
87
- *,
88
- lens: int["b"] | None = None, # noqa: F821
89
- steps=32,
90
- cfg_strength=1.0,
91
- sway_sampling_coef=None,
92
- seed: int | None = None,
93
- max_duration=4096,
94
- vocoder: Callable[[float["b d n"]], float["b nw"]] | None = None, # noqa: F722
95
- no_ref_audio=False,
96
- duplicate_test=False,
97
- t_inter=0.1,
98
- edit_mask=None,
99
- ):
100
- self.eval()
101
- # raw wave
102
-
103
- if cond.ndim == 2:
104
- cond = self.mel_spec(cond)
105
- cond = cond.permute(0, 2, 1)
106
- assert cond.shape[-1] == self.num_channels
107
-
108
- cond = cond.to(next(self.parameters()).dtype)
109
-
110
- batch, cond_seq_len, device = *cond.shape[:2], cond.device
111
- if not exists(lens):
112
- lens = torch.full((batch,), cond_seq_len, device=device, dtype=torch.long)
113
-
114
- # text
115
-
116
- if isinstance(text, list):
117
- if exists(self.vocab_char_map):
118
- text = list_str_to_idx(text, self.vocab_char_map).to(device)
119
- else:
120
- text = list_str_to_tensor(text).to(device)
121
- assert text.shape[0] == batch
122
-
123
- if exists(text):
124
- text_lens = (text != -1).sum(dim=-1)
125
- lens = torch.maximum(text_lens, lens) # make sure lengths are at least those of the text characters
126
-
127
- # duration
128
-
129
- cond_mask = lens_to_mask(lens)
130
- if edit_mask is not None:
131
- cond_mask = cond_mask & edit_mask
132
-
133
- if isinstance(duration, int):
134
- duration = torch.full((batch,), duration, device=device, dtype=torch.long)
135
-
136
- duration = torch.maximum(lens + 1, duration) # just add one token so something is generated
137
- duration = duration.clamp(max=max_duration)
138
- max_duration = duration.amax()
139
-
140
- # duplicate test corner for inner time step oberservation
141
- if duplicate_test:
142
- test_cond = F.pad(cond, (0, 0, cond_seq_len, max_duration - 2 * cond_seq_len), value=0.0)
143
-
144
- cond = F.pad(cond, (0, 0, 0, max_duration - cond_seq_len), value=0.0)
145
- cond_mask = F.pad(cond_mask, (0, max_duration - cond_mask.shape[-1]), value=False)
146
- cond_mask = cond_mask.unsqueeze(-1)
147
- step_cond = torch.where(
148
- cond_mask, cond, torch.zeros_like(cond)
149
- ) # allow direct control (cut cond audio) with lens passed in
150
-
151
- if batch > 1:
152
- mask = lens_to_mask(duration)
153
- else: # save memory and speed up, as single inference need no mask currently
154
- mask = None
155
-
156
- # test for no ref audio
157
- if no_ref_audio:
158
- cond = torch.zeros_like(cond)
159
-
160
- # neural ode
161
-
162
- def fn(t, x):
163
- # at each step, conditioning is fixed
164
- # step_cond = torch.where(cond_mask, cond, torch.zeros_like(cond))
165
-
166
- # predict flow
167
- pred = self.transformer(
168
- x=x, cond=step_cond, text=text, time=t, mask=mask, drop_audio_cond=False, drop_text=False
169
- )
170
- if cfg_strength < 1e-5:
171
- return pred
172
-
173
- null_pred = self.transformer(
174
- x=x, cond=step_cond, text=text, time=t, mask=mask, drop_audio_cond=True, drop_text=True
175
- )
176
- return pred + (pred - null_pred) * cfg_strength
177
-
178
- # noise input
179
- # to make sure batch inference result is same with different batch size, and for sure single inference
180
- # still some difference maybe due to convolutional layers
181
- y0 = []
182
- for dur in duration:
183
- if exists(seed):
184
- torch.manual_seed(seed)
185
- y0.append(torch.randn(dur, self.num_channels, device=self.device, dtype=step_cond.dtype))
186
- y0 = pad_sequence(y0, padding_value=0, batch_first=True)
187
-
188
- t_start = 0
189
-
190
- # duplicate test corner for inner time step oberservation
191
- if duplicate_test:
192
- t_start = t_inter
193
- y0 = (1 - t_start) * y0 + t_start * test_cond
194
- steps = int(steps * (1 - t_start))
195
-
196
- t = torch.linspace(t_start, 1, steps + 1, device=self.device, dtype=step_cond.dtype)
197
- if sway_sampling_coef is not None:
198
- t = t + sway_sampling_coef * (torch.cos(torch.pi / 2 * t) - 1 + t)
199
-
200
- trajectory = odeint(fn, y0, t, **self.odeint_kwargs)
201
-
202
- sampled = trajectory[-1]
203
- out = sampled
204
- out = torch.where(cond_mask, cond, out)
205
-
206
- if exists(vocoder):
207
- out = out.permute(0, 2, 1)
208
- out = vocoder(out)
209
-
210
- return out, trajectory
211
-
212
- def forward(
213
- self,
214
- inp: float["b n d"] | float["b nw"], # mel or raw wave # noqa: F722
215
- text: int["b nt"] | list[str], # noqa: F722
216
- *,
217
- lens: int["b"] | None = None, # noqa: F821
218
- noise_scheduler: str | None = None,
219
- ):
220
- # handle raw wave
221
- if inp.ndim == 2:
222
- inp = self.mel_spec(inp)
223
- inp = inp.permute(0, 2, 1)
224
- assert inp.shape[-1] == self.num_channels
225
-
226
- batch, seq_len, dtype, device, _σ1 = *inp.shape[:2], inp.dtype, self.device, self.sigma
227
-
228
- # handle text as string
229
- if isinstance(text, list):
230
- if exists(self.vocab_char_map):
231
- text = list_str_to_idx(text, self.vocab_char_map).to(device)
232
- else:
233
- text = list_str_to_tensor(text).to(device)
234
- assert text.shape[0] == batch
235
-
236
- # lens and mask
237
- if not exists(lens):
238
- lens = torch.full((batch,), seq_len, device=device)
239
-
240
- mask = lens_to_mask(lens, length=seq_len) # useless here, as collate_fn will pad to max length in batch
241
-
242
- # get a random span to mask out for training conditionally
243
- frac_lengths = torch.zeros((batch,), device=self.device).float().uniform_(*self.frac_lengths_mask)
244
- rand_span_mask = mask_from_frac_lengths(lens, frac_lengths)
245
-
246
- if exists(mask):
247
- rand_span_mask &= mask
248
-
249
- # mel is x1
250
- x1 = inp
251
-
252
- # x0 is gaussian noise
253
- x0 = torch.randn_like(x1)
254
-
255
- # time step
256
- time = torch.rand((batch,), dtype=dtype, device=self.device)
257
- # TODO. noise_scheduler
258
-
259
- # sample xt (φ_t(x) in the paper)
260
- t = time.unsqueeze(-1).unsqueeze(-1)
261
- φ = (1 - t) * x0 + t * x1
262
- flow = x1 - x0
263
-
264
- # only predict what is within the random mask span for infilling
265
- cond = torch.where(rand_span_mask[..., None], torch.zeros_like(x1), x1)
266
-
267
- # transformer and cfg training with a drop rate
268
- drop_audio_cond = random() < self.audio_drop_prob # p_drop in voicebox paper
269
- if random() < self.cond_drop_prob: # p_uncond in voicebox paper
270
- drop_audio_cond = True
271
- drop_text = True
272
- else:
273
- drop_text = False
274
-
275
- # if want rigourously mask out padding, record in collate_fn in dataset.py, and pass in here
276
- # adding mask will use more memory, thus also need to adjust batchsampler with scaled down threshold for long sequences
277
- pred = self.transformer(
278
- x=φ, cond=cond, text=text, time=time, drop_audio_cond=drop_audio_cond, drop_text=drop_text
279
- )
280
-
281
- # flow matching loss
282
- loss = F.mse_loss(pred, flow, reduction="none")
283
- loss = loss[rand_span_mask]
284
-
285
- return loss.mean(), cond, pred
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f5_tts/model/dataset.py DELETED
@@ -1,331 +0,0 @@
1
- import json
2
- import random
3
- from importlib.resources import files
4
-
5
- import torch
6
- import torch.nn.functional as F
7
- import torchaudio
8
- from datasets import Dataset as Dataset_
9
- from datasets import load_from_disk
10
- from torch import nn
11
- from torch.utils.data import Dataset, Sampler
12
- from tqdm import tqdm
13
-
14
- from f5_tts.model.modules import MelSpec
15
- from f5_tts.model.utils import default
16
-
17
-
18
- class HFDataset(Dataset):
19
- def __init__(
20
- self,
21
- hf_dataset: Dataset,
22
- target_sample_rate=24_000,
23
- n_mel_channels=100,
24
- hop_length=256,
25
- n_fft=1024,
26
- win_length=1024,
27
- mel_spec_type="vocos",
28
- ):
29
- self.data = hf_dataset
30
- self.target_sample_rate = target_sample_rate
31
- self.hop_length = hop_length
32
-
33
- self.mel_spectrogram = MelSpec(
34
- n_fft=n_fft,
35
- hop_length=hop_length,
36
- win_length=win_length,
37
- n_mel_channels=n_mel_channels,
38
- target_sample_rate=target_sample_rate,
39
- mel_spec_type=mel_spec_type,
40
- )
41
-
42
- def get_frame_len(self, index):
43
- row = self.data[index]
44
- audio = row["audio"]["array"]
45
- sample_rate = row["audio"]["sampling_rate"]
46
- return audio.shape[-1] / sample_rate * self.target_sample_rate / self.hop_length
47
-
48
- def __len__(self):
49
- return len(self.data)
50
-
51
- def __getitem__(self, index):
52
- row = self.data[index]
53
- audio = row["audio"]["array"]
54
-
55
- # logger.info(f"Audio shape: {audio.shape}")
56
-
57
- sample_rate = row["audio"]["sampling_rate"]
58
- duration = audio.shape[-1] / sample_rate
59
-
60
- if duration > 30 or duration < 0.3:
61
- return self.__getitem__((index + 1) % len(self.data))
62
-
63
- audio_tensor = torch.from_numpy(audio).float()
64
-
65
- if sample_rate != self.target_sample_rate:
66
- resampler = torchaudio.transforms.Resample(sample_rate, self.target_sample_rate)
67
- audio_tensor = resampler(audio_tensor)
68
-
69
- audio_tensor = audio_tensor.unsqueeze(0) # 't -> 1 t')
70
-
71
- mel_spec = self.mel_spectrogram(audio_tensor)
72
-
73
- mel_spec = mel_spec.squeeze(0) # '1 d t -> d t'
74
-
75
- text = row["text"]
76
-
77
- return dict(
78
- mel_spec=mel_spec,
79
- text=text,
80
- )
81
-
82
-
83
- class CustomDataset(Dataset):
84
- def __init__(
85
- self,
86
- custom_dataset: Dataset,
87
- durations=None,
88
- target_sample_rate=24_000,
89
- hop_length=256,
90
- n_mel_channels=100,
91
- n_fft=1024,
92
- win_length=1024,
93
- mel_spec_type="vocos",
94
- preprocessed_mel=False,
95
- mel_spec_module: nn.Module | None = None,
96
- ):
97
- self.data = custom_dataset
98
- self.durations = durations
99
- self.target_sample_rate = target_sample_rate
100
- self.hop_length = hop_length
101
- self.n_fft = n_fft
102
- self.win_length = win_length
103
- self.mel_spec_type = mel_spec_type
104
- self.preprocessed_mel = preprocessed_mel
105
-
106
- if not preprocessed_mel:
107
- self.mel_spectrogram = default(
108
- mel_spec_module,
109
- MelSpec(
110
- n_fft=n_fft,
111
- hop_length=hop_length,
112
- win_length=win_length,
113
- n_mel_channels=n_mel_channels,
114
- target_sample_rate=target_sample_rate,
115
- mel_spec_type=mel_spec_type,
116
- ),
117
- )
118
-
119
- def get_frame_len(self, index):
120
- if (
121
- self.durations is not None
122
- ): # Please make sure the separately provided durations are correct, otherwise 99.99% OOM
123
- return self.durations[index] * self.target_sample_rate / self.hop_length
124
- return self.data[index]["duration"] * self.target_sample_rate / self.hop_length
125
-
126
- def __len__(self):
127
- return len(self.data)
128
-
129
- def __getitem__(self, index):
130
- while True:
131
- row = self.data[index]
132
- audio_path = row["audio_path"]
133
- # YOTTA Specific path fixes. Please don't ever do this, and fix the dataset arrow instead!
134
- audio_path = audio_path.replace('/home/tts/ttsteam/datasets', '/projects/data/ttsteam/datasets/')
135
-
136
- if 'limmits' in audio_path:
137
- lang_spk = audio_path.split('limmits/')[1].split('/')[0]
138
- lang, spk = lang_spk.split('_')
139
- audio_path = audio_path.replace(f'limmits/{lang_spk}', f'limmits/processed_datasets/{lang}/{spk}')
140
- audio_path = audio_path.replace('processed/datasets', '')
141
- if 'indictts' in audio_path:
142
- audio_path = audio_path.replace('/wavs-24k/', '/wavs-22k/')
143
-
144
- text = row["text"]
145
- duration = row["duration"]
146
-
147
- # filter by given length
148
- if 0.3 <= duration <= 30:
149
- break # valid
150
-
151
- index = (index + 1) % len(self.data)
152
-
153
- if self.preprocessed_mel:
154
- mel_spec = torch.tensor(row["mel_spec"])
155
- else:
156
- audio, source_sample_rate = torchaudio.load(audio_path)
157
-
158
- # make sure mono input
159
- if audio.shape[0] > 1:
160
- audio = torch.mean(audio, dim=0, keepdim=True)
161
-
162
- # resample if necessary
163
- if source_sample_rate != self.target_sample_rate:
164
- resampler = torchaudio.transforms.Resample(source_sample_rate, self.target_sample_rate)
165
- audio = resampler(audio)
166
-
167
- # to mel spectrogram
168
- mel_spec = self.mel_spectrogram(audio)
169
- mel_spec = mel_spec.squeeze(0) # '1 d t -> d t'
170
-
171
- return {
172
- "mel_spec": mel_spec,
173
- "text": text,
174
- }
175
-
176
-
177
- # Dynamic Batch Sampler
178
- class DynamicBatchSampler(Sampler[list[int]]):
179
- """Extension of Sampler that will do the following:
180
- 1. Change the batch size (essentially number of sequences)
181
- in a batch to ensure that the total number of frames are less
182
- than a certain threshold.
183
- 2. Make sure the padding efficiency in the batch is high.
184
- """
185
-
186
- def __init__(
187
- self, sampler: Sampler[int], frames_threshold: int, max_samples=0, random_seed=None, drop_last: bool = False
188
- ):
189
- self.sampler = sampler
190
- self.frames_threshold = frames_threshold
191
- self.max_samples = max_samples
192
-
193
- indices, batches = [], []
194
- data_source = self.sampler.data_source
195
-
196
- for idx in tqdm(
197
- self.sampler, desc="Sorting with sampler... if slow, check whether dataset is provided with duration"
198
- ):
199
- indices.append((idx, data_source.get_frame_len(idx)))
200
- indices.sort(key=lambda elem: elem[1])
201
-
202
- batch = []
203
- batch_frames = 0
204
- for idx, frame_len in tqdm(
205
- indices, desc=f"Creating dynamic batches with {frames_threshold} audio frames per gpu"
206
- ):
207
- if batch_frames + frame_len <= self.frames_threshold and (max_samples == 0 or len(batch) < max_samples):
208
- batch.append(idx)
209
- batch_frames += frame_len
210
- else:
211
- if len(batch) > 0:
212
- batches.append(batch)
213
- if frame_len <= self.frames_threshold:
214
- batch = [idx]
215
- batch_frames = frame_len
216
- else:
217
- batch = []
218
- batch_frames = 0
219
-
220
- if not drop_last and len(batch) > 0:
221
- batches.append(batch)
222
-
223
- del indices
224
-
225
- # if want to have different batches between epochs, may just set a seed and log it in ckpt
226
- # cuz during multi-gpu training, although the batch on per gpu not change between epochs, the formed general minibatch is different
227
- # e.g. for epoch n, use (random_seed + n)
228
- random.seed(random_seed)
229
- random.shuffle(batches)
230
-
231
- self.batches = batches
232
-
233
- def __iter__(self):
234
- return iter(self.batches)
235
-
236
- def __len__(self):
237
- return len(self.batches)
238
-
239
-
240
- # Load dataset
241
-
242
-
243
- def load_dataset(
244
- dataset_name: str,
245
- tokenizer: str = "pinyin",
246
- dataset_type: str = "CustomDatasetPath",
247
- audio_type: str = "raw",
248
- mel_spec_module: nn.Module | None = None,
249
- mel_spec_kwargs: dict = dict(),
250
- data_dir: str = None,
251
- ) -> CustomDataset | HFDataset:
252
- """
253
- dataset_type - "CustomDataset" if you want to use tokenizer name and default data path to load for train_dataset
254
- - "CustomDatasetPath" if you just want to pass the full path to a preprocessed dataset without relying on tokenizer
255
- """
256
-
257
- print("Loading dataset ...")
258
-
259
- if dataset_type == "CustomDataset":
260
- rel_data_path = str(files("f5_tts").joinpath(f"../../data/{dataset_name}_{tokenizer}"))
261
- if audio_type == "raw":
262
- try:
263
- train_dataset = load_from_disk(f"{rel_data_path}/raw")
264
- except: # noqa: E722
265
- train_dataset = Dataset_.from_file(f"{rel_data_path}/raw.arrow")
266
- preprocessed_mel = False
267
- elif audio_type == "mel":
268
- train_dataset = Dataset_.from_file(f"{rel_data_path}/mel.arrow")
269
- preprocessed_mel = True
270
- with open(f"{rel_data_path}/duration.json", "r", encoding="utf-8") as f:
271
- data_dict = json.load(f)
272
- durations = data_dict["duration"]
273
- train_dataset = CustomDataset(
274
- train_dataset,
275
- durations=durations,
276
- preprocessed_mel=preprocessed_mel,
277
- mel_spec_module=mel_spec_module,
278
- **mel_spec_kwargs,
279
- )
280
-
281
- elif dataset_type == "CustomDatasetPath":
282
- try:
283
- train_dataset = load_from_disk(f"{data_dir}/raw")
284
- except: # noqa: E722
285
- train_dataset = Dataset_.from_file(f"{data_dir}/raw.arrow")
286
- preprocessed_mel = False
287
- with open(f"{data_dir}/duration.json", "r", encoding="utf-8") as f:
288
- data_dict = json.load(f)
289
- durations = data_dict["duration"]
290
- train_dataset = CustomDataset(
291
- train_dataset, durations=durations, preprocessed_mel=preprocessed_mel, **mel_spec_kwargs
292
- )
293
-
294
- elif dataset_type == "HFDataset":
295
- print(
296
- "Should manually modify the path of huggingface dataset to your need.\n"
297
- + "May also the corresponding script cuz different dataset may have different format."
298
- )
299
- pre, post = dataset_name.split("_")
300
- train_dataset = HFDataset(
301
- load_dataset(f"{pre}/{pre}", split=f"train.{post}", cache_dir=str(files("f5_tts").joinpath("../../data"))),
302
- )
303
-
304
- return train_dataset
305
-
306
-
307
- # collation
308
-
309
-
310
- def collate_fn(batch):
311
- mel_specs = [item["mel_spec"].squeeze(0) for item in batch]
312
- mel_lengths = torch.LongTensor([spec.shape[-1] for spec in mel_specs])
313
- max_mel_length = mel_lengths.amax()
314
-
315
- padded_mel_specs = []
316
- for spec in mel_specs: # TODO. maybe records mask for attention here
317
- padding = (0, max_mel_length - spec.size(-1))
318
- padded_spec = F.pad(spec, padding, value=0)
319
- padded_mel_specs.append(padded_spec)
320
-
321
- mel_specs = torch.stack(padded_mel_specs)
322
-
323
- text = [item["text"] for item in batch]
324
- text_lengths = torch.LongTensor([len(item) for item in text])
325
-
326
- return dict(
327
- mel=mel_specs,
328
- mel_lengths=mel_lengths,
329
- text=text,
330
- text_lengths=text_lengths,
331
- )
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f5_tts/model/modules.py DELETED
@@ -1,658 +0,0 @@
1
- """
2
- ein notation:
3
- b - batch
4
- n - sequence
5
- nt - text sequence
6
- nw - raw wave length
7
- d - dimension
8
- """
9
-
10
- from __future__ import annotations
11
-
12
- import math
13
- from typing import Optional
14
-
15
- import torch
16
- import torch.nn.functional as F
17
- import torchaudio
18
- from librosa.filters import mel as librosa_mel_fn
19
- from torch import nn
20
- from x_transformers.x_transformers import apply_rotary_pos_emb
21
-
22
-
23
- # raw wav to mel spec
24
-
25
-
26
- mel_basis_cache = {}
27
- hann_window_cache = {}
28
-
29
-
30
- def get_bigvgan_mel_spectrogram(
31
- waveform,
32
- n_fft=1024,
33
- n_mel_channels=100,
34
- target_sample_rate=24000,
35
- hop_length=256,
36
- win_length=1024,
37
- fmin=0,
38
- fmax=None,
39
- center=False,
40
- ): # Copy from https://github.com/NVIDIA/BigVGAN/tree/main
41
- device = waveform.device
42
- key = f"{n_fft}_{n_mel_channels}_{target_sample_rate}_{hop_length}_{win_length}_{fmin}_{fmax}_{device}"
43
-
44
- if key not in mel_basis_cache:
45
- mel = librosa_mel_fn(sr=target_sample_rate, n_fft=n_fft, n_mels=n_mel_channels, fmin=fmin, fmax=fmax)
46
- mel_basis_cache[key] = torch.from_numpy(mel).float().to(device) # TODO: why they need .float()?
47
- hann_window_cache[key] = torch.hann_window(win_length).to(device)
48
-
49
- mel_basis = mel_basis_cache[key]
50
- hann_window = hann_window_cache[key]
51
-
52
- padding = (n_fft - hop_length) // 2
53
- waveform = torch.nn.functional.pad(waveform.unsqueeze(1), (padding, padding), mode="reflect").squeeze(1)
54
-
55
- spec = torch.stft(
56
- waveform,
57
- n_fft,
58
- hop_length=hop_length,
59
- win_length=win_length,
60
- window=hann_window,
61
- center=center,
62
- pad_mode="reflect",
63
- normalized=False,
64
- onesided=True,
65
- return_complex=True,
66
- )
67
- spec = torch.sqrt(torch.view_as_real(spec).pow(2).sum(-1) + 1e-9)
68
-
69
- mel_spec = torch.matmul(mel_basis, spec)
70
- mel_spec = torch.log(torch.clamp(mel_spec, min=1e-5))
71
-
72
- return mel_spec
73
-
74
-
75
- def get_vocos_mel_spectrogram(
76
- waveform,
77
- n_fft=1024,
78
- n_mel_channels=100,
79
- target_sample_rate=24000,
80
- hop_length=256,
81
- win_length=1024,
82
- ):
83
- mel_stft = torchaudio.transforms.MelSpectrogram(
84
- sample_rate=target_sample_rate,
85
- n_fft=n_fft,
86
- win_length=win_length,
87
- hop_length=hop_length,
88
- n_mels=n_mel_channels,
89
- power=1,
90
- center=True,
91
- normalized=False,
92
- norm=None,
93
- ).to(waveform.device)
94
- if len(waveform.shape) == 3:
95
- waveform = waveform.squeeze(1) # 'b 1 nw -> b nw'
96
-
97
- assert len(waveform.shape) == 2
98
-
99
- mel = mel_stft(waveform)
100
- mel = mel.clamp(min=1e-5).log()
101
- return mel
102
-
103
-
104
- class MelSpec(nn.Module):
105
- def __init__(
106
- self,
107
- n_fft=1024,
108
- hop_length=256,
109
- win_length=1024,
110
- n_mel_channels=100,
111
- target_sample_rate=24_000,
112
- mel_spec_type="vocos",
113
- ):
114
- super().__init__()
115
- assert mel_spec_type in ["vocos", "bigvgan"], print("We only support two extract mel backend: vocos or bigvgan")
116
-
117
- self.n_fft = n_fft
118
- self.hop_length = hop_length
119
- self.win_length = win_length
120
- self.n_mel_channels = n_mel_channels
121
- self.target_sample_rate = target_sample_rate
122
-
123
- if mel_spec_type == "vocos":
124
- self.extractor = get_vocos_mel_spectrogram
125
- elif mel_spec_type == "bigvgan":
126
- self.extractor = get_bigvgan_mel_spectrogram
127
-
128
- self.register_buffer("dummy", torch.tensor(0), persistent=False)
129
-
130
- def forward(self, wav):
131
- if self.dummy.device != wav.device:
132
- self.to(wav.device)
133
-
134
- mel = self.extractor(
135
- waveform=wav,
136
- n_fft=self.n_fft,
137
- n_mel_channels=self.n_mel_channels,
138
- target_sample_rate=self.target_sample_rate,
139
- hop_length=self.hop_length,
140
- win_length=self.win_length,
141
- )
142
-
143
- return mel
144
-
145
-
146
- # sinusoidal position embedding
147
-
148
-
149
- class SinusPositionEmbedding(nn.Module):
150
- def __init__(self, dim):
151
- super().__init__()
152
- self.dim = dim
153
-
154
- def forward(self, x, scale=1000):
155
- device = x.device
156
- half_dim = self.dim // 2
157
- emb = math.log(10000) / (half_dim - 1)
158
- emb = torch.exp(torch.arange(half_dim, device=device).float() * -emb)
159
- emb = scale * x.unsqueeze(1) * emb.unsqueeze(0)
160
- emb = torch.cat((emb.sin(), emb.cos()), dim=-1)
161
- return emb
162
-
163
-
164
- # convolutional position embedding
165
-
166
-
167
- class ConvPositionEmbedding(nn.Module):
168
- def __init__(self, dim, kernel_size=31, groups=16):
169
- super().__init__()
170
- assert kernel_size % 2 != 0
171
- self.conv1d = nn.Sequential(
172
- nn.Conv1d(dim, dim, kernel_size, groups=groups, padding=kernel_size // 2),
173
- nn.Mish(),
174
- nn.Conv1d(dim, dim, kernel_size, groups=groups, padding=kernel_size // 2),
175
- nn.Mish(),
176
- )
177
-
178
- def forward(self, x: float["b n d"], mask: bool["b n"] | None = None): # noqa: F722
179
- if mask is not None:
180
- mask = mask[..., None]
181
- x = x.masked_fill(~mask, 0.0)
182
-
183
- x = x.permute(0, 2, 1)
184
- x = self.conv1d(x)
185
- out = x.permute(0, 2, 1)
186
-
187
- if mask is not None:
188
- out = out.masked_fill(~mask, 0.0)
189
-
190
- return out
191
-
192
-
193
- # rotary positional embedding related
194
-
195
-
196
- def precompute_freqs_cis(dim: int, end: int, theta: float = 10000.0, theta_rescale_factor=1.0):
197
- # proposed by reddit user bloc97, to rescale rotary embeddings to longer sequence length without fine-tuning
198
- # has some connection to NTK literature
199
- # https://www.reddit.com/r/LocalLLaMA/comments/14lz7j5/ntkaware_scaled_rope_allows_llama_models_to_have/
200
- # https://github.com/lucidrains/rotary-embedding-torch/blob/main/rotary_embedding_torch/rotary_embedding_torch.py
201
- theta *= theta_rescale_factor ** (dim / (dim - 2))
202
- freqs = 1.0 / (theta ** (torch.arange(0, dim, 2)[: (dim // 2)].float() / dim))
203
- t = torch.arange(end, device=freqs.device) # type: ignore
204
- freqs = torch.outer(t, freqs).float() # type: ignore
205
- freqs_cos = torch.cos(freqs) # real part
206
- freqs_sin = torch.sin(freqs) # imaginary part
207
- return torch.cat([freqs_cos, freqs_sin], dim=-1)
208
-
209
-
210
- def get_pos_embed_indices(start, length, max_pos, scale=1.0):
211
- # length = length if isinstance(length, int) else length.max()
212
- scale = scale * torch.ones_like(start, dtype=torch.float32) # in case scale is a scalar
213
- pos = (
214
- start.unsqueeze(1)
215
- + (torch.arange(length, device=start.device, dtype=torch.float32).unsqueeze(0) * scale.unsqueeze(1)).long()
216
- )
217
- # avoid extra long error.
218
- pos = torch.where(pos < max_pos, pos, max_pos - 1)
219
- return pos
220
-
221
-
222
- # Global Response Normalization layer (Instance Normalization ?)
223
-
224
-
225
- class GRN(nn.Module):
226
- def __init__(self, dim):
227
- super().__init__()
228
- self.gamma = nn.Parameter(torch.zeros(1, 1, dim))
229
- self.beta = nn.Parameter(torch.zeros(1, 1, dim))
230
-
231
- def forward(self, x):
232
- Gx = torch.norm(x, p=2, dim=1, keepdim=True)
233
- Nx = Gx / (Gx.mean(dim=-1, keepdim=True) + 1e-6)
234
- return self.gamma * (x * Nx) + self.beta + x
235
-
236
-
237
- # ConvNeXt-V2 Block https://github.com/facebookresearch/ConvNeXt-V2/blob/main/models/convnextv2.py
238
- # ref: https://github.com/bfs18/e2_tts/blob/main/rfwave/modules.py#L108
239
-
240
-
241
- class ConvNeXtV2Block(nn.Module):
242
- def __init__(
243
- self,
244
- dim: int,
245
- intermediate_dim: int,
246
- dilation: int = 1,
247
- ):
248
- super().__init__()
249
- padding = (dilation * (7 - 1)) // 2
250
- self.dwconv = nn.Conv1d(
251
- dim, dim, kernel_size=7, padding=padding, groups=dim, dilation=dilation
252
- ) # depthwise conv
253
- self.norm = nn.LayerNorm(dim, eps=1e-6)
254
- self.pwconv1 = nn.Linear(dim, intermediate_dim) # pointwise/1x1 convs, implemented with linear layers
255
- self.act = nn.GELU()
256
- self.grn = GRN(intermediate_dim)
257
- self.pwconv2 = nn.Linear(intermediate_dim, dim)
258
-
259
- def forward(self, x: torch.Tensor) -> torch.Tensor:
260
- residual = x
261
- x = x.transpose(1, 2) # b n d -> b d n
262
- x = self.dwconv(x)
263
- x = x.transpose(1, 2) # b d n -> b n d
264
- x = self.norm(x)
265
- x = self.pwconv1(x)
266
- x = self.act(x)
267
- x = self.grn(x)
268
- x = self.pwconv2(x)
269
- return residual + x
270
-
271
-
272
- # AdaLayerNormZero
273
- # return with modulated x for attn input, and params for later mlp modulation
274
-
275
-
276
- class AdaLayerNormZero(nn.Module):
277
- def __init__(self, dim):
278
- super().__init__()
279
-
280
- self.silu = nn.SiLU()
281
- self.linear = nn.Linear(dim, dim * 6)
282
-
283
- self.norm = nn.LayerNorm(dim, elementwise_affine=False, eps=1e-6)
284
-
285
- def forward(self, x, emb=None):
286
- emb = self.linear(self.silu(emb))
287
- shift_msa, scale_msa, gate_msa, shift_mlp, scale_mlp, gate_mlp = torch.chunk(emb, 6, dim=1)
288
-
289
- x = self.norm(x) * (1 + scale_msa[:, None]) + shift_msa[:, None]
290
- return x, gate_msa, shift_mlp, scale_mlp, gate_mlp
291
-
292
-
293
- # AdaLayerNormZero for final layer
294
- # return only with modulated x for attn input, cuz no more mlp modulation
295
-
296
-
297
- class AdaLayerNormZero_Final(nn.Module):
298
- def __init__(self, dim):
299
- super().__init__()
300
-
301
- self.silu = nn.SiLU()
302
- self.linear = nn.Linear(dim, dim * 2)
303
-
304
- self.norm = nn.LayerNorm(dim, elementwise_affine=False, eps=1e-6)
305
-
306
- def forward(self, x, emb):
307
- emb = self.linear(self.silu(emb))
308
- scale, shift = torch.chunk(emb, 2, dim=1)
309
-
310
- x = self.norm(x) * (1 + scale)[:, None, :] + shift[:, None, :]
311
- return x
312
-
313
-
314
- # FeedForward
315
-
316
-
317
- class FeedForward(nn.Module):
318
- def __init__(self, dim, dim_out=None, mult=4, dropout=0.0, approximate: str = "none"):
319
- super().__init__()
320
- inner_dim = int(dim * mult)
321
- dim_out = dim_out if dim_out is not None else dim
322
-
323
- activation = nn.GELU(approximate=approximate)
324
- project_in = nn.Sequential(nn.Linear(dim, inner_dim), activation)
325
- self.ff = nn.Sequential(project_in, nn.Dropout(dropout), nn.Linear(inner_dim, dim_out))
326
-
327
- def forward(self, x):
328
- return self.ff(x)
329
-
330
-
331
- # Attention with possible joint part
332
- # modified from diffusers/src/diffusers/models/attention_processor.py
333
-
334
-
335
- class Attention(nn.Module):
336
- def __init__(
337
- self,
338
- processor: JointAttnProcessor | AttnProcessor,
339
- dim: int,
340
- heads: int = 8,
341
- dim_head: int = 64,
342
- dropout: float = 0.0,
343
- context_dim: Optional[int] = None, # if not None -> joint attention
344
- context_pre_only=None,
345
- ):
346
- super().__init__()
347
-
348
- if not hasattr(F, "scaled_dot_product_attention"):
349
- raise ImportError("Attention equires PyTorch 2.0, to use it, please upgrade PyTorch to 2.0.")
350
-
351
- self.processor = processor
352
-
353
- self.dim = dim
354
- self.heads = heads
355
- self.inner_dim = dim_head * heads
356
- self.dropout = dropout
357
-
358
- self.context_dim = context_dim
359
- self.context_pre_only = context_pre_only
360
-
361
- self.to_q = nn.Linear(dim, self.inner_dim)
362
- self.to_k = nn.Linear(dim, self.inner_dim)
363
- self.to_v = nn.Linear(dim, self.inner_dim)
364
-
365
- if self.context_dim is not None:
366
- self.to_k_c = nn.Linear(context_dim, self.inner_dim)
367
- self.to_v_c = nn.Linear(context_dim, self.inner_dim)
368
- if self.context_pre_only is not None:
369
- self.to_q_c = nn.Linear(context_dim, self.inner_dim)
370
-
371
- self.to_out = nn.ModuleList([])
372
- self.to_out.append(nn.Linear(self.inner_dim, dim))
373
- self.to_out.append(nn.Dropout(dropout))
374
-
375
- if self.context_pre_only is not None and not self.context_pre_only:
376
- self.to_out_c = nn.Linear(self.inner_dim, dim)
377
-
378
- def forward(
379
- self,
380
- x: float["b n d"], # noised input x # noqa: F722
381
- c: float["b n d"] = None, # context c # noqa: F722
382
- mask: bool["b n"] | None = None, # noqa: F722
383
- rope=None, # rotary position embedding for x
384
- c_rope=None, # rotary position embedding for c
385
- ) -> torch.Tensor:
386
- if c is not None:
387
- return self.processor(self, x, c=c, mask=mask, rope=rope, c_rope=c_rope)
388
- else:
389
- return self.processor(self, x, mask=mask, rope=rope)
390
-
391
-
392
- # Attention processor
393
-
394
-
395
- class AttnProcessor:
396
- def __init__(self):
397
- pass
398
-
399
- def __call__(
400
- self,
401
- attn: Attention,
402
- x: float["b n d"], # noised input x # noqa: F722
403
- mask: bool["b n"] | None = None, # noqa: F722
404
- rope=None, # rotary position embedding
405
- ) -> torch.FloatTensor:
406
- batch_size = x.shape[0]
407
-
408
- # `sample` projections.
409
- query = attn.to_q(x)
410
- key = attn.to_k(x)
411
- value = attn.to_v(x)
412
-
413
- # apply rotary position embedding
414
- if rope is not None:
415
- freqs, xpos_scale = rope
416
- q_xpos_scale, k_xpos_scale = (xpos_scale, xpos_scale**-1.0) if xpos_scale is not None else (1.0, 1.0)
417
-
418
- query = apply_rotary_pos_emb(query, freqs, q_xpos_scale)
419
- key = apply_rotary_pos_emb(key, freqs, k_xpos_scale)
420
-
421
- # attention
422
- inner_dim = key.shape[-1]
423
- head_dim = inner_dim // attn.heads
424
- query = query.view(batch_size, -1, attn.heads, head_dim).transpose(1, 2)
425
- key = key.view(batch_size, -1, attn.heads, head_dim).transpose(1, 2)
426
- value = value.view(batch_size, -1, attn.heads, head_dim).transpose(1, 2)
427
-
428
- # mask. e.g. inference got a batch with different target durations, mask out the padding
429
- if mask is not None:
430
- attn_mask = mask
431
- attn_mask = attn_mask.unsqueeze(1).unsqueeze(1) # 'b n -> b 1 1 n'
432
- attn_mask = attn_mask.expand(batch_size, attn.heads, query.shape[-2], key.shape[-2])
433
- else:
434
- attn_mask = None
435
-
436
- x = F.scaled_dot_product_attention(query, key, value, attn_mask=attn_mask, dropout_p=0.0, is_causal=False)
437
- x = x.transpose(1, 2).reshape(batch_size, -1, attn.heads * head_dim)
438
- x = x.to(query.dtype)
439
-
440
- # linear proj
441
- x = attn.to_out[0](x)
442
- # dropout
443
- x = attn.to_out[1](x)
444
-
445
- if mask is not None:
446
- mask = mask.unsqueeze(-1)
447
- x = x.masked_fill(~mask, 0.0)
448
-
449
- return x
450
-
451
-
452
- # Joint Attention processor for MM-DiT
453
- # modified from diffusers/src/diffusers/models/attention_processor.py
454
-
455
-
456
- class JointAttnProcessor:
457
- def __init__(self):
458
- pass
459
-
460
- def __call__(
461
- self,
462
- attn: Attention,
463
- x: float["b n d"], # noised input x # noqa: F722
464
- c: float["b nt d"] = None, # context c, here text # noqa: F722
465
- mask: bool["b n"] | None = None, # noqa: F722
466
- rope=None, # rotary position embedding for x
467
- c_rope=None, # rotary position embedding for c
468
- ) -> torch.FloatTensor:
469
- residual = x
470
-
471
- batch_size = c.shape[0]
472
-
473
- # `sample` projections.
474
- query = attn.to_q(x)
475
- key = attn.to_k(x)
476
- value = attn.to_v(x)
477
-
478
- # `context` projections.
479
- c_query = attn.to_q_c(c)
480
- c_key = attn.to_k_c(c)
481
- c_value = attn.to_v_c(c)
482
-
483
- # apply rope for context and noised input independently
484
- if rope is not None:
485
- freqs, xpos_scale = rope
486
- q_xpos_scale, k_xpos_scale = (xpos_scale, xpos_scale**-1.0) if xpos_scale is not None else (1.0, 1.0)
487
- query = apply_rotary_pos_emb(query, freqs, q_xpos_scale)
488
- key = apply_rotary_pos_emb(key, freqs, k_xpos_scale)
489
- if c_rope is not None:
490
- freqs, xpos_scale = c_rope
491
- q_xpos_scale, k_xpos_scale = (xpos_scale, xpos_scale**-1.0) if xpos_scale is not None else (1.0, 1.0)
492
- c_query = apply_rotary_pos_emb(c_query, freqs, q_xpos_scale)
493
- c_key = apply_rotary_pos_emb(c_key, freqs, k_xpos_scale)
494
-
495
- # attention
496
- query = torch.cat([query, c_query], dim=1)
497
- key = torch.cat([key, c_key], dim=1)
498
- value = torch.cat([value, c_value], dim=1)
499
-
500
- inner_dim = key.shape[-1]
501
- head_dim = inner_dim // attn.heads
502
- query = query.view(batch_size, -1, attn.heads, head_dim).transpose(1, 2)
503
- key = key.view(batch_size, -1, attn.heads, head_dim).transpose(1, 2)
504
- value = value.view(batch_size, -1, attn.heads, head_dim).transpose(1, 2)
505
-
506
- # mask. e.g. inference got a batch with different target durations, mask out the padding
507
- if mask is not None:
508
- attn_mask = F.pad(mask, (0, c.shape[1]), value=True) # no mask for c (text)
509
- attn_mask = attn_mask.unsqueeze(1).unsqueeze(1) # 'b n -> b 1 1 n'
510
- attn_mask = attn_mask.expand(batch_size, attn.heads, query.shape[-2], key.shape[-2])
511
- else:
512
- attn_mask = None
513
-
514
- x = F.scaled_dot_product_attention(query, key, value, attn_mask=attn_mask, dropout_p=0.0, is_causal=False)
515
- x = x.transpose(1, 2).reshape(batch_size, -1, attn.heads * head_dim)
516
- x = x.to(query.dtype)
517
-
518
- # Split the attention outputs.
519
- x, c = (
520
- x[:, : residual.shape[1]],
521
- x[:, residual.shape[1] :],
522
- )
523
-
524
- # linear proj
525
- x = attn.to_out[0](x)
526
- # dropout
527
- x = attn.to_out[1](x)
528
- if not attn.context_pre_only:
529
- c = attn.to_out_c(c)
530
-
531
- if mask is not None:
532
- mask = mask.unsqueeze(-1)
533
- x = x.masked_fill(~mask, 0.0)
534
- # c = c.masked_fill(~mask, 0.) # no mask for c (text)
535
-
536
- return x, c
537
-
538
-
539
- # DiT Block
540
-
541
-
542
- class DiTBlock(nn.Module):
543
- def __init__(self, dim, heads, dim_head, ff_mult=4, dropout=0.1):
544
- super().__init__()
545
-
546
- self.attn_norm = AdaLayerNormZero(dim)
547
- self.attn = Attention(
548
- processor=AttnProcessor(),
549
- dim=dim,
550
- heads=heads,
551
- dim_head=dim_head,
552
- dropout=dropout,
553
- )
554
-
555
- self.ff_norm = nn.LayerNorm(dim, elementwise_affine=False, eps=1e-6)
556
- self.ff = FeedForward(dim=dim, mult=ff_mult, dropout=dropout, approximate="tanh")
557
-
558
- def forward(self, x, t, mask=None, rope=None): # x: noised input, t: time embedding
559
- # pre-norm & modulation for attention input
560
- norm, gate_msa, shift_mlp, scale_mlp, gate_mlp = self.attn_norm(x, emb=t)
561
-
562
- # attention
563
- attn_output = self.attn(x=norm, mask=mask, rope=rope)
564
-
565
- # process attention output for input x
566
- x = x + gate_msa.unsqueeze(1) * attn_output
567
-
568
- norm = self.ff_norm(x) * (1 + scale_mlp[:, None]) + shift_mlp[:, None]
569
- ff_output = self.ff(norm)
570
- x = x + gate_mlp.unsqueeze(1) * ff_output
571
-
572
- return x
573
-
574
-
575
- # MMDiT Block https://arxiv.org/abs/2403.03206
576
-
577
-
578
- class MMDiTBlock(nn.Module):
579
- r"""
580
- modified from diffusers/src/diffusers/models/attention.py
581
-
582
- notes.
583
- _c: context related. text, cond, etc. (left part in sd3 fig2.b)
584
- _x: noised input related. (right part)
585
- context_pre_only: last layer only do prenorm + modulation cuz no more ffn
586
- """
587
-
588
- def __init__(self, dim, heads, dim_head, ff_mult=4, dropout=0.1, context_pre_only=False):
589
- super().__init__()
590
-
591
- self.context_pre_only = context_pre_only
592
-
593
- self.attn_norm_c = AdaLayerNormZero_Final(dim) if context_pre_only else AdaLayerNormZero(dim)
594
- self.attn_norm_x = AdaLayerNormZero(dim)
595
- self.attn = Attention(
596
- processor=JointAttnProcessor(),
597
- dim=dim,
598
- heads=heads,
599
- dim_head=dim_head,
600
- dropout=dropout,
601
- context_dim=dim,
602
- context_pre_only=context_pre_only,
603
- )
604
-
605
- if not context_pre_only:
606
- self.ff_norm_c = nn.LayerNorm(dim, elementwise_affine=False, eps=1e-6)
607
- self.ff_c = FeedForward(dim=dim, mult=ff_mult, dropout=dropout, approximate="tanh")
608
- else:
609
- self.ff_norm_c = None
610
- self.ff_c = None
611
- self.ff_norm_x = nn.LayerNorm(dim, elementwise_affine=False, eps=1e-6)
612
- self.ff_x = FeedForward(dim=dim, mult=ff_mult, dropout=dropout, approximate="tanh")
613
-
614
- def forward(self, x, c, t, mask=None, rope=None, c_rope=None): # x: noised input, c: context, t: time embedding
615
- # pre-norm & modulation for attention input
616
- if self.context_pre_only:
617
- norm_c = self.attn_norm_c(c, t)
618
- else:
619
- norm_c, c_gate_msa, c_shift_mlp, c_scale_mlp, c_gate_mlp = self.attn_norm_c(c, emb=t)
620
- norm_x, x_gate_msa, x_shift_mlp, x_scale_mlp, x_gate_mlp = self.attn_norm_x(x, emb=t)
621
-
622
- # attention
623
- x_attn_output, c_attn_output = self.attn(x=norm_x, c=norm_c, mask=mask, rope=rope, c_rope=c_rope)
624
-
625
- # process attention output for context c
626
- if self.context_pre_only:
627
- c = None
628
- else: # if not last layer
629
- c = c + c_gate_msa.unsqueeze(1) * c_attn_output
630
-
631
- norm_c = self.ff_norm_c(c) * (1 + c_scale_mlp[:, None]) + c_shift_mlp[:, None]
632
- c_ff_output = self.ff_c(norm_c)
633
- c = c + c_gate_mlp.unsqueeze(1) * c_ff_output
634
-
635
- # process attention output for input x
636
- x = x + x_gate_msa.unsqueeze(1) * x_attn_output
637
-
638
- norm_x = self.ff_norm_x(x) * (1 + x_scale_mlp[:, None]) + x_shift_mlp[:, None]
639
- x_ff_output = self.ff_x(norm_x)
640
- x = x + x_gate_mlp.unsqueeze(1) * x_ff_output
641
-
642
- return c, x
643
-
644
-
645
- # time step conditioning embedding
646
-
647
-
648
- class TimestepEmbedding(nn.Module):
649
- def __init__(self, dim, freq_embed_dim=256):
650
- super().__init__()
651
- self.time_embed = SinusPositionEmbedding(freq_embed_dim)
652
- self.time_mlp = nn.Sequential(nn.Linear(freq_embed_dim, dim), nn.SiLU(), nn.Linear(dim, dim))
653
-
654
- def forward(self, timestep: float["b"]): # noqa: F821
655
- time_hidden = self.time_embed(timestep)
656
- time_hidden = time_hidden.to(timestep.dtype)
657
- time = self.time_mlp(time_hidden) # b d
658
- return time
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f5_tts/model/trainer.py DELETED
@@ -1,380 +0,0 @@
1
- from __future__ import annotations
2
-
3
- import gc
4
- import os
5
-
6
- import torch
7
- import torchaudio
8
- import wandb
9
- from accelerate import Accelerator
10
- from accelerate.utils import DistributedDataParallelKwargs
11
- from ema_pytorch import EMA
12
- from torch.optim import AdamW
13
- from torch.optim.lr_scheduler import LinearLR, SequentialLR
14
- from torch.utils.data import DataLoader, Dataset, SequentialSampler
15
- from tqdm import tqdm
16
-
17
- from f5_tts.model import CFM
18
- from f5_tts.model.dataset import DynamicBatchSampler, collate_fn
19
- from f5_tts.model.utils import default, exists
20
-
21
- # trainer
22
-
23
-
24
- class Trainer:
25
- def __init__(
26
- self,
27
- model: CFM,
28
- epochs,
29
- learning_rate,
30
- num_warmup_updates=20000,
31
- save_per_updates=1000,
32
- checkpoint_path=None,
33
- batch_size=32,
34
- batch_size_type: str = "sample",
35
- max_samples=32,
36
- grad_accumulation_steps=1,
37
- max_grad_norm=1.0,
38
- noise_scheduler: str | None = None,
39
- duration_predictor: torch.nn.Module | None = None,
40
- logger: str | None = "wandb", # "wandb" | "tensorboard" | None
41
- wandb_project="test_e2-tts",
42
- wandb_run_name="test_run",
43
- wandb_resume_id: str = None,
44
- log_samples: bool = False,
45
- last_per_steps=None,
46
- accelerate_kwargs: dict = dict(),
47
- ema_kwargs: dict = dict(),
48
- bnb_optimizer: bool = False,
49
- mel_spec_type: str = "vocos", # "vocos" | "bigvgan"
50
- is_local_vocoder: bool = False, # use local path vocoder
51
- local_vocoder_path: str = "", # local vocoder path
52
- ):
53
- ddp_kwargs = DistributedDataParallelKwargs(find_unused_parameters=True)
54
-
55
- if logger == "wandb" and not wandb.api.api_key:
56
- logger = None
57
- print(f"Using logger: {logger}")
58
- self.log_samples = log_samples
59
-
60
- self.accelerator = Accelerator(
61
- log_with=logger if logger == "wandb" else None,
62
- kwargs_handlers=[ddp_kwargs],
63
- gradient_accumulation_steps=grad_accumulation_steps,
64
- **accelerate_kwargs,
65
- )
66
-
67
- self.logger = logger
68
- if self.logger == "wandb":
69
- if exists(wandb_resume_id):
70
- init_kwargs = {"wandb": {"resume": "allow", "name": wandb_run_name, "id": wandb_resume_id}}
71
- else:
72
- init_kwargs = {"wandb": {"resume": "allow", "name": wandb_run_name}}
73
-
74
- self.accelerator.init_trackers(
75
- project_name=wandb_project,
76
- init_kwargs=init_kwargs,
77
- config={
78
- "epochs": epochs,
79
- "learning_rate": learning_rate,
80
- "num_warmup_updates": num_warmup_updates,
81
- "batch_size": batch_size,
82
- "batch_size_type": batch_size_type,
83
- "max_samples": max_samples,
84
- "grad_accumulation_steps": grad_accumulation_steps,
85
- "max_grad_norm": max_grad_norm,
86
- "gpus": self.accelerator.num_processes,
87
- "noise_scheduler": noise_scheduler,
88
- },
89
- )
90
-
91
- elif self.logger == "tensorboard":
92
- from torch.utils.tensorboard import SummaryWriter
93
-
94
- self.writer = SummaryWriter(log_dir=f"runs/{wandb_run_name}")
95
-
96
- self.model = model
97
-
98
- if self.is_main:
99
- self.ema_model = EMA(model, include_online_model=False, **ema_kwargs)
100
- self.ema_model.to(self.accelerator.device)
101
-
102
- self.epochs = epochs
103
- self.num_warmup_updates = num_warmup_updates
104
- self.save_per_updates = save_per_updates
105
- self.last_per_steps = default(last_per_steps, save_per_updates * grad_accumulation_steps)
106
- self.checkpoint_path = default(checkpoint_path, "ckpts/test_e2-tts")
107
-
108
- self.batch_size = batch_size
109
- self.batch_size_type = batch_size_type
110
- self.max_samples = max_samples
111
- self.grad_accumulation_steps = grad_accumulation_steps
112
- self.max_grad_norm = max_grad_norm
113
-
114
- # mel vocoder config
115
- self.vocoder_name = mel_spec_type
116
- self.is_local_vocoder = is_local_vocoder
117
- self.local_vocoder_path = local_vocoder_path
118
-
119
- self.noise_scheduler = noise_scheduler
120
-
121
- self.duration_predictor = duration_predictor
122
-
123
- if bnb_optimizer:
124
- import bitsandbytes as bnb
125
-
126
- self.optimizer = bnb.optim.AdamW8bit(model.parameters(), lr=learning_rate)
127
- else:
128
- self.optimizer = AdamW(model.parameters(), lr=learning_rate)
129
- self.model, self.optimizer = self.accelerator.prepare(self.model, self.optimizer)
130
-
131
- @property
132
- def is_main(self):
133
- return self.accelerator.is_main_process
134
-
135
- def save_checkpoint(self, step, last=False):
136
- self.accelerator.wait_for_everyone()
137
- if self.is_main:
138
- checkpoint = dict(
139
- model_state_dict=self.accelerator.unwrap_model(self.model).state_dict(),
140
- optimizer_state_dict=self.accelerator.unwrap_model(self.optimizer).state_dict(),
141
- ema_model_state_dict=self.ema_model.state_dict(),
142
- scheduler_state_dict=self.scheduler.state_dict(),
143
- step=step,
144
- )
145
- if not os.path.exists(self.checkpoint_path):
146
- os.makedirs(self.checkpoint_path)
147
- if last:
148
- self.accelerator.save(checkpoint, f"{self.checkpoint_path}/model_last.pt")
149
- print(f"Saved last checkpoint at step {step}")
150
- else:
151
- self.accelerator.save(checkpoint, f"{self.checkpoint_path}/model_{step}.pt")
152
-
153
- def load_checkpoint(self):
154
- if (
155
- not exists(self.checkpoint_path)
156
- or not os.path.exists(self.checkpoint_path)
157
- or not any(filename.endswith(".pt") for filename in os.listdir(self.checkpoint_path))
158
- ):
159
- return 0
160
-
161
- self.accelerator.wait_for_everyone()
162
- if "model_last.pt" in os.listdir(self.checkpoint_path):
163
- latest_checkpoint = "model_last.pt"
164
- else:
165
- latest_checkpoint = sorted(
166
- [f for f in os.listdir(self.checkpoint_path) if f.endswith(".pt")],
167
- key=lambda x: int("".join(filter(str.isdigit, x))),
168
- )[-1]
169
- # checkpoint = torch.load(f"{self.checkpoint_path}/{latest_checkpoint}", map_location=self.accelerator.device) # rather use accelerator.load_state ಥ_ಥ
170
- print("Loading checkpoint from: ", f"{self.checkpoint_path}/{latest_checkpoint}")
171
- checkpoint = torch.load(f"{self.checkpoint_path}/{latest_checkpoint}", weights_only=True, map_location="cpu")
172
-
173
- # patch for backward compatibility, 305e3ea
174
- for key in ["ema_model.mel_spec.mel_stft.mel_scale.fb", "ema_model.mel_spec.mel_stft.spectrogram.window"]:
175
- if key in checkpoint["ema_model_state_dict"]:
176
- del checkpoint["ema_model_state_dict"][key]
177
-
178
- if self.is_main:
179
- self.ema_model.load_state_dict(checkpoint["ema_model_state_dict"])
180
-
181
- if "step" in checkpoint:
182
- # patch for backward compatibility, 305e3ea
183
- for key in ["mel_spec.mel_stft.mel_scale.fb", "mel_spec.mel_stft.spectrogram.window"]:
184
- if key in checkpoint["model_state_dict"]:
185
- del checkpoint["model_state_dict"][key]
186
-
187
- self.accelerator.unwrap_model(self.model).load_state_dict(checkpoint["model_state_dict"])
188
- self.accelerator.unwrap_model(self.optimizer).load_state_dict(checkpoint["optimizer_state_dict"])
189
- if self.scheduler:
190
- self.scheduler.load_state_dict(checkpoint["scheduler_state_dict"])
191
- # step = checkpoint["step"]
192
- # step = 0
193
- # print("checkpoint step is: ", step, " CHANGE LINE 192 IN /projects/data/ttsteam/repos/f5/src/f5_tts/model/trainer.py TO FIX THIS!!!!")
194
- else:
195
- checkpoint["model_state_dict"] = {
196
- k.replace("ema_model.", ""): v
197
- for k, v in checkpoint["ema_model_state_dict"].items()
198
- if k not in ["initted", "step"]
199
- }
200
- self.accelerator.unwrap_model(self.model).load_state_dict(checkpoint["model_state_dict"])
201
- step = 0
202
-
203
- del checkpoint
204
- gc.collect()
205
- return step
206
-
207
- def train(self, train_dataset: Dataset, num_workers=16, resumable_with_seed: int = None):
208
- if self.log_samples:
209
- from f5_tts.infer.utils_infer import cfg_strength, load_vocoder, nfe_step, sway_sampling_coef
210
-
211
- vocoder = load_vocoder(
212
- vocoder_name=self.vocoder_name, is_local=self.is_local_vocoder, local_path=self.local_vocoder_path
213
- )
214
- target_sample_rate = self.accelerator.unwrap_model(self.model).mel_spec.target_sample_rate
215
- log_samples_path = f"{self.checkpoint_path}/samples"
216
- os.makedirs(log_samples_path, exist_ok=True)
217
-
218
- if exists(resumable_with_seed):
219
- generator = torch.Generator()
220
- generator.manual_seed(resumable_with_seed)
221
- else:
222
- generator = None
223
-
224
- if self.batch_size_type == "sample":
225
- train_dataloader = DataLoader(
226
- train_dataset,
227
- collate_fn=collate_fn,
228
- num_workers=num_workers,
229
- pin_memory=True,
230
- persistent_workers=True,
231
- batch_size=self.batch_size,
232
- shuffle=True,
233
- generator=generator,
234
- )
235
- elif self.batch_size_type == "frame":
236
- self.accelerator.even_batches = False
237
- sampler = SequentialSampler(train_dataset)
238
- batch_sampler = DynamicBatchSampler(
239
- sampler, self.batch_size, max_samples=self.max_samples, random_seed=resumable_with_seed, drop_last=False
240
- )
241
- train_dataloader = DataLoader(
242
- train_dataset,
243
- collate_fn=collate_fn,
244
- num_workers=num_workers,
245
- pin_memory=True,
246
- persistent_workers=True,
247
- batch_sampler=batch_sampler,
248
- )
249
- else:
250
- raise ValueError(f"batch_size_type must be either 'sample' or 'frame', but received {self.batch_size_type}")
251
-
252
- # accelerator.prepare() dispatches batches to devices;
253
- # which means the length of dataloader calculated before, should consider the number of devices
254
- warmup_steps = (
255
- self.num_warmup_updates * self.accelerator.num_processes
256
- ) # consider a fixed warmup steps while using accelerate multi-gpu ddp
257
- print("Warm Up steps are: ", warmup_steps)
258
- # otherwise by default with split_batches=False, warmup steps change with num_processes
259
- total_steps = len(train_dataloader) * self.epochs / self.grad_accumulation_steps
260
- decay_steps = total_steps - warmup_steps
261
- warmup_scheduler = LinearLR(self.optimizer, start_factor=1e-8, end_factor=1.0, total_iters=warmup_steps)
262
- decay_scheduler = LinearLR(self.optimizer, start_factor=1.0, end_factor=1e-8, total_iters=decay_steps)
263
- self.scheduler = SequentialLR(
264
- self.optimizer, schedulers=[warmup_scheduler, decay_scheduler], milestones=[warmup_steps]
265
- )
266
- train_dataloader, self.scheduler = self.accelerator.prepare(
267
- train_dataloader, self.scheduler
268
- ) # actual steps = 1 gpu steps / gpus
269
- start_step = self.load_checkpoint()
270
- global_step = start_step
271
-
272
- if exists(resumable_with_seed):
273
- orig_epoch_step = len(train_dataloader)
274
- skipped_epoch = int(start_step // orig_epoch_step)
275
- skipped_batch = start_step % orig_epoch_step
276
- skipped_dataloader = self.accelerator.skip_first_batches(train_dataloader, num_batches=skipped_batch)
277
- else:
278
- skipped_epoch = 0
279
-
280
- for epoch in range(skipped_epoch, self.epochs):
281
- self.model.train()
282
- if exists(resumable_with_seed) and epoch == skipped_epoch:
283
- progress_bar = tqdm(
284
- skipped_dataloader,
285
- desc=f"Epoch {epoch+1}/{self.epochs}",
286
- unit="step",
287
- disable=not self.accelerator.is_local_main_process,
288
- initial=skipped_batch,
289
- total=orig_epoch_step,
290
- )
291
- else:
292
- progress_bar = tqdm(
293
- train_dataloader,
294
- desc=f"Epoch {epoch+1}/{self.epochs}",
295
- unit="step",
296
- disable=not self.accelerator.is_local_main_process,
297
- )
298
-
299
- for batch in progress_bar:
300
-
301
- with self.accelerator.accumulate(self.model):
302
- text_inputs = batch["text"]
303
- mel_spec = batch["mel"].permute(0, 2, 1)
304
- mel_lengths = batch["mel_lengths"]
305
- if mel_spec.shape[0] * mel_spec.shape[1] > 38000: # Hacky Fix for incorrect dynamic batching
306
- continue
307
-
308
- # TODO. add duration predictor training
309
- if self.duration_predictor is not None and self.accelerator.is_local_main_process:
310
- dur_loss = self.duration_predictor(mel_spec, lens=batch.get("durations"))
311
- self.accelerator.log({"duration loss": dur_loss.item()}, step=global_step)
312
-
313
- loss, cond, pred = self.model(
314
- mel_spec, text=text_inputs, lens=mel_lengths, noise_scheduler=self.noise_scheduler
315
- )
316
- self.accelerator.backward(loss)
317
-
318
- if self.max_grad_norm > 0 and self.accelerator.sync_gradients:
319
- self.accelerator.clip_grad_norm_(self.model.parameters(), self.max_grad_norm)
320
-
321
- self.optimizer.step()
322
- self.scheduler.step()
323
- self.optimizer.zero_grad()
324
-
325
- if self.is_main:
326
- self.ema_model.update()
327
-
328
- global_step += 1
329
-
330
- if self.accelerator.is_local_main_process:
331
- self.accelerator.log({"loss": loss.item(), "lr": self.scheduler.get_last_lr()[0]}, step=global_step)
332
- if self.logger == "tensorboard":
333
- self.writer.add_scalar("loss", loss.item(), global_step)
334
- self.writer.add_scalar("lr", self.scheduler.get_last_lr()[0], global_step)
335
-
336
- progress_bar.set_postfix(step=str(global_step), loss=loss.item())
337
-
338
- if global_step % (self.save_per_updates * self.grad_accumulation_steps) == 0:
339
- self.save_checkpoint(global_step)
340
-
341
- if self.log_samples and self.accelerator.is_local_main_process:
342
- ref_audio_len = mel_lengths[0]
343
- infer_text = [
344
- text_inputs[0] + ([" "] if isinstance(text_inputs[0], list) else " ") + text_inputs[0]
345
- ]
346
- with torch.inference_mode():
347
- generated, _ = self.accelerator.unwrap_model(self.model).sample(
348
- cond=mel_spec[0][:ref_audio_len].unsqueeze(0),
349
- text=infer_text,
350
- duration=ref_audio_len * 2,
351
- steps=nfe_step,
352
- cfg_strength=cfg_strength,
353
- sway_sampling_coef=sway_sampling_coef,
354
- )
355
- generated = generated.to(torch.float32)
356
- gen_mel_spec = generated[:, ref_audio_len:, :].permute(0, 2, 1).to(self.accelerator.device)
357
- ref_mel_spec = batch["mel"][0].unsqueeze(0)
358
- if self.vocoder_name == "vocos":
359
- gen_audio = vocoder.decode(gen_mel_spec).cpu()
360
- ref_audio = vocoder.decode(ref_mel_spec).cpu()
361
- elif self.vocoder_name == "bigvgan":
362
- gen_audio = vocoder(gen_mel_spec).squeeze(0).cpu()
363
- ref_audio = vocoder(ref_mel_spec).squeeze(0).cpu()
364
-
365
- torchaudio.save(f"{log_samples_path}/step_{global_step}_gen.wav", gen_audio, target_sample_rate)
366
- torchaudio.save(f"{log_samples_path}/step_{global_step}_ref.wav", ref_audio, target_sample_rate)
367
-
368
- if global_step % self.last_per_steps == 0:
369
- self.save_checkpoint(global_step, last=True)
370
-
371
- # Debugging
372
-
373
- print(torch.cuda.memory_allocated() / 1e9, "GB allocated")
374
- print(torch.cuda.memory_reserved() / 1e9, "GB reserved")
375
- torch.cuda.empty_cache()
376
- gc.collect()
377
-
378
- self.save_checkpoint(global_step, last=True)
379
-
380
- self.accelerator.end_training()
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f5_tts/model/utils.py DELETED
@@ -1,191 +0,0 @@
1
- from __future__ import annotations
2
-
3
- import os
4
- import random
5
- from collections import defaultdict
6
- from importlib.resources import files
7
-
8
- import torch
9
- from torch.nn.utils.rnn import pad_sequence
10
-
11
- import jieba
12
- from pypinyin import lazy_pinyin, Style
13
-
14
-
15
- # seed everything
16
-
17
-
18
- def seed_everything(seed=0):
19
- random.seed(seed)
20
- os.environ["PYTHONHASHSEED"] = str(seed)
21
- torch.manual_seed(seed)
22
- torch.cuda.manual_seed(seed)
23
- torch.cuda.manual_seed_all(seed)
24
- torch.backends.cudnn.deterministic = True
25
- torch.backends.cudnn.benchmark = False
26
-
27
-
28
- # helpers
29
-
30
-
31
- def exists(v):
32
- return v is not None
33
-
34
-
35
- def default(v, d):
36
- return v if exists(v) else d
37
-
38
-
39
- # tensor helpers
40
-
41
-
42
- def lens_to_mask(t: int["b"], length: int | None = None) -> bool["b n"]: # noqa: F722 F821
43
- if not exists(length):
44
- length = t.amax()
45
-
46
- seq = torch.arange(length, device=t.device)
47
- return seq[None, :] < t[:, None]
48
-
49
-
50
- def mask_from_start_end_indices(seq_len: int["b"], start: int["b"], end: int["b"]): # noqa: F722 F821
51
- max_seq_len = seq_len.max().item()
52
- seq = torch.arange(max_seq_len, device=start.device).long()
53
- start_mask = seq[None, :] >= start[:, None]
54
- end_mask = seq[None, :] < end[:, None]
55
- return start_mask & end_mask
56
-
57
-
58
- def mask_from_frac_lengths(seq_len: int["b"], frac_lengths: float["b"]): # noqa: F722 F821
59
- lengths = (frac_lengths * seq_len).long()
60
- max_start = seq_len - lengths
61
-
62
- rand = torch.rand_like(frac_lengths)
63
- start = (max_start * rand).long().clamp(min=0)
64
- end = start + lengths
65
-
66
- return mask_from_start_end_indices(seq_len, start, end)
67
-
68
-
69
- def maybe_masked_mean(t: float["b n d"], mask: bool["b n"] = None) -> float["b d"]: # noqa: F722
70
- if not exists(mask):
71
- return t.mean(dim=1)
72
-
73
- t = torch.where(mask[:, :, None], t, torch.tensor(0.0, device=t.device))
74
- num = t.sum(dim=1)
75
- den = mask.float().sum(dim=1)
76
-
77
- return num / den.clamp(min=1.0)
78
-
79
-
80
- # simple utf-8 tokenizer, since paper went character based
81
- def list_str_to_tensor(text: list[str], padding_value=-1) -> int["b nt"]: # noqa: F722
82
- list_tensors = [torch.tensor([*bytes(t, "UTF-8")]) for t in text] # ByT5 style
83
- text = pad_sequence(list_tensors, padding_value=padding_value, batch_first=True)
84
- return text
85
-
86
-
87
- # char tokenizer, based on custom dataset's extracted .txt file
88
- def list_str_to_idx(
89
- text: list[str] | list[list[str]],
90
- vocab_char_map: dict[str, int], # {char: idx}
91
- padding_value=-1,
92
- ) -> int["b nt"]: # noqa: F722
93
- list_idx_tensors = [torch.tensor([vocab_char_map.get(c, 0) for c in t]) for t in text] # pinyin or char style
94
- text = pad_sequence(list_idx_tensors, padding_value=padding_value, batch_first=True)
95
- return text
96
-
97
-
98
- # Get tokenizer
99
-
100
-
101
- def get_tokenizer(dataset_name, tokenizer: str = "pinyin"):
102
- """
103
- tokenizer - "pinyin" do g2p for only chinese characters, need .txt vocab_file
104
- - "char" for char-wise tokenizer, need .txt vocab_file
105
- - "byte" for utf-8 tokenizer
106
- - "custom" if you're directly passing in a path to the vocab.txt you want to use
107
- vocab_size - if use "pinyin", all available pinyin types, common alphabets (also those with accent) and symbols
108
- - if use "char", derived from unfiltered character & symbol counts of custom dataset
109
- - if use "byte", set to 256 (unicode byte range)
110
- """
111
- if tokenizer in ["pinyin", "char"]:
112
- tokenizer_path = os.path.join(files("f5_tts").joinpath("../../data"), f"{dataset_name}_{tokenizer}/vocab.txt")
113
- with open(tokenizer_path, "r", encoding="utf-8") as f:
114
- vocab_char_map = {}
115
- for i, char in enumerate(f):
116
- vocab_char_map[char[:-1]] = i
117
- vocab_size = len(vocab_char_map)
118
- assert vocab_char_map[" "] == 0, "make sure space is of idx 0 in vocab.txt, cuz 0 is used for unknown char"
119
-
120
- elif tokenizer == "byte":
121
- vocab_char_map = None
122
- vocab_size = 256
123
-
124
- elif tokenizer == "custom":
125
- with open(dataset_name, "r", encoding="utf-8") as f:
126
- vocab_char_map = {}
127
- for i, char in enumerate(f):
128
- vocab_char_map[char[:-1]] = i
129
- vocab_size = len(vocab_char_map)
130
-
131
- return vocab_char_map, vocab_size
132
-
133
-
134
- # convert char to pinyin
135
-
136
- jieba.initialize()
137
- print("Word segmentation module jieba initialized.\n")
138
-
139
-
140
- def convert_char_to_pinyin(text_list, polyphone=True):
141
- final_text_list = []
142
- custom_trans = str.maketrans(
143
- {";": ",", "“": '"', "”": '"', "‘": "'", "’": "'"}
144
- ) # add custom trans here, to address oov
145
-
146
- def is_chinese(c):
147
- return (
148
- "\u3100" <= c <= "\u9fff" # common chinese characters
149
- )
150
-
151
- for text in text_list:
152
- char_list = []
153
- text = text.translate(custom_trans)
154
- for seg in jieba.cut(text):
155
- seg_byte_len = len(bytes(seg, "UTF-8"))
156
- if seg_byte_len == len(seg): # if pure alphabets and symbols
157
- if char_list and seg_byte_len > 1 and char_list[-1] not in " :'\"":
158
- char_list.append(" ")
159
- char_list.extend(seg)
160
- elif polyphone and seg_byte_len == 3 * len(seg): # if pure east asian characters
161
- seg_ = lazy_pinyin(seg, style=Style.TONE3, tone_sandhi=True)
162
- for i, c in enumerate(seg):
163
- if is_chinese(c):
164
- char_list.append(" ")
165
- char_list.append(seg_[i])
166
- else: # if mixed characters, alphabets and symbols
167
- for c in seg:
168
- if ord(c) < 256:
169
- char_list.extend(c)
170
- elif is_chinese(c):
171
- char_list.append(" ")
172
- char_list.extend(lazy_pinyin(c, style=Style.TONE3, tone_sandhi=True))
173
- else:
174
- char_list.append(c)
175
- final_text_list.append(char_list)
176
-
177
- return final_text_list
178
-
179
-
180
- # filter func for dirty data with many repetitions
181
-
182
-
183
- def repetition_found(text, length=2, tolerance=10):
184
- pattern_count = defaultdict(int)
185
- for i in range(len(text) - length + 1):
186
- pattern = text[i : i + length]
187
- pattern_count[pattern] += 1
188
- for pattern, count in pattern_count.items():
189
- if count > tolerance:
190
- return True
191
- return False
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f5_tts/scripts/count_max_epoch.py DELETED
@@ -1,33 +0,0 @@
1
- """ADAPTIVE BATCH SIZE"""
2
-
3
- print("Adaptive batch size: using grouping batch sampler, frames_per_gpu fixed fed in")
4
- print(" -> least padding, gather wavs with accumulated frames in a batch\n")
5
-
6
- # data
7
- total_hours = 95282
8
- mel_hop_length = 256
9
- mel_sampling_rate = 24000
10
-
11
- # target
12
- wanted_max_updates = 1000000
13
-
14
- # train params
15
- gpus = 8
16
- frames_per_gpu = 38400 # 8 * 38400 = 307200
17
- grad_accum = 1
18
-
19
- # intermediate
20
- mini_batch_frames = frames_per_gpu * grad_accum * gpus
21
- mini_batch_hours = mini_batch_frames * mel_hop_length / mel_sampling_rate / 3600
22
- updates_per_epoch = total_hours / mini_batch_hours
23
- steps_per_epoch = updates_per_epoch * grad_accum
24
-
25
- # result
26
- epochs = wanted_max_updates / updates_per_epoch
27
- print(f"epochs should be set to: {epochs:.0f} ({epochs/grad_accum:.1f} x gd_acum {grad_accum})")
28
- print(f"progress_bar should show approx. 0/{updates_per_epoch:.0f} updates")
29
- print(f" or approx. 0/{steps_per_epoch:.0f} steps")
30
-
31
- # others
32
- print(f"total {total_hours:.0f} hours")
33
- print(f"mini-batch of {mini_batch_frames:.0f} frames, {mini_batch_hours:.2f} hours per mini-batch")
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f5_tts/scripts/count_params_gflops.py DELETED
@@ -1,39 +0,0 @@
1
- import sys
2
- import os
3
-
4
- sys.path.append(os.getcwd())
5
-
6
- from f5_tts.model import CFM, DiT
7
-
8
- import torch
9
- import thop
10
-
11
-
12
- """ ~155M """
13
- # transformer = UNetT(dim = 768, depth = 20, heads = 12, ff_mult = 4)
14
- # transformer = UNetT(dim = 768, depth = 20, heads = 12, ff_mult = 4, text_dim = 512, conv_layers = 4)
15
- # transformer = DiT(dim = 768, depth = 18, heads = 12, ff_mult = 2)
16
- # transformer = DiT(dim = 768, depth = 18, heads = 12, ff_mult = 2, text_dim = 512, conv_layers = 4)
17
- # transformer = DiT(dim = 768, depth = 18, heads = 12, ff_mult = 2, text_dim = 512, conv_layers = 4, long_skip_connection = True)
18
- # transformer = MMDiT(dim = 512, depth = 16, heads = 16, ff_mult = 2)
19
-
20
- """ ~335M """
21
- # FLOPs: 622.1 G, Params: 333.2 M
22
- # transformer = UNetT(dim = 1024, depth = 24, heads = 16, ff_mult = 4)
23
- # FLOPs: 363.4 G, Params: 335.8 M
24
- transformer = DiT(dim=1024, depth=22, heads=16, ff_mult=2, text_dim=512, conv_layers=4)
25
-
26
-
27
- model = CFM(transformer=transformer)
28
- target_sample_rate = 24000
29
- n_mel_channels = 100
30
- hop_length = 256
31
- duration = 20
32
- frame_length = int(duration * target_sample_rate / hop_length)
33
- text_length = 150
34
-
35
- flops, params = thop.profile(
36
- model, inputs=(torch.randn(1, frame_length, n_mel_channels), torch.zeros(1, text_length, dtype=torch.long))
37
- )
38
- print(f"FLOPs: {flops / 1e9} G")
39
- print(f"Params: {params / 1e6} M")
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f5_tts/socket_server.py DELETED
@@ -1,159 +0,0 @@
1
- import socket
2
- import struct
3
- import torch
4
- import torchaudio
5
- from threading import Thread
6
-
7
-
8
- import gc
9
- import traceback
10
-
11
-
12
- from infer.utils_infer import infer_batch_process, preprocess_ref_audio_text, load_vocoder, load_model
13
- from model.backbones.dit import DiT
14
-
15
-
16
- class TTSStreamingProcessor:
17
- def __init__(self, ckpt_file, vocab_file, ref_audio, ref_text, device=None, dtype=torch.float32):
18
- self.device = device or ("cuda" if torch.cuda.is_available() else "cpu")
19
-
20
- # Load the model using the provided checkpoint and vocab files
21
- self.model = load_model(
22
- model_cls=DiT,
23
- model_cfg=dict(dim=1024, depth=22, heads=16, ff_mult=2, text_dim=512, conv_layers=4),
24
- ckpt_path=ckpt_file,
25
- mel_spec_type="vocos", # or "bigvgan" depending on vocoder
26
- vocab_file=vocab_file,
27
- ode_method="euler",
28
- use_ema=True,
29
- device=self.device,
30
- ).to(self.device, dtype=dtype)
31
-
32
- # Load the vocoder
33
- self.vocoder = load_vocoder(is_local=False)
34
-
35
- # Set sampling rate for streaming
36
- self.sampling_rate = 24000 # Consistency with client
37
-
38
- # Set reference audio and text
39
- self.ref_audio = ref_audio
40
- self.ref_text = ref_text
41
-
42
- # Warm up the model
43
- self._warm_up()
44
-
45
- def _warm_up(self):
46
- """Warm up the model with a dummy input to ensure it's ready for real-time processing."""
47
- print("Warming up the model...")
48
- ref_audio, ref_text = preprocess_ref_audio_text(self.ref_audio, self.ref_text)
49
- audio, sr = torchaudio.load(ref_audio)
50
- gen_text = "Warm-up text for the model."
51
-
52
- # Pass the vocoder as an argument here
53
- infer_batch_process((audio, sr), ref_text, [gen_text], self.model, self.vocoder, device=self.device)
54
- print("Warm-up completed.")
55
-
56
- def generate_stream(self, text, play_steps_in_s=0.5):
57
- """Generate audio in chunks and yield them in real-time."""
58
- # Preprocess the reference audio and text
59
- ref_audio, ref_text = preprocess_ref_audio_text(self.ref_audio, self.ref_text)
60
-
61
- # Load reference audio
62
- audio, sr = torchaudio.load(ref_audio)
63
-
64
- # Run inference for the input text
65
- audio_chunk, final_sample_rate, _ = infer_batch_process(
66
- (audio, sr),
67
- ref_text,
68
- [text],
69
- self.model,
70
- self.vocoder,
71
- device=self.device, # Pass vocoder here
72
- )
73
-
74
- # Break the generated audio into chunks and send them
75
- chunk_size = int(final_sample_rate * play_steps_in_s)
76
-
77
- if len(audio_chunk) < chunk_size:
78
- packed_audio = struct.pack(f"{len(audio_chunk)}f", *audio_chunk)
79
- yield packed_audio
80
- return
81
-
82
- for i in range(0, len(audio_chunk), chunk_size):
83
- chunk = audio_chunk[i : i + chunk_size]
84
-
85
- # Check if it's the final chunk
86
- if i + chunk_size >= len(audio_chunk):
87
- chunk = audio_chunk[i:]
88
-
89
- # Send the chunk if it is not empty
90
- if len(chunk) > 0:
91
- packed_audio = struct.pack(f"{len(chunk)}f", *chunk)
92
- yield packed_audio
93
-
94
-
95
- def handle_client(client_socket, processor):
96
- try:
97
- while True:
98
- # Receive data from the client
99
- data = client_socket.recv(1024).decode("utf-8")
100
- if not data:
101
- break
102
-
103
- try:
104
- # The client sends the text input
105
- text = data.strip()
106
-
107
- # Generate and stream audio chunks
108
- for audio_chunk in processor.generate_stream(text):
109
- client_socket.sendall(audio_chunk)
110
-
111
- # Send end-of-audio signal
112
- client_socket.sendall(b"END_OF_AUDIO")
113
-
114
- except Exception as inner_e:
115
- print(f"Error during processing: {inner_e}")
116
- traceback.print_exc() # Print the full traceback to diagnose the issue
117
- break
118
-
119
- except Exception as e:
120
- print(f"Error handling client: {e}")
121
- traceback.print_exc()
122
- finally:
123
- client_socket.close()
124
-
125
-
126
- def start_server(host, port, processor):
127
- server = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
128
- server.bind((host, port))
129
- server.listen(5)
130
- print(f"Server listening on {host}:{port}")
131
-
132
- while True:
133
- client_socket, addr = server.accept()
134
- print(f"Accepted connection from {addr}")
135
- client_handler = Thread(target=handle_client, args=(client_socket, processor))
136
- client_handler.start()
137
-
138
-
139
- if __name__ == "__main__":
140
- try:
141
- # Load the model and vocoder using the provided files
142
- ckpt_file = "" # pointing your checkpoint "ckpts/model/model_1096.pt"
143
- vocab_file = "" # Add vocab file path if needed
144
- ref_audio = "" # add ref audio"./tests/ref_audio/reference.wav"
145
- ref_text = ""
146
-
147
- # Initialize the processor with the model and vocoder
148
- processor = TTSStreamingProcessor(
149
- ckpt_file=ckpt_file,
150
- vocab_file=vocab_file,
151
- ref_audio=ref_audio,
152
- ref_text=ref_text,
153
- dtype=torch.float32,
154
- )
155
-
156
- # Start the server
157
- start_server("0.0.0.0", 9998, processor)
158
- except KeyboardInterrupt:
159
- gc.collect()
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f5_tts/train/README.md DELETED
@@ -1,82 +0,0 @@
1
- # Training
2
-
3
- ## Prepare Dataset
4
-
5
- Example data processing scripts, and you may tailor your own one along with a Dataset class in `src/f5_tts/model/dataset.py`.
6
-
7
- ### 1. Some specific Datasets preparing scripts
8
- Download corresponding dataset first, and fill in the path in scripts.
9
-
10
- ```bash
11
- # Prepare the Emilia dataset
12
- python src/f5_tts/train/datasets/prepare_emilia.py
13
-
14
- # Prepare the Wenetspeech4TTS dataset
15
- python src/f5_tts/train/datasets/prepare_wenetspeech4tts.py
16
-
17
- # Prepare the LibriTTS dataset
18
- python src/f5_tts/train/datasets/prepare_libritts.py
19
-
20
- # Prepare the LJSpeech dataset
21
- python src/f5_tts/train/datasets/prepare_ljspeech.py
22
- ```
23
-
24
- ### 2. Create custom dataset with metadata.csv
25
- Use guidance see [#57 here](https://github.com/SWivid/F5-TTS/discussions/57#discussioncomment-10959029).
26
-
27
- ```bash
28
- python src/f5_tts/train/datasets/prepare_csv_wavs.py
29
- ```
30
-
31
- ## Training & Finetuning
32
-
33
- Once your datasets are prepared, you can start the training process.
34
-
35
- ### 1. Training script used for pretrained model
36
-
37
- ```bash
38
- # setup accelerate config, e.g. use multi-gpu ddp, fp16
39
- # will be to: ~/.cache/huggingface/accelerate/default_config.yaml
40
- accelerate config
41
-
42
- # .yaml files are under src/f5_tts/configs directory
43
- accelerate launch src/f5_tts/train/train.py --config-name F5TTS_Base_train.yaml
44
-
45
- # possible to overwrite accelerate and hydra config
46
- accelerate launch --mixed_precision=fp16 src/f5_tts/train/train.py --config-name F5TTS_Small_train.yaml ++datasets.batch_size_per_gpu=19200
47
- ```
48
-
49
- ### 2. Finetuning practice
50
- Discussion board for Finetuning [#57](https://github.com/SWivid/F5-TTS/discussions/57).
51
-
52
- Gradio UI training/finetuning with `src/f5_tts/train/finetune_gradio.py` see [#143](https://github.com/SWivid/F5-TTS/discussions/143).
53
-
54
- 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.
55
-
56
- ### 3. Wandb Logging
57
-
58
- The `wandb/` dir will be created under path you run training/finetuning scripts.
59
-
60
- By default, the training script does NOT use logging (assuming you didn't manually log in using `wandb login`).
61
-
62
- To turn on wandb logging, you can either:
63
-
64
- 1. Manually login with `wandb login`: Learn more [here](https://docs.wandb.ai/ref/cli/wandb-login)
65
- 2. Automatically login programmatically by setting an environment variable: Get an API KEY at https://wandb.ai/site/ and set the environment variable as follows:
66
-
67
- On Mac & Linux:
68
-
69
- ```
70
- export WANDB_API_KEY=<YOUR WANDB API KEY>
71
- ```
72
-
73
- On Windows:
74
-
75
- ```
76
- set WANDB_API_KEY=<YOUR WANDB API KEY>
77
- ```
78
- Moreover, if you couldn't access Wandb and want to log metrics offline, you can the environment variable as follows:
79
-
80
- ```
81
- export WANDB_MODE=offline
82
- ```
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f5_tts/train/datasets/prepare_csv_wavs.py DELETED
@@ -1,166 +0,0 @@
1
- import os
2
- import sys
3
-
4
- sys.path.append(os.getcwd())
5
-
6
- import argparse
7
- import csv
8
- import json
9
- import shutil
10
- from importlib.resources import files
11
- from pathlib import Path
12
- from concurrent.futures import ThreadPoolExecutor, as_completed
13
-
14
- import torchaudio
15
- from tqdm import tqdm
16
- from datasets.arrow_writer import ArrowWriter
17
-
18
- from f5_tts.model.utils import (
19
- convert_char_to_pinyin,
20
- )
21
-
22
-
23
- # Increase the field size limit
24
- csv.field_size_limit(sys.maxsize)
25
-
26
- # PRETRAINED_VOCAB_PATH = files("f5_tts").joinpath("../../data/Emilia_ZH_EN_pinyin/vocab.txt")
27
- PRETRAINED_VOCAB_PATH = Path("/home/tts/ttsteam/repos/F5-TTS/ckpts/vocab.txt")
28
-
29
-
30
- def is_csv_wavs_format(input_dataset_dir):
31
-
32
- # import pdb;pdb.set_trace()
33
-
34
- fpath = Path(input_dataset_dir)
35
- metadata = fpath / "metadata.csv"
36
- wavs = fpath / "wavs"
37
- return metadata.exists() and metadata.is_file() and wavs.exists() and wavs.is_dir()
38
-
39
-
40
- def prepare_csv_wavs_dir(input_dir, num_threads=16): # Added num_threads parameter
41
- print("Inside prepare csv wavs dir!")
42
- # assert is_csv_wavs_format(input_dir), f"not csv_wavs format: {input_dir}"
43
- input_dir = Path(input_dir)
44
- metadata_path = input_dir / "metadata.csv"
45
- audio_path_text_pairs = read_audio_text_pairs(metadata_path.as_posix())
46
-
47
- sub_result, durations = [], []
48
- vocab_set = set()
49
- polyphone = True
50
-
51
- def process_audio(audio_path_text):
52
- audio_path, text = audio_path_text
53
- if not Path(audio_path).exists():
54
- print(f"audio {audio_path} not found, skipping")
55
- return None
56
- audio_duration = get_audio_duration(audio_path)
57
- text = convert_char_to_pinyin([text], polyphone=polyphone)[0]
58
- return {"audio_path": audio_path, "text": text, "duration": audio_duration}, audio_duration
59
-
60
- with ThreadPoolExecutor(max_workers=num_threads) as executor: # Set max_workers
61
- futures = {executor.submit(process_audio, pair): pair for pair in audio_path_text_pairs}
62
-
63
- # Use tqdm to track progress
64
- for future in tqdm(as_completed(futures), total=len(futures), desc="Processing audio files"):
65
- result = future.result()
66
- if result is not None:
67
- # print("result is: ", result)
68
- sub_result.append(result[0])
69
- durations.append(result[1])
70
- vocab_set.update(list(result[0]['text']))
71
-
72
- return sub_result, durations, vocab_set
73
-
74
-
75
- def get_audio_duration(audio_path):
76
- audio, sample_rate = torchaudio.load(audio_path)
77
- return audio.shape[1] / sample_rate
78
-
79
-
80
- def read_audio_text_pairs(csv_file_path):
81
- audio_text_pairs = []
82
-
83
- parent = Path(csv_file_path).parent
84
- with open(csv_file_path, mode="r", newline="", encoding="utf-8-sig") as csvfile:
85
- reader = csv.reader(csvfile, delimiter="|")
86
- next(reader) # Skip the header row
87
- for row in reader:
88
- if len(row) >= 2:
89
- audio_file = row[0].strip() # First column: audio file path
90
- text = row[1].strip() # Second column: text
91
- # audio_file_path = parent / audio_file
92
- audio_file_path = audio_file
93
- audio_text_pairs.append((Path(audio_file_path).as_posix(), text))
94
-
95
- return audio_text_pairs
96
-
97
-
98
- def save_prepped_dataset(out_dir, result, duration_list, text_vocab_set, is_finetune):
99
- out_dir = Path(out_dir)
100
- # save preprocessed dataset to disk
101
- out_dir.mkdir(exist_ok=True, parents=True)
102
- print(f"\nSaving to {out_dir} ...")
103
-
104
- # dataset = Dataset.from_dict({"audio_path": audio_path_list, "text": text_list, "duration": duration_list}) # oom
105
- # dataset.save_to_disk(f"{out_dir}/raw", max_shard_size="2GB")
106
- raw_arrow_path = out_dir / "raw.arrow"
107
- with ArrowWriter(path=raw_arrow_path.as_posix(), writer_batch_size=1) as writer:
108
- for line in tqdm(result, desc="Writing to raw.arrow ..."):
109
- writer.write(line)
110
-
111
- # dup a json separately saving duration in case for DynamicBatchSampler ease
112
- dur_json_path = out_dir / "duration.json"
113
- with open(dur_json_path.as_posix(), "w", encoding="utf-8") as f:
114
- json.dump({"duration": duration_list}, f, ensure_ascii=False)
115
-
116
- # vocab map, i.e. tokenizer
117
- # add alphabets and symbols (optional, if plan to ft on de/fr etc.)
118
- # if tokenizer == "pinyin":
119
- # text_vocab_set.update([chr(i) for i in range(32, 127)] + [chr(i) for i in range(192, 256)])
120
- voca_out_path = out_dir / "vocab.txt"
121
- with open(voca_out_path.as_posix(), "w") as f:
122
- for vocab in sorted(text_vocab_set):
123
- f.write(vocab + "\n")
124
-
125
- voca_out_path = out_dir / "new_vocab.txt"
126
- with open(voca_out_path.as_posix(), "w") as f:
127
- for vocab in sorted(text_vocab_set):
128
- f.write(vocab + "\n")
129
-
130
- if is_finetune:
131
- file_vocab_finetune = PRETRAINED_VOCAB_PATH.as_posix()
132
- shutil.copy2(file_vocab_finetune, voca_out_path)
133
- else:
134
- with open(voca_out_path, "w") as f:
135
- for vocab in sorted(text_vocab_set):
136
- f.write(vocab + "\n")
137
-
138
- dataset_name = out_dir.stem
139
- print(f"\nFor {dataset_name}, sample count: {len(result)}")
140
- print(f"For {dataset_name}, vocab size is: {len(text_vocab_set)}")
141
- print(f"For {dataset_name}, total {sum(duration_list)/3600:.2f} hours")
142
-
143
-
144
- def prepare_and_save_set(inp_dir, out_dir, is_finetune: bool = True):
145
- if is_finetune:
146
- print("Inside finetuning ...")
147
- assert PRETRAINED_VOCAB_PATH.exists(), f"pretrained vocab.txt not found: {PRETRAINED_VOCAB_PATH}"
148
- sub_result, durations, vocab_set = prepare_csv_wavs_dir(inp_dir)
149
- save_prepped_dataset(out_dir, sub_result, durations, vocab_set, is_finetune)
150
-
151
-
152
- def cli():
153
- # finetune: python scripts/prepare_csv_wavs.py /path/to/input_dir /path/to/output_dir_pinyin
154
- # pretrain: python scripts/prepare_csv_wavs.py /path/to/output_dir_pinyin --pretrain
155
- parser = argparse.ArgumentParser(description="Prepare and save dataset.")
156
- parser.add_argument("inp_dir", type=str, help="Input directory containing the data.")
157
- parser.add_argument("out_dir", type=str, help="Output directory to save the prepared data.")
158
- parser.add_argument("--pretrain", action="store_true", help="Enable for new pretrain, otherwise is a fine-tune")
159
-
160
- args = parser.parse_args()
161
-
162
- prepare_and_save_set(args.inp_dir, args.out_dir, is_finetune=not args.pretrain)
163
-
164
-
165
- if __name__ == "__main__":
166
- cli()
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f5_tts/train/datasets/prepare_csvs_wavs_v2.py DELETED
@@ -1,160 +0,0 @@
1
- import os
2
- import sys
3
-
4
- sys.path.append(os.getcwd())
5
-
6
- import argparse
7
- import csv
8
- import json
9
- import shutil
10
- from importlib.resources import files
11
- from pathlib import Path
12
- from concurrent.futures import ThreadPoolExecutor, as_completed
13
-
14
- import torchaudio
15
- from tqdm import tqdm
16
- from datasets.arrow_writer import ArrowWriter
17
-
18
- from f5_tts.model.utils import (
19
- convert_char_to_pinyin,
20
- )
21
-
22
-
23
- # Increase the field size limit
24
- csv.field_size_limit(sys.maxsize)
25
-
26
- PRETRAINED_VOCAB_PATH = Path("/home/tts/ttsteam/repos/F5-TTS/ckpts/vocab.txt")
27
-
28
-
29
- def is_csv_wavs_format(input_dataset_dir):
30
- fpath = Path(input_dataset_dir)
31
- metadata = fpath / "metadata.csv"
32
- wavs = fpath / "wavs"
33
- return metadata.exists() and metadata.is_file() and wavs.exists() and wavs.is_dir()
34
-
35
-
36
- def prepare_csv_wavs_dir(input_dir, num_threads=16): # Added num_threads parameter
37
- print("Inside prepare csv wavs dir!")
38
- input_dir = Path(input_dir)
39
- metadata_path = input_dir / "metadata.csv"
40
- audio_path_text_pairs = read_audio_text_pairs(metadata_path.as_posix())
41
-
42
- sub_result, durations = [], []
43
- vocab_set = set()
44
- polyphone = True
45
-
46
- def process_audio(audio_path_text):
47
- audio_path, text = audio_path_text
48
- if not Path(audio_path).exists():
49
- print(f"audio {audio_path} not found, skipping")
50
- return None
51
- audio_duration = get_audio_duration(audio_path)
52
- text = convert_char_to_pinyin([text], polyphone=polyphone)[0]
53
- return {"audio_path": audio_path, "text": text, "duration": audio_duration}, audio_duration
54
-
55
- with ThreadPoolExecutor(max_workers=num_threads) as executor: # Set max_workers
56
- futures = {executor.submit(process_audio, pair): pair for pair in audio_path_text_pairs}
57
-
58
- # Use tqdm to track progress
59
- for future in tqdm(as_completed(futures), total=len(futures), desc="Processing audio files"):
60
- result = future.result()
61
- if result is not None:
62
- # print("result is: ", result)
63
- sub_result.append(result[0])
64
- durations.append(result[1])
65
- vocab_set.update(list(result[0]['text']))
66
-
67
- return sub_result, durations, vocab_set
68
-
69
-
70
- def get_audio_duration(audio_path):
71
- audio, sample_rate = torchaudio.load(audio_path)
72
- return audio.shape[1] / sample_rate
73
-
74
-
75
- def read_audio_text_pairs(csv_file_path):
76
- audio_text_pairs = []
77
-
78
- parent = Path(csv_file_path).parent
79
- with open(csv_file_path, mode="r", newline="", encoding="utf-8-sig") as csvfile:
80
- reader = csv.reader(csvfile, delimiter="|")
81
- next(reader) # Skip the header row
82
- for row in reader:
83
- if len(row) == 2: # Only if len == 2, else skip the row as could be noisy. IN22 texts could use '|' as a delimiter
84
- audio_file = row[0].strip() # First column: audio file path
85
- text = row[1].strip() # Second column: text
86
- # audio_file_path = parent / audio_file
87
- audio_file_path = audio_file
88
- audio_text_pairs.append((Path(audio_file_path).as_posix(), text))
89
- return audio_text_pairs
90
-
91
-
92
- def save_prepped_dataset(out_dir, result, duration_list, text_vocab_set, is_finetune):
93
- out_dir = Path(out_dir)
94
- # save preprocessed dataset to disk
95
- out_dir.mkdir(exist_ok=True, parents=True)
96
- print(f"\nSaving to {out_dir} ...")
97
-
98
- # dataset = Dataset.from_dict({"audio_path": audio_path_list, "text": text_list, "duration": duration_list}) # oom
99
- # dataset.save_to_disk(f"{out_dir}/raw", max_shard_size="2GB")
100
- raw_arrow_path = out_dir / "raw.arrow"
101
- with ArrowWriter(path=raw_arrow_path.as_posix(), writer_batch_size=1) as writer:
102
- for line in tqdm(result, desc="Writing to raw.arrow ..."):
103
- writer.write(line)
104
-
105
- # dup a json separately saving duration in case for DynamicBatchSampler ease
106
- dur_json_path = out_dir / "duration.json"
107
- with open(dur_json_path.as_posix(), "w", encoding="utf-8") as f:
108
- json.dump({"duration": duration_list}, f, ensure_ascii=False)
109
-
110
- # vocab map, i.e. tokenizer
111
- # add alphabets and symbols (optional, if plan to ft on de/fr etc.)
112
- # if tokenizer == "pinyin":
113
- # text_vocab_set.update([chr(i) for i in range(32, 127)] + [chr(i) for i in range(192, 256)])
114
- voca_out_path = out_dir / "vocab.txt"
115
- with open(voca_out_path.as_posix(), "w") as f:
116
- for vocab in sorted(text_vocab_set):
117
- f.write(vocab + "\n")
118
-
119
- voca_out_path = out_dir / "new_vocab.txt"
120
- with open(voca_out_path.as_posix(), "w") as f:
121
- for vocab in sorted(text_vocab_set):
122
- f.write(vocab + "\n")
123
-
124
- if is_finetune:
125
- file_vocab_finetune = PRETRAINED_VOCAB_PATH.as_posix()
126
- shutil.copy2(file_vocab_finetune, voca_out_path)
127
- else:
128
- with open(voca_out_path, "w") as f:
129
- for vocab in sorted(text_vocab_set):
130
- f.write(vocab + "\n")
131
-
132
- dataset_name = out_dir.stem
133
- print(f"\nFor {dataset_name}, sample count: {len(result)}")
134
- print(f"For {dataset_name}, vocab size is: {len(text_vocab_set)}")
135
- print(f"For {dataset_name}, total {sum(duration_list)/3600:.2f} hours")
136
-
137
-
138
- def prepare_and_save_set(inp_dir, out_dir, is_finetune: bool = True):
139
- if is_finetune:
140
- print("Inside finetuning ...")
141
- assert PRETRAINED_VOCAB_PATH.exists(), f"pretrained vocab.txt not found: {PRETRAINED_VOCAB_PATH}"
142
- sub_result, durations, vocab_set = prepare_csv_wavs_dir(inp_dir)
143
- save_prepped_dataset(out_dir, sub_result, durations, vocab_set, is_finetune)
144
-
145
-
146
- def cli():
147
- # finetune: python scripts/prepare_csv_wavs.py /path/to/input_dir /path/to/output_dir_pinyin
148
- # pretrain: python scripts/prepare_csv_wavs.py /path/to/output_dir_pinyin --pretrain
149
- parser = argparse.ArgumentParser(description="Prepare and save dataset.")
150
- parser.add_argument("inp_dir", type=str, help="Input directory containing the data.")
151
- parser.add_argument("out_dir", type=str, help="Output directory to save the prepared data.")
152
- parser.add_argument("--pretrain", action="store_true", help="Enable for new pretrain, otherwise is a fine-tune")
153
-
154
- args = parser.parse_args()
155
-
156
- prepare_and_save_set(args.inp_dir, args.out_dir, is_finetune=not args.pretrain)
157
-
158
-
159
- if __name__ == "__main__":
160
- cli()
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f5_tts/train/datasets/prepare_csvs_wavs_v3.py DELETED
@@ -1,168 +0,0 @@
1
- import os
2
- import sys
3
-
4
- sys.path.append(os.getcwd())
5
-
6
- import argparse
7
- import csv
8
- import json
9
- import shutil
10
- from importlib.resources import files
11
- from pathlib import Path
12
- from concurrent.futures import ThreadPoolExecutor, as_completed
13
-
14
- import torchaudio
15
- from tqdm import tqdm
16
- from datasets.arrow_writer import ArrowWriter
17
-
18
- from f5_tts.model.utils import (
19
- convert_char_to_pinyin,
20
- )
21
-
22
-
23
- # Increase the field size limit
24
- csv.field_size_limit(sys.maxsize)
25
-
26
- PRETRAINED_VOCAB_PATH = Path("/projects/data/ttsteam/repos/f5/data/in22_5k/vocab.txt")
27
-
28
-
29
- def is_csv_wavs_format(input_dataset_dir):
30
- fpath = Path(input_dataset_dir)
31
- metadata = fpath / "metadata.csv"
32
- wavs = fpath / "wavs"
33
- return metadata.exists() and metadata.is_file() and wavs.exists() and wavs.is_dir()
34
-
35
-
36
- def prepare_csv_wavs_dir(input_dir, num_threads=16): # Added num_threads parameter
37
- print("Inside prepare csv wavs dir!")
38
- input_dir = Path(input_dir)
39
- metadata_path = input_dir / "metadata.csv"
40
- audio_path_text_pairs = read_audio_text_pairs(metadata_path.as_posix())
41
-
42
- sub_result, durations = [], []
43
- vocab_set = set()
44
- polyphone = True
45
-
46
- def process_audio(audio_path_text):
47
- audio_path, text = audio_path_text
48
- if not Path(audio_path).exists():
49
- print(f"audio {audio_path} not found, skipping")
50
- return None
51
- audio_duration = get_audio_duration(audio_path)
52
- text = convert_char_to_pinyin([text], polyphone=polyphone)[0]
53
- return {"audio_path": audio_path, "text": text, "duration": audio_duration}, audio_duration
54
-
55
- with ThreadPoolExecutor(max_workers=num_threads) as executor: # Set max_workers
56
- futures = {executor.submit(process_audio, pair): pair for pair in tqdm(audio_path_text_pairs, desc='submit')}
57
-
58
- # Use tqdm to track progress
59
- for future in tqdm(as_completed(futures), total=len(futures), desc="Processing audio files"):
60
- result = future.result()
61
- if result is not None:
62
- # print("result is: ", result)
63
- aud_dur = result[1]
64
- if aud_dur < 0.1 or aud_dur > 30:
65
- continue
66
- sub_result.append(result[0])
67
- durations.append(result[1])
68
- vocab_set.update(list(result[0]['text']))
69
- else:
70
- print("Result not found: ", futures[future])
71
-
72
- return sub_result, durations, vocab_set
73
-
74
-
75
- def get_audio_duration(audio_path):
76
- audio, sample_rate = torchaudio.load(audio_path)
77
- return audio.shape[1] / sample_rate
78
-
79
-
80
- def read_audio_text_pairs(csv_file_path):
81
- audio_text_pairs = []
82
-
83
- parent = Path(csv_file_path).parent
84
- with open(csv_file_path, mode="r", newline="", encoding="utf-8-sig") as csvfile:
85
- reader = csv.reader(csvfile, delimiter="|")
86
- next(reader) # Skip the header row
87
- for row in tqdm(reader):
88
- if len(row) == 2: # Only if len == 2, else skip the row as could be noisy. IN22 texts could use '|' as a delimiter
89
- audio_file = row[0].strip() # First column: audio file path
90
- text = row[1].strip() # Second column: text
91
- # audio_file_path = parent / audio_file
92
- audio_file_path = audio_file
93
- audio_text_pairs.append((Path(audio_file_path).as_posix(), text))
94
- else:
95
- print("skipped", row)
96
- return audio_text_pairs
97
-
98
-
99
- def save_prepped_dataset(out_dir, result, duration_list, text_vocab_set, is_finetune):
100
- out_dir = Path(out_dir)
101
- # save preprocessed dataset to disk
102
- out_dir.mkdir(exist_ok=True, parents=True)
103
- print(f"\nSaving to {out_dir} ...")
104
-
105
- # dataset = Dataset.from_dict({"audio_path": audio_path_list, "text": text_list, "duration": duration_list}) # oom
106
- # dataset.save_to_disk(f"{out_dir}/raw", max_shard_size="2GB")
107
- raw_arrow_path = out_dir / "raw.arrow"
108
- with ArrowWriter(path=raw_arrow_path.as_posix(), writer_batch_size=1) as writer:
109
- for line in tqdm(result, desc="Writing to raw.arrow ..."):
110
- writer.write(line)
111
-
112
- # dup a json separately saving duration in case for DynamicBatchSampler ease
113
- dur_json_path = out_dir / "duration.json"
114
- with open(dur_json_path.as_posix(), "w", encoding="utf-8") as f:
115
- json.dump({"duration": duration_list}, f, ensure_ascii=False)
116
-
117
- # vocab map, i.e. tokenizer
118
- # add alphabets and symbols (optional, if plan to ft on de/fr etc.)
119
- # if tokenizer == "pinyin":
120
- # text_vocab_set.update([chr(i) for i in range(32, 127)] + [chr(i) for i in range(192, 256)])
121
- voca_out_path = out_dir / "new_vocab.txt"
122
- with open(voca_out_path.as_posix(), "w") as f:
123
- for vocab in sorted(text_vocab_set):
124
- f.write(vocab + "\n")
125
-
126
- # voca_out_path = out_dir / "new_vocab.txt"
127
- # with open(voca_out_path.as_posix(), "w") as f:
128
- # for vocab in sorted(text_vocab_set):
129
- # f.write(vocab + "\n")
130
-
131
- voca_out_path = out_dir / "vocab.txt"
132
- if is_finetune:
133
- file_vocab_finetune = PRETRAINED_VOCAB_PATH.as_posix()
134
- shutil.copy2(file_vocab_finetune, voca_out_path)
135
- else:
136
- with open(voca_out_path, "w") as f:
137
- for vocab in sorted(text_vocab_set):
138
- f.write(vocab + "\n")
139
-
140
- dataset_name = out_dir.stem
141
- print(f"\nFor {dataset_name}, sample count: {len(result)}")
142
- print(f"For {dataset_name}, vocab size is: {len(text_vocab_set)}")
143
- print(f"For {dataset_name}, total {sum(duration_list)/3600:.2f} hours")
144
-
145
-
146
- def prepare_and_save_set(inp_dir, out_dir, is_finetune: bool = True):
147
- if is_finetune:
148
- print("Inside finetuning ...")
149
- assert PRETRAINED_VOCAB_PATH.exists(), f"pretrained vocab.txt not found: {PRETRAINED_VOCAB_PATH}"
150
- sub_result, durations, vocab_set = prepare_csv_wavs_dir(inp_dir)
151
- save_prepped_dataset(out_dir, sub_result, durations, vocab_set, is_finetune)
152
-
153
-
154
- def cli():
155
- # finetune: python scripts/prepare_csv_wavs.py /path/to/input_dir /path/to/output_dir_pinyin
156
- # pretrain: python scripts/prepare_csv_wavs.py /path/to/output_dir_pinyin --pretrain
157
- parser = argparse.ArgumentParser(description="Prepare and save dataset.")
158
- parser.add_argument("inp_dir", type=str, help="Input directory containing the data.")
159
- parser.add_argument("out_dir", type=str, help="Output directory to save the prepared data.")
160
- parser.add_argument("--pretrain", action="store_true", help="Enable for new pretrain, otherwise is a fine-tune")
161
-
162
- args = parser.parse_args()
163
-
164
- prepare_and_save_set(args.inp_dir, args.out_dir, is_finetune=not args.pretrain)
165
-
166
-
167
- if __name__ == "__main__":
168
- cli()
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f5_tts/train/datasets/prepare_emilia.py DELETED
@@ -1,230 +0,0 @@
1
- # Emilia Dataset: https://huggingface.co/datasets/amphion/Emilia-Dataset/tree/fc71e07
2
- # if use updated new version, i.e. WebDataset, feel free to modify / draft your own script
3
-
4
- # generate audio text map for Emilia ZH & EN
5
- # evaluate for vocab size
6
-
7
- import os
8
- import sys
9
-
10
- sys.path.append(os.getcwd())
11
-
12
- import json
13
- from concurrent.futures import ProcessPoolExecutor
14
- from importlib.resources import files
15
- from pathlib import Path
16
- from tqdm import tqdm
17
-
18
- from datasets.arrow_writer import ArrowWriter
19
-
20
- from f5_tts.model.utils import (
21
- repetition_found,
22
- convert_char_to_pinyin,
23
- )
24
-
25
-
26
- out_zh = {
27
- "ZH_B00041_S06226",
28
- "ZH_B00042_S09204",
29
- "ZH_B00065_S09430",
30
- "ZH_B00065_S09431",
31
- "ZH_B00066_S09327",
32
- "ZH_B00066_S09328",
33
- }
34
- zh_filters = ["い", "て"]
35
- # seems synthesized audios, or heavily code-switched
36
- out_en = {
37
- "EN_B00013_S00913",
38
- "EN_B00042_S00120",
39
- "EN_B00055_S04111",
40
- "EN_B00061_S00693",
41
- "EN_B00061_S01494",
42
- "EN_B00061_S03375",
43
- "EN_B00059_S00092",
44
- "EN_B00111_S04300",
45
- "EN_B00100_S03759",
46
- "EN_B00087_S03811",
47
- "EN_B00059_S00950",
48
- "EN_B00089_S00946",
49
- "EN_B00078_S05127",
50
- "EN_B00070_S04089",
51
- "EN_B00074_S09659",
52
- "EN_B00061_S06983",
53
- "EN_B00061_S07060",
54
- "EN_B00059_S08397",
55
- "EN_B00082_S06192",
56
- "EN_B00091_S01238",
57
- "EN_B00089_S07349",
58
- "EN_B00070_S04343",
59
- "EN_B00061_S02400",
60
- "EN_B00076_S01262",
61
- "EN_B00068_S06467",
62
- "EN_B00076_S02943",
63
- "EN_B00064_S05954",
64
- "EN_B00061_S05386",
65
- "EN_B00066_S06544",
66
- "EN_B00076_S06944",
67
- "EN_B00072_S08620",
68
- "EN_B00076_S07135",
69
- "EN_B00076_S09127",
70
- "EN_B00065_S00497",
71
- "EN_B00059_S06227",
72
- "EN_B00063_S02859",
73
- "EN_B00075_S01547",
74
- "EN_B00061_S08286",
75
- "EN_B00079_S02901",
76
- "EN_B00092_S03643",
77
- "EN_B00096_S08653",
78
- "EN_B00063_S04297",
79
- "EN_B00063_S04614",
80
- "EN_B00079_S04698",
81
- "EN_B00104_S01666",
82
- "EN_B00061_S09504",
83
- "EN_B00061_S09694",
84
- "EN_B00065_S05444",
85
- "EN_B00063_S06860",
86
- "EN_B00065_S05725",
87
- "EN_B00069_S07628",
88
- "EN_B00083_S03875",
89
- "EN_B00071_S07665",
90
- "EN_B00071_S07665",
91
- "EN_B00062_S04187",
92
- "EN_B00065_S09873",
93
- "EN_B00065_S09922",
94
- "EN_B00084_S02463",
95
- "EN_B00067_S05066",
96
- "EN_B00106_S08060",
97
- "EN_B00073_S06399",
98
- "EN_B00073_S09236",
99
- "EN_B00087_S00432",
100
- "EN_B00085_S05618",
101
- "EN_B00064_S01262",
102
- "EN_B00072_S01739",
103
- "EN_B00059_S03913",
104
- "EN_B00069_S04036",
105
- "EN_B00067_S05623",
106
- "EN_B00060_S05389",
107
- "EN_B00060_S07290",
108
- "EN_B00062_S08995",
109
- }
110
- en_filters = ["ا", "い", "て"]
111
-
112
-
113
- def deal_with_audio_dir(audio_dir):
114
- audio_jsonl = audio_dir.with_suffix(".jsonl")
115
- sub_result, durations = [], []
116
- vocab_set = set()
117
- bad_case_zh = 0
118
- bad_case_en = 0
119
- with open(audio_jsonl, "r") as f:
120
- lines = f.readlines()
121
- for line in tqdm(lines, desc=f"{audio_jsonl.stem}"):
122
- obj = json.loads(line)
123
- text = obj["text"]
124
- if obj["language"] == "zh":
125
- if obj["wav"].split("/")[1] in out_zh or any(f in text for f in zh_filters) or repetition_found(text):
126
- bad_case_zh += 1
127
- continue
128
- else:
129
- text = text.translate(
130
- str.maketrans({",": ",", "!": "!", "?": "?"})
131
- ) # not "。" cuz much code-switched
132
- if obj["language"] == "en":
133
- if (
134
- obj["wav"].split("/")[1] in out_en
135
- or any(f in text for f in en_filters)
136
- or repetition_found(text, length=4)
137
- ):
138
- bad_case_en += 1
139
- continue
140
- if tokenizer == "pinyin":
141
- text = convert_char_to_pinyin([text], polyphone=polyphone)[0]
142
- duration = obj["duration"]
143
- sub_result.append({"audio_path": str(audio_dir.parent / obj["wav"]), "text": text, "duration": duration})
144
- durations.append(duration)
145
- vocab_set.update(list(text))
146
- return sub_result, durations, vocab_set, bad_case_zh, bad_case_en
147
-
148
-
149
- def main():
150
- assert tokenizer in ["pinyin", "char"]
151
- result = []
152
- duration_list = []
153
- text_vocab_set = set()
154
- total_bad_case_zh = 0
155
- total_bad_case_en = 0
156
-
157
- # process raw data
158
- executor = ProcessPoolExecutor(max_workers=max_workers)
159
- futures = []
160
- for lang in langs:
161
- dataset_path = Path(os.path.join(dataset_dir, lang))
162
- [
163
- futures.append(executor.submit(deal_with_audio_dir, audio_dir))
164
- for audio_dir in dataset_path.iterdir()
165
- if audio_dir.is_dir()
166
- ]
167
- for futures in tqdm(futures, total=len(futures)):
168
- sub_result, durations, vocab_set, bad_case_zh, bad_case_en = futures.result()
169
- result.extend(sub_result)
170
- duration_list.extend(durations)
171
- text_vocab_set.update(vocab_set)
172
- total_bad_case_zh += bad_case_zh
173
- total_bad_case_en += bad_case_en
174
- executor.shutdown()
175
-
176
- # save preprocessed dataset to disk
177
- if not os.path.exists(f"{save_dir}"):
178
- os.makedirs(f"{save_dir}")
179
- print(f"\nSaving to {save_dir} ...")
180
-
181
- # dataset = Dataset.from_dict({"audio_path": audio_path_list, "text": text_list, "duration": duration_list}) # oom
182
- # dataset.save_to_disk(f"{save_dir}/raw", max_shard_size="2GB")
183
- with ArrowWriter(path=f"{save_dir}/raw.arrow") as writer:
184
- for line in tqdm(result, desc="Writing to raw.arrow ..."):
185
- writer.write(line)
186
-
187
- # dup a json separately saving duration in case for DynamicBatchSampler ease
188
- with open(f"{save_dir}/duration.json", "w", encoding="utf-8") as f:
189
- json.dump({"duration": duration_list}, f, ensure_ascii=False)
190
-
191
- # vocab map, i.e. tokenizer
192
- # add alphabets and symbols (optional, if plan to ft on de/fr etc.)
193
- # if tokenizer == "pinyin":
194
- # text_vocab_set.update([chr(i) for i in range(32, 127)] + [chr(i) for i in range(192, 256)])
195
- with open(f"{save_dir}/vocab.txt", "w") as f:
196
- for vocab in sorted(text_vocab_set):
197
- f.write(vocab + "\n")
198
-
199
- print(f"\nFor {dataset_name}, sample count: {len(result)}")
200
- print(f"For {dataset_name}, vocab size is: {len(text_vocab_set)}")
201
- print(f"For {dataset_name}, total {sum(duration_list)/3600:.2f} hours")
202
- if "ZH" in langs:
203
- print(f"Bad zh transcription case: {total_bad_case_zh}")
204
- if "EN" in langs:
205
- print(f"Bad en transcription case: {total_bad_case_en}\n")
206
-
207
-
208
- if __name__ == "__main__":
209
- max_workers = 32
210
-
211
- tokenizer = "pinyin" # "pinyin" | "char"
212
- polyphone = True
213
-
214
- langs = ["ZH", "EN"]
215
- dataset_dir = "<SOME_PATH>/Emilia_Dataset/raw"
216
- dataset_name = f"Emilia_{'_'.join(langs)}_{tokenizer}"
217
- save_dir = str(files("f5_tts").joinpath("../../")) + f"/data/{dataset_name}"
218
- print(f"\nPrepare for {dataset_name}, will save to {save_dir}\n")
219
-
220
- main()
221
-
222
- # Emilia ZH & EN
223
- # samples count 37837916 (after removal)
224
- # pinyin vocab size 2543 (polyphone)
225
- # total duration 95281.87 (hours)
226
- # bad zh asr cnt 230435 (samples)
227
- # bad eh asr cnt 37217 (samples)
228
-
229
- # vocab size may be slightly different due to jieba tokenizer and pypinyin (e.g. way of polyphoneme)
230
- # please be careful if using pretrained model, make sure the vocab.txt is same
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f5_tts/train/datasets/prepare_in22_en_10k.py DELETED
@@ -1,170 +0,0 @@
1
- import os
2
- import sys
3
-
4
- sys.path.append(os.getcwd())
5
-
6
- import argparse
7
- import csv
8
- import json
9
- import shutil
10
- from importlib.resources import files
11
- from pathlib import Path
12
- from concurrent.futures import ThreadPoolExecutor, as_completed
13
-
14
- import torchaudio
15
- from tqdm import tqdm
16
- from datasets.arrow_writer import ArrowWriter
17
-
18
- from f5_tts.model.utils import (
19
- convert_char_to_pinyin,
20
- )
21
-
22
-
23
- # Increase the field size limit
24
- csv.field_size_limit(sys.maxsize)
25
-
26
- # PRETRAINED_VOCAB_PATH = Path("/projects/data/ttsteam/repos/f5/data/in22_5k/vocab.txt")
27
-
28
-
29
- def is_csv_wavs_format(input_dataset_dir):
30
- fpath = Path(input_dataset_dir)
31
- metadata = fpath / "metadata.csv"
32
- wavs = fpath / "wavs"
33
- return metadata.exists() and metadata.is_file() and wavs.exists() and wavs.is_dir()
34
-
35
-
36
- def prepare_csv_wavs_dir(input_dir, num_threads=32): # Added num_threads parameter
37
- print("Inside prepare csv wavs dir!")
38
- input_dir = Path(input_dir)
39
- metadata_path = input_dir / "metadata.csv"
40
- audio_path_text_pairs = read_audio_text_pairs(metadata_path.as_posix())
41
-
42
- sub_result, durations = [], []
43
- vocab_set = set()
44
- polyphone = True
45
-
46
- def process_audio(audio_path_text):
47
- audio_path, text = audio_path_text
48
- if not Path(audio_path).exists():
49
- print(f"audio {audio_path} not found, skipping")
50
- return None
51
- audio_duration = get_audio_duration(audio_path)
52
- # print('before', text)
53
- text = convert_char_to_pinyin([text], polyphone=polyphone)[0]
54
- # print('after', text)
55
- return {"audio_path": audio_path, "text": text, "duration": audio_duration}, audio_duration
56
-
57
- with ThreadPoolExecutor(max_workers=num_threads) as executor: # Set max_workers
58
- futures = {executor.submit(process_audio, pair): pair for pair in tqdm(audio_path_text_pairs, desc='submit')}
59
-
60
- # Use tqdm to track progress
61
- for future in tqdm(as_completed(futures), total=len(futures), desc="Processing audio files"):
62
- result = future.result()
63
- if result is not None:
64
- # print("result is: ", result)
65
- aud_dur = result[1]
66
- if aud_dur < 0.1 or aud_dur > 30:
67
- continue
68
- sub_result.append(result[0])
69
- durations.append(result[1])
70
- vocab_set.update(list(result[0]['text']))
71
- else:
72
- print("Result not found: ", futures[future])
73
-
74
- return sub_result, durations, vocab_set
75
-
76
-
77
- def get_audio_duration(audio_path):
78
- audio, sample_rate = torchaudio.load(audio_path)
79
- return audio.shape[1] / sample_rate
80
-
81
-
82
- def read_audio_text_pairs(csv_file_path):
83
- audio_text_pairs = []
84
-
85
- parent = Path(csv_file_path).parent
86
- with open(csv_file_path, mode="r", newline="", encoding="utf-8-sig") as csvfile:
87
- reader = csv.reader(csvfile, delimiter="|")
88
- next(reader) # Skip the header row
89
- for row in tqdm(reader):
90
- if len(row) == 2: # Only if len == 2, else skip the row as could be noisy. IN22 texts could use '|' as a delimiter
91
- audio_file = row[0].strip() # First column: audio file path
92
- text = row[1].strip() # Second column: text
93
- # audio_file_path = parent / audio_file
94
- audio_file_path = audio_file
95
- audio_text_pairs.append((Path(audio_file_path).as_posix(), text))
96
- else:
97
- print("skipped", row)
98
- return audio_text_pairs
99
-
100
-
101
- def save_prepped_dataset(out_dir, result, duration_list, text_vocab_set, is_finetune):
102
- out_dir = Path(out_dir)
103
- # save preprocessed dataset to disk
104
- out_dir.mkdir(exist_ok=True, parents=True)
105
- print(f"\nSaving to {out_dir} ...")
106
-
107
- # dataset = Dataset.from_dict({"audio_path": audio_path_list, "text": text_list, "duration": duration_list}) # oom
108
- # dataset.save_to_disk(f"{out_dir}/raw", max_shard_size="2GB")
109
- raw_arrow_path = out_dir / "raw.arrow"
110
- with ArrowWriter(path=raw_arrow_path.as_posix(), writer_batch_size=1) as writer:
111
- for line in tqdm(result, desc="Writing to raw.arrow ..."):
112
- writer.write(line)
113
-
114
- # dup a json separately saving duration in case for DynamicBatchSampler ease
115
- dur_json_path = out_dir / "duration.json"
116
- with open(dur_json_path.as_posix(), "w", encoding="utf-8") as f:
117
- json.dump({"duration": duration_list}, f, ensure_ascii=False)
118
-
119
- # vocab map, i.e. tokenizer
120
- # add alphabets and symbols (optional, if plan to ft on de/fr etc.)
121
- # if tokenizer == "pinyin":
122
- # text_vocab_set.update([chr(i) for i in range(32, 127)] + [chr(i) for i in range(192, 256)])
123
- voca_out_path = out_dir / "new_vocab.txt"
124
- with open(voca_out_path.as_posix(), "w") as f:
125
- for vocab in sorted(text_vocab_set):
126
- f.write(vocab + "\n")
127
-
128
- # voca_out_path = out_dir / "new_vocab.txt"
129
- # with open(voca_out_path.as_posix(), "w") as f:
130
- # for vocab in sorted(text_vocab_set):
131
- # f.write(vocab + "\n")
132
-
133
- # voca_out_path = out_dir / "vocab.txt"
134
- # if is_finetune:
135
- # file_vocab_finetune = PRETRAINED_VOCAB_PATH.as_posix()
136
- # shutil.copy2(file_vocab_finetune, voca_out_path)
137
- # else:
138
- # with open(voca_out_path, "w") as f:
139
- # for vocab in sorted(text_vocab_set):
140
- # f.write(vocab + "\n")
141
-
142
- dataset_name = out_dir.stem
143
- print(f"\nFor {dataset_name}, sample count: {len(result)}")
144
- # print(f"For {dataset_name}, vocab size is: {len(text_vocab_set)}")
145
- print(f"For {dataset_name}, total {sum(duration_list)/3600:.2f} hours")
146
-
147
-
148
- def prepare_and_save_set(inp_dir, out_dir, is_finetune: bool = True):
149
- if is_finetune:
150
- print("Inside finetuning ...")
151
- # assert PRETRAINED_VOCAB_PATH.exists(), f"pretrained vocab.txt not found: {PRETRAINED_VOCAB_PATH}"
152
- sub_result, durations, vocab_set = prepare_csv_wavs_dir(inp_dir)
153
- save_prepped_dataset(out_dir, sub_result, durations, vocab_set, is_finetune)
154
-
155
-
156
- def cli():
157
- # finetune: python scripts/prepare_csv_wavs.py /path/to/input_dir /path/to/output_dir_pinyin
158
- # pretrain: python scripts/prepare_csv_wavs.py /path/to/output_dir_pinyin --pretrain
159
- parser = argparse.ArgumentParser(description="Prepare and save dataset.")
160
- parser.add_argument("inp_dir", type=str, help="Input directory containing the data.")
161
- parser.add_argument("out_dir", type=str, help="Output directory to save the prepared data.")
162
- parser.add_argument("--pretrain", action="store_true", help="Enable for new pretrain, otherwise is a fine-tune")
163
-
164
- args = parser.parse_args()
165
-
166
- prepare_and_save_set(args.inp_dir, args.out_dir, is_finetune=not args.pretrain)
167
-
168
-
169
- if __name__ == "__main__":
170
- cli()
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f5_tts/train/datasets/prepare_libritts.py DELETED
@@ -1,92 +0,0 @@
1
- import os
2
- import sys
3
-
4
- sys.path.append(os.getcwd())
5
-
6
- import json
7
- from concurrent.futures import ProcessPoolExecutor
8
- from importlib.resources import files
9
- from pathlib import Path
10
- from tqdm import tqdm
11
- import soundfile as sf
12
- from datasets.arrow_writer import ArrowWriter
13
-
14
-
15
- def deal_with_audio_dir(audio_dir):
16
- sub_result, durations = [], []
17
- vocab_set = set()
18
- audio_lists = list(audio_dir.rglob("*.wav"))
19
-
20
- for line in audio_lists:
21
- text_path = line.with_suffix(".normalized.txt")
22
- text = open(text_path, "r").read().strip()
23
- duration = sf.info(line).duration
24
- if duration < 0.4 or duration > 30:
25
- continue
26
- sub_result.append({"audio_path": str(line), "text": text, "duration": duration})
27
- durations.append(duration)
28
- vocab_set.update(list(text))
29
- return sub_result, durations, vocab_set
30
-
31
-
32
- def main():
33
- result = []
34
- duration_list = []
35
- text_vocab_set = set()
36
-
37
- # process raw data
38
- executor = ProcessPoolExecutor(max_workers=max_workers)
39
- futures = []
40
-
41
- for subset in tqdm(SUB_SET):
42
- dataset_path = Path(os.path.join(dataset_dir, subset))
43
- [
44
- futures.append(executor.submit(deal_with_audio_dir, audio_dir))
45
- for audio_dir in dataset_path.iterdir()
46
- if audio_dir.is_dir()
47
- ]
48
- for future in tqdm(futures, total=len(futures)):
49
- sub_result, durations, vocab_set = future.result()
50
- result.extend(sub_result)
51
- duration_list.extend(durations)
52
- text_vocab_set.update(vocab_set)
53
- executor.shutdown()
54
-
55
- # save preprocessed dataset to disk
56
- if not os.path.exists(f"{save_dir}"):
57
- os.makedirs(f"{save_dir}")
58
- print(f"\nSaving to {save_dir} ...")
59
-
60
- with ArrowWriter(path=f"{save_dir}/raw.arrow") as writer:
61
- for line in tqdm(result, desc="Writing to raw.arrow ..."):
62
- writer.write(line)
63
-
64
- # dup a json separately saving duration in case for DynamicBatchSampler ease
65
- with open(f"{save_dir}/duration.json", "w", encoding="utf-8") as f:
66
- json.dump({"duration": duration_list}, f, ensure_ascii=False)
67
-
68
- # vocab map, i.e. tokenizer
69
- with open(f"{save_dir}/vocab.txt", "w") as f:
70
- for vocab in sorted(text_vocab_set):
71
- f.write(vocab + "\n")
72
-
73
- print(f"\nFor {dataset_name}, sample count: {len(result)}")
74
- print(f"For {dataset_name}, vocab size is: {len(text_vocab_set)}")
75
- print(f"For {dataset_name}, total {sum(duration_list)/3600:.2f} hours")
76
-
77
-
78
- if __name__ == "__main__":
79
- max_workers = 36
80
-
81
- tokenizer = "char" # "pinyin" | "char"
82
-
83
- SUB_SET = ["train-clean-100", "train-clean-360", "train-other-500"]
84
- dataset_dir = "<SOME_PATH>/LibriTTS"
85
- dataset_name = f"LibriTTS_{'_'.join(SUB_SET)}_{tokenizer}".replace("train-clean-", "").replace("train-other-", "")
86
- save_dir = str(files("f5_tts").joinpath("../../")) + f"/data/{dataset_name}"
87
- print(f"\nPrepare for {dataset_name}, will save to {save_dir}\n")
88
- main()
89
-
90
- # For LibriTTS_100_360_500_char, sample count: 354218
91
- # For LibriTTS_100_360_500_char, vocab size is: 78
92
- # For LibriTTS_100_360_500_char, total 554.09 hours
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f5_tts/train/datasets/prepare_ljspeech.py DELETED
@@ -1,65 +0,0 @@
1
- import os
2
- import sys
3
-
4
- sys.path.append(os.getcwd())
5
-
6
- import json
7
- from importlib.resources import files
8
- from pathlib import Path
9
- from tqdm import tqdm
10
- import soundfile as sf
11
- from datasets.arrow_writer import ArrowWriter
12
-
13
-
14
- def main():
15
- result = []
16
- duration_list = []
17
- text_vocab_set = set()
18
-
19
- with open(meta_info, "r") as f:
20
- lines = f.readlines()
21
- for line in tqdm(lines):
22
- uttr, text, norm_text = line.split("|")
23
- norm_text = norm_text.strip()
24
- wav_path = Path(dataset_dir) / "wavs" / f"{uttr}.wav"
25
- duration = sf.info(wav_path).duration
26
- if duration < 0.4 or duration > 30:
27
- continue
28
- result.append({"audio_path": str(wav_path), "text": norm_text, "duration": duration})
29
- duration_list.append(duration)
30
- text_vocab_set.update(list(norm_text))
31
-
32
- # save preprocessed dataset to disk
33
- if not os.path.exists(f"{save_dir}"):
34
- os.makedirs(f"{save_dir}")
35
- print(f"\nSaving to {save_dir} ...")
36
-
37
- with ArrowWriter(path=f"{save_dir}/raw.arrow") as writer:
38
- for line in tqdm(result, desc="Writing to raw.arrow ..."):
39
- writer.write(line)
40
-
41
- # dup a json separately saving duration in case for DynamicBatchSampler ease
42
- with open(f"{save_dir}/duration.json", "w", encoding="utf-8") as f:
43
- json.dump({"duration": duration_list}, f, ensure_ascii=False)
44
-
45
- # vocab map, i.e. tokenizer
46
- # add alphabets and symbols (optional, if plan to ft on de/fr etc.)
47
- with open(f"{save_dir}/vocab.txt", "w") as f:
48
- for vocab in sorted(text_vocab_set):
49
- f.write(vocab + "\n")
50
-
51
- print(f"\nFor {dataset_name}, sample count: {len(result)}")
52
- print(f"For {dataset_name}, vocab size is: {len(text_vocab_set)}")
53
- print(f"For {dataset_name}, total {sum(duration_list)/3600:.2f} hours")
54
-
55
-
56
- if __name__ == "__main__":
57
- tokenizer = "char" # "pinyin" | "char"
58
-
59
- dataset_dir = "<SOME_PATH>/LJSpeech-1.1"
60
- dataset_name = f"LJSpeech_{tokenizer}"
61
- meta_info = os.path.join(dataset_dir, "metadata.csv")
62
- save_dir = str(files("f5_tts").joinpath("../../")) + f"/data/{dataset_name}"
63
- print(f"\nPrepare for {dataset_name}, will save to {save_dir}\n")
64
-
65
- main()