gitextract_ft5t8lt3/ ├── .dockerignore ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.yml │ │ ├── config.yml │ │ └── feature_request.yml │ ├── pull_request_template.md │ └── workflows/ │ ├── build-docker-image.yml │ ├── docs.yml │ └── stale.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .project-root ├── .readthedocs.yaml ├── API_FLAGS.txt ├── LICENSE ├── README.md ├── awesome_webui/ │ ├── .gitignore │ ├── README.md │ ├── eslint.config.js │ ├── index.html │ ├── package.json │ ├── src/ │ │ ├── App.tsx │ │ ├── components/ │ │ │ └── ui/ │ │ │ ├── alert.tsx │ │ │ ├── badge.tsx │ │ │ ├── button.tsx │ │ │ ├── card.tsx │ │ │ ├── collapsible.tsx │ │ │ ├── dialog.tsx │ │ │ ├── label.tsx │ │ │ ├── scroll-area.tsx │ │ │ ├── separator.tsx │ │ │ ├── slider.tsx │ │ │ ├── switch.tsx │ │ │ ├── textarea.tsx │ │ │ └── toggle-group.tsx │ │ ├── index.css │ │ └── main.tsx │ ├── tsconfig.app.json │ ├── tsconfig.json │ ├── tsconfig.node.json │ └── vite.config.ts ├── compose.base.yml ├── compose.yml ├── docker/ │ └── Dockerfile ├── dockerfile.dev ├── docs/ │ ├── CNAME │ ├── README.ar.md │ ├── README.ja.md │ ├── README.ko.md │ ├── README.pt-BR.md │ ├── README.zh.md │ ├── ar/ │ │ ├── finetune.md │ │ ├── index.md │ │ ├── inference.md │ │ └── install.md │ ├── en/ │ │ ├── finetune.md │ │ ├── index.md │ │ ├── inference.md │ │ ├── install.md │ │ └── server.md │ ├── ja/ │ │ ├── finetune.md │ │ ├── index.md │ │ ├── inference.md │ │ └── install.md │ ├── ko/ │ │ ├── finetune.md │ │ ├── index.md │ │ ├── inference.md │ │ └── install.md │ ├── pt/ │ │ ├── finetune.md │ │ ├── index.md │ │ ├── inference.md │ │ └── install.md │ ├── requirements.txt │ ├── stylesheets/ │ │ └── extra.css │ └── zh/ │ ├── finetune.md │ ├── index.md │ ├── inference.md │ └── install.md ├── entrypoint.sh ├── fish_speech/ │ ├── callbacks/ │ │ ├── __init__.py │ │ └── grad_norm.py │ ├── configs/ │ │ ├── base.yaml │ │ ├── lora/ │ │ │ └── r_8_alpha_16.yaml │ │ ├── modded_dac_vq.yaml │ │ └── text2semantic_finetune.yaml │ ├── content_sequence.py │ ├── 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 │ ├── inference_engine/ │ │ ├── __init__.py │ │ ├── reference_loader.py │ │ ├── utils.py │ │ └── vq_manager.py │ ├── models/ │ │ ├── dac/ │ │ │ ├── __init__.py │ │ │ ├── inference.py │ │ │ ├── modded_dac.py │ │ │ └── rvq.py │ │ └── text2semantic/ │ │ ├── __init__.py │ │ ├── inference.py │ │ ├── lit_module.py │ │ ├── llama.py │ │ └── lora.py │ ├── scheduler.py │ ├── text/ │ │ ├── __init__.py │ │ └── clean.py │ ├── tokenizer.py │ ├── train.py │ └── utils/ │ ├── __init__.py │ ├── braceexpand.py │ ├── context.py │ ├── file.py │ ├── instantiators.py │ ├── logger.py │ ├── logging_utils.py │ ├── rich_utils.py │ ├── schema.py │ ├── spectrogram.py │ └── utils.py ├── inference.ipynb ├── mkdocs.yml ├── pyproject.toml ├── pyrightconfig.json └── tools/ ├── api_client.py ├── api_server.py ├── llama/ │ ├── build_dataset.py │ ├── eval_in_context.py │ ├── merge_lora.py │ └── quantize.py ├── run_webui.py ├── server/ │ ├── api_utils.py │ ├── exception_handler.py │ ├── inference.py │ ├── model_manager.py │ ├── model_utils.py │ └── views.py ├── vqgan/ │ ├── create_train_split.py │ └── extract_vq.py └── webui/ ├── __init__.py ├── inference.py └── variables.py