gitextract_g10rsitx/ ├── .gitignore ├── LICENSE ├── app.py ├── download_pretrain.py ├── en_llmprompt_script_gen.py ├── inference.py ├── modules/ │ ├── audio_detokenizer/ │ │ ├── audio_detokenizer.py │ │ ├── bigvgan_wrapper.py │ │ ├── flow_matching/ │ │ │ ├── dit_block.py │ │ │ ├── model.py │ │ │ ├── ode_wrapper.py │ │ │ └── scheduler.py │ │ ├── semantic_fm_prefix_streaming.py │ │ └── vocoder/ │ │ ├── activations.py │ │ ├── alias_free_activation/ │ │ │ ├── __init__.py │ │ │ ├── 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 │ │ └── utils.py │ ├── audio_tokenizer/ │ │ ├── audio_tokenizer.py │ │ ├── quantize/ │ │ │ ├── __init__.py │ │ │ ├── factorized_vector_quantize.py │ │ │ ├── residual_vq.py │ │ │ └── vector_quantize.py │ │ ├── rep_codec.py │ │ ├── transformer.py │ │ └── vocos.py │ └── tokenizer/ │ └── tokenizer.py ├── readme.md ├── requirements.txt ├── test/ │ ├── test_audio_detokenizer.py │ ├── test_audio_tokenizer.py │ └── test_tokenizer.py └── zh_llmprompt_script_gen.py