gitextract_fwmtssbt/ ├── .all-contributorsrc ├── .codespellrc ├── .copier-answers.yml ├── .dockerignore ├── .editorconfig ├── .flake8 ├── .github/ │ ├── CODE_OF_CONDUCT.md │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── 1-bug-report.yml │ │ ├── 1-bug_report.yml │ │ ├── 2-feature-request.yml │ │ └── config.yml │ ├── PULL_REQUEST_TEMPLATE.md │ ├── labels.toml │ └── workflows/ │ ├── ci.yml │ ├── hacktoberfest.yml │ ├── issue-manager.yml │ ├── labels.yml │ ├── poetry-upgrade.yml │ └── upgrader.yml ├── .gitignore ├── .gitpod.yml ├── .pre-commit-config.yaml ├── .readthedocs.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── README.md ├── README_zh_CN.md ├── commitlint.config.js ├── commitlint.config.mjs ├── docs/ │ ├── Makefile │ ├── _static/ │ │ └── .gitkeep │ ├── changelog.md │ ├── conf.py │ ├── contributing.md │ ├── index.md │ ├── installation.md │ ├── make.bat │ └── usage.md ├── easy-installation/ │ ├── install-cn.bat │ └── install.bat ├── flake.nix ├── notebooks/ │ └── so-vits-svc-fork-4.0.ipynb ├── pyproject.toml ├── renovate.json ├── setup.py ├── src/ │ └── so_vits_svc_fork/ │ ├── __init__.py │ ├── __main__.py │ ├── cluster/ │ │ ├── __init__.py │ │ └── train_cluster.py │ ├── dataset.py │ ├── default_gui_presets.json │ ├── f0.py │ ├── gui.py │ ├── hparams.py │ ├── inference/ │ │ ├── __init__.py │ │ ├── core.py │ │ └── main.py │ ├── logger.py │ ├── modules/ │ │ ├── __init__.py │ │ ├── attentions.py │ │ ├── commons.py │ │ ├── decoders/ │ │ │ ├── __init__.py │ │ │ ├── f0.py │ │ │ ├── hifigan/ │ │ │ │ ├── __init__.py │ │ │ │ ├── _models.py │ │ │ │ └── _utils.py │ │ │ └── mb_istft/ │ │ │ ├── __init__.py │ │ │ ├── _generators.py │ │ │ ├── _loss.py │ │ │ ├── _pqmf.py │ │ │ ├── _stft.py │ │ │ └── _stft_loss.py │ │ ├── descriminators.py │ │ ├── encoders.py │ │ ├── flows.py │ │ ├── losses.py │ │ ├── mel_processing.py │ │ ├── modules.py │ │ └── synthesizers.py │ ├── preprocessing/ │ │ ├── __init__.py │ │ ├── config_templates/ │ │ │ ├── __init__.py │ │ │ ├── quickvc.json │ │ │ ├── so-vits-svc-4.0v1-legacy.json │ │ │ └── so-vits-svc-4.0v1.json │ │ ├── preprocess_classify.py │ │ ├── preprocess_flist_config.py │ │ ├── preprocess_hubert_f0.py │ │ ├── preprocess_resample.py │ │ ├── preprocess_speaker_diarization.py │ │ ├── preprocess_split.py │ │ └── preprocess_utils.py │ ├── py.typed │ ├── train.py │ └── utils.py ├── templates/ │ └── CHANGELOG.md.j2 └── tests/ ├── __init__.py └── test_main.py