gitextract_40a6xiei/ ├── .github/ │ └── workflows/ │ └── test.yml ├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── SUPPORT_GUIDELINES.md ├── boson_multimodal/ │ ├── __init__.py │ ├── audio_processing/ │ │ ├── LICENSE │ │ ├── descriptaudiocodec/ │ │ │ ├── __init__.py │ │ │ └── dac/ │ │ │ ├── model/ │ │ │ │ ├── base.py │ │ │ │ └── dac.py │ │ │ └── nn/ │ │ │ ├── layers.py │ │ │ └── quantize.py │ │ ├── higgs_audio_tokenizer.py │ │ ├── quantization/ │ │ │ ├── __init__.py │ │ │ ├── ac.py │ │ │ ├── core_vq.py │ │ │ ├── core_vq_lsx_version.py │ │ │ ├── ddp_utils.py │ │ │ ├── distrib.py │ │ │ └── vq.py │ │ └── semantic_module.py │ ├── constants.py │ ├── data_collator/ │ │ ├── __init__.py │ │ └── higgs_audio_collator.py │ ├── data_types.py │ ├── dataset/ │ │ ├── __init__.py │ │ └── chatml_dataset.py │ ├── model/ │ │ ├── __init__.py │ │ └── higgs_audio/ │ │ ├── __init__.py │ │ ├── audio_head.py │ │ ├── common.py │ │ ├── configuration_higgs_audio.py │ │ ├── cuda_graph_runner.py │ │ ├── custom_modules.py │ │ ├── modeling_higgs_audio.py │ │ └── utils.py │ └── serve/ │ ├── serve_engine.py │ └── utils.py ├── examples/ │ ├── README.md │ ├── generation.py │ ├── scene_prompts/ │ │ ├── quiet_indoor.txt │ │ └── reading_blog.txt │ ├── serve_engine/ │ │ ├── README.md │ │ ├── input_samples.py │ │ └── run_hf_example.py │ ├── transcript/ │ │ ├── multi_speaker/ │ │ │ ├── en_argument.txt │ │ │ └── en_higgs.txt │ │ └── single_speaker/ │ │ ├── en_basic.txt │ │ ├── en_dl.txt │ │ ├── en_higgs_audio_blog.md │ │ ├── experimental/ │ │ │ ├── en_bgm.txt │ │ │ └── en_humming.txt │ │ └── zh_ai.txt │ ├── vllm/ │ │ ├── README.md │ │ └── run_chat_completion.py │ └── voice_prompts/ │ ├── belinda.txt │ ├── bigbang_amy.txt │ ├── bigbang_sheldon.txt │ ├── broom_salesman.txt │ ├── chadwick.txt │ ├── en_man.txt │ ├── en_woman.txt │ ├── fiftyshades_anna.txt │ ├── mabaoguo.txt │ ├── mabel.txt │ ├── profile.yaml │ ├── shrek_donkey.txt │ ├── shrek_donkey_es.txt │ ├── shrek_fiona.txt │ ├── shrek_shrek.txt │ ├── vex.txt │ └── zh_man_sichuan.txt ├── pyproject.toml ├── requirements.txt ├── setup.cfg ├── setup.py └── tech_blogs/ ├── ARCHITECTURE_BLOG.md └── TOKENIZER_BLOG.md