Diotoara commited on
Commit
572f0e9
·
verified ·
1 Parent(s): 281647e

Upload folder using huggingface_hub

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. .gitattributes +5 -0
  2. .github/ISSUE_TEMPLATE/bug_report.yml +50 -0
  3. .github/ISSUE_TEMPLATE/config.yml +1 -0
  4. .github/ISSUE_TEMPLATE/feature_request.yml +62 -0
  5. .github/ISSUE_TEMPLATE/help_wanted.yml +50 -0
  6. .github/ISSUE_TEMPLATE/question.yml +26 -0
  7. .github/workflows/pre-commit.yaml +14 -0
  8. .github/workflows/publish-docker-image.yaml +60 -0
  9. .github/workflows/sync-hf.yaml +18 -0
  10. .gitignore +173 -0
  11. .gitmodules +3 -0
  12. .gradio/certificate.pem +31 -0
  13. .pre-commit-config.yaml +14 -0
  14. Dockerfile +27 -0
  15. LICENSE +21 -0
  16. README.md +174 -8
  17. f5_tts_app.py +34 -0
  18. pyproject.toml +61 -0
  19. ruff.toml +10 -0
  20. src/f5_tts/api.py +166 -0
  21. src/f5_tts/eval/README.md +49 -0
  22. src/f5_tts/eval/ecapa_tdnn.py +330 -0
  23. src/f5_tts/eval/eval_infer_batch.py +207 -0
  24. src/f5_tts/eval/eval_infer_batch.sh +13 -0
  25. src/f5_tts/eval/eval_librispeech_test_clean.py +73 -0
  26. src/f5_tts/eval/eval_seedtts_testset.py +75 -0
  27. src/f5_tts/eval/utils_eval.py +405 -0
  28. src/f5_tts/infer/README.md +191 -0
  29. src/f5_tts/infer/SHARED.md +85 -0
  30. src/f5_tts/infer/examples/basic/basic.toml +11 -0
  31. src/f5_tts/infer/examples/basic/basic_ref_en.wav +3 -0
  32. src/f5_tts/infer/examples/basic/basic_ref_zh.wav +3 -0
  33. src/f5_tts/infer/examples/multi/country.flac +3 -0
  34. src/f5_tts/infer/examples/multi/main.flac +3 -0
  35. src/f5_tts/infer/examples/multi/story.toml +19 -0
  36. src/f5_tts/infer/examples/multi/story.txt +1 -0
  37. src/f5_tts/infer/examples/multi/town.flac +3 -0
  38. src/f5_tts/infer/examples/vocab.txt +2545 -0
  39. src/f5_tts/infer/infer_cli.py +247 -0
  40. src/f5_tts/infer/infer_gradio.py +875 -0
  41. src/f5_tts/infer/speech_edit.py +193 -0
  42. src/f5_tts/infer/utils_infer.py +544 -0
  43. src/f5_tts/model/__init__.py +10 -0
  44. src/f5_tts/model/backbones/README.md +20 -0
  45. src/f5_tts/model/backbones/dit.py +163 -0
  46. src/f5_tts/model/backbones/mmdit.py +146 -0
  47. src/f5_tts/model/backbones/unett.py +219 -0
  48. src/f5_tts/model/cfm.py +285 -0
  49. src/f5_tts/model/dataset.py +319 -0
  50. src/f5_tts/model/modules.py +658 -0
