├── .dockerignore ├── .env.api ├── .env.webui ├── .github └── ISSUE_TEMPLATE │ ├── any-issues.yml │ ├── bug-report-api.yml │ ├── bug-report-finetune.yml │ ├── bug-report-webui.yml │ ├── config.yml │ └── feature-request.yml ├── .gitignore ├── .pylintrc ├── Dockerfile ├── LICENSE ├── README.en.md ├── README.md ├── colab.en.ipynb ├── colab.ipynb ├── data ├── load_json_spk.py ├── read_cosyvoice_spk.py ├── rebuild.py ├── slct_voice_240605.json ├── speakers │ ├── Alice.spkv1.json │ ├── Bob.spkv1.json │ ├── Bob_ft10.spkv1.json │ ├── female2.spkv1.json │ ├── mona.spkv1.json │ ├── spk_1.spkv1.json │ ├── spk_10.spkv1.json │ ├── spk_11.spkv1.json │ ├── spk_12.spkv1.json │ ├── spk_13.spkv1.json │ ├── spk_14.spkv1.json │ ├── spk_15.spkv1.json │ ├── spk_16.spkv1.json │ ├── spk_17.spkv1.json │ ├── spk_18.spkv1.json │ ├── spk_19.spkv1.json │ ├── spk_2.spkv1.json │ ├── spk_20.spkv1.json │ ├── spk_21.spkv1.json │ ├── spk_22.spkv1.json │ ├── spk_3.spkv1.json │ ├── spk_4.spkv1.json │ ├── spk_5.spkv1.json │ ├── spk_6.spkv1.json │ ├── spk_7.spkv1.json │ ├── spk_8.spkv1.json │ └── spk_9.spkv1.json └── styles.csv ├── datasets └── put_datasets_here ├── docker-compose.api.yml ├── docker-compose.webui.yml ├── docs ├── SSML.md ├── api.md ├── api.png ├── api_v2.md ├── api_xtts.md ├── banner.png ├── benchmark.md ├── demo.md ├── dependencies.md ├── finetune.md ├── long_text.png ├── model_dir.png ├── openapi.json ├── playground.png ├── readme.md ├── sillytavern_tts.png ├── speaking_styles.md ├── webui.png ├── webui │ ├── spk_creator.png │ └── spk_merger.png └── webui_features.md ├── examples ├── javascript │ ├── SpkClient.mjs │ ├── SttClient.mjs │ ├── TtsClient.mjs │ ├── client.mjs │ ├── demo_create_spk.mjs │ ├── demo_stt.mjs │ ├── demo_tts.mjs │ ├── demo_tts_v2.mjs │ ├── demo_tts_v2_full.mjs │ └── types.d.ts └── python │ ├── __init__.py │ ├── client.py │ └── tts.py ├── ffmpeg └── put_ffmpeg_here ├── language ├── en.json └── zh-CN.json ├── launch.py ├── models ├── .gitkeep ├── Denoise │ └── .gitkeep ├── Lora │ └── put_lora_here ├── put_model_here └── resemble-enhance │ └── hparams.yaml ├── modules ├── Denoiser │ ├── AudioDenoiser.py │ ├── AudioNosiseModel.py │ └── __init__.py ├── api │ ├── Api.py │ ├── __init__.py │ ├── api_setup.py │ ├── app_config.py │ ├── constants.py │ ├── impl │ │ ├── __init__.py │ │ ├── google_api.py │ │ ├── models_api.py │ │ ├── openai_api.py │ │ ├── refiner_api.py │ │ ├── speaker_api.py │ │ ├── ssml_api.py │ │ ├── stt_api.py │ │ ├── style_api.py │ │ ├── sys_api.py │ │ ├── tts_api.py │ │ ├── vc_api.py │ │ └── xtts_v2_api.py │ ├── utils.py │ ├── v2 │ │ ├── BlobStorage.py │ │ ├── batch_api.py │ │ ├── dcls.py │ │ ├── file_api.py │ │ ├── job_api.py │ │ ├── transcribe_api.py │ │ └── tts_api.py │ └── worker.py ├── config.py ├── configs │ └── cosyvoice.yaml ├── core │ ├── __init__.py │ ├── handler │ │ ├── AudioHandler.py │ │ ├── STTHandler.py │ │ ├── TTSHandler.py │ │ ├── VCHandler.py │ │ ├── cancellation.py │ │ ├── datacls │ │ │ ├── audio_model.py │ │ │ ├── enhancer_model.py │ │ │ ├── prompt_model.py │ │ │ ├── stt_model.py │ │ │ ├── tn_model.py │ │ │ ├── tts_model.py │ │ │ └── vc_model.py │ │ └── encoder │ │ │ ├── StreamEncoder.py │ │ │ ├── WavFile.py │ │ │ └── encoders.py │ ├── models │ │ ├── AudioReshaper.py │ │ ├── BaseZooModel.py │ │ ├── RefinerModel.py │ │ ├── TTSModel.py │ │ ├── __init__.py │ │ ├── enhancer │ │ │ ├── ResembleEnhance.py │ │ │ └── ResembleEnhanceModel.py │ │ ├── refiner │ │ │ ├── ChatTTSRefiner.py │ │ │ └── OaiRefiner.py │ │ ├── stt │ │ │ ├── STTChunker.py │ │ │ ├── STTModel.py │ │ │ ├── SenseVoice.py │ │ │ ├── Whisper.py │ │ │ └── whisper │ │ │ │ ├── SegmentNormalizer.py │ │ │ │ ├── whisper_dcls.py │ │ │ │ └── writer.py │ │ ├── tts │ │ │ ├── ChatTTS │ │ │ │ ├── ChatTTS.py │ │ │ │ └── ChatTTSInfer.py │ │ │ ├── ChatTtsModel.py │ │ │ ├── CosyVoiceFE.py │ │ │ ├── CosyVoiceModel.py │ │ │ ├── F5 │ │ │ │ ├── F5Annotation.py │ │ │ │ ├── F5ttsApi.py │ │ │ │ ├── convert_char_to_pinyin.py │ │ │ │ └── f5_infer.py │ │ │ ├── F5TtsModel.py │ │ │ ├── FireRed │ │ │ │ ├── FRBepTokenizer.py │ │ │ │ ├── FireRedInfer.py │ │ │ │ ├── FireRedTTSModel.py │ │ │ │ └── MelExtractor.py │ │ │ ├── FishSpeechInfer.py │ │ │ ├── FishSpeechModel.py │ │ │ ├── GptSoVits │ │ │ │ ├── GptSoVitsModel.py │ │ │ │ ├── GptSoVitsTTS.py │ │ │ │ └── GptSoVitsTTSConfig.py │ │ │ ├── IndexTTS │ │ │ │ ├── IndexTTSModel.py │ │ │ │ ├── IndexTTSV2Model.py │ │ │ │ └── infer │ │ │ │ │ └── infer_v2.py │ │ │ ├── InferCache.py │ │ │ ├── SparkTTS │ │ │ │ ├── SparkTTS.py │ │ │ │ └── SparkTTSModel.py │ │ │ ├── downloader │ │ │ │ └── downloader.py │ │ │ └── fishspeech │ │ │ │ ├── FF14_infer.py │ │ │ │ ├── FF14_llama.py │ │ │ │ ├── FF14_vqgan.py │ │ │ │ ├── FishSpeech14Model.py │ │ │ │ └── configs │ │ │ │ ├── base.yaml │ │ │ │ ├── firefly_gan_vq.yaml │ │ │ │ ├── lora │ │ │ │ └── r_8_alpha_16.yaml │ │ │ │ └── text2semantic_finetune.yaml │ │ ├── vc │ │ │ ├── OpenVoice.py │ │ │ └── VCModel.py │ │ └── zoo │ │ │ ├── ModelConfigure.py │ │ │ ├── ModelZoo.py │ │ │ └── __init__.py │ ├── pipeline │ │ ├── __init__.py │ │ ├── dcls.py │ │ ├── factory.py │ │ ├── generate │ │ │ ├── BatchGenerate.py │ │ │ ├── BatchSynth.py │ │ │ ├── Bucketizer.py │ │ │ ├── Chunker.py │ │ │ ├── SimpleTokenizer.py │ │ │ ├── SsmlNormalizer.py │ │ │ ├── SynthSteamer.py │ │ │ ├── __init__.py │ │ │ └── dcls.py │ │ ├── pipeline.py │ │ ├── processor.py │ │ └── processors │ │ │ ├── Adjuster.py │ │ │ ├── Enhancer.py │ │ │ ├── Normalizer.py │ │ │ ├── VoiceClone.py │ │ │ └── __init__.py │ ├── spk │ │ ├── SpkCard.py │ │ ├── SpkMgr.py │ │ ├── TTSSpeaker.py │ │ ├── __init__.py │ │ └── dcls.py │ ├── ssml │ │ ├── SSMLParser.py │ │ └── __init__.py │ ├── tn │ │ ├── ChatTtsTN.py │ │ ├── CosyVoiceTN.py │ │ ├── F5TtsTN.py │ │ ├── FireRedTtsTN.py │ │ ├── FishSpeechTN.py │ │ ├── IndexTTSTN.py │ │ ├── SparkTTSTN.py │ │ ├── TNPipeline.py │ │ ├── __init__.py │ │ ├── base_tn.py │ │ ├── pinyin_ton3_list.py │ │ └── whisper.py │ └── tools │ │ ├── FolderDatabase.py │ │ ├── SentenceSplitter.py │ │ ├── __init__.py │ │ └── misc.py ├── data.py ├── denoise.py ├── devices │ ├── __init__.py │ ├── devices.py │ └── mac_devices.py ├── ffmpeg_env.py ├── finetune │ ├── __init__.py │ ├── dataset.py │ ├── logger.py │ ├── model.py │ ├── output.py │ ├── train.py │ └── train_speaker.py ├── fixs │ └── gradio_dcls_fix.py ├── models_setup.py ├── prompts │ ├── news_oral_prompt.txt │ └── podcast_prompt.txt ├── refiner.py ├── repos_static │ ├── ChatTTS │ │ ├── ChatTTS │ │ │ ├── __init__.py │ │ │ ├── config │ │ │ │ ├── __init__.py │ │ │ │ └── config.py │ │ │ ├── core.py │ │ │ ├── model │ │ │ │ ├── __init__.py │ │ │ │ ├── cuda │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── patch.py │ │ │ │ │ └── te_llama.py │ │ │ │ ├── dvae.py │ │ │ │ ├── gpt.py │ │ │ │ ├── processors.py │ │ │ │ ├── speaker.py │ │ │ │ ├── tokenizer.py │ │ │ │ └── velocity │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── block_manager.py │ │ │ │ │ ├── configs.py │ │ │ │ │ ├── llama.py │ │ │ │ │ ├── llm.py │ │ │ │ │ ├── llm_engine.py │ │ │ │ │ ├── model_loader.py │ │ │ │ │ ├── model_runner.py │ │ │ │ │ ├── output.py │ │ │ │ │ ├── post_model.py │ │ │ │ │ ├── sampling_params.py │ │ │ │ │ ├── scheduler.py │ │ │ │ │ ├── sequence.py │ │ │ │ │ └── worker.py │ │ │ ├── norm.py │ │ │ ├── res │ │ │ │ ├── __init__.py │ │ │ │ ├── homophones_map.json │ │ │ │ └── sha256_map.json │ │ │ └── utils │ │ │ │ ├── __init__.py │ │ │ │ ├── dl.py │ │ │ │ ├── gpu.py │ │ │ │ ├── io.py │ │ │ │ └── log.py │ │ └── readme.md │ ├── F5TTS │ │ └── f5_tts │ │ │ ├── __init__.py │ │ │ ├── api.py │ │ │ ├── configs │ │ │ ├── E2TTS_Base.yaml │ │ │ ├── E2TTS_Small.yaml │ │ │ ├── F5TTS_Base.yaml │ │ │ ├── F5TTS_Small.yaml │ │ │ └── F5TTS_v1_Base.yaml │ │ │ ├── data │ │ │ ├── Emilia_ZH_EN_pinyin │ │ │ │ └── vocab.txt │ │ │ └── librispeech_pc_test_clean_cross_sentence.lst │ │ │ └── model │ │ │ ├── __init__.py │ │ │ ├── backbones │ │ │ ├── README.md │ │ │ ├── dit.py │ │ │ ├── mmdit.py │ │ │ └── unett.py │ │ │ ├── cfm.py │ │ │ ├── dataset.py │ │ │ ├── modules.py │ │ │ ├── trainer.py │ │ │ └── utils.py │ ├── FireRedTTS │ │ ├── config_24k.json │ │ └── fireredtts │ │ │ ├── fireredtts.py │ │ │ ├── modules │ │ │ ├── __init__.py │ │ │ ├── bigvgan │ │ │ │ ├── __init__.py │ │ │ │ ├── activations.py │ │ │ │ ├── alias_free_cuda │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── activation1d.py │ │ │ │ │ ├── anti_alias_activation.cpp │ │ │ │ │ ├── anti_alias_activation_cuda.cu │ │ │ │ │ ├── compat.h │ │ │ │ │ ├── load.py │ │ │ │ │ └── type_shim.h │ │ │ │ ├── alias_free_torch │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── act.py │ │ │ │ │ ├── filter.py │ │ │ │ │ └── resample.py │ │ │ │ └── bigvgan.py │ │ │ ├── codec │ │ │ │ └── speaker.py │ │ │ ├── flow │ │ │ │ ├── __init__.py │ │ │ │ ├── codebook.npy │ │ │ │ ├── codec_embedding.py │ │ │ │ ├── conformer.py │ │ │ │ ├── decoder.py │ │ │ │ ├── flow_model.py │ │ │ │ ├── mel_encoder.py │ │ │ │ ├── mel_spectrogram.py │ │ │ │ ├── transformer.py │ │ │ │ └── utils.py │ │ │ ├── gpt │ │ │ │ ├── __init__.py │ │ │ │ └── gpt.py │ │ │ ├── text_normalizer │ │ │ │ ├── __init__.py │ │ │ │ ├── normalize.py │ │ │ │ ├── regex_common.py │ │ │ │ └── utils.py │ │ │ └── tokenizer │ │ │ │ ├── __init__.py │ │ │ │ ├── assets │ │ │ │ └── multilingual.tiktoken │ │ │ │ ├── tokenizer.py │ │ │ │ └── whisper_tokenizer.py │ │ │ └── utils │ │ │ ├── __init__.py │ │ │ └── utils.py │ ├── GPT_SoVITS │ │ ├── GPT_SoVITS │ │ │ ├── AR │ │ │ │ ├── __init__.py │ │ │ │ ├── data │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── bucket_sampler.py │ │ │ │ │ ├── data_module.py │ │ │ │ │ └── dataset.py │ │ │ │ ├── models │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── t2s_lightning_module.py │ │ │ │ │ ├── t2s_lightning_module_onnx.py │ │ │ │ │ ├── t2s_model.py │ │ │ │ │ ├── t2s_model_onnx.py │ │ │ │ │ └── utils.py │ │ │ │ ├── modules │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── activation.py │ │ │ │ │ ├── activation_onnx.py │ │ │ │ │ ├── embedding.py │ │ │ │ │ ├── embedding_onnx.py │ │ │ │ │ ├── lr_schedulers.py │ │ │ │ │ ├── optim.py │ │ │ │ │ ├── patched_mha_with_cache.py │ │ │ │ │ ├── patched_mha_with_cache_onnx.py │ │ │ │ │ ├── scaling.py │ │ │ │ │ ├── transformer.py │ │ │ │ │ └── transformer_onnx.py │ │ │ │ ├── text_processing │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── phonemizer.py │ │ │ │ │ └── symbols.py │ │ │ │ └── utils │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── initialize.py │ │ │ │ │ └── io.py │ │ │ ├── BigVGAN │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── activations.py │ │ │ │ ├── alias_free_activation │ │ │ │ │ ├── cuda │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── activation1d.py │ │ │ │ │ │ ├── anti_alias_activation.cpp │ │ │ │ │ │ ├── anti_alias_activation_cuda.cu │ │ │ │ │ │ ├── compat.h │ │ │ │ │ │ ├── load.py │ │ │ │ │ │ └── type_shim.h │ │ │ │ │ └── torch │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── act.py │ │ │ │ │ │ ├── filter.py │ │ │ │ │ │ └── resample.py │ │ │ │ ├── bigvgan.py │ │ │ │ ├── configs │ │ │ │ │ ├── bigvgan_22khz_80band.json │ │ │ │ │ ├── bigvgan_24khz_100band.json │ │ │ │ │ ├── bigvgan_base_22khz_80band.json │ │ │ │ │ ├── bigvgan_base_24khz_100band.json │ │ │ │ │ ├── bigvgan_v2_22khz_80band_256x.json │ │ │ │ │ ├── bigvgan_v2_22khz_80band_fmax8k_256x.json │ │ │ │ │ ├── bigvgan_v2_24khz_100band_256x.json │ │ │ │ │ ├── bigvgan_v2_44khz_128band_256x.json │ │ │ │ │ └── bigvgan_v2_44khz_128band_512x.json │ │ │ │ ├── discriminators.py │ │ │ │ ├── env.py │ │ │ │ ├── incl_licenses │ │ │ │ │ ├── LICENSE_1 │ │ │ │ │ ├── LICENSE_2 │ │ │ │ │ ├── LICENSE_3 │ │ │ │ │ ├── LICENSE_4 │ │ │ │ │ ├── LICENSE_5 │ │ │ │ │ ├── LICENSE_6 │ │ │ │ │ ├── LICENSE_7 │ │ │ │ │ └── LICENSE_8 │ │ │ │ ├── inference.py │ │ │ │ ├── inference_e2e.py │ │ │ │ ├── loss.py │ │ │ │ ├── meldataset.py │ │ │ │ ├── nv-modelcard++ │ │ │ │ │ ├── .gitkeep │ │ │ │ │ ├── bias.md │ │ │ │ │ ├── explainability.md │ │ │ │ │ ├── overview.md │ │ │ │ │ ├── privacy.md │ │ │ │ │ └── safety.md │ │ │ │ ├── requirements.txt │ │ │ │ ├── train.py │ │ │ │ └── utils0.py │ │ │ ├── TTS_infer_pack │ │ │ │ ├── TTS.py │ │ │ │ ├── TextPreprocessor.py │ │ │ │ ├── __init__.py │ │ │ │ └── text_segmentation_method.py │ │ │ ├── configs │ │ │ │ ├── .gitignore │ │ │ │ └── s2.json │ │ │ ├── download.py │ │ │ ├── export_torch_script.py │ │ │ ├── export_torch_script_v3.py │ │ │ ├── f5_tts │ │ │ │ └── model │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── backbones │ │ │ │ │ ├── README.md │ │ │ │ │ ├── dit.py │ │ │ │ │ ├── mmdit.py │ │ │ │ │ └── unett.py │ │ │ │ │ └── modules.py │ │ │ ├── feature_extractor │ │ │ │ ├── __init__.py │ │ │ │ ├── cnhubert.py │ │ │ │ └── whisper_enc.py │ │ │ ├── inference_cli.py │ │ │ ├── inference_gui.py │ │ │ ├── inference_webui.py │ │ │ ├── inference_webui_fast.py │ │ │ ├── module │ │ │ │ ├── __init__.py │ │ │ │ ├── attentions.py │ │ │ │ ├── attentions_onnx.py │ │ │ │ ├── commons.py │ │ │ │ ├── core_vq.py │ │ │ │ ├── data_utils.py │ │ │ │ ├── losses.py │ │ │ │ ├── mel_processing.py │ │ │ │ ├── models.py │ │ │ │ ├── models_onnx.py │ │ │ │ ├── modules.py │ │ │ │ ├── mrte_model.py │ │ │ │ ├── quantize.py │ │ │ │ └── transforms.py │ │ │ ├── onnx_export.py │ │ │ ├── prepare_datasets │ │ │ │ ├── 1-get-text.py │ │ │ │ ├── 2-get-hubert-wav32k.py │ │ │ │ └── 3-get-semantic.py │ │ │ ├── pretrained_models │ │ │ │ └── .gitignore │ │ │ ├── process_ckpt.py │ │ │ ├── s1_train.py │ │ │ ├── s2_train.py │ │ │ ├── s2_train_v3.py │ │ │ ├── s2_train_v3_lora.py │ │ │ ├── text │ │ │ │ ├── .gitignore │ │ │ │ ├── LangSegmenter │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── langsegmenter.py │ │ │ │ ├── __init__.py │ │ │ │ ├── cantonese.py │ │ │ │ ├── chinese.py │ │ │ │ ├── chinese2.py │ │ │ │ ├── cleaner.py │ │ │ │ ├── cmudict-fast.rep │ │ │ │ ├── cmudict.rep │ │ │ │ ├── en_normalization │ │ │ │ │ └── expend.py │ │ │ │ ├── engdict-hot.rep │ │ │ │ ├── engdict_cache.pickle │ │ │ │ ├── english.py │ │ │ │ ├── g2pw │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── dataset.py │ │ │ │ │ ├── g2pw.py │ │ │ │ │ ├── onnx_api.py │ │ │ │ │ ├── polyphonic-fix.rep │ │ │ │ │ ├── polyphonic.pickle │ │ │ │ │ ├── polyphonic.rep │ │ │ │ │ └── utils.py │ │ │ │ ├── ja_userdic │ │ │ │ │ └── userdict.csv │ │ │ │ ├── japanese.py │ │ │ │ ├── korean.py │ │ │ │ ├── namedict_cache.pickle │ │ │ │ ├── opencpop-strict.txt │ │ │ │ ├── symbols.py │ │ │ │ ├── symbols2.py │ │ │ │ ├── tone_sandhi.py │ │ │ │ └── zh_normalization │ │ │ │ │ ├── README.md │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── char_convert.py │ │ │ │ │ ├── chronology.py │ │ │ │ │ ├── constants.py │ │ │ │ │ ├── num.py │ │ │ │ │ ├── phonecode.py │ │ │ │ │ ├── quantifier.py │ │ │ │ │ └── text_normlization.py │ │ │ ├── tools │ │ │ │ ├── AP_BWE_main │ │ │ │ │ ├── 24kto48k │ │ │ │ │ │ └── readme.txt │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── datasets1 │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── dataset.py │ │ │ │ │ └── models │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── model.py │ │ │ │ ├── __init__.py │ │ │ │ ├── asr │ │ │ │ │ ├── config.py │ │ │ │ │ ├── fasterwhisper_asr.py │ │ │ │ │ ├── funasr_asr.py │ │ │ │ │ └── models │ │ │ │ │ │ └── .gitignore │ │ │ │ ├── audio_sr.py │ │ │ │ ├── cmd-denoise.py │ │ │ │ ├── denoise-model │ │ │ │ │ └── .gitignore │ │ │ │ ├── i18n │ │ │ │ │ ├── i18n.py │ │ │ │ │ ├── locale │ │ │ │ │ │ ├── en_US.json │ │ │ │ │ │ ├── es_ES.json │ │ │ │ │ │ ├── fr_FR.json │ │ │ │ │ │ ├── it_IT.json │ │ │ │ │ │ ├── ja_JP.json │ │ │ │ │ │ ├── ko_KR.json │ │ │ │ │ │ ├── pt_BR.json │ │ │ │ │ │ ├── ru_RU.json │ │ │ │ │ │ ├── tr_TR.json │ │ │ │ │ │ ├── zh_CN.json │ │ │ │ │ │ ├── zh_HK.json │ │ │ │ │ │ ├── zh_SG.json │ │ │ │ │ │ └── zh_TW.json │ │ │ │ │ └── scan_i18n.py │ │ │ │ ├── my_utils.py │ │ │ │ ├── slice_audio.py │ │ │ │ ├── slicer2.py │ │ │ │ ├── subfix_webui.py │ │ │ │ └── uvr5 │ │ │ │ │ ├── bs_roformer │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── attend.py │ │ │ │ │ ├── bs_roformer.py │ │ │ │ │ └── mel_band_roformer.py │ │ │ │ │ ├── bsroformer.py │ │ │ │ │ ├── mdxnet.py │ │ │ │ │ ├── uvr5_weights │ │ │ │ │ └── .gitignore │ │ │ │ │ ├── vr.py │ │ │ │ │ └── webui.py │ │ │ └── utils.py │ │ ├── api.py │ │ ├── api_v2.py │ │ └── webui.py │ ├── Matcha_TTS │ │ ├── matcha │ │ │ ├── VERSION │ │ │ ├── __init__.py │ │ │ ├── app.py │ │ │ ├── cli.py │ │ │ ├── data │ │ │ │ ├── __init__.py │ │ │ │ ├── components │ │ │ │ │ └── __init__.py │ │ │ │ └── text_mel_datamodule.py │ │ │ ├── hifigan │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── __init__.py │ │ │ │ ├── config.py │ │ │ │ ├── denoiser.py │ │ │ │ ├── env.py │ │ │ │ ├── meldataset.py │ │ │ │ ├── models.py │ │ │ │ └── xutils.py │ │ │ ├── models │ │ │ │ ├── __init__.py │ │ │ │ ├── baselightningmodule.py │ │ │ │ ├── components │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── decoder.py │ │ │ │ │ ├── flow_matching.py │ │ │ │ │ ├── text_encoder.py │ │ │ │ │ └── transformer.py │ │ │ │ └── matcha_tts.py │ │ │ ├── onnx │ │ │ │ ├── __init__.py │ │ │ │ ├── export.py │ │ │ │ └── infer.py │ │ │ ├── text │ │ │ │ ├── __init__.py │ │ │ │ ├── cleaners.py │ │ │ │ ├── numbers.py │ │ │ │ └── symbols.py │ │ │ ├── train.py │ │ │ └── utils │ │ │ │ ├── __init__.py │ │ │ │ ├── audio.py │ │ │ │ ├── data │ │ │ │ ├── __init__.py │ │ │ │ ├── hificaptain.py │ │ │ │ ├── ljspeech.py │ │ │ │ └── utils.py │ │ │ │ ├── generate_data_statistics.py │ │ │ │ ├── get_durations_from_trained_model.py │ │ │ │ ├── instantiators.py │ │ │ │ ├── logging_utils.py │ │ │ │ ├── model.py │ │ │ │ ├── monotonic_align │ │ │ │ ├── __init__.py │ │ │ │ ├── core.pyx │ │ │ │ └── setup.py │ │ │ │ ├── pylogger.py │ │ │ │ ├── rich_utils.py │ │ │ │ └── utils.py │ │ └── readme.md │ ├── __init__.py │ ├── cosyvoice │ │ ├── README.md │ │ └── cosyvoice │ │ │ ├── __init__.py │ │ │ ├── bin │ │ │ ├── average_model.py │ │ │ ├── export_jit.py │ │ │ ├── export_onnx.py │ │ │ ├── export_trt.sh │ │ │ ├── inference.py │ │ │ ├── inference_deprecated.py │ │ │ └── train.py │ │ │ ├── cli │ │ │ ├── __init__.py │ │ │ ├── cosyvoice.py │ │ │ ├── frontend.py │ │ │ └── model.py │ │ │ ├── dataset │ │ │ ├── __init__.py │ │ │ ├── dataset.py │ │ │ └── processor.py │ │ │ ├── flow │ │ │ ├── decoder.py │ │ │ ├── flow.py │ │ │ ├── flow_matching.py │ │ │ └── length_regulator.py │ │ │ ├── hifigan │ │ │ ├── discriminator.py │ │ │ ├── f0_predictor.py │ │ │ ├── generator.py │ │ │ └── hifigan.py │ │ │ ├── llm │ │ │ └── llm.py │ │ │ ├── tokenizer │ │ │ ├── assets │ │ │ │ └── multilingual_zh_ja_yue_char_del.tiktoken │ │ │ └── tokenizer.py │ │ │ ├── transformer │ │ │ ├── __init__.py │ │ │ ├── activation.py │ │ │ ├── attention.py │ │ │ ├── convolution.py │ │ │ ├── decoder.py │ │ │ ├── decoder_layer.py │ │ │ ├── embedding.py │ │ │ ├── encoder.py │ │ │ ├── encoder_layer.py │ │ │ ├── label_smoothing_loss.py │ │ │ ├── positionwise_feed_forward.py │ │ │ ├── subsampling.py │ │ │ └── upsample_encoder.py │ │ │ ├── utils │ │ │ ├── __init__.py │ │ │ ├── class_utils.py │ │ │ ├── common.py │ │ │ ├── executor.py │ │ │ ├── file_utils.py │ │ │ ├── frontend_utils.py │ │ │ ├── losses.py │ │ │ ├── mask.py │ │ │ ├── scheduler.py │ │ │ └── train_utils.py │ │ │ └── vllm │ │ │ └── cosyvoice2.py │ ├── fish_speech │ │ ├── fish_speech │ │ │ ├── callbacks │ │ │ │ ├── __init__.py │ │ │ │ └── grad_norm.py │ │ │ ├── configs │ │ │ │ ├── base.yaml │ │ │ │ ├── firefly_gan_vq.yaml │ │ │ │ ├── lora │ │ │ │ │ └── r_8_alpha_16.yaml │ │ │ │ └── text2semantic_finetune.yaml │ │ │ ├── conversation.py │ │ │ ├── datasets │ │ │ │ ├── concat_repeat.py │ │ │ │ ├── protos │ │ │ │ │ ├── text-data.proto │ │ │ │ │ ├── text_data_pb2.py │ │ │ │ │ └── text_data_stream.py │ │ │ │ ├── semantic.py │ │ │ │ └── vqgan.py │ │ │ ├── i18n │ │ │ │ ├── README.md │ │ │ │ ├── __init__.py │ │ │ │ ├── core.py │ │ │ │ ├── locale │ │ │ │ │ ├── en_US.json │ │ │ │ │ ├── es_ES.json │ │ │ │ │ ├── ja_JP.json │ │ │ │ │ ├── ko_KR.json │ │ │ │ │ ├── pt_BR.json │ │ │ │ │ └── zh_CN.json │ │ │ │ └── scan.py │ │ │ ├── models │ │ │ │ ├── text2semantic │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── lit_module.py │ │ │ │ │ ├── llama.py │ │ │ │ │ └── lora.py │ │ │ │ └── vqgan │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── lit_module.py │ │ │ │ │ ├── modules │ │ │ │ │ ├── discriminator.py │ │ │ │ │ ├── firefly.py │ │ │ │ │ ├── fsq.py │ │ │ │ │ ├── reference.py │ │ │ │ │ └── wavenet.py │ │ │ │ │ └── utils.py │ │ │ ├── scheduler.py │ │ │ ├── text │ │ │ │ ├── __init__.py │ │ │ │ ├── chn_text_norm │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── README.md │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── basic_class.py │ │ │ │ │ ├── basic_constant.py │ │ │ │ │ ├── basic_util.py │ │ │ │ │ ├── cardinal.py │ │ │ │ │ ├── date.py │ │ │ │ │ ├── digit.py │ │ │ │ │ ├── fraction.py │ │ │ │ │ ├── money.py │ │ │ │ │ ├── percentage.py │ │ │ │ │ ├── telephone.py │ │ │ │ │ └── text.py │ │ │ │ ├── clean.py │ │ │ │ └── spliter.py │ │ │ ├── train.py │ │ │ ├── utils │ │ │ │ ├── __init__.py │ │ │ │ ├── braceexpand.py │ │ │ │ ├── context.py │ │ │ │ ├── file.py │ │ │ │ ├── instantiators.py │ │ │ │ ├── logger.py │ │ │ │ ├── logging_utils.py │ │ │ │ ├── rich_utils.py │ │ │ │ ├── spectrogram.py │ │ │ │ └── utils.py │ │ │ └── webui │ │ │ │ ├── css │ │ │ │ └── style.css │ │ │ │ ├── html │ │ │ │ └── footer.html │ │ │ │ ├── js │ │ │ │ └── animate.js │ │ │ │ ├── launch_utils.py │ │ │ │ └── manage.py │ │ └── tools │ │ │ ├── api.py │ │ │ ├── auto_rerank.py │ │ │ ├── download_models.py │ │ │ ├── e2e_webui.py │ │ │ ├── extract_model.py │ │ │ ├── file.py │ │ │ ├── fish_e2e.py │ │ │ ├── gen_ref.py │ │ │ ├── llama │ │ │ ├── build_dataset.py │ │ │ ├── eval_in_context.py │ │ │ ├── generate.py │ │ │ ├── merge_lora.py │ │ │ ├── quantize.py │ │ │ └── rebuild_tokenizer.py │ │ │ ├── merge_asr_files.py │ │ │ ├── msgpack_api.py │ │ │ ├── post_api.py │ │ │ ├── schema.py │ │ │ ├── sensevoice │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── auto_model.py │ │ │ ├── fun_asr.py │ │ │ └── vad_utils.py │ │ │ ├── smart_pad.py │ │ │ ├── vqgan │ │ │ ├── create_train_split.py │ │ │ ├── extract_vq.py │ │ │ └── inference.py │ │ │ ├── webui.py │ │ │ └── whisper_asr.py │ ├── index_tts │ │ ├── .gitignore │ │ ├── INDEX_MODEL_LICENSE │ │ ├── LICENSE │ │ ├── LICENSE_ZH.txt │ │ ├── indextts │ │ │ ├── BigVGAN │ │ │ │ ├── ECAPA_TDNN.py │ │ │ │ ├── __init__.py │ │ │ │ ├── activations.py │ │ │ │ ├── alias_free_activation │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── cuda │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── activation1d.py │ │ │ │ │ │ ├── anti_alias_activation.cpp │ │ │ │ │ │ ├── anti_alias_activation_cuda.cu │ │ │ │ │ │ ├── compat.h │ │ │ │ │ │ ├── load.py │ │ │ │ │ │ └── type_shim.h │ │ │ │ │ └── torch │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── act.py │ │ │ │ │ │ ├── filter.py │ │ │ │ │ │ └── resample.py │ │ │ │ ├── alias_free_torch │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── act.py │ │ │ │ │ ├── filter.py │ │ │ │ │ └── resample.py │ │ │ │ ├── bigvgan.py │ │ │ │ ├── models.py │ │ │ │ ├── nnet │ │ │ │ │ ├── CNN.py │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── linear.py │ │ │ │ │ └── normalization.py │ │ │ │ └── utils.py │ │ │ ├── __init__.py │ │ │ ├── cli.py │ │ │ ├── gpt │ │ │ │ ├── __init__.py │ │ │ │ ├── conformer │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── attention.py │ │ │ │ │ ├── embedding.py │ │ │ │ │ └── subsampling.py │ │ │ │ ├── conformer_encoder.py │ │ │ │ ├── model.py │ │ │ │ ├── model_v2.py │ │ │ │ ├── perceiver.py │ │ │ │ ├── transformers_beam_search.py │ │ │ │ ├── transformers_generation_utils.py │ │ │ │ ├── transformers_gpt2.py │ │ │ │ └── transformers_modeling_utils.py │ │ │ ├── infer.py │ │ │ ├── infer_v2.py │ │ │ ├── s2mel │ │ │ │ ├── dac │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __main__.py │ │ │ │ │ ├── model │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ ├── dac.py │ │ │ │ │ │ ├── discriminator.py │ │ │ │ │ │ └── encodec.py │ │ │ │ │ ├── nn │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── layers.py │ │ │ │ │ │ ├── loss.py │ │ │ │ │ │ └── quantize.py │ │ │ │ │ └── utils │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── decode.py │ │ │ │ │ │ └── encode.py │ │ │ │ ├── hf_utils.py │ │ │ │ ├── modules │ │ │ │ │ ├── alias_free_torch │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── act.py │ │ │ │ │ │ ├── filter.py │ │ │ │ │ │ └── resample.py │ │ │ │ │ ├── audio.py │ │ │ │ │ ├── bigvgan │ │ │ │ │ │ ├── activations.py │ │ │ │ │ │ ├── alias_free_activation │ │ │ │ │ │ │ ├── cuda │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ ├── activation1d.py │ │ │ │ │ │ │ │ ├── anti_alias_activation.cpp │ │ │ │ │ │ │ │ ├── anti_alias_activation_cuda.cu │ │ │ │ │ │ │ │ ├── compat.h │ │ │ │ │ │ │ │ ├── load.py │ │ │ │ │ │ │ │ └── type_shim.h │ │ │ │ │ │ │ └── torch │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ ├── act.py │ │ │ │ │ │ │ │ ├── filter.py │ │ │ │ │ │ │ │ └── resample.py │ │ │ │ │ │ ├── bigvgan.py │ │ │ │ │ │ ├── config.json │ │ │ │ │ │ ├── env.py │ │ │ │ │ │ ├── meldataset.py │ │ │ │ │ │ └── utils.py │ │ │ │ │ ├── campplus │ │ │ │ │ │ ├── DTDNN.py │ │ │ │ │ │ ├── classifier.py │ │ │ │ │ │ └── layers.py │ │ │ │ │ ├── commons.py │ │ │ │ │ ├── diffusion_transformer.py │ │ │ │ │ ├── encodec.py │ │ │ │ │ ├── flow_matching.py │ │ │ │ │ ├── gpt_fast │ │ │ │ │ │ ├── generate.py │ │ │ │ │ │ ├── model.py │ │ │ │ │ │ └── quantize.py │ │ │ │ │ ├── hifigan │ │ │ │ │ │ ├── f0_predictor.py │ │ │ │ │ │ └── generator.py │ │ │ │ │ ├── layers.py │ │ │ │ │ ├── length_regulator.py │ │ │ │ │ ├── openvoice │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── api.py │ │ │ │ │ │ ├── attentions.py │ │ │ │ │ │ ├── checkpoints_v2 │ │ │ │ │ │ │ └── converter │ │ │ │ │ │ │ │ └── config.json │ │ │ │ │ │ ├── commons.py │ │ │ │ │ │ ├── mel_processing.py │ │ │ │ │ │ ├── models.py │ │ │ │ │ │ ├── modules.py │ │ │ │ │ │ ├── openvoice_app.py │ │ │ │ │ │ ├── se_extractor.py │ │ │ │ │ │ ├── transforms.py │ │ │ │ │ │ └── utils.py │ │ │ │ │ ├── quantize.py │ │ │ │ │ ├── rmvpe.py │ │ │ │ │ ├── vocos │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── heads.py │ │ │ │ │ │ ├── helpers.py │ │ │ │ │ │ ├── loss.py │ │ │ │ │ │ ├── models.py │ │ │ │ │ │ ├── modules.py │ │ │ │ │ │ ├── pretrained.py │ │ │ │ │ │ └── spectral_ops.py │ │ │ │ │ └── wavenet.py │ │ │ │ ├── optimizers.py │ │ │ │ └── wav2vecbert_extract.py │ │ │ ├── utils │ │ │ │ ├── __init__.py │ │ │ │ ├── arch_util.py │ │ │ │ ├── checkpoint.py │ │ │ │ ├── common.py │ │ │ │ ├── feature_extractors.py │ │ │ │ ├── front.py │ │ │ │ ├── maskgct │ │ │ │ │ └── models │ │ │ │ │ │ ├── codec │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── amphion_codec │ │ │ │ │ │ │ ├── codec.py │ │ │ │ │ │ │ ├── quantize │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ ├── factorized_vector_quantize.py │ │ │ │ │ │ │ │ ├── lookup_free_quantize.py │ │ │ │ │ │ │ │ ├── residual_vq.py │ │ │ │ │ │ │ │ └── vector_quantize.py │ │ │ │ │ │ │ └── vocos.py │ │ │ │ │ │ ├── codec_dataset.py │ │ │ │ │ │ ├── codec_inference.py │ │ │ │ │ │ ├── codec_sampler.py │ │ │ │ │ │ ├── codec_trainer.py │ │ │ │ │ │ ├── facodec │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── alias_free_torch │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ ├── act.py │ │ │ │ │ │ │ │ ├── filter.py │ │ │ │ │ │ │ │ └── resample.py │ │ │ │ │ │ │ ├── facodec_dataset.py │ │ │ │ │ │ │ ├── facodec_inference.py │ │ │ │ │ │ │ ├── facodec_trainer.py │ │ │ │ │ │ │ ├── modules │ │ │ │ │ │ │ │ ├── JDC │ │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ │ ├── bst.t7 │ │ │ │ │ │ │ │ │ └── model.py │ │ │ │ │ │ │ │ ├── attentions.py │ │ │ │ │ │ │ │ ├── commons.py │ │ │ │ │ │ │ │ ├── gradient_reversal.py │ │ │ │ │ │ │ │ ├── layers.py │ │ │ │ │ │ │ │ ├── quantize.py │ │ │ │ │ │ │ │ ├── style_encoder.py │ │ │ │ │ │ │ │ └── wavenet.py │ │ │ │ │ │ │ └── optimizer.py │ │ │ │ │ │ ├── kmeans │ │ │ │ │ │ │ ├── repcodec_model.py │ │ │ │ │ │ │ └── vocos.py │ │ │ │ │ │ ├── melvqgan │ │ │ │ │ │ │ └── melspec.py │ │ │ │ │ │ ├── ns3_codec │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── alias_free_torch │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ ├── act.py │ │ │ │ │ │ │ │ ├── filter.py │ │ │ │ │ │ │ │ └── resample.py │ │ │ │ │ │ │ ├── facodec.py │ │ │ │ │ │ │ ├── gradient_reversal.py │ │ │ │ │ │ │ ├── melspec.py │ │ │ │ │ │ │ ├── quantize │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ ├── fvq.py │ │ │ │ │ │ │ │ └── rvq.py │ │ │ │ │ │ │ └── transformer.py │ │ │ │ │ │ ├── speechtokenizer │ │ │ │ │ │ │ ├── model.py │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ ├── conv.py │ │ │ │ │ │ │ │ ├── lstm.py │ │ │ │ │ │ │ │ ├── norm.py │ │ │ │ │ │ │ │ ├── quantization │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ ├── ac.py │ │ │ │ │ │ │ │ ├── core_vq.py │ │ │ │ │ │ │ │ ├── distrib.py │ │ │ │ │ │ │ │ └── vq.py │ │ │ │ │ │ │ │ └── seanet.py │ │ │ │ │ │ └── vevo │ │ │ │ │ │ │ └── vevo_repcodec.py │ │ │ │ │ │ └── tts │ │ │ │ │ │ └── maskgct │ │ │ │ │ │ ├── ckpt │ │ │ │ │ │ └── wav2vec2bert_stats.pt │ │ │ │ │ │ ├── llama_nar.py │ │ │ │ │ │ └── maskgct_s2a.py │ │ │ │ ├── maskgct_utils.py │ │ │ │ ├── text_utils.py │ │ │ │ ├── typical_sampling.py │ │ │ │ ├── utils.py │ │ │ │ ├── webui_utils.py │ │ │ │ └── xtransformers.py │ │ │ └── vqvae │ │ │ │ ├── __init__.py │ │ │ │ └── xtts_dvae.py │ │ └── tools │ │ │ ├── gpu_check.py │ │ │ └── i18n │ │ │ ├── i18n.py │ │ │ ├── locale │ │ │ ├── en_US.json │ │ │ └── zh_CN.json │ │ │ └── scan_i18n.py │ ├── openvoice │ │ ├── README.md │ │ └── openvoice │ │ │ ├── __init__.py │ │ │ ├── api.py │ │ │ ├── attentions.py │ │ │ ├── commons.py │ │ │ ├── mel_processing.py │ │ │ ├── models.py │ │ │ ├── modules.py │ │ │ ├── openvoice_app.py │ │ │ ├── se_extractor.py │ │ │ ├── text │ │ │ ├── __init__.py │ │ │ ├── cleaners.py │ │ │ ├── english.py │ │ │ ├── mandarin.py │ │ │ └── symbols.py │ │ │ ├── transforms.py │ │ │ └── utils.py │ ├── readme.md │ ├── resemble_enhance │ │ ├── __init__.py │ │ ├── common.py │ │ ├── data │ │ │ ├── __init__.py │ │ │ ├── dataset.py │ │ │ ├── distorter │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── custom.py │ │ │ │ ├── distorter.py │ │ │ │ └── sox.py │ │ │ └── utils.py │ │ ├── denoiser │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── denoiser.py │ │ │ ├── hparams.py │ │ │ ├── inference.py │ │ │ └── unet.py │ │ ├── enhancer │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── download.py │ │ │ ├── enhancer.py │ │ │ ├── hparams.py │ │ │ ├── inference.py │ │ │ ├── lcfm │ │ │ │ ├── __init__.py │ │ │ │ ├── cfm.py │ │ │ │ ├── irmae.py │ │ │ │ ├── lcfm.py │ │ │ │ └── wn.py │ │ │ └── univnet │ │ │ │ ├── __init__.py │ │ │ │ ├── alias_free_torch │ │ │ │ ├── __init__.py │ │ │ │ ├── filter.py │ │ │ │ └── resample.py │ │ │ │ ├── amp.py │ │ │ │ ├── discriminator.py │ │ │ │ ├── lvcnet.py │ │ │ │ ├── mrstft.py │ │ │ │ └── univnet.py │ │ ├── hparams.py │ │ ├── inference.py │ │ ├── melspec.py │ │ └── utils │ │ │ ├── __init__.py │ │ │ ├── control.py │ │ │ ├── logging.py │ │ │ └── utils.py │ ├── spark_tts │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── cli │ │ │ ├── SparkTTS.py │ │ │ └── inference.py │ │ ├── sparktts │ │ │ ├── models │ │ │ │ ├── audio_tokenizer.py │ │ │ │ └── bicodec.py │ │ │ ├── modules │ │ │ │ ├── blocks │ │ │ │ │ ├── layers.py │ │ │ │ │ ├── samper.py │ │ │ │ │ └── vocos.py │ │ │ │ ├── encoder_decoder │ │ │ │ │ ├── feat_decoder.py │ │ │ │ │ ├── feat_encoder.py │ │ │ │ │ └── wave_generator.py │ │ │ │ ├── fsq │ │ │ │ │ ├── finite_scalar_quantization.py │ │ │ │ │ └── residual_fsq.py │ │ │ │ ├── speaker │ │ │ │ │ ├── ecapa_tdnn.py │ │ │ │ │ ├── perceiver_encoder.py │ │ │ │ │ ├── pooling_layers.py │ │ │ │ │ └── speaker_encoder.py │ │ │ │ └── vq │ │ │ │ │ └── factorized_vector_quantize.py │ │ │ └── utils │ │ │ │ ├── __init__.py │ │ │ │ ├── audio.py │ │ │ │ ├── file.py │ │ │ │ ├── parse_options.sh │ │ │ │ └── token_parser.py │ │ └── webui.py │ ├── sys_paths.py │ └── zh_normalization │ │ ├── README.md │ │ ├── __init__.py │ │ ├── char_convert.py │ │ ├── chronology.py │ │ ├── constants.py │ │ ├── num.py │ │ ├── phonecode.py │ │ ├── quantifier.py │ │ └── text_normlization.py ├── utils │ ├── CsvMgr.py │ ├── HomophonesReplacer.py │ ├── JsonObject.py │ ├── SeedContext.py │ ├── __init__.py │ ├── audio_utils.py │ ├── bytes_to_wav.py │ ├── cache.py │ ├── constants.py │ ├── detect_lang.py │ ├── env.py │ ├── ffmpeg.py │ ├── git.py │ ├── hf.py │ ├── html.py │ ├── ignore_warn.py │ ├── markdown.py │ ├── monkey_tqdm.py │ ├── rng.py │ └── torch_opt.py └── webui │ ├── __init__.py │ ├── app.py │ ├── asr_tab.py │ ├── asr_tabs │ └── transcribe_tab.py │ ├── audio_tools │ ├── post_process.py │ ├── tools_tab.py │ └── video_cut.py │ ├── changelog_tab.py │ ├── css │ └── style.css │ ├── finetune │ ├── ProcessMonitor.py │ ├── ft_tab.py │ ├── ft_ui_utils.py │ └── speaker_ft_tab.py │ ├── gradio_extensions.py │ ├── gradio_hijack.py │ ├── js │ ├── gradio.js │ ├── hub.js │ ├── index.js │ ├── localization.js │ └── marked.js │ ├── localization.py │ ├── localization_runtime.py │ ├── readme_tab.py │ ├── speaker │ ├── __init__.py │ ├── speaker_creator.py │ ├── speaker_editor.py │ ├── speaker_editor_v2.py │ ├── speaker_merger.py │ ├── spk_hub.py │ └── wav_misc.py │ ├── speaker_tab.py │ ├── ssml │ ├── __init__.py │ ├── podcast_tab.py │ ├── script_tab.py │ ├── spliter_tab.py │ ├── ssml_tab.py │ └── subtitle_tab.py │ ├── system_tab.py │ ├── tts_tab.py │ ├── tts_tabs │ ├── DiT_infer_ui.py │ └── tts_infer_ui.py │ ├── webui_config.py │ └── webui_utils.py ├── package.json ├── packages.txt ├── playground ├── AudioCreation.page.mjs ├── client.mjs ├── global.store.mjs ├── google.page.mjs ├── index.html ├── index.mjs ├── misc.mjs ├── openai.page.mjs ├── pages.mjs ├── speakers.page.mjs ├── ssml.page.mjs ├── stream.page.mjs └── tts.page.mjs ├── pyproject.toml ├── pytest.ini ├── requirements.dev.txt ├── requirements.dev_gpu.txt ├── requirements.txt ├── scripts ├── ModelDownloader.py ├── __init__.py ├── asr_to_ass.ipynb ├── cvt_spks.py ├── dl_args.py ├── dl_base.py ├── dl_chattts.py ├── dl_cosyvoice_base.py ├── dl_cosyvoice_instruct.py ├── dl_enhance.py ├── docs │ ├── build_openapi_spec.py │ └── readme.md ├── download_audio_backend.py ├── download_models.py ├── downloader │ ├── MaskGCT_semantic_codec.py │ ├── cosyvoice2.py │ ├── f5_tts.py │ ├── f5_tts_v1.py │ ├── facebook_w2v_bert_2.py │ ├── faster_whisper.py │ ├── faster_whisper_v3_turbo.py │ ├── fire_red_tts.py │ ├── fish_speech_1_2sft.py │ ├── fish_speech_1_4.py │ ├── fsmn_vad.py │ ├── funasr_campplus.py │ ├── gpt_sovits_v4.py │ ├── index_tts.py │ ├── index_tts_1_5.py │ ├── index_tts_2.py │ ├── nvidia_bigvgan_v2.py │ ├── open_voice.py │ ├── sensevoice_small.py │ ├── spark_tts.py │ └── vocos_mel_24khz.py └── spk │ ├── .gitignore │ ├── chattts_pt_to_spk.py │ ├── code_to_spk.py │ ├── edit.py │ ├── get_spk_emb.py │ ├── get_wav.py │ └── spk_factory │ ├── readme.md │ └── spk_factory.py ├── tests ├── __init__.py ├── api │ ├── __init__.py │ ├── test_google.py │ ├── test_openai.py │ ├── test_openai_stt.py │ ├── test_prompt.py │ ├── test_routes.py │ ├── test_speakers.py │ ├── test_ssml.py │ ├── test_styles.py │ ├── test_tts.py │ ├── test_vc.py │ └── test_xtts_v2.py ├── api_v2 │ └── test_tts_v2.py ├── benchmark │ ├── __init__.py │ └── tts_benchmark.py ├── conftest.py ├── demo │ └── index_tts │ │ ├── readme.md │ │ ├── regression_test.py │ │ └── sample_prompt.wav ├── encders │ └── test_encoders.py ├── model │ ├── __init__.py │ └── test_chat_tts.py ├── pipeline │ ├── misc.py │ ├── test_chat_tts_pipe.py │ ├── test_cosyvoice_pipe.py │ ├── test_f5_tts_pipe.py │ ├── test_fire_red_tts_pipe.py │ ├── test_post_process.py │ └── voice_clone_pipe.py ├── scripts │ └── simple_pipeline.py ├── test_inputs │ ├── chattts_out1.wav │ └── cosyvoice_out1.wav ├── test_normalize │ ├── test_cn_num.py │ ├── test_emoji.py │ └── test_md.py └── test_ssml │ ├── test_ssml_generate.py │ └── test_ssml_parser.py ├── webui.py └── xttsv2.config.json /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/.env.api -------------------------------------------------------------------------------- /.env.webui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/.env.webui -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/any-issues.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/.github/ISSUE_TEMPLATE/any-issues.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report-api.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/.github/ISSUE_TEMPLATE/bug-report-api.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report-finetune.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/.github/ISSUE_TEMPLATE/bug-report-finetune.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report-webui.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/.github/ISSUE_TEMPLATE/bug-report-webui.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/.github/ISSUE_TEMPLATE/feature-request.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/.gitignore -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/.pylintrc -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/LICENSE -------------------------------------------------------------------------------- /README.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/README.en.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/README.md -------------------------------------------------------------------------------- /colab.en.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/colab.en.ipynb -------------------------------------------------------------------------------- /colab.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/colab.ipynb -------------------------------------------------------------------------------- /data/load_json_spk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/data/load_json_spk.py -------------------------------------------------------------------------------- /data/read_cosyvoice_spk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/data/read_cosyvoice_spk.py -------------------------------------------------------------------------------- /data/rebuild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/data/rebuild.py -------------------------------------------------------------------------------- /data/slct_voice_240605.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/data/slct_voice_240605.json -------------------------------------------------------------------------------- /data/speakers/Alice.spkv1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/data/speakers/Alice.spkv1.json -------------------------------------------------------------------------------- /data/speakers/Bob.spkv1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/data/speakers/Bob.spkv1.json -------------------------------------------------------------------------------- /data/speakers/Bob_ft10.spkv1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/data/speakers/Bob_ft10.spkv1.json -------------------------------------------------------------------------------- /data/speakers/female2.spkv1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/data/speakers/female2.spkv1.json -------------------------------------------------------------------------------- /data/speakers/mona.spkv1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/data/speakers/mona.spkv1.json -------------------------------------------------------------------------------- /data/speakers/spk_1.spkv1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/data/speakers/spk_1.spkv1.json -------------------------------------------------------------------------------- /data/speakers/spk_10.spkv1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/data/speakers/spk_10.spkv1.json -------------------------------------------------------------------------------- /data/speakers/spk_11.spkv1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/data/speakers/spk_11.spkv1.json -------------------------------------------------------------------------------- /data/speakers/spk_12.spkv1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/data/speakers/spk_12.spkv1.json -------------------------------------------------------------------------------- /data/speakers/spk_13.spkv1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/data/speakers/spk_13.spkv1.json -------------------------------------------------------------------------------- /data/speakers/spk_14.spkv1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/data/speakers/spk_14.spkv1.json -------------------------------------------------------------------------------- /data/speakers/spk_15.spkv1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/data/speakers/spk_15.spkv1.json -------------------------------------------------------------------------------- /data/speakers/spk_16.spkv1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/data/speakers/spk_16.spkv1.json -------------------------------------------------------------------------------- /data/speakers/spk_17.spkv1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/data/speakers/spk_17.spkv1.json -------------------------------------------------------------------------------- /data/speakers/spk_18.spkv1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/data/speakers/spk_18.spkv1.json -------------------------------------------------------------------------------- /data/speakers/spk_19.spkv1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/data/speakers/spk_19.spkv1.json -------------------------------------------------------------------------------- /data/speakers/spk_2.spkv1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/data/speakers/spk_2.spkv1.json -------------------------------------------------------------------------------- /data/speakers/spk_20.spkv1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/data/speakers/spk_20.spkv1.json -------------------------------------------------------------------------------- /data/speakers/spk_21.spkv1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/data/speakers/spk_21.spkv1.json -------------------------------------------------------------------------------- /data/speakers/spk_22.spkv1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/data/speakers/spk_22.spkv1.json -------------------------------------------------------------------------------- /data/speakers/spk_3.spkv1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/data/speakers/spk_3.spkv1.json -------------------------------------------------------------------------------- /data/speakers/spk_4.spkv1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/data/speakers/spk_4.spkv1.json -------------------------------------------------------------------------------- /data/speakers/spk_5.spkv1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/data/speakers/spk_5.spkv1.json -------------------------------------------------------------------------------- /data/speakers/spk_6.spkv1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/data/speakers/spk_6.spkv1.json -------------------------------------------------------------------------------- /data/speakers/spk_7.spkv1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/data/speakers/spk_7.spkv1.json -------------------------------------------------------------------------------- /data/speakers/spk_8.spkv1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/data/speakers/spk_8.spkv1.json -------------------------------------------------------------------------------- /data/speakers/spk_9.spkv1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/data/speakers/spk_9.spkv1.json -------------------------------------------------------------------------------- /data/styles.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/data/styles.csv -------------------------------------------------------------------------------- /datasets/put_datasets_here: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docker-compose.api.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/docker-compose.api.yml -------------------------------------------------------------------------------- /docker-compose.webui.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/docker-compose.webui.yml -------------------------------------------------------------------------------- /docs/SSML.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/docs/SSML.md -------------------------------------------------------------------------------- /docs/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/docs/api.md -------------------------------------------------------------------------------- /docs/api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/docs/api.png -------------------------------------------------------------------------------- /docs/api_v2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/docs/api_v2.md -------------------------------------------------------------------------------- /docs/api_xtts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/docs/api_xtts.md -------------------------------------------------------------------------------- /docs/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/docs/banner.png -------------------------------------------------------------------------------- /docs/benchmark.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/docs/benchmark.md -------------------------------------------------------------------------------- /docs/demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/docs/demo.md -------------------------------------------------------------------------------- /docs/dependencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/docs/dependencies.md -------------------------------------------------------------------------------- /docs/finetune.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/docs/finetune.md -------------------------------------------------------------------------------- /docs/long_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/docs/long_text.png -------------------------------------------------------------------------------- /docs/model_dir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/docs/model_dir.png -------------------------------------------------------------------------------- /docs/openapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/docs/openapi.json -------------------------------------------------------------------------------- /docs/playground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/docs/playground.png -------------------------------------------------------------------------------- /docs/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/docs/readme.md -------------------------------------------------------------------------------- /docs/sillytavern_tts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/docs/sillytavern_tts.png -------------------------------------------------------------------------------- /docs/speaking_styles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/docs/speaking_styles.md -------------------------------------------------------------------------------- /docs/webui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/docs/webui.png -------------------------------------------------------------------------------- /docs/webui/spk_creator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/docs/webui/spk_creator.png -------------------------------------------------------------------------------- /docs/webui/spk_merger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/docs/webui/spk_merger.png -------------------------------------------------------------------------------- /docs/webui_features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/docs/webui_features.md -------------------------------------------------------------------------------- /examples/javascript/SpkClient.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/examples/javascript/SpkClient.mjs -------------------------------------------------------------------------------- /examples/javascript/SttClient.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/examples/javascript/SttClient.mjs -------------------------------------------------------------------------------- /examples/javascript/TtsClient.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/examples/javascript/TtsClient.mjs -------------------------------------------------------------------------------- /examples/javascript/client.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/examples/javascript/client.mjs -------------------------------------------------------------------------------- /examples/javascript/demo_create_spk.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/examples/javascript/demo_create_spk.mjs -------------------------------------------------------------------------------- /examples/javascript/demo_stt.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/examples/javascript/demo_stt.mjs -------------------------------------------------------------------------------- /examples/javascript/demo_tts.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/examples/javascript/demo_tts.mjs -------------------------------------------------------------------------------- /examples/javascript/demo_tts_v2.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/examples/javascript/demo_tts_v2.mjs -------------------------------------------------------------------------------- /examples/javascript/demo_tts_v2_full.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/examples/javascript/demo_tts_v2_full.mjs -------------------------------------------------------------------------------- /examples/javascript/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/examples/javascript/types.d.ts -------------------------------------------------------------------------------- /examples/python/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/python/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/examples/python/client.py -------------------------------------------------------------------------------- /examples/python/tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/examples/python/tts.py -------------------------------------------------------------------------------- /ffmpeg/put_ffmpeg_here: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /language/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/language/en.json -------------------------------------------------------------------------------- /language/zh-CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/language/zh-CN.json -------------------------------------------------------------------------------- /launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/launch.py -------------------------------------------------------------------------------- /models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/Denoise/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/Lora/put_lora_here: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/put_model_here: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/resemble-enhance/hparams.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/models/resemble-enhance/hparams.yaml -------------------------------------------------------------------------------- /modules/Denoiser/AudioDenoiser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/Denoiser/AudioDenoiser.py -------------------------------------------------------------------------------- /modules/Denoiser/AudioNosiseModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/Denoiser/AudioNosiseModel.py -------------------------------------------------------------------------------- /modules/Denoiser/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/api/Api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/api/Api.py -------------------------------------------------------------------------------- /modules/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/api/api_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/api/api_setup.py -------------------------------------------------------------------------------- /modules/api/app_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/api/app_config.py -------------------------------------------------------------------------------- /modules/api/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/api/constants.py -------------------------------------------------------------------------------- /modules/api/impl/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/api/impl/google_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/api/impl/google_api.py -------------------------------------------------------------------------------- /modules/api/impl/models_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/api/impl/models_api.py -------------------------------------------------------------------------------- /modules/api/impl/openai_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/api/impl/openai_api.py -------------------------------------------------------------------------------- /modules/api/impl/refiner_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/api/impl/refiner_api.py -------------------------------------------------------------------------------- /modules/api/impl/speaker_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/api/impl/speaker_api.py -------------------------------------------------------------------------------- /modules/api/impl/ssml_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/api/impl/ssml_api.py -------------------------------------------------------------------------------- /modules/api/impl/stt_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/api/impl/stt_api.py -------------------------------------------------------------------------------- /modules/api/impl/style_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/api/impl/style_api.py -------------------------------------------------------------------------------- /modules/api/impl/sys_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/api/impl/sys_api.py -------------------------------------------------------------------------------- /modules/api/impl/tts_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/api/impl/tts_api.py -------------------------------------------------------------------------------- /modules/api/impl/vc_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/api/impl/vc_api.py -------------------------------------------------------------------------------- /modules/api/impl/xtts_v2_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/api/impl/xtts_v2_api.py -------------------------------------------------------------------------------- /modules/api/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/api/utils.py -------------------------------------------------------------------------------- /modules/api/v2/BlobStorage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/api/v2/BlobStorage.py -------------------------------------------------------------------------------- /modules/api/v2/batch_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/api/v2/batch_api.py -------------------------------------------------------------------------------- /modules/api/v2/dcls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/api/v2/dcls.py -------------------------------------------------------------------------------- /modules/api/v2/file_api.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/api/v2/job_api.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/api/v2/transcribe_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/api/v2/transcribe_api.py -------------------------------------------------------------------------------- /modules/api/v2/tts_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/api/v2/tts_api.py -------------------------------------------------------------------------------- /modules/api/worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/api/worker.py -------------------------------------------------------------------------------- /modules/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/config.py -------------------------------------------------------------------------------- /modules/configs/cosyvoice.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/configs/cosyvoice.yaml -------------------------------------------------------------------------------- /modules/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/core/handler/AudioHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/handler/AudioHandler.py -------------------------------------------------------------------------------- /modules/core/handler/STTHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/handler/STTHandler.py -------------------------------------------------------------------------------- /modules/core/handler/TTSHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/handler/TTSHandler.py -------------------------------------------------------------------------------- /modules/core/handler/VCHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/handler/VCHandler.py -------------------------------------------------------------------------------- /modules/core/handler/cancellation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/handler/cancellation.py -------------------------------------------------------------------------------- /modules/core/handler/datacls/audio_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/handler/datacls/audio_model.py -------------------------------------------------------------------------------- /modules/core/handler/datacls/enhancer_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/handler/datacls/enhancer_model.py -------------------------------------------------------------------------------- /modules/core/handler/datacls/prompt_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/handler/datacls/prompt_model.py -------------------------------------------------------------------------------- /modules/core/handler/datacls/stt_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/handler/datacls/stt_model.py -------------------------------------------------------------------------------- /modules/core/handler/datacls/tn_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/handler/datacls/tn_model.py -------------------------------------------------------------------------------- /modules/core/handler/datacls/tts_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/handler/datacls/tts_model.py -------------------------------------------------------------------------------- /modules/core/handler/datacls/vc_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/handler/datacls/vc_model.py -------------------------------------------------------------------------------- /modules/core/handler/encoder/StreamEncoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/handler/encoder/StreamEncoder.py -------------------------------------------------------------------------------- /modules/core/handler/encoder/WavFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/handler/encoder/WavFile.py -------------------------------------------------------------------------------- /modules/core/handler/encoder/encoders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/handler/encoder/encoders.py -------------------------------------------------------------------------------- /modules/core/models/AudioReshaper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/models/AudioReshaper.py -------------------------------------------------------------------------------- /modules/core/models/BaseZooModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/models/BaseZooModel.py -------------------------------------------------------------------------------- /modules/core/models/RefinerModel.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/core/models/TTSModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/models/TTSModel.py -------------------------------------------------------------------------------- /modules/core/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/core/models/enhancer/ResembleEnhance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/models/enhancer/ResembleEnhance.py -------------------------------------------------------------------------------- /modules/core/models/enhancer/ResembleEnhanceModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/models/enhancer/ResembleEnhanceModel.py -------------------------------------------------------------------------------- /modules/core/models/refiner/ChatTTSRefiner.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/core/models/refiner/OaiRefiner.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/core/models/stt/STTChunker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/models/stt/STTChunker.py -------------------------------------------------------------------------------- /modules/core/models/stt/STTModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/models/stt/STTModel.py -------------------------------------------------------------------------------- /modules/core/models/stt/SenseVoice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/models/stt/SenseVoice.py -------------------------------------------------------------------------------- /modules/core/models/stt/Whisper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/models/stt/Whisper.py -------------------------------------------------------------------------------- /modules/core/models/stt/whisper/SegmentNormalizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/models/stt/whisper/SegmentNormalizer.py -------------------------------------------------------------------------------- /modules/core/models/stt/whisper/whisper_dcls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/models/stt/whisper/whisper_dcls.py -------------------------------------------------------------------------------- /modules/core/models/stt/whisper/writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/models/stt/whisper/writer.py -------------------------------------------------------------------------------- /modules/core/models/tts/ChatTTS/ChatTTS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/models/tts/ChatTTS/ChatTTS.py -------------------------------------------------------------------------------- /modules/core/models/tts/ChatTTS/ChatTTSInfer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/models/tts/ChatTTS/ChatTTSInfer.py -------------------------------------------------------------------------------- /modules/core/models/tts/ChatTtsModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/models/tts/ChatTtsModel.py -------------------------------------------------------------------------------- /modules/core/models/tts/CosyVoiceFE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/models/tts/CosyVoiceFE.py -------------------------------------------------------------------------------- /modules/core/models/tts/CosyVoiceModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/models/tts/CosyVoiceModel.py -------------------------------------------------------------------------------- /modules/core/models/tts/F5/F5Annotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/models/tts/F5/F5Annotation.py -------------------------------------------------------------------------------- /modules/core/models/tts/F5/F5ttsApi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/models/tts/F5/F5ttsApi.py -------------------------------------------------------------------------------- /modules/core/models/tts/F5/convert_char_to_pinyin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/models/tts/F5/convert_char_to_pinyin.py -------------------------------------------------------------------------------- /modules/core/models/tts/F5/f5_infer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/models/tts/F5/f5_infer.py -------------------------------------------------------------------------------- /modules/core/models/tts/F5TtsModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/models/tts/F5TtsModel.py -------------------------------------------------------------------------------- /modules/core/models/tts/FireRed/FRBepTokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/models/tts/FireRed/FRBepTokenizer.py -------------------------------------------------------------------------------- /modules/core/models/tts/FireRed/FireRedInfer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/models/tts/FireRed/FireRedInfer.py -------------------------------------------------------------------------------- /modules/core/models/tts/FireRed/FireRedTTSModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/models/tts/FireRed/FireRedTTSModel.py -------------------------------------------------------------------------------- /modules/core/models/tts/FireRed/MelExtractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/models/tts/FireRed/MelExtractor.py -------------------------------------------------------------------------------- /modules/core/models/tts/FishSpeechInfer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/models/tts/FishSpeechInfer.py -------------------------------------------------------------------------------- /modules/core/models/tts/FishSpeechModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/models/tts/FishSpeechModel.py -------------------------------------------------------------------------------- /modules/core/models/tts/GptSoVits/GptSoVitsModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/models/tts/GptSoVits/GptSoVitsModel.py -------------------------------------------------------------------------------- /modules/core/models/tts/GptSoVits/GptSoVitsTTS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/models/tts/GptSoVits/GptSoVitsTTS.py -------------------------------------------------------------------------------- /modules/core/models/tts/GptSoVits/GptSoVitsTTSConfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/models/tts/GptSoVits/GptSoVitsTTSConfig.py -------------------------------------------------------------------------------- /modules/core/models/tts/IndexTTS/IndexTTSModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/models/tts/IndexTTS/IndexTTSModel.py -------------------------------------------------------------------------------- /modules/core/models/tts/IndexTTS/IndexTTSV2Model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/models/tts/IndexTTS/IndexTTSV2Model.py -------------------------------------------------------------------------------- /modules/core/models/tts/IndexTTS/infer/infer_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/models/tts/IndexTTS/infer/infer_v2.py -------------------------------------------------------------------------------- /modules/core/models/tts/InferCache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/models/tts/InferCache.py -------------------------------------------------------------------------------- /modules/core/models/tts/SparkTTS/SparkTTS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/models/tts/SparkTTS/SparkTTS.py -------------------------------------------------------------------------------- /modules/core/models/tts/SparkTTS/SparkTTSModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/models/tts/SparkTTS/SparkTTSModel.py -------------------------------------------------------------------------------- /modules/core/models/tts/downloader/downloader.py: -------------------------------------------------------------------------------- 1 | # TODO 下载器移动到这里面 2 | -------------------------------------------------------------------------------- /modules/core/models/tts/fishspeech/FF14_infer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/models/tts/fishspeech/FF14_infer.py -------------------------------------------------------------------------------- /modules/core/models/tts/fishspeech/FF14_llama.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/models/tts/fishspeech/FF14_llama.py -------------------------------------------------------------------------------- /modules/core/models/tts/fishspeech/FF14_vqgan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/models/tts/fishspeech/FF14_vqgan.py -------------------------------------------------------------------------------- /modules/core/models/tts/fishspeech/FishSpeech14Model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/models/tts/fishspeech/FishSpeech14Model.py -------------------------------------------------------------------------------- /modules/core/models/tts/fishspeech/configs/base.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/models/tts/fishspeech/configs/base.yaml -------------------------------------------------------------------------------- /modules/core/models/tts/fishspeech/configs/firefly_gan_vq.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/models/tts/fishspeech/configs/firefly_gan_vq.yaml -------------------------------------------------------------------------------- /modules/core/models/tts/fishspeech/configs/lora/r_8_alpha_16.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/models/tts/fishspeech/configs/lora/r_8_alpha_16.yaml -------------------------------------------------------------------------------- /modules/core/models/vc/OpenVoice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/models/vc/OpenVoice.py -------------------------------------------------------------------------------- /modules/core/models/vc/VCModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/models/vc/VCModel.py -------------------------------------------------------------------------------- /modules/core/models/zoo/ModelConfigure.py: -------------------------------------------------------------------------------- 1 | # TODO: 自定义模型需要的配置抽象层 2 | -------------------------------------------------------------------------------- /modules/core/models/zoo/ModelZoo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/models/zoo/ModelZoo.py -------------------------------------------------------------------------------- /modules/core/models/zoo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/models/zoo/__init__.py -------------------------------------------------------------------------------- /modules/core/pipeline/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/core/pipeline/dcls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/pipeline/dcls.py -------------------------------------------------------------------------------- /modules/core/pipeline/factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/pipeline/factory.py -------------------------------------------------------------------------------- /modules/core/pipeline/generate/BatchGenerate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/pipeline/generate/BatchGenerate.py -------------------------------------------------------------------------------- /modules/core/pipeline/generate/BatchSynth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/pipeline/generate/BatchSynth.py -------------------------------------------------------------------------------- /modules/core/pipeline/generate/Bucketizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/pipeline/generate/Bucketizer.py -------------------------------------------------------------------------------- /modules/core/pipeline/generate/Chunker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/pipeline/generate/Chunker.py -------------------------------------------------------------------------------- /modules/core/pipeline/generate/SimpleTokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/pipeline/generate/SimpleTokenizer.py -------------------------------------------------------------------------------- /modules/core/pipeline/generate/SsmlNormalizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/pipeline/generate/SsmlNormalizer.py -------------------------------------------------------------------------------- /modules/core/pipeline/generate/SynthSteamer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/pipeline/generate/SynthSteamer.py -------------------------------------------------------------------------------- /modules/core/pipeline/generate/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/core/pipeline/generate/dcls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/pipeline/generate/dcls.py -------------------------------------------------------------------------------- /modules/core/pipeline/pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/pipeline/pipeline.py -------------------------------------------------------------------------------- /modules/core/pipeline/processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/pipeline/processor.py -------------------------------------------------------------------------------- /modules/core/pipeline/processors/Adjuster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/pipeline/processors/Adjuster.py -------------------------------------------------------------------------------- /modules/core/pipeline/processors/Enhancer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/pipeline/processors/Enhancer.py -------------------------------------------------------------------------------- /modules/core/pipeline/processors/Normalizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/pipeline/processors/Normalizer.py -------------------------------------------------------------------------------- /modules/core/pipeline/processors/VoiceClone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/pipeline/processors/VoiceClone.py -------------------------------------------------------------------------------- /modules/core/pipeline/processors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/core/spk/SpkCard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/spk/SpkCard.py -------------------------------------------------------------------------------- /modules/core/spk/SpkMgr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/spk/SpkMgr.py -------------------------------------------------------------------------------- /modules/core/spk/TTSSpeaker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/spk/TTSSpeaker.py -------------------------------------------------------------------------------- /modules/core/spk/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/spk/__init__.py -------------------------------------------------------------------------------- /modules/core/spk/dcls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/spk/dcls.py -------------------------------------------------------------------------------- /modules/core/ssml/SSMLParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/ssml/SSMLParser.py -------------------------------------------------------------------------------- /modules/core/ssml/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/core/tn/ChatTtsTN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/tn/ChatTtsTN.py -------------------------------------------------------------------------------- /modules/core/tn/CosyVoiceTN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/tn/CosyVoiceTN.py -------------------------------------------------------------------------------- /modules/core/tn/F5TtsTN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/tn/F5TtsTN.py -------------------------------------------------------------------------------- /modules/core/tn/FireRedTtsTN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/tn/FireRedTtsTN.py -------------------------------------------------------------------------------- /modules/core/tn/FishSpeechTN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/tn/FishSpeechTN.py -------------------------------------------------------------------------------- /modules/core/tn/IndexTTSTN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/tn/IndexTTSTN.py -------------------------------------------------------------------------------- /modules/core/tn/SparkTTSTN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/tn/SparkTTSTN.py -------------------------------------------------------------------------------- /modules/core/tn/TNPipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/tn/TNPipeline.py -------------------------------------------------------------------------------- /modules/core/tn/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/core/tn/base_tn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/tn/base_tn.py -------------------------------------------------------------------------------- /modules/core/tn/pinyin_ton3_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/tn/pinyin_ton3_list.py -------------------------------------------------------------------------------- /modules/core/tn/whisper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/tn/whisper.py -------------------------------------------------------------------------------- /modules/core/tools/FolderDatabase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/tools/FolderDatabase.py -------------------------------------------------------------------------------- /modules/core/tools/SentenceSplitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/tools/SentenceSplitter.py -------------------------------------------------------------------------------- /modules/core/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/core/tools/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/core/tools/misc.py -------------------------------------------------------------------------------- /modules/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/data.py -------------------------------------------------------------------------------- /modules/denoise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/denoise.py -------------------------------------------------------------------------------- /modules/devices/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/devices/devices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/devices/devices.py -------------------------------------------------------------------------------- /modules/devices/mac_devices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/devices/mac_devices.py -------------------------------------------------------------------------------- /modules/ffmpeg_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/ffmpeg_env.py -------------------------------------------------------------------------------- /modules/finetune/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/finetune/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/finetune/dataset.py -------------------------------------------------------------------------------- /modules/finetune/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/finetune/logger.py -------------------------------------------------------------------------------- /modules/finetune/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/finetune/model.py -------------------------------------------------------------------------------- /modules/finetune/output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/finetune/output.py -------------------------------------------------------------------------------- /modules/finetune/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/finetune/train.py -------------------------------------------------------------------------------- /modules/finetune/train_speaker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/finetune/train_speaker.py -------------------------------------------------------------------------------- /modules/fixs/gradio_dcls_fix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/fixs/gradio_dcls_fix.py -------------------------------------------------------------------------------- /modules/models_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/models_setup.py -------------------------------------------------------------------------------- /modules/prompts/news_oral_prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/prompts/news_oral_prompt.txt -------------------------------------------------------------------------------- /modules/prompts/podcast_prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/prompts/podcast_prompt.txt -------------------------------------------------------------------------------- /modules/refiner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/refiner.py -------------------------------------------------------------------------------- /modules/repos_static/ChatTTS/ChatTTS/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import Chat 2 | -------------------------------------------------------------------------------- /modules/repos_static/ChatTTS/ChatTTS/config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/ChatTTS/ChatTTS/config/__init__.py -------------------------------------------------------------------------------- /modules/repos_static/ChatTTS/ChatTTS/config/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/ChatTTS/ChatTTS/config/config.py -------------------------------------------------------------------------------- /modules/repos_static/ChatTTS/ChatTTS/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/ChatTTS/ChatTTS/core.py -------------------------------------------------------------------------------- /modules/repos_static/ChatTTS/ChatTTS/model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/ChatTTS/ChatTTS/model/__init__.py -------------------------------------------------------------------------------- /modules/repos_static/ChatTTS/ChatTTS/model/cuda/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/ChatTTS/ChatTTS/model/cuda/__init__.py -------------------------------------------------------------------------------- /modules/repos_static/ChatTTS/ChatTTS/model/cuda/patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/ChatTTS/ChatTTS/model/cuda/patch.py -------------------------------------------------------------------------------- /modules/repos_static/ChatTTS/ChatTTS/model/cuda/te_llama.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/ChatTTS/ChatTTS/model/cuda/te_llama.py -------------------------------------------------------------------------------- /modules/repos_static/ChatTTS/ChatTTS/model/dvae.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/ChatTTS/ChatTTS/model/dvae.py -------------------------------------------------------------------------------- /modules/repos_static/ChatTTS/ChatTTS/model/gpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/ChatTTS/ChatTTS/model/gpt.py -------------------------------------------------------------------------------- /modules/repos_static/ChatTTS/ChatTTS/model/processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/ChatTTS/ChatTTS/model/processors.py -------------------------------------------------------------------------------- /modules/repos_static/ChatTTS/ChatTTS/model/speaker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/ChatTTS/ChatTTS/model/speaker.py -------------------------------------------------------------------------------- /modules/repos_static/ChatTTS/ChatTTS/model/tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/ChatTTS/ChatTTS/model/tokenizer.py -------------------------------------------------------------------------------- /modules/repos_static/ChatTTS/ChatTTS/model/velocity/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/ChatTTS/ChatTTS/model/velocity/__init__.py -------------------------------------------------------------------------------- /modules/repos_static/ChatTTS/ChatTTS/model/velocity/configs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/ChatTTS/ChatTTS/model/velocity/configs.py -------------------------------------------------------------------------------- /modules/repos_static/ChatTTS/ChatTTS/model/velocity/llama.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/ChatTTS/ChatTTS/model/velocity/llama.py -------------------------------------------------------------------------------- /modules/repos_static/ChatTTS/ChatTTS/model/velocity/llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/ChatTTS/ChatTTS/model/velocity/llm.py -------------------------------------------------------------------------------- /modules/repos_static/ChatTTS/ChatTTS/model/velocity/llm_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/ChatTTS/ChatTTS/model/velocity/llm_engine.py -------------------------------------------------------------------------------- /modules/repos_static/ChatTTS/ChatTTS/model/velocity/output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/ChatTTS/ChatTTS/model/velocity/output.py -------------------------------------------------------------------------------- /modules/repos_static/ChatTTS/ChatTTS/model/velocity/post_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/ChatTTS/ChatTTS/model/velocity/post_model.py -------------------------------------------------------------------------------- /modules/repos_static/ChatTTS/ChatTTS/model/velocity/scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/ChatTTS/ChatTTS/model/velocity/scheduler.py -------------------------------------------------------------------------------- /modules/repos_static/ChatTTS/ChatTTS/model/velocity/sequence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/ChatTTS/ChatTTS/model/velocity/sequence.py -------------------------------------------------------------------------------- /modules/repos_static/ChatTTS/ChatTTS/model/velocity/worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/ChatTTS/ChatTTS/model/velocity/worker.py -------------------------------------------------------------------------------- /modules/repos_static/ChatTTS/ChatTTS/norm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/ChatTTS/ChatTTS/norm.py -------------------------------------------------------------------------------- /modules/repos_static/ChatTTS/ChatTTS/res/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/repos_static/ChatTTS/ChatTTS/res/homophones_map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/ChatTTS/ChatTTS/res/homophones_map.json -------------------------------------------------------------------------------- /modules/repos_static/ChatTTS/ChatTTS/res/sha256_map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/ChatTTS/ChatTTS/res/sha256_map.json -------------------------------------------------------------------------------- /modules/repos_static/ChatTTS/ChatTTS/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/ChatTTS/ChatTTS/utils/__init__.py -------------------------------------------------------------------------------- /modules/repos_static/ChatTTS/ChatTTS/utils/dl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/ChatTTS/ChatTTS/utils/dl.py -------------------------------------------------------------------------------- /modules/repos_static/ChatTTS/ChatTTS/utils/gpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/ChatTTS/ChatTTS/utils/gpu.py -------------------------------------------------------------------------------- /modules/repos_static/ChatTTS/ChatTTS/utils/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/ChatTTS/ChatTTS/utils/io.py -------------------------------------------------------------------------------- /modules/repos_static/ChatTTS/ChatTTS/utils/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/ChatTTS/ChatTTS/utils/log.py -------------------------------------------------------------------------------- /modules/repos_static/ChatTTS/readme.md: -------------------------------------------------------------------------------- 1 | https://github.com/2noise/ChatTTS 2 | -------------------------------------------------------------------------------- /modules/repos_static/F5TTS/f5_tts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/repos_static/F5TTS/f5_tts/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/F5TTS/f5_tts/api.py -------------------------------------------------------------------------------- /modules/repos_static/F5TTS/f5_tts/configs/E2TTS_Base.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/F5TTS/f5_tts/configs/E2TTS_Base.yaml -------------------------------------------------------------------------------- /modules/repos_static/F5TTS/f5_tts/configs/E2TTS_Small.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/F5TTS/f5_tts/configs/E2TTS_Small.yaml -------------------------------------------------------------------------------- /modules/repos_static/F5TTS/f5_tts/configs/F5TTS_Base.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/F5TTS/f5_tts/configs/F5TTS_Base.yaml -------------------------------------------------------------------------------- /modules/repos_static/F5TTS/f5_tts/configs/F5TTS_Small.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/F5TTS/f5_tts/configs/F5TTS_Small.yaml -------------------------------------------------------------------------------- /modules/repos_static/F5TTS/f5_tts/configs/F5TTS_v1_Base.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/F5TTS/f5_tts/configs/F5TTS_v1_Base.yaml -------------------------------------------------------------------------------- /modules/repos_static/F5TTS/f5_tts/model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/F5TTS/f5_tts/model/__init__.py -------------------------------------------------------------------------------- /modules/repos_static/F5TTS/f5_tts/model/backbones/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/F5TTS/f5_tts/model/backbones/README.md -------------------------------------------------------------------------------- /modules/repos_static/F5TTS/f5_tts/model/backbones/dit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/F5TTS/f5_tts/model/backbones/dit.py -------------------------------------------------------------------------------- /modules/repos_static/F5TTS/f5_tts/model/backbones/mmdit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/F5TTS/f5_tts/model/backbones/mmdit.py -------------------------------------------------------------------------------- /modules/repos_static/F5TTS/f5_tts/model/backbones/unett.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/F5TTS/f5_tts/model/backbones/unett.py -------------------------------------------------------------------------------- /modules/repos_static/F5TTS/f5_tts/model/cfm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/F5TTS/f5_tts/model/cfm.py -------------------------------------------------------------------------------- /modules/repos_static/F5TTS/f5_tts/model/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/F5TTS/f5_tts/model/dataset.py -------------------------------------------------------------------------------- /modules/repos_static/F5TTS/f5_tts/model/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/F5TTS/f5_tts/model/modules.py -------------------------------------------------------------------------------- /modules/repos_static/F5TTS/f5_tts/model/trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/F5TTS/f5_tts/model/trainer.py -------------------------------------------------------------------------------- /modules/repos_static/F5TTS/f5_tts/model/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/F5TTS/f5_tts/model/utils.py -------------------------------------------------------------------------------- /modules/repos_static/FireRedTTS/config_24k.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/FireRedTTS/config_24k.json -------------------------------------------------------------------------------- /modules/repos_static/FireRedTTS/fireredtts/fireredtts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/FireRedTTS/fireredtts/fireredtts.py -------------------------------------------------------------------------------- /modules/repos_static/FireRedTTS/fireredtts/modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/FireRedTTS/fireredtts/modules/__init__.py -------------------------------------------------------------------------------- /modules/repos_static/FireRedTTS/fireredtts/modules/bigvgan/alias_free_cuda/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/repos_static/FireRedTTS/fireredtts/modules/gpt/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/repos_static/FireRedTTS/fireredtts/modules/gpt/gpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/FireRedTTS/fireredtts/modules/gpt/gpt.py -------------------------------------------------------------------------------- /modules/repos_static/FireRedTTS/fireredtts/modules/text_normalizer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/repos_static/FireRedTTS/fireredtts/modules/tokenizer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/repos_static/FireRedTTS/fireredtts/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/repos_static/FireRedTTS/fireredtts/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/FireRedTTS/fireredtts/utils/utils.py -------------------------------------------------------------------------------- /modules/repos_static/GPT_SoVITS/GPT_SoVITS/AR/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/repos_static/GPT_SoVITS/GPT_SoVITS/AR/data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/repos_static/GPT_SoVITS/GPT_SoVITS/AR/data/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/GPT_SoVITS/GPT_SoVITS/AR/data/dataset.py -------------------------------------------------------------------------------- /modules/repos_static/GPT_SoVITS/GPT_SoVITS/AR/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/repos_static/GPT_SoVITS/GPT_SoVITS/AR/models/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/GPT_SoVITS/GPT_SoVITS/AR/models/utils.py -------------------------------------------------------------------------------- /modules/repos_static/GPT_SoVITS/GPT_SoVITS/AR/modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/repos_static/GPT_SoVITS/GPT_SoVITS/AR/modules/optim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/GPT_SoVITS/GPT_SoVITS/AR/modules/optim.py -------------------------------------------------------------------------------- /modules/repos_static/GPT_SoVITS/GPT_SoVITS/AR/text_processing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/repos_static/GPT_SoVITS/GPT_SoVITS/AR/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/GPT_SoVITS/GPT_SoVITS/AR/utils/__init__.py -------------------------------------------------------------------------------- /modules/repos_static/GPT_SoVITS/GPT_SoVITS/AR/utils/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/GPT_SoVITS/GPT_SoVITS/AR/utils/io.py -------------------------------------------------------------------------------- /modules/repos_static/GPT_SoVITS/GPT_SoVITS/BigVGAN/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/GPT_SoVITS/GPT_SoVITS/BigVGAN/LICENSE -------------------------------------------------------------------------------- /modules/repos_static/GPT_SoVITS/GPT_SoVITS/BigVGAN/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/GPT_SoVITS/GPT_SoVITS/BigVGAN/README.md -------------------------------------------------------------------------------- /modules/repos_static/GPT_SoVITS/GPT_SoVITS/BigVGAN/alias_free_activation/cuda/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/repos_static/GPT_SoVITS/GPT_SoVITS/BigVGAN/bigvgan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/GPT_SoVITS/GPT_SoVITS/BigVGAN/bigvgan.py -------------------------------------------------------------------------------- /modules/repos_static/GPT_SoVITS/GPT_SoVITS/BigVGAN/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/GPT_SoVITS/GPT_SoVITS/BigVGAN/env.py -------------------------------------------------------------------------------- /modules/repos_static/GPT_SoVITS/GPT_SoVITS/BigVGAN/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/GPT_SoVITS/GPT_SoVITS/BigVGAN/inference.py -------------------------------------------------------------------------------- /modules/repos_static/GPT_SoVITS/GPT_SoVITS/BigVGAN/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/GPT_SoVITS/GPT_SoVITS/BigVGAN/loss.py -------------------------------------------------------------------------------- /modules/repos_static/GPT_SoVITS/GPT_SoVITS/BigVGAN/nv-modelcard++/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /modules/repos_static/GPT_SoVITS/GPT_SoVITS/BigVGAN/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/GPT_SoVITS/GPT_SoVITS/BigVGAN/train.py -------------------------------------------------------------------------------- /modules/repos_static/GPT_SoVITS/GPT_SoVITS/BigVGAN/utils0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/GPT_SoVITS/GPT_SoVITS/BigVGAN/utils0.py -------------------------------------------------------------------------------- /modules/repos_static/GPT_SoVITS/GPT_SoVITS/TTS_infer_pack/__init__.py: -------------------------------------------------------------------------------- 1 | from . import TTS, text_segmentation_method 2 | -------------------------------------------------------------------------------- /modules/repos_static/GPT_SoVITS/GPT_SoVITS/configs/.gitignore: -------------------------------------------------------------------------------- 1 | *.yaml -------------------------------------------------------------------------------- /modules/repos_static/GPT_SoVITS/GPT_SoVITS/configs/s2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/GPT_SoVITS/GPT_SoVITS/configs/s2.json -------------------------------------------------------------------------------- /modules/repos_static/GPT_SoVITS/GPT_SoVITS/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/GPT_SoVITS/GPT_SoVITS/download.py -------------------------------------------------------------------------------- /modules/repos_static/GPT_SoVITS/GPT_SoVITS/inference_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/GPT_SoVITS/GPT_SoVITS/inference_cli.py -------------------------------------------------------------------------------- /modules/repos_static/GPT_SoVITS/GPT_SoVITS/inference_gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/GPT_SoVITS/GPT_SoVITS/inference_gui.py -------------------------------------------------------------------------------- /modules/repos_static/GPT_SoVITS/GPT_SoVITS/inference_webui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/GPT_SoVITS/GPT_SoVITS/inference_webui.py -------------------------------------------------------------------------------- /modules/repos_static/GPT_SoVITS/GPT_SoVITS/module/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/repos_static/GPT_SoVITS/GPT_SoVITS/module/attentions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/GPT_SoVITS/GPT_SoVITS/module/attentions.py -------------------------------------------------------------------------------- /modules/repos_static/GPT_SoVITS/GPT_SoVITS/module/commons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/GPT_SoVITS/GPT_SoVITS/module/commons.py -------------------------------------------------------------------------------- /modules/repos_static/GPT_SoVITS/GPT_SoVITS/module/core_vq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/GPT_SoVITS/GPT_SoVITS/module/core_vq.py -------------------------------------------------------------------------------- /modules/repos_static/GPT_SoVITS/GPT_SoVITS/module/data_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/GPT_SoVITS/GPT_SoVITS/module/data_utils.py -------------------------------------------------------------------------------- /modules/repos_static/GPT_SoVITS/GPT_SoVITS/module/losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/GPT_SoVITS/GPT_SoVITS/module/losses.py -------------------------------------------------------------------------------- /modules/repos_static/GPT_SoVITS/GPT_SoVITS/module/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/GPT_SoVITS/GPT_SoVITS/module/models.py -------------------------------------------------------------------------------- /modules/repos_static/GPT_SoVITS/GPT_SoVITS/module/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/GPT_SoVITS/GPT_SoVITS/module/modules.py -------------------------------------------------------------------------------- /modules/repos_static/GPT_SoVITS/GPT_SoVITS/module/mrte_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/GPT_SoVITS/GPT_SoVITS/module/mrte_model.py -------------------------------------------------------------------------------- /modules/repos_static/GPT_SoVITS/GPT_SoVITS/module/quantize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/GPT_SoVITS/GPT_SoVITS/module/quantize.py -------------------------------------------------------------------------------- /modules/repos_static/GPT_SoVITS/GPT_SoVITS/module/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/GPT_SoVITS/GPT_SoVITS/module/transforms.py -------------------------------------------------------------------------------- /modules/repos_static/GPT_SoVITS/GPT_SoVITS/onnx_export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/GPT_SoVITS/GPT_SoVITS/onnx_export.py -------------------------------------------------------------------------------- /modules/repos_static/GPT_SoVITS/GPT_SoVITS/pretrained_models/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /modules/repos_static/GPT_SoVITS/GPT_SoVITS/process_ckpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/GPT_SoVITS/GPT_SoVITS/process_ckpt.py -------------------------------------------------------------------------------- /modules/repos_static/GPT_SoVITS/GPT_SoVITS/s1_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/GPT_SoVITS/GPT_SoVITS/s1_train.py -------------------------------------------------------------------------------- /modules/repos_static/GPT_SoVITS/GPT_SoVITS/s2_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/GPT_SoVITS/GPT_SoVITS/s2_train.py -------------------------------------------------------------------------------- /modules/repos_static/GPT_SoVITS/GPT_SoVITS/s2_train_v3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/GPT_SoVITS/GPT_SoVITS/s2_train_v3.py -------------------------------------------------------------------------------- /modules/repos_static/GPT_SoVITS/GPT_SoVITS/s2_train_v3_lora.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/GPT_SoVITS/GPT_SoVITS/s2_train_v3_lora.py -------------------------------------------------------------------------------- /modules/repos_static/GPT_SoVITS/GPT_SoVITS/text/.gitignore: -------------------------------------------------------------------------------- 1 | G2PWModel 2 | __pycache__ 3 | *.zip -------------------------------------------------------------------------------- /modules/repos_static/GPT_SoVITS/GPT_SoVITS/text/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/GPT_SoVITS/GPT_SoVITS/text/__init__.py -------------------------------------------------------------------------------- /modules/repos_static/GPT_SoVITS/GPT_SoVITS/text/cantonese.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/GPT_SoVITS/GPT_SoVITS/text/cantonese.py -------------------------------------------------------------------------------- /modules/repos_static/GPT_SoVITS/GPT_SoVITS/text/chinese.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/GPT_SoVITS/GPT_SoVITS/text/chinese.py -------------------------------------------------------------------------------- /modules/repos_static/GPT_SoVITS/GPT_SoVITS/text/chinese2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/GPT_SoVITS/GPT_SoVITS/text/chinese2.py -------------------------------------------------------------------------------- /modules/repos_static/GPT_SoVITS/GPT_SoVITS/text/cleaner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/GPT_SoVITS/GPT_SoVITS/text/cleaner.py -------------------------------------------------------------------------------- /modules/repos_static/GPT_SoVITS/GPT_SoVITS/text/cmudict.rep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/GPT_SoVITS/GPT_SoVITS/text/cmudict.rep -------------------------------------------------------------------------------- /modules/repos_static/GPT_SoVITS/GPT_SoVITS/text/engdict-hot.rep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/GPT_SoVITS/GPT_SoVITS/text/engdict-hot.rep -------------------------------------------------------------------------------- /modules/repos_static/GPT_SoVITS/GPT_SoVITS/text/english.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/GPT_SoVITS/GPT_SoVITS/text/english.py -------------------------------------------------------------------------------- /modules/repos_static/GPT_SoVITS/GPT_SoVITS/text/g2pw/__init__.py: -------------------------------------------------------------------------------- 1 | from .g2pw import * 2 | -------------------------------------------------------------------------------- /modules/repos_static/GPT_SoVITS/GPT_SoVITS/text/g2pw/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/GPT_SoVITS/GPT_SoVITS/text/g2pw/dataset.py -------------------------------------------------------------------------------- /modules/repos_static/GPT_SoVITS/GPT_SoVITS/text/g2pw/g2pw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/GPT_SoVITS/GPT_SoVITS/text/g2pw/g2pw.py -------------------------------------------------------------------------------- /modules/repos_static/GPT_SoVITS/GPT_SoVITS/text/g2pw/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/GPT_SoVITS/GPT_SoVITS/text/g2pw/utils.py -------------------------------------------------------------------------------- /modules/repos_static/GPT_SoVITS/GPT_SoVITS/text/japanese.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/GPT_SoVITS/GPT_SoVITS/text/japanese.py -------------------------------------------------------------------------------- /modules/repos_static/GPT_SoVITS/GPT_SoVITS/text/korean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/GPT_SoVITS/GPT_SoVITS/text/korean.py -------------------------------------------------------------------------------- /modules/repos_static/GPT_SoVITS/GPT_SoVITS/text/symbols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/GPT_SoVITS/GPT_SoVITS/text/symbols.py -------------------------------------------------------------------------------- /modules/repos_static/GPT_SoVITS/GPT_SoVITS/text/symbols2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/GPT_SoVITS/GPT_SoVITS/text/symbols2.py -------------------------------------------------------------------------------- /modules/repos_static/GPT_SoVITS/GPT_SoVITS/text/tone_sandhi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/GPT_SoVITS/GPT_SoVITS/text/tone_sandhi.py -------------------------------------------------------------------------------- /modules/repos_static/GPT_SoVITS/GPT_SoVITS/tools/AP_BWE_main/datasets1/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /modules/repos_static/GPT_SoVITS/GPT_SoVITS/tools/AP_BWE_main/models/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /modules/repos_static/GPT_SoVITS/GPT_SoVITS/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/repos_static/GPT_SoVITS/GPT_SoVITS/tools/asr/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/GPT_SoVITS/GPT_SoVITS/tools/asr/config.py -------------------------------------------------------------------------------- /modules/repos_static/GPT_SoVITS/GPT_SoVITS/tools/asr/models/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /modules/repos_static/GPT_SoVITS/GPT_SoVITS/tools/audio_sr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/GPT_SoVITS/GPT_SoVITS/tools/audio_sr.py -------------------------------------------------------------------------------- /modules/repos_static/GPT_SoVITS/GPT_SoVITS/tools/cmd-denoise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/GPT_SoVITS/GPT_SoVITS/tools/cmd-denoise.py -------------------------------------------------------------------------------- /modules/repos_static/GPT_SoVITS/GPT_SoVITS/tools/denoise-model/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /modules/repos_static/GPT_SoVITS/GPT_SoVITS/tools/i18n/i18n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/GPT_SoVITS/GPT_SoVITS/tools/i18n/i18n.py -------------------------------------------------------------------------------- /modules/repos_static/GPT_SoVITS/GPT_SoVITS/tools/my_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/GPT_SoVITS/GPT_SoVITS/tools/my_utils.py -------------------------------------------------------------------------------- /modules/repos_static/GPT_SoVITS/GPT_SoVITS/tools/slice_audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/GPT_SoVITS/GPT_SoVITS/tools/slice_audio.py -------------------------------------------------------------------------------- /modules/repos_static/GPT_SoVITS/GPT_SoVITS/tools/slicer2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/GPT_SoVITS/GPT_SoVITS/tools/slicer2.py -------------------------------------------------------------------------------- /modules/repos_static/GPT_SoVITS/GPT_SoVITS/tools/uvr5/bs_roformer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/repos_static/GPT_SoVITS/GPT_SoVITS/tools/uvr5/mdxnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/GPT_SoVITS/GPT_SoVITS/tools/uvr5/mdxnet.py -------------------------------------------------------------------------------- /modules/repos_static/GPT_SoVITS/GPT_SoVITS/tools/uvr5/uvr5_weights/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /modules/repos_static/GPT_SoVITS/GPT_SoVITS/tools/uvr5/vr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/GPT_SoVITS/GPT_SoVITS/tools/uvr5/vr.py -------------------------------------------------------------------------------- /modules/repos_static/GPT_SoVITS/GPT_SoVITS/tools/uvr5/webui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/GPT_SoVITS/GPT_SoVITS/tools/uvr5/webui.py -------------------------------------------------------------------------------- /modules/repos_static/GPT_SoVITS/GPT_SoVITS/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/GPT_SoVITS/GPT_SoVITS/utils.py -------------------------------------------------------------------------------- /modules/repos_static/GPT_SoVITS/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/GPT_SoVITS/api.py -------------------------------------------------------------------------------- /modules/repos_static/GPT_SoVITS/api_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/GPT_SoVITS/api_v2.py -------------------------------------------------------------------------------- /modules/repos_static/GPT_SoVITS/webui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/GPT_SoVITS/webui.py -------------------------------------------------------------------------------- /modules/repos_static/Matcha_TTS/matcha/VERSION: -------------------------------------------------------------------------------- 1 | 0.0.7.2 2 | -------------------------------------------------------------------------------- /modules/repos_static/Matcha_TTS/matcha/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/repos_static/Matcha_TTS/matcha/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/Matcha_TTS/matcha/app.py -------------------------------------------------------------------------------- /modules/repos_static/Matcha_TTS/matcha/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/Matcha_TTS/matcha/cli.py -------------------------------------------------------------------------------- /modules/repos_static/Matcha_TTS/matcha/data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/repos_static/Matcha_TTS/matcha/data/components/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/repos_static/Matcha_TTS/matcha/hifigan/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/Matcha_TTS/matcha/hifigan/LICENSE -------------------------------------------------------------------------------- /modules/repos_static/Matcha_TTS/matcha/hifigan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/Matcha_TTS/matcha/hifigan/README.md -------------------------------------------------------------------------------- /modules/repos_static/Matcha_TTS/matcha/hifigan/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/repos_static/Matcha_TTS/matcha/hifigan/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/Matcha_TTS/matcha/hifigan/config.py -------------------------------------------------------------------------------- /modules/repos_static/Matcha_TTS/matcha/hifigan/denoiser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/Matcha_TTS/matcha/hifigan/denoiser.py -------------------------------------------------------------------------------- /modules/repos_static/Matcha_TTS/matcha/hifigan/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/Matcha_TTS/matcha/hifigan/env.py -------------------------------------------------------------------------------- /modules/repos_static/Matcha_TTS/matcha/hifigan/meldataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/Matcha_TTS/matcha/hifigan/meldataset.py -------------------------------------------------------------------------------- /modules/repos_static/Matcha_TTS/matcha/hifigan/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/Matcha_TTS/matcha/hifigan/models.py -------------------------------------------------------------------------------- /modules/repos_static/Matcha_TTS/matcha/hifigan/xutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/Matcha_TTS/matcha/hifigan/xutils.py -------------------------------------------------------------------------------- /modules/repos_static/Matcha_TTS/matcha/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/repos_static/Matcha_TTS/matcha/models/components/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/repos_static/Matcha_TTS/matcha/models/matcha_tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/Matcha_TTS/matcha/models/matcha_tts.py -------------------------------------------------------------------------------- /modules/repos_static/Matcha_TTS/matcha/onnx/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/repos_static/Matcha_TTS/matcha/onnx/export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/Matcha_TTS/matcha/onnx/export.py -------------------------------------------------------------------------------- /modules/repos_static/Matcha_TTS/matcha/onnx/infer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/Matcha_TTS/matcha/onnx/infer.py -------------------------------------------------------------------------------- /modules/repos_static/Matcha_TTS/matcha/text/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/Matcha_TTS/matcha/text/__init__.py -------------------------------------------------------------------------------- /modules/repos_static/Matcha_TTS/matcha/text/cleaners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/Matcha_TTS/matcha/text/cleaners.py -------------------------------------------------------------------------------- /modules/repos_static/Matcha_TTS/matcha/text/numbers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/Matcha_TTS/matcha/text/numbers.py -------------------------------------------------------------------------------- /modules/repos_static/Matcha_TTS/matcha/text/symbols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/Matcha_TTS/matcha/text/symbols.py -------------------------------------------------------------------------------- /modules/repos_static/Matcha_TTS/matcha/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/Matcha_TTS/matcha/train.py -------------------------------------------------------------------------------- /modules/repos_static/Matcha_TTS/matcha/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/Matcha_TTS/matcha/utils/__init__.py -------------------------------------------------------------------------------- /modules/repos_static/Matcha_TTS/matcha/utils/audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/Matcha_TTS/matcha/utils/audio.py -------------------------------------------------------------------------------- /modules/repos_static/Matcha_TTS/matcha/utils/data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/repos_static/Matcha_TTS/matcha/utils/data/ljspeech.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/Matcha_TTS/matcha/utils/data/ljspeech.py -------------------------------------------------------------------------------- /modules/repos_static/Matcha_TTS/matcha/utils/data/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/Matcha_TTS/matcha/utils/data/utils.py -------------------------------------------------------------------------------- /modules/repos_static/Matcha_TTS/matcha/utils/instantiators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/Matcha_TTS/matcha/utils/instantiators.py -------------------------------------------------------------------------------- /modules/repos_static/Matcha_TTS/matcha/utils/logging_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/Matcha_TTS/matcha/utils/logging_utils.py -------------------------------------------------------------------------------- /modules/repos_static/Matcha_TTS/matcha/utils/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/Matcha_TTS/matcha/utils/model.py -------------------------------------------------------------------------------- /modules/repos_static/Matcha_TTS/matcha/utils/pylogger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/Matcha_TTS/matcha/utils/pylogger.py -------------------------------------------------------------------------------- /modules/repos_static/Matcha_TTS/matcha/utils/rich_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/Matcha_TTS/matcha/utils/rich_utils.py -------------------------------------------------------------------------------- /modules/repos_static/Matcha_TTS/matcha/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/Matcha_TTS/matcha/utils/utils.py -------------------------------------------------------------------------------- /modules/repos_static/Matcha_TTS/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/Matcha_TTS/readme.md -------------------------------------------------------------------------------- /modules/repos_static/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/repos_static/cosyvoice/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/cosyvoice/README.md -------------------------------------------------------------------------------- /modules/repos_static/cosyvoice/cosyvoice/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/repos_static/cosyvoice/cosyvoice/bin/average_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/cosyvoice/cosyvoice/bin/average_model.py -------------------------------------------------------------------------------- /modules/repos_static/cosyvoice/cosyvoice/bin/export_jit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/cosyvoice/cosyvoice/bin/export_jit.py -------------------------------------------------------------------------------- /modules/repos_static/cosyvoice/cosyvoice/bin/export_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/cosyvoice/cosyvoice/bin/export_onnx.py -------------------------------------------------------------------------------- /modules/repos_static/cosyvoice/cosyvoice/bin/export_trt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/cosyvoice/cosyvoice/bin/export_trt.sh -------------------------------------------------------------------------------- /modules/repos_static/cosyvoice/cosyvoice/bin/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/cosyvoice/cosyvoice/bin/inference.py -------------------------------------------------------------------------------- /modules/repos_static/cosyvoice/cosyvoice/bin/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/cosyvoice/cosyvoice/bin/train.py -------------------------------------------------------------------------------- /modules/repos_static/cosyvoice/cosyvoice/cli/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/repos_static/cosyvoice/cosyvoice/cli/cosyvoice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/cosyvoice/cosyvoice/cli/cosyvoice.py -------------------------------------------------------------------------------- /modules/repos_static/cosyvoice/cosyvoice/cli/frontend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/cosyvoice/cosyvoice/cli/frontend.py -------------------------------------------------------------------------------- /modules/repos_static/cosyvoice/cosyvoice/cli/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/cosyvoice/cosyvoice/cli/model.py -------------------------------------------------------------------------------- /modules/repos_static/cosyvoice/cosyvoice/dataset/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/repos_static/cosyvoice/cosyvoice/dataset/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/cosyvoice/cosyvoice/dataset/dataset.py -------------------------------------------------------------------------------- /modules/repos_static/cosyvoice/cosyvoice/dataset/processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/cosyvoice/cosyvoice/dataset/processor.py -------------------------------------------------------------------------------- /modules/repos_static/cosyvoice/cosyvoice/flow/decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/cosyvoice/cosyvoice/flow/decoder.py -------------------------------------------------------------------------------- /modules/repos_static/cosyvoice/cosyvoice/flow/flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/cosyvoice/cosyvoice/flow/flow.py -------------------------------------------------------------------------------- /modules/repos_static/cosyvoice/cosyvoice/flow/flow_matching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/cosyvoice/cosyvoice/flow/flow_matching.py -------------------------------------------------------------------------------- /modules/repos_static/cosyvoice/cosyvoice/hifigan/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/cosyvoice/cosyvoice/hifigan/generator.py -------------------------------------------------------------------------------- /modules/repos_static/cosyvoice/cosyvoice/hifigan/hifigan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/cosyvoice/cosyvoice/hifigan/hifigan.py -------------------------------------------------------------------------------- /modules/repos_static/cosyvoice/cosyvoice/llm/llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/cosyvoice/cosyvoice/llm/llm.py -------------------------------------------------------------------------------- /modules/repos_static/cosyvoice/cosyvoice/tokenizer/tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/cosyvoice/cosyvoice/tokenizer/tokenizer.py -------------------------------------------------------------------------------- /modules/repos_static/cosyvoice/cosyvoice/transformer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/repos_static/cosyvoice/cosyvoice/transformer/decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/cosyvoice/cosyvoice/transformer/decoder.py -------------------------------------------------------------------------------- /modules/repos_static/cosyvoice/cosyvoice/transformer/encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/cosyvoice/cosyvoice/transformer/encoder.py -------------------------------------------------------------------------------- /modules/repos_static/cosyvoice/cosyvoice/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/repos_static/cosyvoice/cosyvoice/utils/class_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/cosyvoice/cosyvoice/utils/class_utils.py -------------------------------------------------------------------------------- /modules/repos_static/cosyvoice/cosyvoice/utils/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/cosyvoice/cosyvoice/utils/common.py -------------------------------------------------------------------------------- /modules/repos_static/cosyvoice/cosyvoice/utils/executor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/cosyvoice/cosyvoice/utils/executor.py -------------------------------------------------------------------------------- /modules/repos_static/cosyvoice/cosyvoice/utils/file_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/cosyvoice/cosyvoice/utils/file_utils.py -------------------------------------------------------------------------------- /modules/repos_static/cosyvoice/cosyvoice/utils/losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/cosyvoice/cosyvoice/utils/losses.py -------------------------------------------------------------------------------- /modules/repos_static/cosyvoice/cosyvoice/utils/mask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/cosyvoice/cosyvoice/utils/mask.py -------------------------------------------------------------------------------- /modules/repos_static/cosyvoice/cosyvoice/utils/scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/cosyvoice/cosyvoice/utils/scheduler.py -------------------------------------------------------------------------------- /modules/repos_static/cosyvoice/cosyvoice/utils/train_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/cosyvoice/cosyvoice/utils/train_utils.py -------------------------------------------------------------------------------- /modules/repos_static/cosyvoice/cosyvoice/vllm/cosyvoice2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/cosyvoice/cosyvoice/vllm/cosyvoice2.py -------------------------------------------------------------------------------- /modules/repos_static/fish_speech/fish_speech/configs/base.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/fish_speech/fish_speech/configs/base.yaml -------------------------------------------------------------------------------- /modules/repos_static/fish_speech/fish_speech/conversation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/fish_speech/fish_speech/conversation.py -------------------------------------------------------------------------------- /modules/repos_static/fish_speech/fish_speech/datasets/vqgan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/fish_speech/fish_speech/datasets/vqgan.py -------------------------------------------------------------------------------- /modules/repos_static/fish_speech/fish_speech/i18n/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/fish_speech/fish_speech/i18n/README.md -------------------------------------------------------------------------------- /modules/repos_static/fish_speech/fish_speech/i18n/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import i18n 2 | 3 | __all__ = ["i18n"] 4 | -------------------------------------------------------------------------------- /modules/repos_static/fish_speech/fish_speech/i18n/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/fish_speech/fish_speech/i18n/core.py -------------------------------------------------------------------------------- /modules/repos_static/fish_speech/fish_speech/i18n/scan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/fish_speech/fish_speech/i18n/scan.py -------------------------------------------------------------------------------- /modules/repos_static/fish_speech/fish_speech/models/text2semantic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/repos_static/fish_speech/fish_speech/models/vqgan/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/repos_static/fish_speech/fish_speech/scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/fish_speech/fish_speech/scheduler.py -------------------------------------------------------------------------------- /modules/repos_static/fish_speech/fish_speech/text/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/fish_speech/fish_speech/text/__init__.py -------------------------------------------------------------------------------- /modules/repos_static/fish_speech/fish_speech/text/chn_text_norm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/repos_static/fish_speech/fish_speech/text/clean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/fish_speech/fish_speech/text/clean.py -------------------------------------------------------------------------------- /modules/repos_static/fish_speech/fish_speech/text/spliter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/fish_speech/fish_speech/text/spliter.py -------------------------------------------------------------------------------- /modules/repos_static/fish_speech/fish_speech/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/fish_speech/fish_speech/train.py -------------------------------------------------------------------------------- /modules/repos_static/fish_speech/fish_speech/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/fish_speech/fish_speech/utils/__init__.py -------------------------------------------------------------------------------- /modules/repos_static/fish_speech/fish_speech/utils/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/fish_speech/fish_speech/utils/context.py -------------------------------------------------------------------------------- /modules/repos_static/fish_speech/fish_speech/utils/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/fish_speech/fish_speech/utils/file.py -------------------------------------------------------------------------------- /modules/repos_static/fish_speech/fish_speech/utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/fish_speech/fish_speech/utils/logger.py -------------------------------------------------------------------------------- /modules/repos_static/fish_speech/fish_speech/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/fish_speech/fish_speech/utils/utils.py -------------------------------------------------------------------------------- /modules/repos_static/fish_speech/fish_speech/webui/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/fish_speech/fish_speech/webui/manage.py -------------------------------------------------------------------------------- /modules/repos_static/fish_speech/tools/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/fish_speech/tools/api.py -------------------------------------------------------------------------------- /modules/repos_static/fish_speech/tools/auto_rerank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/fish_speech/tools/auto_rerank.py -------------------------------------------------------------------------------- /modules/repos_static/fish_speech/tools/download_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/fish_speech/tools/download_models.py -------------------------------------------------------------------------------- /modules/repos_static/fish_speech/tools/e2e_webui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/fish_speech/tools/e2e_webui.py -------------------------------------------------------------------------------- /modules/repos_static/fish_speech/tools/extract_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/fish_speech/tools/extract_model.py -------------------------------------------------------------------------------- /modules/repos_static/fish_speech/tools/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/fish_speech/tools/file.py -------------------------------------------------------------------------------- /modules/repos_static/fish_speech/tools/fish_e2e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/fish_speech/tools/fish_e2e.py -------------------------------------------------------------------------------- /modules/repos_static/fish_speech/tools/gen_ref.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/fish_speech/tools/gen_ref.py -------------------------------------------------------------------------------- /modules/repos_static/fish_speech/tools/llama/build_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/fish_speech/tools/llama/build_dataset.py -------------------------------------------------------------------------------- /modules/repos_static/fish_speech/tools/llama/eval_in_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/fish_speech/tools/llama/eval_in_context.py -------------------------------------------------------------------------------- /modules/repos_static/fish_speech/tools/llama/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/fish_speech/tools/llama/generate.py -------------------------------------------------------------------------------- /modules/repos_static/fish_speech/tools/llama/merge_lora.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/fish_speech/tools/llama/merge_lora.py -------------------------------------------------------------------------------- /modules/repos_static/fish_speech/tools/llama/quantize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/fish_speech/tools/llama/quantize.py -------------------------------------------------------------------------------- /modules/repos_static/fish_speech/tools/merge_asr_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/fish_speech/tools/merge_asr_files.py -------------------------------------------------------------------------------- /modules/repos_static/fish_speech/tools/msgpack_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/fish_speech/tools/msgpack_api.py -------------------------------------------------------------------------------- /modules/repos_static/fish_speech/tools/post_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/fish_speech/tools/post_api.py -------------------------------------------------------------------------------- /modules/repos_static/fish_speech/tools/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/fish_speech/tools/schema.py -------------------------------------------------------------------------------- /modules/repos_static/fish_speech/tools/sensevoice/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/fish_speech/tools/sensevoice/README.md -------------------------------------------------------------------------------- /modules/repos_static/fish_speech/tools/sensevoice/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/repos_static/fish_speech/tools/sensevoice/auto_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/fish_speech/tools/sensevoice/auto_model.py -------------------------------------------------------------------------------- /modules/repos_static/fish_speech/tools/sensevoice/fun_asr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/fish_speech/tools/sensevoice/fun_asr.py -------------------------------------------------------------------------------- /modules/repos_static/fish_speech/tools/sensevoice/vad_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/fish_speech/tools/sensevoice/vad_utils.py -------------------------------------------------------------------------------- /modules/repos_static/fish_speech/tools/smart_pad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/fish_speech/tools/smart_pad.py -------------------------------------------------------------------------------- /modules/repos_static/fish_speech/tools/vqgan/extract_vq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/fish_speech/tools/vqgan/extract_vq.py -------------------------------------------------------------------------------- /modules/repos_static/fish_speech/tools/vqgan/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/fish_speech/tools/vqgan/inference.py -------------------------------------------------------------------------------- /modules/repos_static/fish_speech/tools/webui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/fish_speech/tools/webui.py -------------------------------------------------------------------------------- /modules/repos_static/fish_speech/tools/whisper_asr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/fish_speech/tools/whisper_asr.py -------------------------------------------------------------------------------- /modules/repos_static/index_tts/.gitignore: -------------------------------------------------------------------------------- 1 | !sample_prompt.wav 2 | -------------------------------------------------------------------------------- /modules/repos_static/index_tts/INDEX_MODEL_LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/index_tts/INDEX_MODEL_LICENSE -------------------------------------------------------------------------------- /modules/repos_static/index_tts/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/index_tts/LICENSE -------------------------------------------------------------------------------- /modules/repos_static/index_tts/LICENSE_ZH.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/index_tts/LICENSE_ZH.txt -------------------------------------------------------------------------------- /modules/repos_static/index_tts/indextts/BigVGAN/ECAPA_TDNN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/index_tts/indextts/BigVGAN/ECAPA_TDNN.py -------------------------------------------------------------------------------- /modules/repos_static/index_tts/indextts/BigVGAN/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/repos_static/index_tts/indextts/BigVGAN/activations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/index_tts/indextts/BigVGAN/activations.py -------------------------------------------------------------------------------- /modules/repos_static/index_tts/indextts/BigVGAN/alias_free_activation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/repos_static/index_tts/indextts/BigVGAN/alias_free_activation/cuda/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /modules/repos_static/index_tts/indextts/BigVGAN/alias_free_activation/cuda/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/repos_static/index_tts/indextts/BigVGAN/bigvgan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/index_tts/indextts/BigVGAN/bigvgan.py -------------------------------------------------------------------------------- /modules/repos_static/index_tts/indextts/BigVGAN/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/index_tts/indextts/BigVGAN/models.py -------------------------------------------------------------------------------- /modules/repos_static/index_tts/indextts/BigVGAN/nnet/CNN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/index_tts/indextts/BigVGAN/nnet/CNN.py -------------------------------------------------------------------------------- /modules/repos_static/index_tts/indextts/BigVGAN/nnet/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/repos_static/index_tts/indextts/BigVGAN/nnet/linear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/index_tts/indextts/BigVGAN/nnet/linear.py -------------------------------------------------------------------------------- /modules/repos_static/index_tts/indextts/BigVGAN/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/index_tts/indextts/BigVGAN/utils.py -------------------------------------------------------------------------------- /modules/repos_static/index_tts/indextts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/repos_static/index_tts/indextts/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/index_tts/indextts/cli.py -------------------------------------------------------------------------------- /modules/repos_static/index_tts/indextts/gpt/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/repos_static/index_tts/indextts/gpt/conformer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/repos_static/index_tts/indextts/gpt/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/index_tts/indextts/gpt/model.py -------------------------------------------------------------------------------- /modules/repos_static/index_tts/indextts/gpt/model_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/index_tts/indextts/gpt/model_v2.py -------------------------------------------------------------------------------- /modules/repos_static/index_tts/indextts/gpt/perceiver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/index_tts/indextts/gpt/perceiver.py -------------------------------------------------------------------------------- /modules/repos_static/index_tts/indextts/infer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/index_tts/indextts/infer.py -------------------------------------------------------------------------------- /modules/repos_static/index_tts/indextts/infer_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/index_tts/indextts/infer_v2.py -------------------------------------------------------------------------------- /modules/repos_static/index_tts/indextts/s2mel/dac/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/index_tts/indextts/s2mel/dac/__init__.py -------------------------------------------------------------------------------- /modules/repos_static/index_tts/indextts/s2mel/dac/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/index_tts/indextts/s2mel/dac/__main__.py -------------------------------------------------------------------------------- /modules/repos_static/index_tts/indextts/s2mel/dac/model/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/index_tts/indextts/s2mel/dac/model/base.py -------------------------------------------------------------------------------- /modules/repos_static/index_tts/indextts/s2mel/dac/model/dac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/index_tts/indextts/s2mel/dac/model/dac.py -------------------------------------------------------------------------------- /modules/repos_static/index_tts/indextts/s2mel/dac/nn/layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/index_tts/indextts/s2mel/dac/nn/layers.py -------------------------------------------------------------------------------- /modules/repos_static/index_tts/indextts/s2mel/dac/nn/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/index_tts/indextts/s2mel/dac/nn/loss.py -------------------------------------------------------------------------------- /modules/repos_static/index_tts/indextts/s2mel/hf_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/index_tts/indextts/s2mel/hf_utils.py -------------------------------------------------------------------------------- /modules/repos_static/index_tts/indextts/s2mel/modules/audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/index_tts/indextts/s2mel/modules/audio.py -------------------------------------------------------------------------------- /modules/repos_static/index_tts/indextts/s2mel/modules/bigvgan/alias_free_activation/cuda/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/repos_static/index_tts/indextts/s2mel/modules/layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/index_tts/indextts/s2mel/modules/layers.py -------------------------------------------------------------------------------- /modules/repos_static/index_tts/indextts/s2mel/modules/openvoice/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/repos_static/index_tts/indextts/s2mel/modules/rmvpe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/index_tts/indextts/s2mel/modules/rmvpe.py -------------------------------------------------------------------------------- /modules/repos_static/index_tts/indextts/s2mel/modules/vocos/__init__.py: -------------------------------------------------------------------------------- 1 | from .pretrained import Vocos 2 | 3 | 4 | __version__ = "0.1.0" 5 | -------------------------------------------------------------------------------- /modules/repos_static/index_tts/indextts/s2mel/optimizers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/index_tts/indextts/s2mel/optimizers.py -------------------------------------------------------------------------------- /modules/repos_static/index_tts/indextts/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/repos_static/index_tts/indextts/utils/arch_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/index_tts/indextts/utils/arch_util.py -------------------------------------------------------------------------------- /modules/repos_static/index_tts/indextts/utils/checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/index_tts/indextts/utils/checkpoint.py -------------------------------------------------------------------------------- /modules/repos_static/index_tts/indextts/utils/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/index_tts/indextts/utils/common.py -------------------------------------------------------------------------------- /modules/repos_static/index_tts/indextts/utils/front.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/index_tts/indextts/utils/front.py -------------------------------------------------------------------------------- /modules/repos_static/index_tts/indextts/utils/maskgct/models/codec/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/repos_static/index_tts/indextts/utils/maskgct/models/codec/facodec/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/repos_static/index_tts/indextts/utils/maskgct/models/codec/facodec/modules/JDC/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /modules/repos_static/index_tts/indextts/utils/maskgct_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/index_tts/indextts/utils/maskgct_utils.py -------------------------------------------------------------------------------- /modules/repos_static/index_tts/indextts/utils/text_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/index_tts/indextts/utils/text_utils.py -------------------------------------------------------------------------------- /modules/repos_static/index_tts/indextts/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/index_tts/indextts/utils/utils.py -------------------------------------------------------------------------------- /modules/repos_static/index_tts/indextts/utils/webui_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/index_tts/indextts/utils/webui_utils.py -------------------------------------------------------------------------------- /modules/repos_static/index_tts/indextts/utils/xtransformers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/index_tts/indextts/utils/xtransformers.py -------------------------------------------------------------------------------- /modules/repos_static/index_tts/indextts/vqvae/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/repos_static/index_tts/indextts/vqvae/xtts_dvae.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/index_tts/indextts/vqvae/xtts_dvae.py -------------------------------------------------------------------------------- /modules/repos_static/index_tts/tools/gpu_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/index_tts/tools/gpu_check.py -------------------------------------------------------------------------------- /modules/repos_static/index_tts/tools/i18n/i18n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/index_tts/tools/i18n/i18n.py -------------------------------------------------------------------------------- /modules/repos_static/index_tts/tools/i18n/locale/en_US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/index_tts/tools/i18n/locale/en_US.json -------------------------------------------------------------------------------- /modules/repos_static/index_tts/tools/i18n/locale/zh_CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/index_tts/tools/i18n/locale/zh_CN.json -------------------------------------------------------------------------------- /modules/repos_static/index_tts/tools/i18n/scan_i18n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/index_tts/tools/i18n/scan_i18n.py -------------------------------------------------------------------------------- /modules/repos_static/openvoice/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/openvoice/README.md -------------------------------------------------------------------------------- /modules/repos_static/openvoice/openvoice/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/repos_static/openvoice/openvoice/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/openvoice/openvoice/api.py -------------------------------------------------------------------------------- /modules/repos_static/openvoice/openvoice/attentions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/openvoice/openvoice/attentions.py -------------------------------------------------------------------------------- /modules/repos_static/openvoice/openvoice/commons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/openvoice/openvoice/commons.py -------------------------------------------------------------------------------- /modules/repos_static/openvoice/openvoice/mel_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/openvoice/openvoice/mel_processing.py -------------------------------------------------------------------------------- /modules/repos_static/openvoice/openvoice/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/openvoice/openvoice/models.py -------------------------------------------------------------------------------- /modules/repos_static/openvoice/openvoice/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/openvoice/openvoice/modules.py -------------------------------------------------------------------------------- /modules/repos_static/openvoice/openvoice/openvoice_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/openvoice/openvoice/openvoice_app.py -------------------------------------------------------------------------------- /modules/repos_static/openvoice/openvoice/se_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/openvoice/openvoice/se_extractor.py -------------------------------------------------------------------------------- /modules/repos_static/openvoice/openvoice/text/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/openvoice/openvoice/text/__init__.py -------------------------------------------------------------------------------- /modules/repos_static/openvoice/openvoice/text/cleaners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/openvoice/openvoice/text/cleaners.py -------------------------------------------------------------------------------- /modules/repos_static/openvoice/openvoice/text/english.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/openvoice/openvoice/text/english.py -------------------------------------------------------------------------------- /modules/repos_static/openvoice/openvoice/text/mandarin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/openvoice/openvoice/text/mandarin.py -------------------------------------------------------------------------------- /modules/repos_static/openvoice/openvoice/text/symbols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/openvoice/openvoice/text/symbols.py -------------------------------------------------------------------------------- /modules/repos_static/openvoice/openvoice/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/openvoice/openvoice/transforms.py -------------------------------------------------------------------------------- /modules/repos_static/openvoice/openvoice/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/openvoice/openvoice/utils.py -------------------------------------------------------------------------------- /modules/repos_static/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/readme.md -------------------------------------------------------------------------------- /modules/repos_static/resemble_enhance/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/repos_static/resemble_enhance/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/resemble_enhance/common.py -------------------------------------------------------------------------------- /modules/repos_static/resemble_enhance/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/resemble_enhance/data/__init__.py -------------------------------------------------------------------------------- /modules/repos_static/resemble_enhance/data/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/resemble_enhance/data/dataset.py -------------------------------------------------------------------------------- /modules/repos_static/resemble_enhance/data/distorter/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/resemble_enhance/data/distorter/base.py -------------------------------------------------------------------------------- /modules/repos_static/resemble_enhance/data/distorter/custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/resemble_enhance/data/distorter/custom.py -------------------------------------------------------------------------------- /modules/repos_static/resemble_enhance/data/distorter/sox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/resemble_enhance/data/distorter/sox.py -------------------------------------------------------------------------------- /modules/repos_static/resemble_enhance/data/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/resemble_enhance/data/utils.py -------------------------------------------------------------------------------- /modules/repos_static/resemble_enhance/denoiser/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/repos_static/resemble_enhance/denoiser/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/resemble_enhance/denoiser/__main__.py -------------------------------------------------------------------------------- /modules/repos_static/resemble_enhance/denoiser/denoiser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/resemble_enhance/denoiser/denoiser.py -------------------------------------------------------------------------------- /modules/repos_static/resemble_enhance/denoiser/hparams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/resemble_enhance/denoiser/hparams.py -------------------------------------------------------------------------------- /modules/repos_static/resemble_enhance/denoiser/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/resemble_enhance/denoiser/inference.py -------------------------------------------------------------------------------- /modules/repos_static/resemble_enhance/denoiser/unet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/resemble_enhance/denoiser/unet.py -------------------------------------------------------------------------------- /modules/repos_static/resemble_enhance/enhancer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/repos_static/resemble_enhance/enhancer/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/resemble_enhance/enhancer/__main__.py -------------------------------------------------------------------------------- /modules/repos_static/resemble_enhance/enhancer/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/resemble_enhance/enhancer/download.py -------------------------------------------------------------------------------- /modules/repos_static/resemble_enhance/enhancer/enhancer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/resemble_enhance/enhancer/enhancer.py -------------------------------------------------------------------------------- /modules/repos_static/resemble_enhance/enhancer/hparams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/resemble_enhance/enhancer/hparams.py -------------------------------------------------------------------------------- /modules/repos_static/resemble_enhance/enhancer/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/resemble_enhance/enhancer/inference.py -------------------------------------------------------------------------------- /modules/repos_static/resemble_enhance/enhancer/lcfm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/resemble_enhance/enhancer/lcfm/__init__.py -------------------------------------------------------------------------------- /modules/repos_static/resemble_enhance/enhancer/lcfm/cfm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/resemble_enhance/enhancer/lcfm/cfm.py -------------------------------------------------------------------------------- /modules/repos_static/resemble_enhance/enhancer/lcfm/irmae.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/resemble_enhance/enhancer/lcfm/irmae.py -------------------------------------------------------------------------------- /modules/repos_static/resemble_enhance/enhancer/lcfm/lcfm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/resemble_enhance/enhancer/lcfm/lcfm.py -------------------------------------------------------------------------------- /modules/repos_static/resemble_enhance/enhancer/lcfm/wn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/resemble_enhance/enhancer/lcfm/wn.py -------------------------------------------------------------------------------- /modules/repos_static/resemble_enhance/enhancer/univnet/__init__.py: -------------------------------------------------------------------------------- 1 | from .univnet import UnivNet 2 | -------------------------------------------------------------------------------- /modules/repos_static/resemble_enhance/enhancer/univnet/amp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/resemble_enhance/enhancer/univnet/amp.py -------------------------------------------------------------------------------- /modules/repos_static/resemble_enhance/hparams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/resemble_enhance/hparams.py -------------------------------------------------------------------------------- /modules/repos_static/resemble_enhance/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/resemble_enhance/inference.py -------------------------------------------------------------------------------- /modules/repos_static/resemble_enhance/melspec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/resemble_enhance/melspec.py -------------------------------------------------------------------------------- /modules/repos_static/resemble_enhance/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/resemble_enhance/utils/__init__.py -------------------------------------------------------------------------------- /modules/repos_static/resemble_enhance/utils/control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/resemble_enhance/utils/control.py -------------------------------------------------------------------------------- /modules/repos_static/resemble_enhance/utils/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/resemble_enhance/utils/logging.py -------------------------------------------------------------------------------- /modules/repos_static/resemble_enhance/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/resemble_enhance/utils/utils.py -------------------------------------------------------------------------------- /modules/repos_static/spark_tts/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/spark_tts/.gitignore -------------------------------------------------------------------------------- /modules/repos_static/spark_tts/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/spark_tts/LICENSE -------------------------------------------------------------------------------- /modules/repos_static/spark_tts/cli/SparkTTS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/spark_tts/cli/SparkTTS.py -------------------------------------------------------------------------------- /modules/repos_static/spark_tts/cli/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/spark_tts/cli/inference.py -------------------------------------------------------------------------------- /modules/repos_static/spark_tts/sparktts/models/bicodec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/spark_tts/sparktts/models/bicodec.py -------------------------------------------------------------------------------- /modules/repos_static/spark_tts/sparktts/modules/blocks/vocos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/spark_tts/sparktts/modules/blocks/vocos.py -------------------------------------------------------------------------------- /modules/repos_static/spark_tts/sparktts/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/repos_static/spark_tts/sparktts/utils/audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/spark_tts/sparktts/utils/audio.py -------------------------------------------------------------------------------- /modules/repos_static/spark_tts/sparktts/utils/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/spark_tts/sparktts/utils/file.py -------------------------------------------------------------------------------- /modules/repos_static/spark_tts/sparktts/utils/parse_options.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/spark_tts/sparktts/utils/parse_options.sh -------------------------------------------------------------------------------- /modules/repos_static/spark_tts/sparktts/utils/token_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/spark_tts/sparktts/utils/token_parser.py -------------------------------------------------------------------------------- /modules/repos_static/spark_tts/webui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/spark_tts/webui.py -------------------------------------------------------------------------------- /modules/repos_static/sys_paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/sys_paths.py -------------------------------------------------------------------------------- /modules/repos_static/zh_normalization/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/zh_normalization/README.md -------------------------------------------------------------------------------- /modules/repos_static/zh_normalization/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/zh_normalization/__init__.py -------------------------------------------------------------------------------- /modules/repos_static/zh_normalization/char_convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/zh_normalization/char_convert.py -------------------------------------------------------------------------------- /modules/repos_static/zh_normalization/chronology.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/zh_normalization/chronology.py -------------------------------------------------------------------------------- /modules/repos_static/zh_normalization/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/zh_normalization/constants.py -------------------------------------------------------------------------------- /modules/repos_static/zh_normalization/num.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/zh_normalization/num.py -------------------------------------------------------------------------------- /modules/repos_static/zh_normalization/phonecode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/zh_normalization/phonecode.py -------------------------------------------------------------------------------- /modules/repos_static/zh_normalization/quantifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/zh_normalization/quantifier.py -------------------------------------------------------------------------------- /modules/repos_static/zh_normalization/text_normlization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/repos_static/zh_normalization/text_normlization.py -------------------------------------------------------------------------------- /modules/utils/CsvMgr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/utils/CsvMgr.py -------------------------------------------------------------------------------- /modules/utils/HomophonesReplacer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/utils/HomophonesReplacer.py -------------------------------------------------------------------------------- /modules/utils/JsonObject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/utils/JsonObject.py -------------------------------------------------------------------------------- /modules/utils/SeedContext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/utils/SeedContext.py -------------------------------------------------------------------------------- /modules/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/utils/audio_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/utils/audio_utils.py -------------------------------------------------------------------------------- /modules/utils/bytes_to_wav.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/utils/bytes_to_wav.py -------------------------------------------------------------------------------- /modules/utils/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/utils/cache.py -------------------------------------------------------------------------------- /modules/utils/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/utils/constants.py -------------------------------------------------------------------------------- /modules/utils/detect_lang.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/utils/detect_lang.py -------------------------------------------------------------------------------- /modules/utils/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/utils/env.py -------------------------------------------------------------------------------- /modules/utils/ffmpeg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/utils/ffmpeg.py -------------------------------------------------------------------------------- /modules/utils/git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/utils/git.py -------------------------------------------------------------------------------- /modules/utils/hf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/utils/hf.py -------------------------------------------------------------------------------- /modules/utils/html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/utils/html.py -------------------------------------------------------------------------------- /modules/utils/ignore_warn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/utils/ignore_warn.py -------------------------------------------------------------------------------- /modules/utils/markdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/utils/markdown.py -------------------------------------------------------------------------------- /modules/utils/monkey_tqdm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/utils/monkey_tqdm.py -------------------------------------------------------------------------------- /modules/utils/rng.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/utils/rng.py -------------------------------------------------------------------------------- /modules/utils/torch_opt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/utils/torch_opt.py -------------------------------------------------------------------------------- /modules/webui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/webui/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/webui/app.py -------------------------------------------------------------------------------- /modules/webui/asr_tab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/webui/asr_tab.py -------------------------------------------------------------------------------- /modules/webui/asr_tabs/transcribe_tab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/webui/asr_tabs/transcribe_tab.py -------------------------------------------------------------------------------- /modules/webui/audio_tools/post_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/webui/audio_tools/post_process.py -------------------------------------------------------------------------------- /modules/webui/audio_tools/tools_tab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/webui/audio_tools/tools_tab.py -------------------------------------------------------------------------------- /modules/webui/audio_tools/video_cut.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/webui/audio_tools/video_cut.py -------------------------------------------------------------------------------- /modules/webui/changelog_tab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/webui/changelog_tab.py -------------------------------------------------------------------------------- /modules/webui/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/webui/css/style.css -------------------------------------------------------------------------------- /modules/webui/finetune/ProcessMonitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/webui/finetune/ProcessMonitor.py -------------------------------------------------------------------------------- /modules/webui/finetune/ft_tab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/webui/finetune/ft_tab.py -------------------------------------------------------------------------------- /modules/webui/finetune/ft_ui_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/webui/finetune/ft_ui_utils.py -------------------------------------------------------------------------------- /modules/webui/finetune/speaker_ft_tab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/webui/finetune/speaker_ft_tab.py -------------------------------------------------------------------------------- /modules/webui/gradio_extensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/webui/gradio_extensions.py -------------------------------------------------------------------------------- /modules/webui/gradio_hijack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/webui/gradio_hijack.py -------------------------------------------------------------------------------- /modules/webui/js/gradio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/webui/js/gradio.js -------------------------------------------------------------------------------- /modules/webui/js/hub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/webui/js/hub.js -------------------------------------------------------------------------------- /modules/webui/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/webui/js/index.js -------------------------------------------------------------------------------- /modules/webui/js/localization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/webui/js/localization.js -------------------------------------------------------------------------------- /modules/webui/js/marked.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/webui/js/marked.js -------------------------------------------------------------------------------- /modules/webui/localization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/webui/localization.py -------------------------------------------------------------------------------- /modules/webui/localization_runtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/webui/localization_runtime.py -------------------------------------------------------------------------------- /modules/webui/readme_tab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/webui/readme_tab.py -------------------------------------------------------------------------------- /modules/webui/speaker/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/webui/speaker/speaker_creator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/webui/speaker/speaker_creator.py -------------------------------------------------------------------------------- /modules/webui/speaker/speaker_editor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/webui/speaker/speaker_editor.py -------------------------------------------------------------------------------- /modules/webui/speaker/speaker_editor_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/webui/speaker/speaker_editor_v2.py -------------------------------------------------------------------------------- /modules/webui/speaker/speaker_merger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/webui/speaker/speaker_merger.py -------------------------------------------------------------------------------- /modules/webui/speaker/spk_hub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/webui/speaker/spk_hub.py -------------------------------------------------------------------------------- /modules/webui/speaker/wav_misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/webui/speaker/wav_misc.py -------------------------------------------------------------------------------- /modules/webui/speaker_tab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/webui/speaker_tab.py -------------------------------------------------------------------------------- /modules/webui/ssml/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/webui/ssml/podcast_tab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/webui/ssml/podcast_tab.py -------------------------------------------------------------------------------- /modules/webui/ssml/script_tab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/webui/ssml/script_tab.py -------------------------------------------------------------------------------- /modules/webui/ssml/spliter_tab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/webui/ssml/spliter_tab.py -------------------------------------------------------------------------------- /modules/webui/ssml/ssml_tab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/webui/ssml/ssml_tab.py -------------------------------------------------------------------------------- /modules/webui/ssml/subtitle_tab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/webui/ssml/subtitle_tab.py -------------------------------------------------------------------------------- /modules/webui/system_tab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/webui/system_tab.py -------------------------------------------------------------------------------- /modules/webui/tts_tab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/webui/tts_tab.py -------------------------------------------------------------------------------- /modules/webui/tts_tabs/DiT_infer_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/webui/tts_tabs/DiT_infer_ui.py -------------------------------------------------------------------------------- /modules/webui/tts_tabs/tts_infer_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/webui/tts_tabs/tts_infer_ui.py -------------------------------------------------------------------------------- /modules/webui/webui_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/webui/webui_config.py -------------------------------------------------------------------------------- /modules/webui/webui_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/modules/webui/webui_utils.py -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/package.json -------------------------------------------------------------------------------- /packages.txt: -------------------------------------------------------------------------------- 1 | ffmpeg 2 | rubberband-cli -------------------------------------------------------------------------------- /playground/AudioCreation.page.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/playground/AudioCreation.page.mjs -------------------------------------------------------------------------------- /playground/client.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/playground/client.mjs -------------------------------------------------------------------------------- /playground/global.store.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/playground/global.store.mjs -------------------------------------------------------------------------------- /playground/google.page.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/playground/google.page.mjs -------------------------------------------------------------------------------- /playground/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/playground/index.html -------------------------------------------------------------------------------- /playground/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/playground/index.mjs -------------------------------------------------------------------------------- /playground/misc.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/playground/misc.mjs -------------------------------------------------------------------------------- /playground/openai.page.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/playground/openai.page.mjs -------------------------------------------------------------------------------- /playground/pages.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/playground/pages.mjs -------------------------------------------------------------------------------- /playground/speakers.page.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/playground/speakers.page.mjs -------------------------------------------------------------------------------- /playground/ssml.page.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/playground/ssml.page.mjs -------------------------------------------------------------------------------- /playground/stream.page.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/playground/stream.page.mjs -------------------------------------------------------------------------------- /playground/tts.page.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/playground/tts.page.mjs -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/pytest.ini -------------------------------------------------------------------------------- /requirements.dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/requirements.dev.txt -------------------------------------------------------------------------------- /requirements.dev_gpu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/requirements.dev_gpu.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/ModelDownloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/scripts/ModelDownloader.py -------------------------------------------------------------------------------- /scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/asr_to_ass.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/scripts/asr_to_ass.ipynb -------------------------------------------------------------------------------- /scripts/cvt_spks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/scripts/cvt_spks.py -------------------------------------------------------------------------------- /scripts/dl_args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/scripts/dl_args.py -------------------------------------------------------------------------------- /scripts/dl_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/scripts/dl_base.py -------------------------------------------------------------------------------- /scripts/dl_chattts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/scripts/dl_chattts.py -------------------------------------------------------------------------------- /scripts/dl_cosyvoice_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/scripts/dl_cosyvoice_base.py -------------------------------------------------------------------------------- /scripts/dl_cosyvoice_instruct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/scripts/dl_cosyvoice_instruct.py -------------------------------------------------------------------------------- /scripts/dl_enhance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/scripts/dl_enhance.py -------------------------------------------------------------------------------- /scripts/docs/build_openapi_spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/scripts/docs/build_openapi_spec.py -------------------------------------------------------------------------------- /scripts/docs/readme.md: -------------------------------------------------------------------------------- 1 | 这里是一些和文档有关的脚本 -------------------------------------------------------------------------------- /scripts/download_audio_backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/scripts/download_audio_backend.py -------------------------------------------------------------------------------- /scripts/download_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/scripts/download_models.py -------------------------------------------------------------------------------- /scripts/downloader/MaskGCT_semantic_codec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/scripts/downloader/MaskGCT_semantic_codec.py -------------------------------------------------------------------------------- /scripts/downloader/cosyvoice2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/scripts/downloader/cosyvoice2.py -------------------------------------------------------------------------------- /scripts/downloader/f5_tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/scripts/downloader/f5_tts.py -------------------------------------------------------------------------------- /scripts/downloader/f5_tts_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/scripts/downloader/f5_tts_v1.py -------------------------------------------------------------------------------- /scripts/downloader/facebook_w2v_bert_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/scripts/downloader/facebook_w2v_bert_2.py -------------------------------------------------------------------------------- /scripts/downloader/faster_whisper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/scripts/downloader/faster_whisper.py -------------------------------------------------------------------------------- /scripts/downloader/faster_whisper_v3_turbo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/scripts/downloader/faster_whisper_v3_turbo.py -------------------------------------------------------------------------------- /scripts/downloader/fire_red_tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/scripts/downloader/fire_red_tts.py -------------------------------------------------------------------------------- /scripts/downloader/fish_speech_1_2sft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/scripts/downloader/fish_speech_1_2sft.py -------------------------------------------------------------------------------- /scripts/downloader/fish_speech_1_4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/scripts/downloader/fish_speech_1_4.py -------------------------------------------------------------------------------- /scripts/downloader/fsmn_vad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/scripts/downloader/fsmn_vad.py -------------------------------------------------------------------------------- /scripts/downloader/funasr_campplus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/scripts/downloader/funasr_campplus.py -------------------------------------------------------------------------------- /scripts/downloader/gpt_sovits_v4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/scripts/downloader/gpt_sovits_v4.py -------------------------------------------------------------------------------- /scripts/downloader/index_tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/scripts/downloader/index_tts.py -------------------------------------------------------------------------------- /scripts/downloader/index_tts_1_5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/scripts/downloader/index_tts_1_5.py -------------------------------------------------------------------------------- /scripts/downloader/index_tts_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/scripts/downloader/index_tts_2.py -------------------------------------------------------------------------------- /scripts/downloader/nvidia_bigvgan_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/scripts/downloader/nvidia_bigvgan_v2.py -------------------------------------------------------------------------------- /scripts/downloader/open_voice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/scripts/downloader/open_voice.py -------------------------------------------------------------------------------- /scripts/downloader/sensevoice_small.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/scripts/downloader/sensevoice_small.py -------------------------------------------------------------------------------- /scripts/downloader/spark_tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/scripts/downloader/spark_tts.py -------------------------------------------------------------------------------- /scripts/downloader/vocos_mel_24khz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/scripts/downloader/vocos_mel_24khz.py -------------------------------------------------------------------------------- /scripts/spk/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/scripts/spk/.gitignore -------------------------------------------------------------------------------- /scripts/spk/chattts_pt_to_spk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/scripts/spk/chattts_pt_to_spk.py -------------------------------------------------------------------------------- /scripts/spk/code_to_spk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/scripts/spk/code_to_spk.py -------------------------------------------------------------------------------- /scripts/spk/edit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/scripts/spk/edit.py -------------------------------------------------------------------------------- /scripts/spk/get_spk_emb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/scripts/spk/get_spk_emb.py -------------------------------------------------------------------------------- /scripts/spk/get_wav.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/scripts/spk/get_wav.py -------------------------------------------------------------------------------- /scripts/spk/spk_factory/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/scripts/spk/spk_factory/readme.md -------------------------------------------------------------------------------- /scripts/spk/spk_factory/spk_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/scripts/spk/spk_factory/spk_factory.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/api/test_google.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/tests/api/test_google.py -------------------------------------------------------------------------------- /tests/api/test_openai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/tests/api/test_openai.py -------------------------------------------------------------------------------- /tests/api/test_openai_stt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/tests/api/test_openai_stt.py -------------------------------------------------------------------------------- /tests/api/test_prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/tests/api/test_prompt.py -------------------------------------------------------------------------------- /tests/api/test_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/tests/api/test_routes.py -------------------------------------------------------------------------------- /tests/api/test_speakers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/tests/api/test_speakers.py -------------------------------------------------------------------------------- /tests/api/test_ssml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/tests/api/test_ssml.py -------------------------------------------------------------------------------- /tests/api/test_styles.py: -------------------------------------------------------------------------------- 1 | """ 2 | NOTE: 有必要测,但是... styles 还需要继续增强以适配多模型问题,暂时先不测 3 | """ 4 | -------------------------------------------------------------------------------- /tests/api/test_tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/tests/api/test_tts.py -------------------------------------------------------------------------------- /tests/api/test_vc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/tests/api/test_vc.py -------------------------------------------------------------------------------- /tests/api/test_xtts_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/tests/api/test_xtts_v2.py -------------------------------------------------------------------------------- /tests/api_v2/test_tts_v2.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/benchmark/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/benchmark/tts_benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/tests/benchmark/tts_benchmark.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/demo/index_tts/readme.md: -------------------------------------------------------------------------------- 1 | 这个代码是从index tts的repo里面抱出来的,用来测试模型 -------------------------------------------------------------------------------- /tests/demo/index_tts/regression_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/tests/demo/index_tts/regression_test.py -------------------------------------------------------------------------------- /tests/demo/index_tts/sample_prompt.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/tests/demo/index_tts/sample_prompt.wav -------------------------------------------------------------------------------- /tests/encders/test_encoders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/tests/encders/test_encoders.py -------------------------------------------------------------------------------- /tests/model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/model/test_chat_tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/tests/model/test_chat_tts.py -------------------------------------------------------------------------------- /tests/pipeline/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/tests/pipeline/misc.py -------------------------------------------------------------------------------- /tests/pipeline/test_chat_tts_pipe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/tests/pipeline/test_chat_tts_pipe.py -------------------------------------------------------------------------------- /tests/pipeline/test_cosyvoice_pipe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/tests/pipeline/test_cosyvoice_pipe.py -------------------------------------------------------------------------------- /tests/pipeline/test_f5_tts_pipe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/tests/pipeline/test_f5_tts_pipe.py -------------------------------------------------------------------------------- /tests/pipeline/test_fire_red_tts_pipe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/tests/pipeline/test_fire_red_tts_pipe.py -------------------------------------------------------------------------------- /tests/pipeline/test_post_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/tests/pipeline/test_post_process.py -------------------------------------------------------------------------------- /tests/pipeline/voice_clone_pipe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/tests/pipeline/voice_clone_pipe.py -------------------------------------------------------------------------------- /tests/scripts/simple_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/tests/scripts/simple_pipeline.py -------------------------------------------------------------------------------- /tests/test_inputs/chattts_out1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/tests/test_inputs/chattts_out1.wav -------------------------------------------------------------------------------- /tests/test_inputs/cosyvoice_out1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/tests/test_inputs/cosyvoice_out1.wav -------------------------------------------------------------------------------- /tests/test_normalize/test_cn_num.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/tests/test_normalize/test_cn_num.py -------------------------------------------------------------------------------- /tests/test_normalize/test_emoji.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/tests/test_normalize/test_emoji.py -------------------------------------------------------------------------------- /tests/test_normalize/test_md.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/tests/test_normalize/test_md.py -------------------------------------------------------------------------------- /tests/test_ssml/test_ssml_generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/tests/test_ssml/test_ssml_generate.py -------------------------------------------------------------------------------- /tests/test_ssml/test_ssml_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/tests/test_ssml/test_ssml_parser.py -------------------------------------------------------------------------------- /webui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/webui.py -------------------------------------------------------------------------------- /xttsv2.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lenML/Speech-AI-Forge/HEAD/xttsv2.config.json --------------------------------------------------------------------------------