gitextract_rj9tv4rl/ ├── .gitignore ├── LICENSE ├── README.md ├── README_EN.md ├── data/ │ ├── apply/ │ │ ├── audio/ │ │ │ └── .gitkeep │ │ ├── emoticon/ │ │ │ └── .gitkeep │ │ ├── images/ │ │ │ └── .gitkeep │ │ ├── play/ │ │ │ ├── .gitkeep │ │ │ └── 坂田银时.txt │ │ └── text2image/ │ │ └── .gitkeep │ ├── config/ │ │ ├── embedding_train/ │ │ │ └── model_arch.json │ │ ├── js/ │ │ │ ├── custom.js │ │ │ └── index.js │ │ ├── language/ │ │ │ └── en_UK_language_config.json │ │ ├── prompt/ │ │ │ └── chatPrompt.json │ │ ├── theme/ │ │ │ └── theme.py │ │ └── train_config/ │ │ └── .gitkeep │ ├── documents/ │ │ └── .gitkeep │ └── modeldata/ │ ├── Embedding/ │ │ └── .gitkeep │ └── LLM/ │ └── .gitkeep ├── demo.py ├── env/ │ └── .gitkeep ├── models/ │ ├── Embedding/ │ │ └── .gitkeep │ ├── LLM/ │ │ └── .gitkeep │ ├── LoRA/ │ │ └── .gitkeep │ ├── live2d_model/ │ │ └── .gitkeep │ ├── svc_models/ │ │ ├── .gitkeep │ │ ├── hubert_model/ │ │ │ └── .gitkeep │ │ └── svc/ │ │ └── .gitkeep │ └── vits_pretrained_models/ │ └── .gitkeep ├── modules/ │ ├── __init__.py │ ├── agent/ │ │ ├── .gitkeep │ │ ├── __init__.py │ │ ├── chatdb/ │ │ │ ├── chat.py │ │ │ ├── chatdb.py │ │ │ ├── mysql.py │ │ │ └── sql_examples.py │ │ ├── internet_search.py │ │ ├── svc/ │ │ │ ├── __init__.py │ │ │ ├── attentions.py │ │ │ ├── commons.py │ │ │ ├── configs/ │ │ │ │ └── config.json │ │ │ ├── hubert/ │ │ │ │ ├── __init__.py │ │ │ │ ├── hubert_model.py │ │ │ │ ├── hubert_model_onnx.py │ │ │ │ └── put_hubert_ckpt_here │ │ │ ├── inference/ │ │ │ │ ├── __init__.py │ │ │ │ ├── chunks_temp.json │ │ │ │ ├── infer_tool.py │ │ │ │ ├── infer_tool_grad.py │ │ │ │ └── slicer.py │ │ │ ├── inference_main.py │ │ │ ├── models.py │ │ │ ├── modules.py │ │ │ ├── utils.py │ │ │ ├── vdecoder/ │ │ │ │ ├── __init__.py │ │ │ │ └── hifigan/ │ │ │ │ ├── __init__.py │ │ │ │ ├── env.py │ │ │ │ ├── models.py │ │ │ │ ├── nvSTFT.py │ │ │ │ └── utils.py │ │ │ └── vits_haruhi.py │ │ ├── tts_online.py │ │ └── vits/ │ │ ├── __init__.py │ │ ├── attentions.py │ │ ├── commons.py │ │ ├── config/ │ │ │ └── config.json │ │ ├── mel_processing.py │ │ ├── models.py │ │ ├── modules.py │ │ ├── monotonic_align/ │ │ │ ├── __init__.py │ │ │ └── core.py │ │ ├── test.py │ │ ├── text/ │ │ │ ├── LICENSE │ │ │ ├── __init__.py │ │ │ ├── cleaners.py │ │ │ └── symbols.py │ │ ├── transforms.py │ │ ├── utils.py │ │ └── vits.py │ ├── apply/ │ │ └── role_play.py │ └── model/ │ ├── .gitkeep │ ├── Embedding/ │ │ ├── __init__.py │ │ ├── base.py │ │ ├── text2vec/ │ │ │ ├── __init__.py │ │ │ ├── dataset/ │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── bert.py │ │ │ │ ├── cosent.py │ │ │ │ └── sentencebert.py │ │ │ ├── main.py │ │ │ ├── model/ │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── bert.py │ │ │ │ ├── cosent.py │ │ │ │ └── sentencebert.py │ │ │ └── utils/ │ │ │ ├── __init__.py │ │ │ └── base.py │ │ └── utils/ │ │ ├── __init__.py │ │ └── base.py │ ├── LLM/ │ │ ├── __init__.py │ │ ├── accelerate_configs/ │ │ │ ├── ds_multi_gpu.yaml │ │ │ ├── ds_single_gpu.yaml │ │ │ ├── multi_gpu.yaml │ │ │ └── single_gpu.yaml │ │ ├── ds_configs/ │ │ │ ├── stage_1.json │ │ │ ├── stage_1_offload.json │ │ │ ├── stage_2.json │ │ │ ├── stage_2_offload.json │ │ │ ├── stage_3.json │ │ │ ├── stage_3_offload.json │ │ │ └── stage_3_offload_bf16.json │ │ ├── run/ │ │ │ ├── train_ds_multi_gpu.sh │ │ │ ├── train_ds_single_gpu.sh │ │ │ ├── train_lora_ds_multi_gpu.sh │ │ │ ├── train_lora_ds_single_gpu.sh │ │ │ ├── train_lora_multi_gpu.sh │ │ │ ├── train_lora_single_gpu.sh │ │ │ ├── train_multi_gpu.sh │ │ │ └── train_single_gpu.sh │ │ ├── train.py │ │ ├── train_dpo.py │ │ ├── train_dpo_luancher.py │ │ └── train_luancher.py │ ├── SparkApi.py │ ├── __init__.py │ ├── emb_auto.py │ ├── llm_auto.py │ ├── prompt_generator.py │ └── use_api.py ├── requirements.txt ├── ui/ │ ├── apply.py │ ├── apply_knowledge.py │ ├── apply_text_image_generation.py │ ├── apply_video.py │ ├── chat.py │ ├── data.py │ └── train.py ├── utils/ │ ├── .gitkeep │ ├── MyFAISS.py │ ├── __init__.py │ ├── chinese_text_splitter.py │ ├── dev.json │ ├── dl_data.py │ ├── embedding_base_model.py │ ├── embedding_val.py │ ├── language_switch_utils.py │ ├── local_doc.py │ ├── parallel_api.py │ ├── svc_utils.py │ ├── text_image_utils.py │ ├── ui_utils.py │ ├── utils.py │ └── vits_utils.py ├── web-demo-CN.bat ├── web-demo-CN.sh ├── web-demo-EN.bat ├── web-demo-EN.sh └── webui.py