.gitattributes CHANGED
@@ -33,3 +33,8 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
 
 
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ src/f5_tts/infer/examples/basic/basic_ref_en.wav filter=lfs diff=lfs merge=lfs -text
37
+ src/f5_tts/infer/examples/basic/basic_ref_zh.wav filter=lfs diff=lfs merge=lfs -text
38
+ src/f5_tts/infer/examples/multi/country.flac filter=lfs diff=lfs merge=lfs -text
39
+ src/f5_tts/infer/examples/multi/main.flac filter=lfs diff=lfs merge=lfs -text
40
+ src/f5_tts/infer/examples/multi/town.flac filter=lfs diff=lfs merge=lfs -text
.github/ISSUE_TEMPLATE/bug_report.yml ADDED
@@ -0,0 +1,50 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ name: "Bug Report"
2
+ description: |
3
+ Please provide as much details to help address the issue, including logs and screenshots.
4
+ labels:
5
+ - bug
6
+ body:
7
+ - type: checkboxes
8
+ attributes:
9
+ label: Checks
10
+ description: "To ensure timely help, please confirm the following:"
11
+ options:
12
+ - label: This template is only for bug reports, usage problems go with 'Help Wanted'.
13
+ required: true
14
+ - label: I have thoroughly reviewed the project documentation but couldn't find information to solve my problem.
15
+ required: true
16
+ - label: I have searched for existing issues, including closed ones, and couldn't find a solution.
17
+ required: true
18
+ - label: I confirm that I am using English to submit this report in order to facilitate communication.
19
+ required: true
20
+ - type: textarea
21
+ attributes:
22
+ label: Environment Details
23
+ description: "Provide details such as OS, Python version, and any relevant software or dependencies."
24
+ placeholder: e.g., CentOS Linux 7, RTX 3090, Python 3.10, torch==2.3.0, cuda 11.8
25
+ validations:
26
+ required: true
27
+ - type: textarea
28
+ attributes:
29
+ label: Steps to Reproduce
30
+ description: |
31
+ Include detailed steps, screenshots, and logs. Use the correct markdown syntax for code blocks.
32
+ placeholder: |
33
+ 1. Create a new conda environment.
34
+ 2. Clone the repository, install as local editable and properly set up.
35
+ 3. Run the command: `accelerate launch src/f5_tts/train/train.py`.
36
+ 4. Have following error message... (attach logs).
37
+ validations:
38
+ required: true
39
+ - type: textarea
40
+ attributes:
41
+ label: ✔️ Expected Behavior
42
+ placeholder: Describe what you expected to happen.
43
+ validations:
44
+ required: false
45
+ - type: textarea
46
+ attributes:
47
+ label: ❌ Actual Behavior
48
+ placeholder: Describe what actually happened.
49
+ validations:
50
+ required: false
.github/ISSUE_TEMPLATE/config.yml ADDED
@@ -0,0 +1 @@
 
 
1
+ blank_issues_enabled: false
.github/ISSUE_TEMPLATE/feature_request.yml ADDED
@@ -0,0 +1,62 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ name: "Feature Request"
2
+ description: |
3
+ Some constructive suggestions and new ideas regarding current repo.
4
+ labels:
5
+ - enhancement
6
+ body:
7
+ - type: checkboxes
8
+ attributes:
9
+ label: Checks
10
+ description: "To help us grasp quickly, please confirm the following:"
11
+ options:
12
+ - label: This template is only for feature request.
13
+ required: true
14
+ - label: I have thoroughly reviewed the project documentation but couldn't find any relevant information that meets my needs.
15
+ required: true
16
+ - label: I have searched for existing issues, including closed ones, and found not discussion yet.
17
+ required: true
18
+ - label: I confirm that I am using English to submit this report in order to facilitate communication.
19
+ required: true
20
+ - type: textarea
21
+ attributes:
22
+ label: 1. Is this request related to a challenge you're experiencing? Tell us your story.
23
+ description: |
24
+ Describe the specific problem or scenario you're facing in detail. For example:
25
+ *"I was trying to use [feature] for [specific task], but encountered [issue]. This was frustrating because...."*
26
+ placeholder: Please describe the situation in as much detail as possible.
27
+ validations:
28
+ required: true
29
+
30
+ - type: textarea
31
+ attributes:
32
+ label: 2. What is your suggested solution?
33
+ description: |
34
+ Provide a clear description of the feature or enhancement you'd like to propose.
35
+ How would this feature solve your issue or improve the project?
36
+ placeholder: Describe your idea or proposed solution here.
37
+ validations:
38
+ required: true
39
+
40
+ - type: textarea
41
+ attributes:
42
+ label: 3. Additional context or comments
43
+ description: |
44
+ Any other relevant information, links, documents, or screenshots that provide clarity.
45
+ Use this section for anything not covered above.
46
+ placeholder: Add any extra details here.
47
+ validations:
48
+ required: false
49
+
50
+ - type: checkboxes
51
+ attributes:
52
+ label: 4. Can you help us with this feature?
53
+ description: |
54
+ Let us know if you're interested in contributing. This is not a commitment but a way to express interest in collaboration.
55
+ options:
56
+ - label: I am interested in contributing to this feature.
57
+ required: false
58
+
59
+ - type: markdown
60
+ attributes:
61
+ value: |
62
+ **Note:** Please submit only one request per issue to keep discussions focused and manageable.
.github/ISSUE_TEMPLATE/help_wanted.yml ADDED
@@ -0,0 +1,50 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ name: "Help Wanted"
2
+ description: |
3
+ Please provide as much details to help address the issue, including logs and screenshots.
4
+ labels:
5
+ - help wanted
6
+ body:
7
+ - type: checkboxes
8
+ attributes:
9
+ label: Checks
10
+ description: "To ensure timely help, please confirm the following:"
11
+ options:
12
+ - label: This template is only for usage issues encountered.
13
+ required: true
14
+ - label: I have thoroughly reviewed the project documentation but couldn't find information to solve my problem.
15
+ required: true
16
+ - label: I have searched for existing issues, including closed ones, and couldn't find a solution.
17
+ required: true
18
+ - label: I confirm that I am using English to submit this report in order to facilitate communication.
19
+ required: true
20
+ - type: textarea
21
+ attributes:
22
+ label: Environment Details
23
+ description: "Provide details such as OS, Python version, and any relevant software or dependencies."
24
+ placeholder: e.g., macOS 13.5, Python 3.10, torch==2.3.0, Gradio 4.44.1
25
+ validations:
26
+ required: true
27
+ - type: textarea
28
+ attributes:
29
+ label: Steps to Reproduce
30
+ description: |
31
+ Include detailed steps, screenshots, and logs. Use the correct markdown syntax for code blocks.
32
+ placeholder: |
33
+ 1. Create a new conda environment.
34
+ 2. Clone the repository and install as pip package.
35
+ 3. Run the command: `f5-tts_infer-gradio` with no ref_text provided.
36
+ 4. Stuck there with the following message... (attach logs and also error msg e.g. after ctrl-c).
37
+ validations:
38
+ required: true
39
+ - type: textarea
40
+ attributes:
41
+ label: ✔️ Expected Behavior
42
+ placeholder: Describe what you expected to happen, e.g. output a generated audio
43
+ validations:
44
+ required: false
45
+ - type: textarea
46
+ attributes:
47
+ label: ❌ Actual Behavior
48
+ placeholder: Describe what actually happened, failure messages, etc.
49
+ validations:
50
+ required: false
.github/ISSUE_TEMPLATE/question.yml ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ name: "Question"
2
+ description: |
3
+ Pure question or inquiry about the project, usage issue goes with "help wanted".
4
+ labels:
5
+ - question
6
+ body:
7
+ - type: checkboxes
8
+ attributes:
9
+ label: Checks
10
+ description: "To help us grasp quickly, please confirm the following:"
11
+ options:
12
+ - label: This template is only for question, not feature requests or bug reports.
13
+ required: true
14
+ - label: I have thoroughly reviewed the project documentation and read the related paper(s).
15
+ required: true
16
+ - label: I have searched for existing issues, including closed ones, no similar questions.
17
+ required: true
18
+ - label: I confirm that I am using English to submit this report in order to facilitate communication.
19
+ required: true
20
+ - type: textarea
21
+ attributes:
22
+ label: Question details
23
+ description: |
24
+ Question details, clearly stated using proper markdown syntax.
25
+ validations:
26
+ required: true
.github/workflows/pre-commit.yaml ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ name: pre-commit
2
+
3
+ on:
4
+ pull_request:
5
+ push:
6
+ branches: [main]
7
+
8
+ jobs:
9
+ pre-commit:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@v3
13
+ - uses: actions/setup-python@v3
14
+ - uses: pre-commit/[email protected]
.github/workflows/publish-docker-image.yaml ADDED
@@ -0,0 +1,60 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ name: Create and publish a Docker image
2
+
3
+ # Configures this workflow to run every time a change is pushed to the branch called `release`.
4
+ on:
5
+ push:
6
+ branches: ['main']
7
+
8
+ # Defines two custom environment variables for the workflow. These are used for the Container registry domain, and a name for the Docker image that this workflow builds.
9
+ env:
10
+ REGISTRY: ghcr.io
11
+ IMAGE_NAME: ${{ github.repository }}
12
+
13
+ # There is a single job in this workflow. It's configured to run on the latest available version of Ubuntu.
14
+ jobs:
15
+ build-and-push-image:
16
+ runs-on: ubuntu-latest
17
+ # Sets the permissions granted to the `GITHUB_TOKEN` for the actions in this job.
18
+ permissions:
19
+ contents: read
20
+ packages: write
21
+ #
22
+ steps:
23
+ - name: Checkout repository
24
+ uses: actions/checkout@v4
25
+ - name: Free Up GitHub Actions Ubuntu Runner Disk Space 🔧
26
+ uses: jlumbroso/free-disk-space@main
27
+ with:
28
+ # This might remove tools that are actually needed, if set to "true" but frees about 6 GB
29
+ tool-cache: false
30
+
31
+ # All of these default to true, but feel free to set to "false" if necessary for your workflow
32
+ android: true
33
+ dotnet: true
34
+ haskell: true
35
+ large-packages: false
36
+ swap-storage: false
37
+ docker-images: false
38
+ # Uses the `docker/login-action` action to log in to the Container registry registry using the account and password that will publish the packages. Once published, the packages are scoped to the account defined here.
39
+ - name: Log in to the Container registry
40
+ uses: docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1
41
+ with:
42
+ registry: ${{ env.REGISTRY }}
43
+ username: ${{ github.actor }}
44
+ password: ${{ secrets.GITHUB_TOKEN }}
45
+ # This step uses [docker/metadata-action](https://github.com/docker/metadata-action#about) to extract tags and labels that will be applied to the specified image. The `id` "meta" allows the output of this step to be referenced in a subsequent step. The `images` value provides the base name for the tags and labels.
46
+ - name: Extract metadata (tags, labels) for Docker
47
+ id: meta
48
+ uses: docker/metadata-action@9ec57ed1fcdbf14dcef7dfbe97b2010124a938b7
49
+ with:
50
+ images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
51
+ # This step uses the `docker/build-push-action` action to build the image, based on your repository's `Dockerfile`. If the build succeeds, it pushes the image to GitHub Packages.
52
+ # It uses the `context` parameter to define the build's context as the set of files located in the specified path. For more information, see "[Usage](https://github.com/docker/build-push-action#usage)" in the README of the `docker/build-push-action` repository.
53
+ # It uses the `tags` and `labels` parameters to tag and label the image with the output from the "meta" step.
54
+ - name: Build and push Docker image
55
+ uses: docker/build-push-action@f2a1d5e99d037542a71f64918e516c093c6f3fc4
56
+ with:
57
+ context: .
58
+ push: true
59
+ tags: ${{ steps.meta.outputs.tags }}
60
+ labels: ${{ steps.meta.outputs.labels }}
.github/workflows/sync-hf.yaml ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ name: Sync to HF Space
2
+
3
+ on:
4
+ push:
5
+ branches:
6
+ - main
7
+
8
+ jobs:
9
+ trigger_curl:
10
+ runs-on: ubuntu-latest
11
+
12
+ steps:
13
+ - name: Send cURL POST request
14
+ run: |
15
+ curl -X POST https://mrfakename-sync-f5.hf.space/gradio_api/call/refresh \
16
+ -s \
17
+ -H "Content-Type: application/json" \
18
+ -d "{\"data\": [\"${{ secrets.REFRESH_PASSWORD }}\"]}"
.gitignore ADDED
@@ -0,0 +1,173 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Customed
2
+ .vscode/
3
+ tests/
4
+ runs/
5
+ data/
6
+ ckpts/
7
+ wandb/
8
+ results/
9
+
10
+
11
+
12
+ # Byte-compiled / optimized / DLL files
13
+ __pycache__/
14
+ *.py[cod]
15
+ *$py.class
16
+
17
+ # C extensions
18
+ *.so
19
+
20
+ # Distribution / packaging
21
+ .Python
22
+ build/
23
+ develop-eggs/
24
+ dist/
25
+ downloads/
26
+ eggs/
27
+ .eggs/
28
+ lib/
29
+ lib64/
30
+ parts/
31
+ sdist/
32
+ var/
33
+ wheels/
34
+ share/python-wheels/
35
+ *.egg-info/
36
+ .installed.cfg
37
+ *.egg
38
+ MANIFEST
39
+
40
+ # PyInstaller
41
+ # Usually these files are written by a python script from a template
42
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
43
+ *.manifest
44
+ *.spec
45
+
46
+ # Installer logs
47
+ pip-log.txt
48
+ pip-delete-this-directory.txt
49
+
50
+ # Unit test / coverage reports
51
+ htmlcov/
52
+ .tox/
53
+ .nox/
54
+ .coverage
55
+ .coverage.*
56
+ .cache
57
+ nosetests.xml
58
+ coverage.xml
59
+ *.cover
60
+ *.py,cover
61
+ .hypothesis/
62
+ .pytest_cache/
63
+ cover/
64
+
65
+ # Translations
66
+ *.mo
67
+ *.pot
68
+
69
+ # Django stuff:
70
+ *.log
71
+ local_settings.py
72
+ db.sqlite3
73
+ db.sqlite3-journal
74
+
75
+ # Flask stuff:
76
+ instance/
77
+ .webassets-cache
78
+
79
+ # Scrapy stuff:
80
+ .scrapy
81
+
82
+ # Sphinx documentation
83
+ docs/_build/
84
+
85
+ # PyBuilder
86
+ .pybuilder/
87
+ target/
88
+
89
+ # Jupyter Notebook
90
+ .ipynb_checkpoints
91
+
92
+ # IPython
93
+ profile_default/
94
+ ipython_config.py
95
+
96
+ # pyenv
97
+ # For a library or package, you might want to ignore these files since the code is
98
+ # intended to run in multiple environments; otherwise, check them in:
99
+ # .python-version
100
+
101
+ # pipenv
102
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
103
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
104
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
105
+ # install all needed dependencies.
106
+ #Pipfile.lock
107
+
108
+ # poetry
109
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
110
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
111
+ # commonly ignored for libraries.
112
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
113
+ #poetry.lock
114
+
115
+ # pdm
116
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
117
+ #pdm.lock
118
+ # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
119
+ # in version control.
120
+ # https://pdm.fming.dev/latest/usage/project/#working-with-version-control
121
+ .pdm.toml
122
+ .pdm-python
123
+ .pdm-build/
124
+
125
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
126
+ __pypackages__/
127
+
128
+ # Celery stuff
129
+ celerybeat-schedule
130
+ celerybeat.pid
131
+
132
+ # SageMath parsed files
133
+ *.sage.py
134
+
135
+ # Environments
136
+ .env
137
+ .venv
138
+ env/
139
+ venv/
140
+ ENV/
141
+ env.bak/
142
+ venv.bak/
143
+
144
+ # Spyder project settings
145
+ .spyderproject
146
+ .spyproject
147
+
148
+ # Rope project settings
149
+ .ropeproject
150
+
151
+ # mkdocs documentation
152
+ /site
153
+
154
+ # mypy
155
+ .mypy_cache/
156
+ .dmypy.json
157
+ dmypy.json
158
+
159
+ # Pyre type checker
160
+ .pyre/
161
+
162
+ # pytype static type analyzer
163
+ .pytype/
164
+
165
+ # Cython debug symbols
166
+ cython_debug/
167
+
168
+ # PyCharm
169
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
170
+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
171
+ # and can be added to the global gitignore or merged into this file. For a more nuclear
172
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
173
+ #.idea/
.gitmodules ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ [submodule "src/third_party/BigVGAN"]
2
+ path = src/third_party/BigVGAN
3
+ url = https://github.com/NVIDIA/BigVGAN.git
.gradio/certificate.pem ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ -----BEGIN CERTIFICATE-----
2
+ MIIFazCCA1OgAwIBAgIRAIIQz7DSQONZRGPgu2OCiwAwDQYJKoZIhvcNAQELBQAw
3
+ TzELMAkGA1UEBhMCVVMxKTAnBgNVBAoTIEludGVybmV0IFNlY3VyaXR5IFJlc2Vh
4
+ cmNoIEdyb3VwMRUwEwYDVQQDEwxJU1JHIFJvb3QgWDEwHhcNMTUwNjA0MTEwNDM4
5
+ WhcNMzUwNjA0MTEwNDM4WjBPMQswCQYDVQQGEwJVUzEpMCcGA1UEChMgSW50ZXJu
6
+ ZXQgU2VjdXJpdHkgUmVzZWFyY2ggR3JvdXAxFTATBgNVBAMTDElTUkcgUm9vdCBY
7
+ MTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAK3oJHP0FDfzm54rVygc
8
+ h77ct984kIxuPOZXoHj3dcKi/vVqbvYATyjb3miGbESTtrFj/RQSa78f0uoxmyF+
9
+ 0TM8ukj13Xnfs7j/EvEhmkvBioZxaUpmZmyPfjxwv60pIgbz5MDmgK7iS4+3mX6U
10
+ A5/TR5d8mUgjU+g4rk8Kb4Mu0UlXjIB0ttov0DiNewNwIRt18jA8+o+u3dpjq+sW
11
+ T8KOEUt+zwvo/7V3LvSye0rgTBIlDHCNAymg4VMk7BPZ7hm/ELNKjD+Jo2FR3qyH
12
+ B5T0Y3HsLuJvW5iB4YlcNHlsdu87kGJ55tukmi8mxdAQ4Q7e2RCOFvu396j3x+UC
13
+ B5iPNgiV5+I3lg02dZ77DnKxHZu8A/lJBdiB3QW0KtZB6awBdpUKD9jf1b0SHzUv
14
+ KBds0pjBqAlkd25HN7rOrFleaJ1/ctaJxQZBKT5ZPt0m9STJEadao0xAH0ahmbWn
15
+ OlFuhjuefXKnEgV4We0+UXgVCwOPjdAvBbI+e0ocS3MFEvzG6uBQE3xDk3SzynTn
16
+ jh8BCNAw1FtxNrQHusEwMFxIt4I7mKZ9YIqioymCzLq9gwQbooMDQaHWBfEbwrbw
17
+ qHyGO0aoSCqI3Haadr8faqU9GY/rOPNk3sgrDQoo//fb4hVC1CLQJ13hef4Y53CI
18
+ rU7m2Ys6xt0nUW7/vGT1M0NPAgMBAAGjQjBAMA4GA1UdDwEB/wQEAwIBBjAPBgNV
19
+ HRMBAf8EBTADAQH/MB0GA1UdDgQWBBR5tFnme7bl5AFzgAiIyBpY9umbbjANBgkq
20
+ hkiG9w0BAQsFAAOCAgEAVR9YqbyyqFDQDLHYGmkgJykIrGF1XIpu+ILlaS/V9lZL
21
+ ubhzEFnTIZd+50xx+7LSYK05qAvqFyFWhfFQDlnrzuBZ6brJFe+GnY+EgPbk6ZGQ
22
+ 3BebYhtF8GaV0nxvwuo77x/Py9auJ/GpsMiu/X1+mvoiBOv/2X/qkSsisRcOj/KK
23
+ NFtY2PwByVS5uCbMiogziUwthDyC3+6WVwW6LLv3xLfHTjuCvjHIInNzktHCgKQ5
24
+ ORAzI4JMPJ+GslWYHb4phowim57iaztXOoJwTdwJx4nLCgdNbOhdjsnvzqvHu7Ur
25
+ TkXWStAmzOVyyghqpZXjFaH3pO3JLF+l+/+sKAIuvtd7u+Nxe5AW0wdeRlN8NwdC
26
+ jNPElpzVmbUq4JUagEiuTDkHzsxHpFKVK7q4+63SM1N95R1NbdWhscdCb+ZAJzVc
27
+ oyi3B43njTOQ5yOf+1CceWxG1bQVs5ZufpsMljq4Ui0/1lvh+wjChP4kqKOJ2qxq
28
+ 4RgqsahDYVvTH9w7jXbyLeiNdd8XM2w9U/t7y0Ff/9yi0GE44Za4rF2LN9d11TPA
29
+ mRGunUHBcnWEvgJBQl9nJEiU0Zsnvgc/ubhPgXRR4Xq37Z0j4r7g1SgEEzwxA57d
30
+ emyPxgcYxn/eR44/KJ4EBs+lVDR3veyJm+kXQ99b21/+jh5Xos1AnX5iItreGCc=
31
+ -----END CERTIFICATE-----
.pre-commit-config.yaml ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ repos:
2
+ - repo: https://github.com/astral-sh/ruff-pre-commit
3
+ # Ruff version.
4
+ rev: v0.7.0
5
+ hooks:
6
+ # Run the linter.
7
+ - id: ruff
8
+ args: [--fix]
9
+ # Run the formatter.
10
+ - id: ruff-format
11
+ - repo: https://github.com/pre-commit/pre-commit-hooks
12
+ rev: v2.3.0
13
+ hooks:
14
+ - id: check-yaml
Dockerfile ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM pytorch/pytorch:2.4.0-cuda12.4-cudnn9-devel
2
+
3
+ USER root
4
+
5
+ ARG DEBIAN_FRONTEND=noninteractive
6
+
7
+ LABEL github_repo="https://github.com/SWivid/F5-TTS"
8
+
9
+ RUN set -x \
10
+ && apt-get update \
11
+ && apt-get -y install wget curl man git less openssl libssl-dev unzip unar build-essential aria2 tmux vim \
12
+ && apt-get install -y openssh-server sox libsox-fmt-all libsox-fmt-mp3 libsndfile1-dev ffmpeg \
13
+ && apt-get install -y librdmacm1 libibumad3 librdmacm-dev libibverbs1 libibverbs-dev ibverbs-utils ibverbs-providers \
14
+ && rm -rf /var/lib/apt/lists/* \
15
+ && apt-get clean
16
+
17
+ WORKDIR /workspace
18
+
19
+ RUN git clone https://github.com/SWivid/F5-TTS.git \
20
+ && cd F5-TTS \
21
+ && git submodule update --init --recursive \
22
+ && sed -i '7iimport sys\nsys.path.append(os.path.dirname(os.path.abspath(__file__)))' src/third_party/BigVGAN/bigvgan.py \
23
+ && pip install -e . --no-cache-dir
24
+
25
+ ENV SHELL=/bin/bash
26
+
27
+ WORKDIR /workspace/F5-TTS
LICENSE ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ MIT License
2
+
3
+ Copyright (c) 2024 Yushen CHEN
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
README.md CHANGED
@@ -1,12 +1,178 @@
1
  ---
2
- title: F5 TTS
3
- emoji:
4
- colorFrom: gray
5
- colorTo: yellow
6
  sdk: gradio
7
- sdk_version: 6.0.1
8
- app_file: app.py
9
- pinned: false
10
  ---
 
11
 
12
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ title: F5-TTS
3
+ app_file: f5_tts_app.py
 
 
4
  sdk: gradio
5
+ sdk_version: 5.50.0
 
 
6
  ---
7
+ # F5-TTS: A Fairytaler that Fakes Fluent and Faithful Speech with Flow Matching
8
 
9
+ [![python](https://img.shields.io/badge/Python-3.10-brightgreen)](https://github.com/SWivid/F5-TTS)
10
+ [![arXiv](https://img.shields.io/badge/arXiv-2410.06885-b31b1b.svg?logo=arXiv)](https://arxiv.org/abs/2410.06885)
11
+ [![demo](https://img.shields.io/badge/GitHub-Demo%20page-orange.svg)](https://swivid.github.io/F5-TTS/)
12
+ [![hfspace](https://img.shields.io/badge/🤗-Space%20demo-yellow)](https://huggingface.co/spaces/mrfakename/E2-F5-TTS)
13
+ [![msspace](https://img.shields.io/badge/🤖-Space%20demo-blue)](https://modelscope.cn/studios/modelscope/E2-F5-TTS)
14
+ [![lab](https://img.shields.io/badge/X--LANCE-Lab-grey?labelColor=lightgrey)](https://x-lance.sjtu.edu.cn/)
15
+ <img src="https://github.com/user-attachments/assets/12d7749c-071a-427c-81bf-b87b91def670" alt="Watermark" style="width: 40px; height: auto">
16
+
17
+ **F5-TTS**: Diffusion Transformer with ConvNeXt V2, faster trained and inference.
18
+
19
+ **E2 TTS**: Flat-UNet Transformer, closest reproduction from [paper](https://arxiv.org/abs/2406.18009).
20
+
21
+ **Sway Sampling**: Inference-time flow step sampling strategy, greatly improves performance
22
+
23
+ ### Thanks to all the contributors !
24
+
25
+ ## News
26
+ - **2024/10/08**: F5-TTS & E2 TTS base models on [🤗 Hugging Face](https://huggingface.co/SWivid/F5-TTS), [🤖 Model Scope](https://www.modelscope.cn/models/SWivid/F5-TTS_Emilia-ZH-EN), [🟣 Wisemodel](https://wisemodel.cn/models/SJTU_X-LANCE/F5-TTS_Emilia-ZH-EN).
27
+
28
+ ## Installation
29
+
30
+ ```bash
31
+ # Create a python 3.10 conda env (you could also use virtualenv)
32
+ conda create -n f5-tts python=3.10
33
+ conda activate f5-tts
34
+
35
+ # Install pytorch with your CUDA version, e.g.
36
+ pip install torch==2.3.0+cu118 torchaudio==2.3.0+cu118 --extra-index-url https://download.pytorch.org/whl/cu118
37
+ ```
38
+
39
+ Then you can choose from a few options below:
40
+
41
+ ### 1. As a pip package (if just for inference)
42
+
43
+ ```bash
44
+ pip install git+https://github.com/SWivid/F5-TTS.git
45
+ ```
46
+
47
+ ### 2. Local editable (if also do training, finetuning)
48
+
49
+ ```bash
50
+ git clone https://github.com/SWivid/F5-TTS.git
51
+ cd F5-TTS
52
+ # git submodule update --init --recursive # (optional, if need bigvgan)
53
+ pip install -e .
54
+ ```
55
+ If initialize submodule, you should add the following code at the beginning of `src/third_party/BigVGAN/bigvgan.py`.
56
+ ```python
57
+ import os
58
+ import sys
59
+ sys.path.append(os.path.dirname(os.path.abspath(__file__)))
60
+ ```
61
+
62
+ ### 3. Docker usage
63
+ ```bash
64
+ # Build from Dockerfile
65
+ docker build -t f5tts:v1 .
66
+
67
+ # Or pull from GitHub Container Registry
68
+ docker pull ghcr.io/swivid/f5-tts:main
69
+ ```
70
+
71
+
72
+ ## Inference
73
+
74
+ ### 1. Gradio App
75
+
76
+ Currently supported features:
77
+
78
+ - Basic TTS with Chunk Inference
79
+ - Multi-Style / Multi-Speaker Generation
80
+ - Voice Chat powered by Qwen2.5-3B-Instruct
81
+ - [Custom inference with more language support](src/f5_tts/infer/SHARED.md)
82
+
83
+ ```bash
84
+ # Launch a Gradio app (web interface)
85
+ f5-tts_infer-gradio
86
+
87
+ # Specify the port/host
88
+ f5-tts_infer-gradio --port 7860 --host 0.0.0.0
89
+
90
+ # Launch a share link
91
+ f5-tts_infer-gradio --share
92
+ ```
93
+
94
+ ### 2. CLI Inference
95
+
96
+ ```bash
97
+ # Run with flags
98
+ # Leave --ref_text "" will have ASR model transcribe (extra GPU memory usage)
99
+ f5-tts_infer-cli \
100
+ --model "F5-TTS" \
101
+ --ref_audio "ref_audio.wav" \
102
+ --ref_text "The content, subtitle or transcription of reference audio." \
103
+ --gen_text "Some text you want TTS model generate for you."
104
+
105
+ # Run with default setting. src/f5_tts/infer/examples/basic/basic.toml
106
+ f5-tts_infer-cli
107
+ # Or with your own .toml file
108
+ f5-tts_infer-cli -c custom.toml
109
+
110
+ # Multi voice. See src/f5_tts/infer/README.md
111
+ f5-tts_infer-cli -c src/f5_tts/infer/examples/multi/story.toml
112
+ ```
113
+
114
+ ### 3. More instructions
115
+
116
+ - In order to have better generation results, take a moment to read [detailed guidance](src/f5_tts/infer).
117
+ - The [Issues](https://github.com/SWivid/F5-TTS/issues?q=is%3Aissue) are very useful, please try to find the solution by properly searching the keywords of problem encountered. If no answer found, then feel free to open an issue.
118
+
119
+
120
+ ## Training
121
+
122
+ ### 1. Gradio App
123
+
124
+ Read [training & finetuning guidance](src/f5_tts/train) for more instructions.
125
+
126
+ ```bash
127
+ # Quick start with Gradio web interface
128
+ f5-tts_finetune-gradio
129
+ ```
130
+
131
+
132
+ ## [Evaluation](src/f5_tts/eval)
133
+
134
+
135
+ ## Development
136
+
137
+ Use pre-commit to ensure code quality (will run linters and formatters automatically)
138
+
139
+ ```bash
140
+ pip install pre-commit
141
+ pre-commit install
142
+ ```
143
+
144
+ When making a pull request, before each commit, run:
145
+
146
+ ```bash
147
+ pre-commit run --all-files
148
+ ```
149
+
150
+ Note: Some model components have linting exceptions for E722 to accommodate tensor notation
151
+
152
+
153
+ ## Acknowledgements
154
+
155
+ - [E2-TTS](https://arxiv.org/abs/2406.18009) brilliant work, simple and effective
156
+ - [Emilia](https://arxiv.org/abs/2407.05361), [WenetSpeech4TTS](https://arxiv.org/abs/2406.05763) valuable datasets
157
+ - [lucidrains](https://github.com/lucidrains) initial CFM structure with also [bfs18](https://github.com/bfs18) for discussion
158
+ - [SD3](https://arxiv.org/abs/2403.03206) & [Hugging Face diffusers](https://github.com/huggingface/diffusers) DiT and MMDiT code structure
159
+ - [torchdiffeq](https://github.com/rtqichen/torchdiffeq) as ODE solver, [Vocos](https://huggingface.co/charactr/vocos-mel-24khz) as vocoder
160
+ - [FunASR](https://github.com/modelscope/FunASR), [faster-whisper](https://github.com/SYSTRAN/faster-whisper), [UniSpeech](https://github.com/microsoft/UniSpeech) for evaluation tools
161
+ - [ctc-forced-aligner](https://github.com/MahmoudAshraf97/ctc-forced-aligner) for speech edit test
162
+ - [mrfakename](https://x.com/realmrfakename) huggingface space demo ~
163
+ - [f5-tts-mlx](https://github.com/lucasnewman/f5-tts-mlx/tree/main) Implementation with MLX framework by [Lucas Newman](https://github.com/lucasnewman)
164
+ - [F5-TTS-ONNX](https://github.com/DakeQQ/F5-TTS-ONNX) ONNX Runtime version by [DakeQQ](https://github.com/DakeQQ)
165
+
166
+ ## Citation
167
+ If our work and codebase is useful for you, please cite as:
168
+ ```
169
+ @article{chen-etal-2024-f5tts,
170
+ title={F5-TTS: A Fairytaler that Fakes Fluent and Faithful Speech with Flow Matching},
171
+ author={Yushen Chen and Zhikang Niu and Ziyang Ma and Keqi Deng and Chunhui Wang and Jian Zhao and Kai Yu and Xie Chen},
172
+ journal={arXiv preprint arXiv:2410.06885},
173
+ year={2024},
174
+ }
175
+ ```
176
+ ## License
177
+
178
+ Our code is released under MIT License. The pre-trained models are licensed under the CC-BY-NC license due to the training data Emilia, which is an in-the-wild dataset. Sorry for any inconvenience this may cause.
f5_tts_app.py ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # f5_tts_app.py
2
+
3
+ # Install necessary packages (if not already installed)
4
+ import os
5
+ import subprocess
6
+ import sys
7
+
8
+ def install(package):
9
+ subprocess.check_call([sys.executable, "-m", "pip", "install", package])
10
+
11
+ install("torch")
12
+ install("torchcodec")
13
+ install("gradio")
14
+ install("-e", "git+https://github.com/rumourscape/F5-TTS.git#egg=F5-TTS")
15
+
16
+ import gradio as gr
17
+ from f5_tts import f5_tts_infer # Replace with actual import from repo
18
+
19
+ def tts_function(text):
20
+ # This depends on F5-TTS repo structure
21
+ # Example: returns a path to generated audio
22
+ audio_path = f5_tts_infer(text)
23
+ return audio_path
24
+
25
+ # Gradio Interface
26
+ iface = gr.Interface(
27
+ fn=tts_function,
28
+ inputs=gr.Textbox(label="Enter Text"),
29
+ outputs=gr.Audio(label="Generated Speech"),
30
+ title="F5-TTS Speech Generator",
31
+ description="Enter text and generate speech using F5-TTS"
32
+ )
33
+
34
+ iface.launch(share=True)
pyproject.toml ADDED
@@ -0,0 +1,61 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [build-system]
2
+ requires = ["setuptools >= 61.0", "setuptools-scm>=8.0"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "f5-tts"
7
+ version = "0.1.2"
8
+ description = "F5-TTS: A Fairytaler that Fakes Fluent and Faithful Speech with Flow Matching"
9
+ readme = "README.md"
10
+ license = {text = "MIT License"}
11
+ classifiers = [
12
+ "License :: OSI Approved :: MIT License",
13
+ "Operating System :: OS Independent",
14
+ "Programming Language :: Python :: 3",
15
+ ]
16
+ dependencies = [
17
+ "accelerate>=0.33.0",
18
+ "bitsandbytes>0.37.0; platform_machine != 'arm64' and platform_system != 'Darwin'",
19
+ "cached_path",
20
+ "click",
21
+ "datasets",
22
+ "ema_pytorch>=0.5.2",
23
+ "gradio>=3.45.2",
24
+ "jieba",
25
+ "librosa",
26
+ "matplotlib",
27
+ "numpy<=1.26.4",
28
+ "pydub",
29
+ "pypinyin",
30
+ "safetensors",
31
+ "soundfile",
32
+ "tomli",
33
+ "torch>=2.0.0",
34
+ "torchaudio>=2.0.0",
35
+ "torchdiffeq",
36
+ "tqdm>=4.65.0",
37
+ "transformers",
38
+ "transformers_stream_generator",
39
+ "vocos",
40
+ "wandb",
41
+ "x_transformers>=1.31.14",
42
+ ]
43
+
44
+ [project.optional-dependencies]
45
+ eval = [
46
+ "faster_whisper==0.10.1",
47
+ "funasr",
48
+ "jiwer",
49
+ "modelscope",
50
+ "zhconv",
51
+ "zhon",
52
+ ]
53
+
54
+ [project.urls]
55
+ Homepage = "https://github.com/SWivid/F5-TTS"
56
+
57
+ [project.scripts]
58
+ "f5-tts_infer-cli" = "f5_tts.infer.infer_cli:main"
59
+ "f5-tts_infer-gradio" = "f5_tts.infer.infer_gradio:main"
60
+ "f5-tts_finetune-cli" = "f5_tts.train.finetune_cli:main"
61
+ "f5-tts_finetune-gradio" = "f5_tts.train.finetune_gradio:main"
ruff.toml ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ line-length = 120
2
+ target-version = "py310"
3
+
4
+ [lint]
5
+ # Only ignore variables with names starting with "_".
6
+ dummy-variable-rgx = "^_.*$"
7
+
8
+ [lint.isort]
9
+ force-single-line = true
10
+ lines-after-imports = 2
src/f5_tts/api.py ADDED
@@ -0,0 +1,166 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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)
src/f5_tts/eval/README.md ADDED
@@ -0,0 +1,49 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
46
+
47
+ # Evaluation for LibriSpeech-PC test-clean (cross-sentence)
48
+ python src/f5_tts/eval/eval_librispeech_test_clean.py
49
+ ```
src/f5_tts/eval/ecapa_tdnn.py ADDED
@@ -0,0 +1,330 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ )
src/f5_tts/eval/eval_infer_batch.py ADDED
@@ -0,0 +1,207 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+
38
+ tokenizer = "pinyin"
39
+ rel_path = str(files("f5_tts").joinpath("../../"))
40
+
41
+
42
+ def main():
43
+ # ---------------------- infer setting ---------------------- #
44
+
45
+ parser = argparse.ArgumentParser(description="batch inference")
46
+
47
+ parser.add_argument("-s", "--seed", default=None, type=int)
48
+ parser.add_argument("-d", "--dataset", default="Emilia_ZH_EN")
49
+ parser.add_argument("-n", "--expname", required=True)
50
+ parser.add_argument("-c", "--ckptstep", default=1200000, type=int)
51
+ parser.add_argument("-m", "--mel_spec_type", default="vocos", type=str, choices=["bigvgan", "vocos"])
52
+
53
+ parser.add_argument("-nfe", "--nfestep", default=32, type=int)
54
+ parser.add_argument("-o", "--odemethod", default="euler")
55
+ parser.add_argument("-ss", "--swaysampling", default=-1, type=float)
56
+
57
+ parser.add_argument("-t", "--testset", required=True)
58
+
59
+ args = parser.parse_args()
60
+
61
+ seed = args.seed
62
+ dataset_name = args.dataset
63
+ exp_name = args.expname
64
+ ckpt_step = args.ckptstep
65
+ ckpt_path = rel_path + f"/ckpts/{exp_name}/model_{ckpt_step}.pt"
66
+ mel_spec_type = args.mel_spec_type
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()
src/f5_tts/eval/eval_infer_batch.sh ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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.
src/f5_tts/eval/eval_librispeech_test_clean.py ADDED
@@ -0,0 +1,73 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+
6
+ sys.path.append(os.getcwd())
7
+
8
+ import multiprocessing as mp
9
+ from importlib.resources import files
10
+
11
+ import numpy as np
12
+
13
+ from f5_tts.eval.utils_eval import (
14
+ get_librispeech_test,
15
+ run_asr_wer,
16
+ run_sim,
17
+ )
18
+
19
+ rel_path = str(files("f5_tts").joinpath("../../"))
20
+
21
+
22
+ eval_task = "wer" # sim | wer
23
+ lang = "en"
24
+ metalst = rel_path + "/data/librispeech_pc_test_clean_cross_sentence.lst"
25
+ librispeech_test_clean_path = "<SOME_PATH>/LibriSpeech/test-clean" # test-clean path
26
+ gen_wav_dir = "PATH_TO_GENERATED" # generated wavs
27
+
28
+ gpus = [0, 1, 2, 3, 4, 5, 6, 7]
29
+ test_set = get_librispeech_test(metalst, gen_wav_dir, gpus, librispeech_test_clean_path)
30
+
31
+ ## In LibriSpeech, some speakers utilized varying voice characteristics for different characters in the book,
32
+ ## leading to a low similarity for the ground truth in some cases.
33
+ # test_set = get_librispeech_test(metalst, gen_wav_dir, gpus, librispeech_test_clean_path, eval_ground_truth = True) # eval ground truth
34
+
35
+ local = False
36
+ if local: # use local custom checkpoint dir
37
+ asr_ckpt_dir = "../checkpoints/Systran/faster-whisper-large-v3"
38
+ else:
39
+ asr_ckpt_dir = "" # auto download to cache dir
40
+
41
+ wavlm_ckpt_dir = "../checkpoints/UniSpeech/wavlm_large_finetune.pth"
42
+
43
+
44
+ # --------------------------- WER ---------------------------
45
+
46
+ if eval_task == "wer":
47
+ wers = []
48
+
49
+ with mp.Pool(processes=len(gpus)) as pool:
50
+ args = [(rank, lang, sub_test_set, asr_ckpt_dir) for (rank, sub_test_set) in test_set]
51
+ results = pool.map(run_asr_wer, args)
52
+ for wers_ in results:
53
+ wers.extend(wers_)
54
+
55
+ wer = round(np.mean(wers) * 100, 3)
56
+ print(f"\nTotal {len(wers)} samples")
57
+ print(f"WER : {wer}%")
58
+
59
+
60
+ # --------------------------- SIM ---------------------------
61
+
62
+ if eval_task == "sim":
63
+ sim_list = []
64
+
65
+ with mp.Pool(processes=len(gpus)) as pool:
66
+ args = [(rank, sub_test_set, wavlm_ckpt_dir) for (rank, sub_test_set) in test_set]
67
+ results = pool.map(run_sim, args)
68
+ for sim_ in results:
69
+ sim_list.extend(sim_)
70
+
71
+ sim = round(sum(sim_list) / len(sim_list), 3)
72
+ print(f"\nTotal {len(sim_list)} samples")
73
+ print(f"SIM : {sim}")
src/f5_tts/eval/eval_seedtts_testset.py ADDED
@@ -0,0 +1,75 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Evaluate with Seed-TTS testset
2
+
3
+ import sys
4
+ import os
5
+
6
+ sys.path.append(os.getcwd())
7
+
8
+ import multiprocessing as mp
9
+ from importlib.resources import files
10
+
11
+ import numpy as np
12
+
13
+ from f5_tts.eval.utils_eval import (
14
+ get_seed_tts_test,
15
+ run_asr_wer,
16
+ run_sim,
17
+ )
18
+
19
+ rel_path = str(files("f5_tts").joinpath("../../"))
20
+
21
+
22
+ eval_task = "wer" # sim | wer
23
+ lang = "zh" # zh | en
24
+ metalst = rel_path + f"/data/seedtts_testset/{lang}/meta.lst" # seed-tts testset
25
+ # gen_wav_dir = rel_path + f"/data/seedtts_testset/{lang}/wavs" # ground truth wavs
26
+ gen_wav_dir = "PATH_TO_GENERATED" # generated wavs
27
+
28
+
29
+ # NOTE. paraformer-zh result will be slightly different according to the number of gpus, cuz batchsize is different
30
+ # zh 1.254 seems a result of 4 workers wer_seed_tts
31
+ gpus = [0, 1, 2, 3, 4, 5, 6, 7]
32
+ test_set = get_seed_tts_test(metalst, gen_wav_dir, gpus)
33
+
34
+ local = False
35
+ if local: # use local custom checkpoint dir
36
+ if lang == "zh":
37
+ asr_ckpt_dir = "../checkpoints/funasr" # paraformer-zh dir under funasr
38
+ elif lang == "en":
39
+ asr_ckpt_dir = "../checkpoints/Systran/faster-whisper-large-v3"
40
+ else:
41
+ asr_ckpt_dir = "" # auto download to cache dir
42
+
43
+ wavlm_ckpt_dir = "../checkpoints/UniSpeech/wavlm_large_finetune.pth"
44
+
45
+
46
+ # --------------------------- WER ---------------------------
47
+
48
+ if eval_task == "wer":
49
+ wers = []
50
+
51
+ with mp.Pool(processes=len(gpus)) as pool:
52
+ args = [(rank, lang, sub_test_set, asr_ckpt_dir) for (rank, sub_test_set) in test_set]
53
+ results = pool.map(run_asr_wer, args)
54
+ for wers_ in results:
55
+ wers.extend(wers_)
56
+
57
+ wer = round(np.mean(wers) * 100, 3)
58
+ print(f"\nTotal {len(wers)} samples")
59
+ print(f"WER : {wer}%")
60
+
61
+
62
+ # --------------------------- SIM ---------------------------
63
+
64
+ if eval_task == "sim":
65
+ sim_list = []
66
+
67
+ with mp.Pool(processes=len(gpus)) as pool:
68
+ args = [(rank, sub_test_set, wavlm_ckpt_dir) for (rank, sub_test_set) in test_set]
69
+ results = pool.map(run_sim, args)
70
+ for sim_ in results:
71
+ sim_list.extend(sim_)
72
+
73
+ sim = round(sum(sim_list) / len(sim_list), 3)
74
+ print(f"\nTotal {len(sim_list)} samples")
75
+ print(f"SIM : {sim}")
src/f5_tts/eval/utils_eval.py ADDED
@@ -0,0 +1,405 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
src/f5_tts/infer/README.md ADDED
@@ -0,0 +1,191 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+
16
+
17
+ ## Gradio App
18
+
19
+ Currently supported features:
20
+
21
+ - Basic TTS with Chunk Inference
22
+ - Multi-Style / Multi-Speaker Generation
23
+ - Voice Chat powered by Qwen2.5-3B-Instruct
24
+
25
+ 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.
26
+
27
+ 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.
28
+
29
+ Could also be used as a component for larger application.
30
+ ```python
31
+ import gradio as gr
32
+ from f5_tts.infer.infer_gradio import app
33
+
34
+ with gr.Blocks() as main_app:
35
+ gr.Markdown("# This is an example of using F5-TTS within a bigger Gradio app")
36
+
37
+ # ... other Gradio components
38
+
39
+ app.render()
40
+
41
+ main_app.launch()
42
+ ```
43
+
44
+
45
+ ## CLI Inference
46
+
47
+ 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.
48
+
49
+ 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`.
50
+
51
+ For change vocab.txt use `--vocab_file` to provide your `vocab.txt` file.
52
+
53
+ Basically you can inference with flags:
54
+ ```bash
55
+ # Leave --ref_text "" will have ASR model transcribe (extra GPU memory usage)
56
+ f5-tts_infer-cli \
57
+ --model "F5-TTS" \
58
+ --ref_audio "ref_audio.wav" \
59
+ --ref_text "The content, subtitle or transcription of reference audio." \
60
+ --gen_text "Some text you want TTS model generate for you."
61
+
62
+ # Choose Vocoder
63
+ f5-tts_infer-cli --vocoder_name bigvgan --load_vocoder_from_local --ckpt_file <YOUR_CKPT_PATH, eg:ckpts/F5TTS_Base_bigvgan/model_1250000.pt>
64
+ f5-tts_infer-cli --vocoder_name vocos --load_vocoder_from_local --ckpt_file <YOUR_CKPT_PATH, eg:ckpts/F5TTS_Base/model_1200000.safetensors>
65
+ ```
66
+
67
+ And a `.toml` file would help with more flexible usage.
68
+
69
+ ```bash
70
+ f5-tts_infer-cli -c custom.toml
71
+ ```
72
+
73
+ For example, you can use `.toml` to pass in variables, refer to `src/f5_tts/infer/examples/basic/basic.toml`:
74
+
75
+ ```toml
76
+ # F5-TTS | E2-TTS
77
+ model = "F5-TTS"
78
+ ref_audio = "infer/examples/basic/basic_ref_en.wav"
79
+ # If an empty "", transcribes the reference audio automatically.
80
+ ref_text = "Some call me nature, others call me mother nature."
81
+ 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."
82
+ # File with text to generate. Ignores the text above.
83
+ gen_file = ""
84
+ remove_silence = false
85
+ output_dir = "tests"
86
+ ```
87
+
88
+ You can also leverage `.toml` file to do multi-style generation, refer to `src/f5_tts/infer/examples/multi/story.toml`.
89
+
90
+ ```toml
91
+ # F5-TTS | E2-TTS
92
+ model = "F5-TTS"
93
+ ref_audio = "infer/examples/multi/main.flac"
94
+ # If an empty "", transcribes the reference audio automatically.
95
+ ref_text = ""
96
+ gen_text = ""
97
+ # File with text to generate. Ignores the text above.
98
+ gen_file = "infer/examples/multi/story.txt"
99
+ remove_silence = true
100
+ output_dir = "tests"
101
+
102
+ [voices.town]
103
+ ref_audio = "infer/examples/multi/town.flac"
104
+ ref_text = ""
105
+
106
+ [voices.country]
107
+ ref_audio = "infer/examples/multi/country.flac"
108
+ ref_text = ""
109
+ ```
110
+ 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`.
111
+
112
+ ## Speech Editing
113
+
114
+ To test speech editing capabilities, use the following command:
115
+
116
+ ```bash
117
+ python src/f5_tts/infer/speech_edit.py
118
+ ```
119
+
120
+ ## Socket Realtime Client
121
+
122
+ To communicate with socket server you need to run
123
+ ```bash
124
+ python src/f5_tts/socket_server.py
125
+ ```
126
+
127
+ <details>
128
+ <summary>Then create client to communicate</summary>
129
+
130
+ ``` python
131
+ import socket
132
+ import numpy as np
133
+ import asyncio
134
+ import pyaudio
135
+
136
+ async def listen_to_voice(text, server_ip='localhost', server_port=9999):
137
+ client_socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
138
+ client_socket.connect((server_ip, server_port))
139
+
140
+ async def play_audio_stream():
141
+ buffer = b''
142
+ p = pyaudio.PyAudio()
143
+ stream = p.open(format=pyaudio.paFloat32,
144
+ channels=1,
145
+ rate=24000, # Ensure this matches the server's sampling rate
146
+ output=True,
147
+ frames_per_buffer=2048)
148
+
149
+ try:
150
+ while True:
151
+ chunk = await asyncio.get_event_loop().run_in_executor(None, client_socket.recv, 1024)
152
+ if not chunk: # End of stream
153
+ break
154
+ if b"END_OF_AUDIO" in chunk:
155
+ buffer += chunk.replace(b"END_OF_AUDIO", b"")
156
+ if buffer:
157
+ audio_array = np.frombuffer(buffer, dtype=np.float32).copy() # Make a writable copy
158
+ stream.write(audio_array.tobytes())
159
+ break
160
+ buffer += chunk
161
+ if len(buffer) >= 4096:
162
+ audio_array = np.frombuffer(buffer[:4096], dtype=np.float32).copy() # Make a writable copy
163
+ stream.write(audio_array.tobytes())
164
+ buffer = buffer[4096:]
165
+ finally:
166
+ stream.stop_stream()
167
+ stream.close()
168
+ p.terminate()
169
+
170
+ try:
171
+ # Send only the text to the server
172
+ await asyncio.get_event_loop().run_in_executor(None, client_socket.sendall, text.encode('utf-8'))
173
+ await play_audio_stream()
174
+ print("Audio playback finished.")
175
+
176
+ except Exception as e:
177
+ print(f"Error in listen_to_voice: {e}")
178
+
179
+ finally:
180
+ client_socket.close()
181
+
182
+ # Example usage: Replace this with your actual server IP and port
183
+ async def main():
184
+ await listen_to_voice("my name is jenny..", server_ip='localhost', server_port=9998)
185
+
186
+ # Run the main async function
187
+ asyncio.run(main())
188
+ ```
189
+
190
+ </details>
191
+
src/f5_tts/infer/SHARED.md ADDED
@@ -0,0 +1,85 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ - [Hindi](#hindi)
21
+ - [F5-TTS Small @ pretrain @ hi](#f5-tts-small--pretrain--hi)
22
+ - [Japanese](#japanese)
23
+ - [F5-TTS Base @ pretrain/finetune @ ja](#f5-tts-base--pretrainfinetune--ja)
24
+ - [French](#french)
25
+ - [French LibriVox @ finetune @ fr](#french-librivox--finetune--fr)
26
+
27
+
28
+ ## Multilingual
29
+
30
+ #### F5-TTS Base @ pretrain @ zh & en
31
+ |Model|🤗Hugging Face|Data (Hours)|Model License|
32
+ |:---:|:------------:|:-----------:|:-------------:|
33
+ |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|
34
+
35
+ ```bash
36
+ MODEL_CKPT: hf://SWivid/F5-TTS/F5TTS_Base/model_1200000.safetensors
37
+ VOCAB_FILE: hf://SWivid/F5-TTS/F5TTS_Base/vocab.txt
38
+ ```
39
+
40
+ *Other infos, e.g. Author info, Github repo, Link to some sampled results, Usage instruction, Tutorial (Blog, Video, etc.) ...*
41
+
42
+
43
+ ## Hindi
44
+
45
+ #### F5-TTS Small @ pretrain @ hi
46
+ |Model|🤗Hugging Face|Data (Hours)|Model License|
47
+ |:---:|:------------:|:-----------:|:-------------:|
48
+ |F5-TTS Small|[ckpt & vocab](https://huggingface.co/SPRINGLab/F5-Hindi-24KHz)|[IndicTTS Hi](https://huggingface.co/datasets/SPRINGLab/IndicTTS-Hindi) & [IndicVoices-R Hi](https://huggingface.co/datasets/SPRINGLab/IndicVoices-R_Hindi) |cc-by-4.0|
49
+
50
+ ```bash
51
+ MODEL_CKPT: hf://SPRINGLab/F5-Hindi-24KHz/model_2500000.safetensors
52
+ VOCAB_FILE: hf://SPRINGLab/F5-Hindi-24KHz/vocab.txt
53
+ ```
54
+
55
+ Authors: SPRING Lab, Indian Institute of Technology, Madras
56
+ <br>
57
+ Website: https://asr.iitm.ac.in/
58
+
59
+ ## Japanese
60
+
61
+ #### F5-TTS Base @ pretrain/finetune @ ja
62
+ |Model|🤗Hugging Face|Data (Hours)|Model License|
63
+ |:---:|:------------:|:-----------:|:-------------:|
64
+ |F5-TTS Base|[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|
65
+
66
+ ```bash
67
+ MODEL_CKPT: hf://Jmica/F5TTS/JA_8500000/model_8499660.pt
68
+ VOCAB_FILE: hf://Jmica/F5TTS/JA_8500000/vocab_updated.txt
69
+ ```
70
+
71
+ ## French
72
+
73
+ #### French LibriVox @ finetune @ fr
74
+ |Model|🤗Hugging Face|Data (Hours)|Model License|
75
+ |:---:|:------------:|:-----------:|:-------------:|
76
+ |F5-TTS French|[ckpt & vocab](https://huggingface.co/RASPIAUDIO/F5-French-MixedSpeakers-reduced)|[LibriVox](https://librivox.org/)|cc-by-nc-4.0|
77
+
78
+ ```bash
79
+ MODEL_CKPT: hf://RASPIAUDIO/F5-French-MixedSpeakers-reduced/model_last_reduced.pt
80
+ VOCAB_FILE: hf://RASPIAUDIO/F5-French-MixedSpeakers-reduced/vocab.txt
81
+ ```
82
+
83
+ - [Online Inference with Hugging Face Space](https://huggingface.co/spaces/RASPIAUDIO/f5-tts_french).
84
+ - [Tutorial video to train a new language model](https://www.youtube.com/watch?v=UO4usaOojys).
85
+ - [Discussion about this training can be found here](https://github.com/SWivid/F5-TTS/issues/434).
src/f5_tts/infer/examples/basic/basic.toml ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
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"
src/f5_tts/infer/examples/basic/basic_ref_en.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b0e22048e72414fcc1e6b6342e47a774d748a195ed34e4a5b3fcf416707f2b71
3
+ size 256018
src/f5_tts/infer/examples/basic/basic_ref_zh.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:96724a113240d1f82c6ded1334122f0176b96c9226ccd3c919e625bcfd2a3ede
3
+ size 324558
src/f5_tts/infer/examples/multi/country.flac ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bb15708b4b3875e37beec46591a5d89e1a9a63fdad3b8fe4a5c8738f4f554400
3
+ size 180321
src/f5_tts/infer/examples/multi/main.flac ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4abb1107771ce7e14926fde879b959dde6db6e572476b98684f04e45e978ab19
3
+ size 279219
src/f5_tts/infer/examples/multi/story.toml ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+
src/f5_tts/infer/examples/multi/story.txt ADDED
@@ -0,0 +1 @@
 
 
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.”
src/f5_tts/infer/examples/multi/town.flac ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e7d069b8ebd5180c3b30fde5d378f0a1ddac96722d62cf43537efc3c3f3a3ce8
3
+ size 229383
src/f5_tts/infer/examples/vocab.txt ADDED
@@ -0,0 +1,2545 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ 𠮶
src/f5_tts/infer/infer_cli.py ADDED
@@ -0,0 +1,247 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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 | F5-TTS-small | 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
+ parser.add_argument(
91
+ "--nfe",
92
+ type=int,
93
+ default=32,
94
+ help="Set the number of denoising steps (default: 32)",
95
+ )
96
+ args = parser.parse_args()
97
+
98
+ config = tomli.load(open(args.config, "rb"))
99
+
100
+ ref_audio = args.ref_audio if args.ref_audio else config["ref_audio"]
101
+ ref_text = args.ref_text if args.ref_text != "666" else config["ref_text"]
102
+ gen_text = args.gen_text if args.gen_text else config["gen_text"]
103
+ gen_file = args.gen_file if args.gen_file else config["gen_file"]
104
+
105
+ # patches for pip pkg user
106
+ if "infer/examples/" in ref_audio:
107
+ ref_audio = str(files("f5_tts").joinpath(f"{ref_audio}"))
108
+ if "infer/examples/" in gen_file:
109
+ gen_file = str(files("f5_tts").joinpath(f"{gen_file}"))
110
+ if "voices" in config:
111
+ for voice in config["voices"]:
112
+ voice_ref_audio = config["voices"][voice]["ref_audio"]
113
+ if "infer/examples/" in voice_ref_audio:
114
+ config["voices"][voice]["ref_audio"] = str(files("f5_tts").joinpath(f"{voice_ref_audio}"))
115
+
116
+ if gen_file:
117
+ gen_text = codecs.open(gen_file, "r", "utf-8").read()
118
+ output_dir = args.output_dir if args.output_dir else config["output_dir"]
119
+ output_file = args.output_file if args.output_file else config["output_file"]
120
+ model = args.model if args.model else config["model"]
121
+ ckpt_file = args.ckpt_file if args.ckpt_file else ""
122
+ vocab_file = args.vocab_file if args.vocab_file else ""
123
+ remove_silence = args.remove_silence if args.remove_silence else config["remove_silence"]
124
+ speed = args.speed
125
+ nfe_step = args.nfe
126
+ indic = False
127
+
128
+ wave_path = Path(output_dir) / output_file
129
+ # spectrogram_path = Path(output_dir) / "infer_cli_out.png"
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 == "F5-TTS-small":
159
+ model_cls = DiT
160
+ model_cfg = dict(dim=768, depth=18, heads=12, ff_mult=2, text_dim=512, conv_layers=4)
161
+ if ckpt_file == "":
162
+ if vocoder_name == "vocos":
163
+ indic = True
164
+ ckpt_file = str(cached_path(f"hf://SPRINGLab/F5-Hindi-24KHz/model_2500000.safetensors"))
165
+ vocab_file=str(cached_path("hf://SPRINGLab/F5-Hindi-24KHz/vocab.txt"))
166
+ # ckpt_file = f"ckpts/{exp_name}/model_{ckpt_step}.pt" # .pt | .safetensors; local path
167
+ elif vocoder_name == "bigvgan":
168
+ print("No default F5-TTS-small ckpt avalaible for bigvgan yet")
169
+ exit(1)
170
+
171
+ elif model == "E2-TTS":
172
+ assert vocoder_name == "vocos", "E2-TTS only supports vocoder vocos"
173
+ model_cls = UNetT
174
+ model_cfg = dict(dim=1024, depth=24, heads=16, ff_mult=4)
175
+ if ckpt_file == "":
176
+ repo_name = "E2-TTS"
177
+ exp_name = "E2TTS_Base"
178
+ ckpt_step = 1200000
179
+ ckpt_file = str(cached_path(f"hf://SWivid/{repo_name}/{exp_name}/model_{ckpt_step}.safetensors"))
180
+ # ckpt_file = f"ckpts/{exp_name}/model_{ckpt_step}.pt" # .pt | .safetensors; local path
181
+
182
+
183
+ print(f"Using {model}...")
184
+ ema_model = load_model(model_cls, model_cfg, ckpt_file, mel_spec_type=mel_spec_type, vocab_file=vocab_file)
185
+
186
+
187
+ def main_process(ref_audio, ref_text, text_gen, model_obj, mel_spec_type, remove_silence, speed):
188
+ main_voice = {"ref_audio": ref_audio, "ref_text": ref_text}
189
+ if "voices" not in config:
190
+ voices = {"main": main_voice}
191
+ else:
192
+ voices = config["voices"]
193
+ voices["main"] = main_voice
194
+ for voice in voices:
195
+ voices[voice]["ref_audio"], voices[voice]["ref_text"] = preprocess_ref_audio_text(
196
+ voices[voice]["ref_audio"], voices[voice]["ref_text"]
197
+ )
198
+ print("Voice:", voice)
199
+ print("Ref_audio:", voices[voice]["ref_audio"])
200
+ print("Ref_text:", voices[voice]["ref_text"])
201
+
202
+ generated_audio_segments = []
203
+ reg1 = r"(?=\[\w+\])"
204
+ chunks = re.split(reg1, text_gen)
205
+ reg2 = r"\[(\w+)\]"
206
+ for text in chunks:
207
+ if not text.strip():
208
+ continue
209
+ match = re.match(reg2, text)
210
+ if match:
211
+ voice = match[1]
212
+ else:
213
+ print("No voice tag found, using main.")
214
+ voice = "main"
215
+ if voice not in voices:
216
+ print(f"Voice {voice} not found, using main.")
217
+ voice = "main"
218
+ text = re.sub(reg2, "", text)
219
+ gen_text = text.strip()
220
+ ref_audio = voices[voice]["ref_audio"]
221
+ ref_text = voices[voice]["ref_text"]
222
+ print(f"Voice: {voice}")
223
+ audio, final_sample_rate, spectragram = infer_process(
224
+ ref_audio, ref_text, gen_text, model_obj, vocoder, mel_spec_type=mel_spec_type, speed=speed, nfe_step=nfe_step, indic=indic
225
+ )
226
+ generated_audio_segments.append(audio)
227
+
228
+ if generated_audio_segments:
229
+ final_wave = np.concatenate(generated_audio_segments)
230
+
231
+ if not os.path.exists(output_dir):
232
+ os.makedirs(output_dir)
233
+
234
+ with open(wave_path, "wb") as f:
235
+ sf.write(f.name, final_wave, final_sample_rate)
236
+ # Remove silence
237
+ if remove_silence:
238
+ remove_silence_for_generated_wav(f.name)
239
+ print(f.name)
240
+
241
+
242
+ def main():
243
+ main_process(ref_audio, ref_text, gen_text, ema_model, mel_spec_type, remove_silence, speed)
244
+
245
+
246
+ if __name__ == "__main__":
247
+ main()
src/f5_tts/infer/infer_gradio.py ADDED
@@ -0,0 +1,875 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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_small(ckpt_path=str(cached_path("hf://SPRINGLab/F5-Hindi-24KHz/model_2500000.safetensors")), vocab_path=str(cached_path("hf://SPRINGLab/F5-Hindi-24KHz/vocab.txt"))):
53
+ F5TTS_small_model_cfg = dict(dim=768, depth=18, heads=12, ff_mult=2, text_dim=512, conv_layers=4)
54
+ return load_model(DiT, F5TTS_small_model_cfg, ckpt_path, vocab_file=vocab_path)
55
+
56
+ def load_f5tts(ckpt_path=str(cached_path("hf://SWivid/F5-TTS/F5TTS_Base/model_1200000.safetensors"))):
57
+ F5TTS_model_cfg = dict(dim=1024, depth=22, heads=16, ff_mult=2, text_dim=512, conv_layers=4)
58
+ return load_model(DiT, F5TTS_model_cfg, ckpt_path)
59
+
60
+
61
+ def load_e2tts(ckpt_path=str(cached_path("hf://SWivid/E2-TTS/E2TTS_Base/model_1200000.safetensors"))):
62
+ E2TTS_model_cfg = dict(dim=1024, depth=24, heads=16, ff_mult=4)
63
+ return load_model(UNetT, E2TTS_model_cfg, ckpt_path)
64
+
65
+
66
+ def load_custom(ckpt_path: str, vocab_path="", model_cfg=None):
67
+ ckpt_path, vocab_path = ckpt_path.strip(), vocab_path.strip()
68
+ if ckpt_path.startswith("hf://"):
69
+ ckpt_path = str(cached_path(ckpt_path))
70
+ if vocab_path.startswith("hf://"):
71
+ vocab_path = str(cached_path(vocab_path))
72
+ if model_cfg is None:
73
+ model_cfg = dict(dim=1024, depth=22, heads=16, ff_mult=2, text_dim=512, conv_layers=4)
74
+ return load_model(DiT, model_cfg, ckpt_path, vocab_file=vocab_path)
75
+
76
+
77
+
78
+ F5TTS_small_ema_model = load_f5tts_small()
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, nfe_step=32, cross_fade_duration=0.15, speed=1, show_info=gr.Info
113
+ ):
114
+ ref_audio, ref_text = preprocess_ref_audio_text(ref_audio_orig, ref_text, show_info=show_info)
115
+
116
+ indic = False
117
+
118
+ if model == "F5-TTS":
119
+ ema_model = F5TTS_ema_model
120
+ elif model == "F5-TTS-small":
121
+ indic = True
122
+ ema_model = F5TTS_small_ema_model
123
+ elif model == "E2-TTS":
124
+ global E2TTS_ema_model
125
+ if E2TTS_ema_model is None:
126
+ show_info("Loading E2-TTS model...")
127
+ E2TTS_ema_model = load_e2tts()
128
+ ema_model = E2TTS_ema_model
129
+ elif isinstance(model, list) and model[0] == "Custom":
130
+ assert not USING_SPACES, "Only official checkpoints allowed in Spaces."
131
+ global custom_ema_model, pre_custom_path
132
+ if pre_custom_path != model[1]:
133
+ show_info("Loading Custom TTS model...")
134
+ custom_ema_model = load_custom(model[1], vocab_path=model[2])
135
+ pre_custom_path = model[1]
136
+ ema_model = custom_ema_model
137
+
138
+ final_wave, final_sample_rate, combined_spectrogram = infer_process(
139
+ ref_audio,
140
+ ref_text,
141
+ gen_text,
142
+ ema_model,
143
+ vocoder,
144
+ cross_fade_duration=cross_fade_duration,
145
+ speed=speed,
146
+ nfe_step=nfe_step,
147
+ indic=indic,
148
+ show_info=show_info,
149
+ progress=gr.Progress(),
150
+ )
151
+
152
+ # Remove silence
153
+ if remove_silence:
154
+ with tempfile.NamedTemporaryFile(delete=False, suffix=".wav") as f:
155
+ sf.write(f.name, final_wave, final_sample_rate)
156
+ remove_silence_for_generated_wav(f.name)
157
+ final_wave, _ = torchaudio.load(f.name)
158
+ final_wave = final_wave.squeeze().cpu().numpy()
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=2.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
+ nfe_slider = gr.Slider(
209
+ label="NFE Steps",
210
+ minimum=4,
211
+ maximum=64,
212
+ value=32,
213
+ step=2,
214
+ info="Set the number of denoising steps.",
215
+ )
216
+
217
+ audio_output = gr.Audio(label="Synthesized Audio")
218
+ spectrogram_output = gr.Image(label="Spectrogram")
219
+
220
+ @gpu_decorator
221
+ def basic_tts(
222
+ ref_audio_input,
223
+ ref_text_input,
224
+ gen_text_input,
225
+ remove_silence,
226
+ nfe_slider,
227
+ cross_fade_duration_slider,
228
+ speed_slider,
229
+ ):
230
+ audio_out, spectrogram_path, ref_text_out = infer(
231
+ ref_audio_input,
232
+ ref_text_input,
233
+ gen_text_input,
234
+ tts_model_choice,
235
+ remove_silence,
236
+ nfe_slider,
237
+ cross_fade_duration_slider,
238
+ speed_slider,
239
+ )
240
+ return audio_out, spectrogram_path, gr.update(value=ref_text_out)
241
+
242
+ generate_btn.click(
243
+ basic_tts,
244
+ inputs=[
245
+ ref_audio_input,
246
+ ref_text_input,
247
+ gen_text_input,
248
+ remove_silence,
249
+ nfe_slider,
250
+ cross_fade_duration_slider,
251
+ speed_slider,
252
+ ],
253
+ outputs=[audio_output, spectrogram_output, ref_text_input],
254
+ )
255
+
256
+
257
+ def parse_speechtypes_text(gen_text):
258
+ # Pattern to find {speechtype}
259
+ pattern = r"\{(.*?)\}"
260
+
261
+ # Split the text by the pattern
262
+ tokens = re.split(pattern, gen_text)
263
+
264
+ segments = []
265
+
266
+ current_style = "Regular"
267
+
268
+ for i in range(len(tokens)):
269
+ if i % 2 == 0:
270
+ # This is text
271
+ text = tokens[i].strip()
272
+ if text:
273
+ segments.append({"style": current_style, "text": text})
274
+ else:
275
+ # This is style
276
+ style = tokens[i].strip()
277
+ current_style = style
278
+
279
+ return segments
280
+
281
+
282
+ with gr.Blocks() as app_multistyle:
283
+ # New section for multistyle generation
284
+ gr.Markdown(
285
+ """
286
+ # Multiple Speech-Type Generation
287
+
288
+ 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.
289
+ """
290
+ )
291
+
292
+ with gr.Row():
293
+ gr.Markdown(
294
+ """
295
+ **Example Input:**
296
+ {Regular} Hello, I'd like to order a sandwich please.
297
+ {Surprised} What do you mean you're out of bread?
298
+ {Sad} I really wanted a sandwich though...
299
+ {Angry} You know what, darn you and your little shop!
300
+ {Whisper} I'll just go back home and cry now.
301
+ {Shouting} Why me?!
302
+ """
303
+ )
304
+
305
+ gr.Markdown(
306
+ """
307
+ **Example Input 2:**
308
+ {Speaker1_Happy} Hello, I'd like to order a sandwich please.
309
+ {Speaker2_Regular} Sorry, we're out of bread.
310
+ {Speaker1_Sad} I really wanted a sandwich though...
311
+ {Speaker2_Whisper} I'll give you the last one I was hiding.
312
+ """
313
+ )
314
+
315
+ gr.Markdown(
316
+ "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."
317
+ )
318
+
319
+ # Regular speech type (mandatory)
320
+ with gr.Row():
321
+ with gr.Column():
322
+ regular_name = gr.Textbox(value="Regular", label="Speech Type Name")
323
+ regular_insert = gr.Button("Insert Label", variant="secondary")
324
+ regular_audio = gr.Audio(label="Regular Reference Audio", type="filepath")
325
+ regular_ref_text = gr.Textbox(label="Reference Text (Regular)", lines=2)
326
+
327
+ # Regular speech type (max 100)
328
+ max_speech_types = 100
329
+ speech_type_rows = [] # 99
330
+ speech_type_names = [regular_name] # 100
331
+ speech_type_audios = [regular_audio] # 100
332
+ speech_type_ref_texts = [regular_ref_text] # 100
333
+ speech_type_delete_btns = [] # 99
334
+ speech_type_insert_btns = [regular_insert] # 100
335
+
336
+ # Additional speech types (99 more)
337
+ for i in range(max_speech_types - 1):
338
+ with gr.Row(visible=False) as row:
339
+ with gr.Column():
340
+ name_input = gr.Textbox(label="Speech Type Name")
341
+ delete_btn = gr.Button("Delete Type", variant="secondary")
342
+ insert_btn = gr.Button("Insert Label", variant="secondary")
343
+ audio_input = gr.Audio(label="Reference Audio", type="filepath")
344
+ ref_text_input = gr.Textbox(label="Reference Text", lines=2)
345
+ speech_type_rows.append(row)
346
+ speech_type_names.append(name_input)
347
+ speech_type_audios.append(audio_input)
348
+ speech_type_ref_texts.append(ref_text_input)
349
+ speech_type_delete_btns.append(delete_btn)
350
+ speech_type_insert_btns.append(insert_btn)
351
+
352
+ # Button to add speech type
353
+ add_speech_type_btn = gr.Button("Add Speech Type")
354
+
355
+ # Keep track of current number of speech types
356
+ speech_type_count = gr.State(value=1)
357
+
358
+ # Function to add a speech type
359
+ def add_speech_type_fn(speech_type_count):
360
+ if speech_type_count < max_speech_types:
361
+ speech_type_count += 1
362
+ # Prepare updates for the rows
363
+ row_updates = []
364
+ for i in range(1, max_speech_types):
365
+ if i < speech_type_count:
366
+ row_updates.append(gr.update(visible=True))
367
+ else:
368
+ row_updates.append(gr.update())
369
+ else:
370
+ # Optionally, show a warning
371
+ row_updates = [gr.update() for _ in range(1, max_speech_types)]
372
+ return [speech_type_count] + row_updates
373
+
374
+ add_speech_type_btn.click(
375
+ add_speech_type_fn, inputs=speech_type_count, outputs=[speech_type_count] + speech_type_rows
376
+ )
377
+
378
+ # Function to delete a speech type
379
+ def make_delete_speech_type_fn(index):
380
+ def delete_speech_type_fn(speech_type_count):
381
+ # Prepare updates
382
+ row_updates = []
383
+
384
+ for i in range(1, max_speech_types):
385
+ if i == index:
386
+ row_updates.append(gr.update(visible=False))
387
+ else:
388
+ row_updates.append(gr.update())
389
+
390
+ speech_type_count = max(1, speech_type_count)
391
+
392
+ return [speech_type_count] + row_updates
393
+
394
+ return delete_speech_type_fn
395
+
396
+ # Update delete button clicks
397
+ for i, delete_btn in enumerate(speech_type_delete_btns):
398
+ delete_fn = make_delete_speech_type_fn(i)
399
+ delete_btn.click(delete_fn, inputs=speech_type_count, outputs=[speech_type_count] + speech_type_rows)
400
+
401
+ # Text input for the prompt
402
+ gen_text_input_multistyle = gr.Textbox(
403
+ label="Text to Generate",
404
+ lines=10,
405
+ 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?!",
406
+ )
407
+
408
+ def make_insert_speech_type_fn(index):
409
+ def insert_speech_type_fn(current_text, speech_type_name):
410
+ current_text = current_text or ""
411
+ speech_type_name = speech_type_name or "None"
412
+ updated_text = current_text + f"{{{speech_type_name}}} "
413
+ return gr.update(value=updated_text)
414
+
415
+ return insert_speech_type_fn
416
+
417
+ for i, insert_btn in enumerate(speech_type_insert_btns):
418
+ insert_fn = make_insert_speech_type_fn(i)
419
+ insert_btn.click(
420
+ insert_fn,
421
+ inputs=[gen_text_input_multistyle, speech_type_names[i]],
422
+ outputs=gen_text_input_multistyle,
423
+ )
424
+
425
+ with gr.Accordion("Advanced Settings", open=False):
426
+ remove_silence_multistyle = gr.Checkbox(
427
+ label="Remove Silences",
428
+ value=True,
429
+ )
430
+
431
+ # Generate button
432
+ generate_multistyle_btn = gr.Button("Generate Multi-Style Speech", variant="primary")
433
+
434
+ # Output audio
435
+ audio_output_multistyle = gr.Audio(label="Synthesized Audio")
436
+
437
+ @gpu_decorator
438
+ def generate_multistyle_speech(
439
+ gen_text,
440
+ *args,
441
+ ):
442
+ speech_type_names_list = args[:max_speech_types]
443
+ speech_type_audios_list = args[max_speech_types : 2 * max_speech_types]
444
+ speech_type_ref_texts_list = args[2 * max_speech_types : 3 * max_speech_types]
445
+ remove_silence = args[3 * max_speech_types]
446
+ # Collect the speech types and their audios into a dict
447
+ speech_types = OrderedDict()
448
+
449
+ ref_text_idx = 0
450
+ for name_input, audio_input, ref_text_input in zip(
451
+ speech_type_names_list, speech_type_audios_list, speech_type_ref_texts_list
452
+ ):
453
+ if name_input and audio_input:
454
+ speech_types[name_input] = {"audio": audio_input, "ref_text": ref_text_input}
455
+ else:
456
+ speech_types[f"@{ref_text_idx}@"] = {"audio": "", "ref_text": ""}
457
+ ref_text_idx += 1
458
+
459
+ # Parse the gen_text into segments
460
+ segments = parse_speechtypes_text(gen_text)
461
+
462
+ # For each segment, generate speech
463
+ generated_audio_segments = []
464
+ current_style = "Regular"
465
+
466
+ for segment in segments:
467
+ style = segment["style"]
468
+ text = segment["text"]
469
+
470
+ if style in speech_types:
471
+ current_style = style
472
+ else:
473
+ # If style not available, default to Regular
474
+ current_style = "Regular"
475
+
476
+ ref_audio = speech_types[current_style]["audio"]
477
+ ref_text = speech_types[current_style].get("ref_text", "")
478
+
479
+ # Generate speech for this segment
480
+ audio_out, _, ref_text_out = infer(
481
+ ref_audio, ref_text, text, tts_model_choice, remove_silence, 0, show_info=print
482
+ ) # show_info=print no pull to top when generating
483
+ sr, audio_data = audio_out
484
+
485
+ generated_audio_segments.append(audio_data)
486
+ speech_types[current_style]["ref_text"] = ref_text_out
487
+
488
+ # Concatenate all audio segments
489
+ if generated_audio_segments:
490
+ final_audio_data = np.concatenate(generated_audio_segments)
491
+ return [(sr, final_audio_data)] + [
492
+ gr.update(value=speech_types[style]["ref_text"]) for style in speech_types
493
+ ]
494
+ else:
495
+ gr.Warning("No audio generated.")
496
+ return [None] + [gr.update(value=speech_types[style]["ref_text"]) for style in speech_types]
497
+
498
+ generate_multistyle_btn.click(
499
+ generate_multistyle_speech,
500
+ inputs=[
501
+ gen_text_input_multistyle,
502
+ ]
503
+ + speech_type_names
504
+ + speech_type_audios
505
+ + speech_type_ref_texts
506
+ + [
507
+ remove_silence_multistyle,
508
+ ],
509
+ outputs=[audio_output_multistyle] + speech_type_ref_texts,
510
+ )
511
+
512
+ # Validation function to disable Generate button if speech types are missing
513
+ def validate_speech_types(gen_text, regular_name, *args):
514
+ speech_type_names_list = args[:max_speech_types]
515
+
516
+ # Collect the speech types names
517
+ speech_types_available = set()
518
+ if regular_name:
519
+ speech_types_available.add(regular_name)
520
+ for name_input in speech_type_names_list:
521
+ if name_input:
522
+ speech_types_available.add(name_input)
523
+
524
+ # Parse the gen_text to get the speech types used
525
+ segments = parse_speechtypes_text(gen_text)
526
+ speech_types_in_text = set(segment["style"] for segment in segments)
527
+
528
+ # Check if all speech types in text are available
529
+ missing_speech_types = speech_types_in_text - speech_types_available
530
+
531
+ if missing_speech_types:
532
+ # Disable the generate button
533
+ return gr.update(interactive=False)
534
+ else:
535
+ # Enable the generate button
536
+ return gr.update(interactive=True)
537
+
538
+ gen_text_input_multistyle.change(
539
+ validate_speech_types,
540
+ inputs=[gen_text_input_multistyle, regular_name] + speech_type_names,
541
+ outputs=generate_multistyle_btn,
542
+ )
543
+
544
+
545
+ with gr.Blocks() as app_chat:
546
+ gr.Markdown(
547
+ """
548
+ # Voice Chat
549
+ Have a conversation with an AI using your reference voice!
550
+ 1. Upload a reference audio clip and optionally its transcript.
551
+ 2. Load the chat model.
552
+ 3. Record your message through your microphone.
553
+ 4. The AI will respond using the reference voice.
554
+ """
555
+ )
556
+
557
+ if not USING_SPACES:
558
+ load_chat_model_btn = gr.Button("Load Chat Model", variant="primary")
559
+
560
+ chat_interface_container = gr.Column(visible=False)
561
+
562
+ @gpu_decorator
563
+ def load_chat_model():
564
+ global chat_model_state, chat_tokenizer_state
565
+ if chat_model_state is None:
566
+ show_info = gr.Info
567
+ show_info("Loading chat model...")
568
+ model_name = "Qwen/Qwen2.5-3B-Instruct"
569
+ chat_model_state = AutoModelForCausalLM.from_pretrained(
570
+ model_name, torch_dtype="auto", device_map="auto"
571
+ )
572
+ chat_tokenizer_state = AutoTokenizer.from_pretrained(model_name)
573
+ show_info("Chat model loaded.")
574
+
575
+ return gr.update(visible=False), gr.update(visible=True)
576
+
577
+ load_chat_model_btn.click(load_chat_model, outputs=[load_chat_model_btn, chat_interface_container])
578
+
579
+ else:
580
+ chat_interface_container = gr.Column()
581
+
582
+ if chat_model_state is None:
583
+ model_name = "Qwen/Qwen2.5-3B-Instruct"
584
+ chat_model_state = AutoModelForCausalLM.from_pretrained(model_name, torch_dtype="auto", device_map="auto")
585
+ chat_tokenizer_state = AutoTokenizer.from_pretrained(model_name)
586
+
587
+ with chat_interface_container:
588
+ with gr.Row():
589
+ with gr.Column():
590
+ ref_audio_chat = gr.Audio(label="Reference Audio", type="filepath")
591
+ with gr.Column():
592
+ with gr.Accordion("Advanced Settings", open=False):
593
+ remove_silence_chat = gr.Checkbox(
594
+ label="Remove Silences",
595
+ value=True,
596
+ )
597
+ ref_text_chat = gr.Textbox(
598
+ label="Reference Text",
599
+ info="Optional: Leave blank to auto-transcribe",
600
+ lines=2,
601
+ )
602
+ system_prompt_chat = gr.Textbox(
603
+ label="System Prompt",
604
+ 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.",
605
+ lines=2,
606
+ )
607
+
608
+ chatbot_interface = gr.Chatbot(label="Conversation")
609
+
610
+ with gr.Row():
611
+ with gr.Column():
612
+ audio_input_chat = gr.Microphone(
613
+ label="Speak your message",
614
+ type="filepath",
615
+ )
616
+ audio_output_chat = gr.Audio(autoplay=True)
617
+ with gr.Column():
618
+ text_input_chat = gr.Textbox(
619
+ label="Type your message",
620
+ lines=1,
621
+ )
622
+ send_btn_chat = gr.Button("Send Message")
623
+ clear_btn_chat = gr.Button("Clear Conversation")
624
+
625
+ conversation_state = gr.State(
626
+ value=[
627
+ {
628
+ "role": "system",
629
+ "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.",
630
+ }
631
+ ]
632
+ )
633
+
634
+ # Modify process_audio_input to use model and tokenizer from state
635
+ @gpu_decorator
636
+ def process_audio_input(audio_path, text, history, conv_state):
637
+ """Handle audio or text input from user"""
638
+
639
+ if not audio_path and not text.strip():
640
+ return history, conv_state, ""
641
+
642
+ if audio_path:
643
+ text = preprocess_ref_audio_text(audio_path, text)[1]
644
+
645
+ if not text.strip():
646
+ return history, conv_state, ""
647
+
648
+ conv_state.append({"role": "user", "content": text})
649
+ history.append((text, None))
650
+
651
+ response = generate_response(conv_state, chat_model_state, chat_tokenizer_state)
652
+
653
+ conv_state.append({"role": "assistant", "content": response})
654
+ history[-1] = (text, response)
655
+
656
+ return history, conv_state, ""
657
+
658
+ @gpu_decorator
659
+ def generate_audio_response(history, ref_audio, ref_text, remove_silence):
660
+ """Generate TTS audio for AI response"""
661
+ if not history or not ref_audio:
662
+ return None
663
+
664
+ last_user_message, last_ai_response = history[-1]
665
+ if not last_ai_response:
666
+ return None
667
+
668
+ audio_result, _, ref_text_out = infer(
669
+ ref_audio,
670
+ ref_text,
671
+ last_ai_response,
672
+ tts_model_choice,
673
+ remove_silence,
674
+ cross_fade_duration=0.15,
675
+ speed=1.0,
676
+ show_info=print, # show_info=print no pull to top when generating
677
+ )
678
+ return audio_result, gr.update(value=ref_text_out)
679
+
680
+ def clear_conversation():
681
+ """Reset the conversation"""
682
+ return [], [
683
+ {
684
+ "role": "system",
685
+ "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.",
686
+ }
687
+ ]
688
+
689
+ def update_system_prompt(new_prompt):
690
+ """Update the system prompt and reset the conversation"""
691
+ new_conv_state = [{"role": "system", "content": new_prompt}]
692
+ return [], new_conv_state
693
+
694
+ # Handle audio input
695
+ audio_input_chat.stop_recording(
696
+ process_audio_input,
697
+ inputs=[audio_input_chat, text_input_chat, chatbot_interface, conversation_state],
698
+ outputs=[chatbot_interface, conversation_state],
699
+ ).then(
700
+ generate_audio_response,
701
+ inputs=[chatbot_interface, ref_audio_chat, ref_text_chat, remove_silence_chat],
702
+ outputs=[audio_output_chat, ref_text_chat],
703
+ ).then(
704
+ lambda: None,
705
+ None,
706
+ audio_input_chat,
707
+ )
708
+
709
+ # Handle text input
710
+ text_input_chat.submit(
711
+ process_audio_input,
712
+ inputs=[audio_input_chat, text_input_chat, chatbot_interface, conversation_state],
713
+ outputs=[chatbot_interface, conversation_state],
714
+ ).then(
715
+ generate_audio_response,
716
+ inputs=[chatbot_interface, ref_audio_chat, ref_text_chat, remove_silence_chat],
717
+ outputs=[audio_output_chat, ref_text_chat],
718
+ ).then(
719
+ lambda: None,
720
+ None,
721
+ text_input_chat,
722
+ )
723
+
724
+ # Handle send button
725
+ send_btn_chat.click(
726
+ process_audio_input,
727
+ inputs=[audio_input_chat, text_input_chat, chatbot_interface, conversation_state],
728
+ outputs=[chatbot_interface, conversation_state],
729
+ ).then(
730
+ generate_audio_response,
731
+ inputs=[chatbot_interface, ref_audio_chat, ref_text_chat, remove_silence_chat],
732
+ outputs=[audio_output_chat, ref_text_chat],
733
+ ).then(
734
+ lambda: None,
735
+ None,
736
+ text_input_chat,
737
+ )
738
+
739
+ # Handle clear button
740
+ clear_btn_chat.click(
741
+ clear_conversation,
742
+ outputs=[chatbot_interface, conversation_state],
743
+ )
744
+
745
+ # Handle system prompt change and reset conversation
746
+ system_prompt_chat.change(
747
+ update_system_prompt,
748
+ inputs=system_prompt_chat,
749
+ outputs=[chatbot_interface, conversation_state],
750
+ )
751
+
752
+
753
+ with gr.Blocks() as app:
754
+ gr.Markdown(
755
+ """
756
+ # E2/F5 TTS
757
+
758
+ This is a local web UI for F5 TTS with advanced batch processing support. This app supports the following TTS models:
759
+
760
+ * [F5-TTS](https://arxiv.org/abs/2410.06885) (A Fairytaler that Fakes Fluent and Faithful Speech with Flow Matching)
761
+ * [E2 TTS](https://arxiv.org/abs/2406.18009) (Embarrassingly Easy Fully Non-Autoregressive Zero-Shot TTS)
762
+
763
+ The checkpoints currently support English and Chinese.
764
+
765
+ 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).
766
+
767
+ **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.**
768
+ """
769
+ )
770
+
771
+ last_used_custom = files("f5_tts").joinpath("infer/.cache/last_used_custom.txt")
772
+
773
+ def load_last_used_custom():
774
+ try:
775
+ with open(last_used_custom, "r") as f:
776
+ return f.read().split(",")
777
+ except FileNotFoundError:
778
+ last_used_custom.parent.mkdir(parents=True, exist_ok=True)
779
+ return [
780
+ "hf://SWivid/F5-TTS/F5TTS_Base/model_1200000.safetensors",
781
+ "hf://SWivid/F5-TTS/F5TTS_Base/vocab.txt",
782
+ ]
783
+
784
+ def switch_tts_model(new_choice):
785
+ global tts_model_choice
786
+ if new_choice == "Custom": # override in case webpage is refreshed
787
+ custom_ckpt_path, custom_vocab_path = load_last_used_custom()
788
+ tts_model_choice = ["Custom", custom_ckpt_path, custom_vocab_path]
789
+ return gr.update(visible=True, value=custom_ckpt_path), gr.update(visible=True, value=custom_vocab_path)
790
+ else:
791
+ tts_model_choice = new_choice
792
+ return gr.update(visible=False), gr.update(visible=False)
793
+
794
+ def set_custom_model(custom_ckpt_path, custom_vocab_path):
795
+ global tts_model_choice
796
+ tts_model_choice = ["Custom", custom_ckpt_path, custom_vocab_path]
797
+ with open(last_used_custom, "w") as f:
798
+ f.write(f"{custom_ckpt_path},{custom_vocab_path}")
799
+
800
+ with gr.Row():
801
+ if not USING_SPACES:
802
+ choose_tts_model = gr.Radio(
803
+ choices=[DEFAULT_TTS_MODEL, "F5-TTS-small", "E2-TTS", "Custom"], label="Choose TTS Model", value=DEFAULT_TTS_MODEL
804
+ )
805
+ else:
806
+ choose_tts_model = gr.Radio(
807
+ choices=[DEFAULT_TTS_MODEL, "E2-TTS"], label="Choose TTS Model", value=DEFAULT_TTS_MODEL
808
+ )
809
+ custom_ckpt_path = gr.Dropdown(
810
+ choices=["hf://SWivid/F5-TTS/F5TTS_Base/model_1200000.safetensors"],
811
+ value=load_last_used_custom()[0],
812
+ allow_custom_value=True,
813
+ label="MODEL CKPT: local_path | hf://user_id/repo_id/model_ckpt",
814
+ visible=False,
815
+ )
816
+ custom_vocab_path = gr.Dropdown(
817
+ choices=["hf://SWivid/F5-TTS/F5TTS_Base/vocab.txt"],
818
+ value=load_last_used_custom()[1],
819
+ allow_custom_value=True,
820
+ label="VOCAB FILE: local_path | hf://user_id/repo_id/vocab_file",
821
+ visible=False,
822
+ )
823
+
824
+ choose_tts_model.change(
825
+ switch_tts_model,
826
+ inputs=[choose_tts_model],
827
+ outputs=[custom_ckpt_path, custom_vocab_path],
828
+ show_progress="hidden",
829
+ )
830
+ custom_ckpt_path.change(
831
+ set_custom_model,
832
+ inputs=[custom_ckpt_path, custom_vocab_path],
833
+ show_progress="hidden",
834
+ )
835
+ custom_vocab_path.change(
836
+ set_custom_model,
837
+ inputs=[custom_ckpt_path, custom_vocab_path],
838
+ show_progress="hidden",
839
+ )
840
+
841
+ gr.TabbedInterface(
842
+ [app_tts, app_multistyle, app_chat, app_credits],
843
+ ["Basic-TTS", "Multi-Speech", "Voice-Chat", "Credits"],
844
+ )
845
+
846
+
847
+ @click.command()
848
+ @click.option("--port", "-p", default=None, type=int, help="Port to run the app on")
849
+ @click.option("--host", "-H", default=None, help="Host to run the app on")
850
+ @click.option(
851
+ "--share",
852
+ "-s",
853
+ default=False,
854
+ is_flag=True,
855
+ help="Share the app via Gradio share link",
856
+ )
857
+ @click.option("--api", "-a", default=True, is_flag=True, help="Allow API access")
858
+ @click.option(
859
+ "--root_path",
860
+ "-r",
861
+ default=None,
862
+ type=str,
863
+ 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".',
864
+ )
865
+ def main(port, host, share, api, root_path):
866
+ global app
867
+ print("Starting app...")
868
+ app.queue(api_open=api).launch(server_name=host, server_port=port, share=share, show_api=api, root_path=root_path)
869
+
870
+
871
+ if __name__ == "__main__":
872
+ if not USING_SPACES:
873
+ main()
874
+ else:
875
+ app.queue().launch()
src/f5_tts/infer/speech_edit.py ADDED
@@ -0,0 +1,193 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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}")
src/f5_tts/infer/utils_infer.py ADDED
@@ -0,0 +1,544 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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 if "cuda" in device and torch.cuda.get_device_properties(device).major >= 6 else torch.float32
142
+ )
143
+ global asr_pipe
144
+ asr_pipe = pipeline(
145
+ "automatic-speech-recognition",
146
+ model="openai/whisper-large-v3-turbo",
147
+ torch_dtype=dtype,
148
+ device=device,
149
+ )
150
+
151
+
152
+ # transcribe
153
+
154
+
155
+ def transcribe(ref_audio, language=None):
156
+ global asr_pipe
157
+ if asr_pipe is None:
158
+ initialize_asr_pipeline(device=device)
159
+ return asr_pipe(
160
+ ref_audio,
161
+ chunk_length_s=30,
162
+ batch_size=128,
163
+ generate_kwargs={"task": "transcribe", "language": language} if language else {"task": "transcribe"},
164
+ return_timestamps=False,
165
+ )["text"].strip()
166
+
167
+
168
+ # load model checkpoint for inference
169
+
170
+
171
+ def load_checkpoint(model, ckpt_path, device: str, dtype=None, use_ema=True):
172
+ if dtype is None:
173
+ dtype = (
174
+ torch.float16 if "cuda" in device and torch.cuda.get_device_properties(device).major >= 6 else torch.float32
175
+ )
176
+ model = model.to(dtype)
177
+
178
+ ckpt_type = ckpt_path.split(".")[-1]
179
+ if ckpt_type == "safetensors":
180
+ from safetensors.torch import load_file
181
+
182
+ checkpoint = load_file(ckpt_path, device=device)
183
+ else:
184
+ checkpoint = torch.load(ckpt_path, map_location=device, weights_only=True)
185
+
186
+ if use_ema:
187
+ if ckpt_type == "safetensors":
188
+ checkpoint = {"ema_model_state_dict": checkpoint}
189
+ checkpoint["model_state_dict"] = {
190
+ k.replace("ema_model.", ""): v
191
+ for k, v in checkpoint["ema_model_state_dict"].items()
192
+ if k not in ["initted", "step"]
193
+ }
194
+
195
+ # patch for backward compatibility, 305e3ea
196
+ for key in ["mel_spec.mel_stft.mel_scale.fb", "mel_spec.mel_stft.spectrogram.window"]:
197
+ if key in checkpoint["model_state_dict"]:
198
+ del checkpoint["model_state_dict"][key]
199
+
200
+ model.load_state_dict(checkpoint["model_state_dict"])
201
+ else:
202
+ if ckpt_type == "safetensors":
203
+ checkpoint = {"model_state_dict": checkpoint}
204
+ model.load_state_dict(checkpoint["model_state_dict"])
205
+
206
+ del checkpoint
207
+ torch.cuda.empty_cache()
208
+
209
+ return model.to(device)
210
+
211
+
212
+ # load model for inference
213
+
214
+
215
+ def load_model(
216
+ model_cls,
217
+ model_cfg,
218
+ ckpt_path,
219
+ mel_spec_type=mel_spec_type,
220
+ vocab_file="",
221
+ ode_method=ode_method,
222
+ use_ema=True,
223
+ device=device,
224
+ ):
225
+ if vocab_file == "":
226
+ vocab_file = str(files("f5_tts").joinpath("infer/examples/vocab.txt"))
227
+ tokenizer = "custom"
228
+
229
+ print("\nvocab : ", vocab_file)
230
+ print("token : ", tokenizer)
231
+ print("model : ", ckpt_path, "\n")
232
+
233
+ vocab_char_map, vocab_size = get_tokenizer(vocab_file, tokenizer)
234
+ model = CFM(
235
+ transformer=model_cls(**model_cfg, text_num_embeds=vocab_size, mel_dim=n_mel_channels),
236
+ mel_spec_kwargs=dict(
237
+ n_fft=n_fft,
238
+ hop_length=hop_length,
239
+ win_length=win_length,
240
+ n_mel_channels=n_mel_channels,
241
+ target_sample_rate=target_sample_rate,
242
+ mel_spec_type=mel_spec_type,
243
+ ),
244
+ odeint_kwargs=dict(
245
+ method=ode_method,
246
+ ),
247
+ vocab_char_map=vocab_char_map,
248
+ ).to(device)
249
+
250
+ dtype = torch.float32 if mel_spec_type == "bigvgan" else None
251
+ model = load_checkpoint(model, ckpt_path, device, dtype=dtype, use_ema=use_ema)
252
+
253
+ return model
254
+
255
+
256
+ def remove_silence_edges(audio, silence_threshold=-42):
257
+ # Remove silence from the start
258
+ non_silent_start_idx = silence.detect_leading_silence(audio, silence_threshold=silence_threshold)
259
+ audio = audio[non_silent_start_idx:]
260
+
261
+ # Remove silence from the end
262
+ non_silent_end_duration = audio.duration_seconds
263
+ for ms in reversed(audio):
264
+ if ms.dBFS > silence_threshold:
265
+ break
266
+ non_silent_end_duration -= 0.001
267
+ trimmed_audio = audio[: int(non_silent_end_duration * 1000)]
268
+
269
+ return trimmed_audio
270
+
271
+
272
+ # preprocess reference audio and text
273
+
274
+
275
+ def preprocess_ref_audio_text(ref_audio_orig, ref_text, clip_short=True, show_info=print, device=device):
276
+ show_info("Converting audio...")
277
+ with tempfile.NamedTemporaryFile(delete=False, suffix=".wav") as f:
278
+ aseg = AudioSegment.from_file(ref_audio_orig)
279
+
280
+ if clip_short:
281
+ # 1. try to find long silence for clipping
282
+ non_silent_segs = silence.split_on_silence(
283
+ aseg, min_silence_len=1000, silence_thresh=-50, keep_silence=1000, seek_step=10
284
+ )
285
+ non_silent_wave = AudioSegment.silent(duration=0)
286
+ for non_silent_seg in non_silent_segs:
287
+ if len(non_silent_wave) > 6000 and len(non_silent_wave + non_silent_seg) > 15000:
288
+ show_info("Audio is over 15s, clipping short. (1)")
289
+ break
290
+ non_silent_wave += non_silent_seg
291
+
292
+ # 2. try to find short silence for clipping if 1. failed
293
+ if len(non_silent_wave) > 15000:
294
+ non_silent_segs = silence.split_on_silence(
295
+ aseg, min_silence_len=100, silence_thresh=-40, keep_silence=1000, seek_step=10
296
+ )
297
+ non_silent_wave = AudioSegment.silent(duration=0)
298
+ for non_silent_seg in non_silent_segs:
299
+ if len(non_silent_wave) > 6000 and len(non_silent_wave + non_silent_seg) > 15000:
300
+ show_info("Audio is over 15s, clipping short. (2)")
301
+ break
302
+ non_silent_wave += non_silent_seg
303
+
304
+ aseg = non_silent_wave
305
+
306
+ # 3. if no proper silence found for clipping
307
+ if len(aseg) > 15000:
308
+ aseg = aseg[:15000]
309
+ show_info("Audio is over 15s, clipping short. (3)")
310
+
311
+ aseg = remove_silence_edges(aseg) + AudioSegment.silent(duration=50)
312
+ aseg.export(f.name, format="wav")
313
+ ref_audio = f.name
314
+
315
+ # Compute a hash of the reference audio file
316
+ with open(ref_audio, "rb") as audio_file:
317
+ audio_data = audio_file.read()
318
+ audio_hash = hashlib.md5(audio_data).hexdigest()
319
+
320
+ if not ref_text.strip():
321
+ global _ref_audio_cache
322
+ if audio_hash in _ref_audio_cache:
323
+ # Use cached asr transcription
324
+ show_info("Using cached reference text...")
325
+ ref_text = _ref_audio_cache[audio_hash]
326
+ else:
327
+ show_info("No reference text provided, transcribing reference audio...")
328
+ ref_text = transcribe(ref_audio)
329
+ # Cache the transcribed text (not caching custom ref_text, enabling users to do manual tweak)
330
+ _ref_audio_cache[audio_hash] = ref_text
331
+ else:
332
+ show_info("Using custom reference text...")
333
+
334
+ # Ensure ref_text ends with a proper sentence-ending punctuation
335
+ if not ref_text.endswith(". ") and not ref_text.endswith("。"):
336
+ if ref_text.endswith("."):
337
+ ref_text += " "
338
+ else:
339
+ ref_text += ". "
340
+
341
+ print("ref_text ", ref_text)
342
+
343
+ return ref_audio, ref_text
344
+
345
+
346
+ # infer process: chunk text -> infer batches [i.e. infer_batch_process()]
347
+
348
+
349
+ def infer_process(
350
+ ref_audio,
351
+ ref_text,
352
+ gen_text,
353
+ model_obj,
354
+ vocoder,
355
+ mel_spec_type=mel_spec_type,
356
+ show_info=print,
357
+ progress=tqdm,
358
+ target_rms=target_rms,
359
+ cross_fade_duration=cross_fade_duration,
360
+ nfe_step=nfe_step,
361
+ cfg_strength=cfg_strength,
362
+ sway_sampling_coef=sway_sampling_coef,
363
+ speed=speed,
364
+ fix_duration=fix_duration,
365
+ device=device,
366
+ indic = False
367
+ ):
368
+ # Split the input text into batches
369
+ audio, sr = torchaudio.load(ref_audio)
370
+ max_chars = int(len(ref_text.encode("utf-8")) / (audio.shape[-1] / sr) * (25 - audio.shape[-1] / sr))
371
+ gen_text_batches = chunk_text(gen_text, max_chars=max_chars)
372
+ for i, gen_text in enumerate(gen_text_batches):
373
+ print(f"gen_text {i}", gen_text)
374
+
375
+ show_info(f"Generating audio in {len(gen_text_batches)} batches...")
376
+ return infer_batch_process(
377
+ (audio, sr),
378
+ ref_text,
379
+ gen_text_batches,
380
+ model_obj,
381
+ vocoder,
382
+ mel_spec_type=mel_spec_type,
383
+ progress=progress,
384
+ target_rms=target_rms,
385
+ cross_fade_duration=cross_fade_duration,
386
+ nfe_step=nfe_step,
387
+ cfg_strength=cfg_strength,
388
+ sway_sampling_coef=sway_sampling_coef,
389
+ speed=speed,
390
+ fix_duration=fix_duration,
391
+ device=device,
392
+ indic = indic
393
+ )
394
+
395
+
396
+ # infer batches
397
+
398
+
399
+ def infer_batch_process(
400
+ ref_audio,
401
+ ref_text,
402
+ gen_text_batches,
403
+ model_obj,
404
+ vocoder,
405
+ mel_spec_type="vocos",
406
+ progress=tqdm,
407
+ target_rms=0.1,
408
+ cross_fade_duration=0.15,
409
+ nfe_step=32,
410
+ cfg_strength=2.0,
411
+ sway_sampling_coef=-1,
412
+ speed=1,
413
+ fix_duration=None,
414
+ device=None,
415
+ indic = False
416
+ ):
417
+ audio, sr = ref_audio
418
+ if audio.shape[0] > 1:
419
+ audio = torch.mean(audio, dim=0, keepdim=True)
420
+
421
+ rms = torch.sqrt(torch.mean(torch.square(audio)))
422
+ if rms < target_rms:
423
+ audio = audio * target_rms / rms
424
+ if sr != target_sample_rate:
425
+ resampler = torchaudio.transforms.Resample(sr, target_sample_rate)
426
+ audio = resampler(audio)
427
+ audio = audio.to(device)
428
+
429
+ generated_waves = []
430
+ spectrograms = []
431
+
432
+ if len(ref_text[-1].encode("utf-8")) == 1:
433
+ ref_text = ref_text + " "
434
+ for i, gen_text in enumerate(progress.tqdm(gen_text_batches)):
435
+ # Prepare the text
436
+ text_list = [ref_text + gen_text]
437
+ if not indic:
438
+ final_text_list = convert_char_to_pinyin(text_list)
439
+ else:
440
+ final_text_list = list(text_list)
441
+
442
+ ref_audio_len = audio.shape[-1] // hop_length
443
+ if fix_duration is not None:
444
+ duration = int(fix_duration * target_sample_rate / hop_length)
445
+ else:
446
+ # Calculate duration
447
+ ref_text_len = len(ref_text.encode("utf-8"))
448
+ gen_text_len = len(gen_text.encode("utf-8"))
449
+ duration = ref_audio_len + int(ref_audio_len / ref_text_len * gen_text_len / speed)
450
+
451
+ # inference
452
+ with torch.inference_mode():
453
+ generated, _ = model_obj.sample(
454
+ cond=audio,
455
+ text=final_text_list,
456
+ duration=duration,
457
+ steps=nfe_step,
458
+ cfg_strength=cfg_strength,
459
+ sway_sampling_coef=sway_sampling_coef,
460
+ )
461
+
462
+ generated = generated.to(torch.float32)
463
+ generated = generated[:, ref_audio_len:, :]
464
+ generated_mel_spec = generated.permute(0, 2, 1)
465
+ if mel_spec_type == "vocos":
466
+ generated_wave = vocoder.decode(generated_mel_spec)
467
+ elif mel_spec_type == "bigvgan":
468
+ generated_wave = vocoder(generated_mel_spec)
469
+ if rms < target_rms:
470
+ generated_wave = generated_wave * rms / target_rms
471
+
472
+ # wav -> numpy
473
+ generated_wave = generated_wave.squeeze().cpu().numpy()
474
+
475
+ generated_waves.append(generated_wave)
476
+ spectrograms.append(generated_mel_spec[0].cpu().numpy())
477
+
478
+ # Combine all generated waves with cross-fading
479
+ if cross_fade_duration <= 0:
480
+ # Simply concatenate
481
+ final_wave = np.concatenate(generated_waves)
482
+ else:
483
+ final_wave = generated_waves[0]
484
+ for i in range(1, len(generated_waves)):
485
+ prev_wave = final_wave
486
+ next_wave = generated_waves[i]
487
+
488
+ # Calculate cross-fade samples, ensuring it does not exceed wave lengths
489
+ cross_fade_samples = int(cross_fade_duration * target_sample_rate)
490
+ cross_fade_samples = min(cross_fade_samples, len(prev_wave), len(next_wave))
491
+
492
+ if cross_fade_samples <= 0:
493
+ # No overlap possible, concatenate
494
+ final_wave = np.concatenate([prev_wave, next_wave])
495
+ continue
496
+
497
+ # Overlapping parts
498
+ prev_overlap = prev_wave[-cross_fade_samples:]
499
+ next_overlap = next_wave[:cross_fade_samples]
500
+
501
+ # Fade out and fade in
502
+ fade_out = np.linspace(1, 0, cross_fade_samples)
503
+ fade_in = np.linspace(0, 1, cross_fade_samples)
504
+
505
+ # Cross-faded overlap
506
+ cross_faded_overlap = prev_overlap * fade_out + next_overlap * fade_in
507
+
508
+ # Combine
509
+ new_wave = np.concatenate(
510
+ [prev_wave[:-cross_fade_samples], cross_faded_overlap, next_wave[cross_fade_samples:]]
511
+ )
512
+
513
+ final_wave = new_wave
514
+
515
+ # Create a combined spectrogram
516
+ combined_spectrogram = np.concatenate(spectrograms, axis=1)
517
+
518
+ return final_wave, target_sample_rate, combined_spectrogram
519
+
520
+
521
+ # remove silence from generated wav
522
+
523
+
524
+ def remove_silence_for_generated_wav(filename):
525
+ aseg = AudioSegment.from_file(filename)
526
+ non_silent_segs = silence.split_on_silence(
527
+ aseg, min_silence_len=1000, silence_thresh=-50, keep_silence=500, seek_step=10
528
+ )
529
+ non_silent_wave = AudioSegment.silent(duration=0)
530
+ for non_silent_seg in non_silent_segs:
531
+ non_silent_wave += non_silent_seg
532
+ aseg = non_silent_wave
533
+ aseg.export(filename, format="wav")
534
+
535
+
536
+ # save spectrogram
537
+
538
+
539
+ def save_spectrogram(spectrogram, path):
540
+ plt.figure(figsize=(12, 4))
541
+ plt.imshow(spectrogram, origin="lower", aspect="auto")
542
+ plt.colorbar()
543
+ plt.savefig(path)
544
+ plt.close()
src/f5_tts/model/__init__.py ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
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"]
src/f5_tts/model/backbones/README.md ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
src/f5_tts/model/backbones/dit.py ADDED
@@ -0,0 +1,163 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
src/f5_tts/model/backbones/mmdit.py ADDED
@@ -0,0 +1,146 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
src/f5_tts/model/backbones/unett.py ADDED
@@ -0,0 +1,219 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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)
src/f5_tts/model/cfm.py ADDED
@@ -0,0 +1,285 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
src/f5_tts/model/dataset.py ADDED
@@ -0,0 +1,319 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ text = row["text"]
134
+ duration = row["duration"]
135
+
136
+ # filter by given length
137
+ if 0.3 <= duration <= 30:
138
+ break # valid
139
+
140
+ index = (index + 1) % len(self.data)
141
+
142
+ if self.preprocessed_mel:
143
+ mel_spec = torch.tensor(row["mel_spec"])
144
+ else:
145
+ audio, source_sample_rate = torchaudio.load(audio_path)
146
+
147
+ # make sure mono input
148
+ if audio.shape[0] > 1:
149
+ audio = torch.mean(audio, dim=0, keepdim=True)
150
+
151
+ # resample if necessary
152
+ if source_sample_rate != self.target_sample_rate:
153
+ resampler = torchaudio.transforms.Resample(source_sample_rate, self.target_sample_rate)
154
+ audio = resampler(audio)
155
+
156
+ # to mel spectrogram
157
+ mel_spec = self.mel_spectrogram(audio)
158
+ mel_spec = mel_spec.squeeze(0) # '1 d t -> d t'
159
+
160
+ return {
161
+ "mel_spec": mel_spec,
162
+ "text": text,
163
+ }
164
+
165
+
166
+ # Dynamic Batch Sampler
167
+ class DynamicBatchSampler(Sampler[list[int]]):
168
+ """Extension of Sampler that will do the following:
169
+ 1. Change the batch size (essentially number of sequences)
170
+ in a batch to ensure that the total number of frames are less
171
+ than a certain threshold.
172
+ 2. Make sure the padding efficiency in the batch is high.
173
+ """
174
+
175
+ def __init__(
176
+ self, sampler: Sampler[int], frames_threshold: int, max_samples=0, random_seed=None, drop_last: bool = False
177
+ ):
178
+ self.sampler = sampler
179
+ self.frames_threshold = frames_threshold
180
+ self.max_samples = max_samples
181
+
182
+ indices, batches = [], []
183
+ data_source = self.sampler.data_source
184
+
185
+ for idx in tqdm(
186
+ self.sampler, desc="Sorting with sampler... if slow, check whether dataset is provided with duration"
187
+ ):
188
+ indices.append((idx, data_source.get_frame_len(idx)))
189
+ indices.sort(key=lambda elem: elem[1])
190
+
191
+ batch = []
192
+ batch_frames = 0
193
+ for idx, frame_len in tqdm(
194
+ indices, desc=f"Creating dynamic batches with {frames_threshold} audio frames per gpu"
195
+ ):
196
+ if batch_frames + frame_len <= self.frames_threshold and (max_samples == 0 or len(batch) < max_samples):
197
+ batch.append(idx)
198
+ batch_frames += frame_len
199
+ else:
200
+ if len(batch) > 0:
201
+ batches.append(batch)
202
+ if frame_len <= self.frames_threshold:
203
+ batch = [idx]
204
+ batch_frames = frame_len
205
+ else:
206
+ batch = []
207
+ batch_frames = 0
208
+
209
+ if not drop_last and len(batch) > 0:
210
+ batches.append(batch)
211
+
212
+ del indices
213
+
214
+ # if want to have different batches between epochs, may just set a seed and log it in ckpt
215
+ # cuz during multi-gpu training, although the batch on per gpu not change between epochs, the formed general minibatch is different
216
+ # e.g. for epoch n, use (random_seed + n)
217
+ random.seed(random_seed)
218
+ random.shuffle(batches)
219
+
220
+ self.batches = batches
221
+
222
+ def __iter__(self):
223
+ return iter(self.batches)
224
+
225
+ def __len__(self):
226
+ return len(self.batches)
227
+
228
+
229
+ # Load dataset
230
+
231
+
232
+ def load_dataset(
233
+ dataset_name: str,
234
+ tokenizer: str = "pinyin",
235
+ dataset_type: str = "CustomDataset",
236
+ audio_type: str = "raw",
237
+ mel_spec_module: nn.Module | None = None,
238
+ mel_spec_kwargs: dict = dict(),
239
+ ) -> CustomDataset | HFDataset:
240
+ """
241
+ dataset_type - "CustomDataset" if you want to use tokenizer name and default data path to load for train_dataset
242
+ - "CustomDatasetPath" if you just want to pass the full path to a preprocessed dataset without relying on tokenizer
243
+ """
244
+
245
+ print("Loading dataset ...")
246
+
247
+ if dataset_type == "CustomDataset":
248
+ rel_data_path = str(files("f5_tts").joinpath(f"../../data/{dataset_name}_{tokenizer}"))
249
+ if audio_type == "raw":
250
+ try:
251
+ train_dataset = load_from_disk(f"{rel_data_path}/raw")
252
+ except: # noqa: E722
253
+ train_dataset = Dataset_.from_file(f"{rel_data_path}/raw.arrow")
254
+ preprocessed_mel = False
255
+ elif audio_type == "mel":
256
+ train_dataset = Dataset_.from_file(f"{rel_data_path}/mel.arrow")
257
+ preprocessed_mel = True
258
+ with open(f"{rel_data_path}/duration.json", "r", encoding="utf-8") as f:
259
+ data_dict = json.load(f)
260
+ durations = data_dict["duration"]
261
+ train_dataset = CustomDataset(
262
+ train_dataset,
263
+ durations=durations,
264
+ preprocessed_mel=preprocessed_mel,
265
+ mel_spec_module=mel_spec_module,
266
+ **mel_spec_kwargs,
267
+ )
268
+
269
+ elif dataset_type == "CustomDatasetPath":
270
+ try:
271
+ train_dataset = load_from_disk(f"{dataset_name}/raw")
272
+ except: # noqa: E722
273
+ train_dataset = Dataset_.from_file(f"{dataset_name}/raw.arrow")
274
+
275
+ with open(f"{dataset_name}/duration.json", "r", encoding="utf-8") as f:
276
+ data_dict = json.load(f)
277
+ durations = data_dict["duration"]
278
+ train_dataset = CustomDataset(
279
+ train_dataset, durations=durations, preprocessed_mel=preprocessed_mel, **mel_spec_kwargs
280
+ )
281
+
282
+ elif dataset_type == "HFDataset":
283
+ print(
284
+ "Should manually modify the path of huggingface dataset to your need.\n"
285
+ + "May also the corresponding script cuz different dataset may have different format."
286
+ )
287
+ pre, post = dataset_name.split("_")
288
+ train_dataset = HFDataset(
289
+ load_dataset(f"{pre}/{pre}", split=f"train.{post}", cache_dir=str(files("f5_tts").joinpath("../../data"))),
290
+ )
291
+
292
+ return train_dataset
293
+
294
+
295
+ # collation
296
+
297
+
298
+ def collate_fn(batch):
299
+ mel_specs = [item["mel_spec"].squeeze(0) for item in batch]
300
+ mel_lengths = torch.LongTensor([spec.shape[-1] for spec in mel_specs])
301
+ max_mel_length = mel_lengths.amax()
302
+
303
+ padded_mel_specs = []
304
+ for spec in mel_specs: # TODO. maybe records mask for attention here
305
+ padding = (0, max_mel_length - spec.size(-1))
306
+ padded_spec = F.pad(spec, padding, value=0)
307
+ padded_mel_specs.append(padded_spec)
308
+
309
+ mel_specs = torch.stack(padded_mel_specs)
310
+
311
+ text = [item["text"] for item in batch]
312
+ text_lengths = torch.LongTensor([len(item) for item in text])
313
+
314
+ return dict(
315
+ mel=mel_specs,
316
+ mel_lengths=mel_lengths,
317
+ text=text,
318
+ text_lengths=text_lengths,
319
+ )
src/f5_tts/model/modules.py ADDED
@@ -0,0 +1,658 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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