gitextract_4jvakfwh/ ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.yml │ │ ├── config.yml │ │ ├── feature_request.yml │ │ ├── help_wanted.yml │ │ └── question.yml │ └── workflows/ │ ├── pre-commit.yaml │ ├── publish-docker-image.yaml │ └── publish-pypi.yaml ├── .gitignore ├── .gitmodules ├── .pre-commit-config.yaml ├── Dockerfile ├── LICENSE ├── README.md ├── pyproject.toml ├── ruff.toml └── src/ └── f5_tts/ ├── api.py ├── configs/ │ ├── E2TTS_Base.yaml │ ├── E2TTS_Small.yaml │ ├── F5TTS_Base.yaml │ ├── F5TTS_Small.yaml │ └── F5TTS_v1_Base.yaml ├── eval/ │ ├── README.md │ ├── ecapa_tdnn.py │ ├── eval_infer_batch.py │ ├── eval_infer_batch.sh │ ├── eval_infer_batch_example.sh │ ├── eval_librispeech_test_clean.py │ ├── eval_seedtts_testset.py │ ├── eval_utmos.py │ └── utils_eval.py ├── infer/ │ ├── README.md │ ├── SHARED.md │ ├── examples/ │ │ ├── basic/ │ │ │ └── basic.toml │ │ ├── multi/ │ │ │ ├── country.flac │ │ │ ├── main.flac │ │ │ ├── story.toml │ │ │ ├── story.txt │ │ │ └── town.flac │ │ └── vocab.txt │ ├── infer_cli.py │ ├── infer_gradio.py │ ├── speech_edit.py │ └── utils_infer.py ├── model/ │ ├── __init__.py │ ├── backbones/ │ │ ├── README.md │ │ ├── dit.py │ │ ├── mmdit.py │ │ └── unett.py │ ├── cfm.py │ ├── dataset.py │ ├── modules.py │ ├── trainer.py │ └── utils.py ├── runtime/ │ └── triton_trtllm/ │ ├── .gitignore │ ├── Dockerfile.server │ ├── README.md │ ├── benchmark.py │ ├── client_grpc.py │ ├── client_http.py │ ├── docker-compose.yml │ ├── model_repo_f5_tts/ │ │ ├── f5_tts/ │ │ │ ├── 1/ │ │ │ │ ├── f5_tts_trtllm.py │ │ │ │ └── model.py │ │ │ └── config.pbtxt │ │ └── vocoder/ │ │ ├── 1/ │ │ │ └── .gitkeep │ │ └── config.pbtxt │ ├── patch/ │ │ ├── __init__.py │ │ └── f5tts/ │ │ ├── model.py │ │ └── modules.py │ ├── run.sh │ └── scripts/ │ ├── conv_stft.py │ ├── convert_checkpoint.py │ ├── export_vocoder_to_onnx.py │ ├── export_vocos_trt.sh │ └── fill_template.py ├── scripts/ │ ├── count_max_epoch.py │ ├── count_max_epoch_precise.py │ └── count_params_gflops.py ├── socket_client.py ├── socket_server.py └── train/ ├── README.md ├── datasets/ │ ├── prepare_csv_wavs.py │ ├── prepare_emilia.py │ ├── prepare_emilia_v2.py │ ├── prepare_libritts.py │ ├── prepare_ljspeech.py │ └── prepare_wenetspeech4tts.py ├── finetune_cli.py ├── finetune_gradio.py └── train.py