gitextract_mqsl_z9m/ ├── .gitignore ├── README.md ├── configs/ │ └── audiostory_llm_qwen25_3b_lora.yaml ├── envs/ │ └── peft/ │ ├── .github/ │ │ ├── ISSUE_TEMPLATE/ │ │ │ ├── bug-report.yml │ │ │ └── feature-request.yml │ │ └── workflows/ │ │ ├── build_docker_images.yml │ │ ├── build_documentation.yml │ │ ├── build_pr_documentation.yml │ │ ├── delete_doc_comment.yml │ │ ├── delete_doc_comment_trigger.yml │ │ ├── nightly.yml │ │ ├── stale.yml │ │ ├── tests.yml │ │ └── upload_pr_documentation.yml │ ├── .gitignore │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── docker/ │ │ ├── peft-cpu/ │ │ │ └── Dockerfile │ │ └── peft-gpu/ │ │ └── Dockerfile │ ├── docs/ │ │ ├── Makefile │ │ ├── README.md │ │ └── source/ │ │ ├── _config.py │ │ ├── _toctree.yml │ │ ├── accelerate/ │ │ │ ├── deepspeed-zero3-offload.mdx │ │ │ └── fsdp.mdx │ │ ├── conceptual_guides/ │ │ │ ├── ia3.mdx │ │ │ ├── lora.mdx │ │ │ └── prompting.mdx │ │ ├── index.mdx │ │ ├── install.mdx │ │ ├── package_reference/ │ │ │ ├── config.mdx │ │ │ ├── peft_model.mdx │ │ │ └── tuners.mdx │ │ ├── quicktour.mdx │ │ └── task_guides/ │ │ ├── clm-prompt-tuning.mdx │ │ ├── dreambooth_lora.mdx │ │ ├── image_classification_lora.mdx │ │ ├── int8-asr.mdx │ │ ├── ptuning-seq-classification.mdx │ │ ├── semantic-similarity-lora.md │ │ ├── semantic_segmentation_lora.mdx │ │ ├── seq2seq-prefix-tuning.mdx │ │ └── token-classification-lora.mdx │ ├── examples/ │ │ ├── causal_language_modeling/ │ │ │ ├── accelerate_ds_zero3_cpu_offload_config.yaml │ │ │ ├── peft_lora_clm_accelerate_big_model_inference.ipynb │ │ │ ├── peft_lora_clm_accelerate_ds_zero3_offload.py │ │ │ ├── peft_prefix_tuning_clm.ipynb │ │ │ ├── peft_prompt_tuning_clm.ipynb │ │ │ └── requirements.txt │ │ ├── conditional_generation/ │ │ │ ├── accelerate_ds_zero3_cpu_offload_config.yaml │ │ │ ├── peft_adalora_seq2seq.py │ │ │ ├── peft_ia3_seq2seq.ipynb │ │ │ ├── peft_lora_seq2seq.ipynb │ │ │ ├── peft_lora_seq2seq_accelerate_big_model_inference.ipynb │ │ │ ├── peft_lora_seq2seq_accelerate_ds_zero3_offload.py │ │ │ ├── peft_lora_seq2seq_accelerate_fsdp.py │ │ │ ├── peft_prefix_tuning_seq2seq.ipynb │ │ │ ├── peft_prompt_tuning_seq2seq.ipynb │ │ │ ├── peft_prompt_tuning_seq2seq_with_generate.ipynb │ │ │ └── requirements.txt │ │ ├── feature_extraction/ │ │ │ ├── peft_lora_embedding_semantic_search.py │ │ │ ├── peft_lora_embedding_semantic_similarity_inference.ipynb │ │ │ └── requirements.txt │ │ ├── fp4_finetuning/ │ │ │ └── finetune_fp4_opt_bnb_peft.py │ │ ├── image_classification/ │ │ │ ├── README.md │ │ │ └── image_classification_peft_lora.ipynb │ │ ├── int8_training/ │ │ │ ├── Finetune_flan_t5_large_bnb_peft.ipynb │ │ │ ├── Finetune_opt_bnb_peft.ipynb │ │ │ ├── fine_tune_blip2_int8.py │ │ │ ├── peft_adalora_whisper_large_training.py │ │ │ ├── peft_bnb_whisper_large_v2_training.ipynb │ │ │ └── run_adalora_whisper_int8.sh │ │ ├── lora_dreambooth/ │ │ │ ├── colab_notebook.ipynb │ │ │ ├── convert_kohya_ss_sd_lora_to_peft.py │ │ │ ├── convert_peft_sd_lora_to_kohya_ss.py │ │ │ ├── lora_dreambooth_inference.ipynb │ │ │ ├── requirements.txt │ │ │ └── train_dreambooth.py │ │ ├── multi_adapter_examples/ │ │ │ └── PEFT_Multi_LoRA_Inference.ipynb │ │ ├── semantic_segmentation/ │ │ │ ├── README.md │ │ │ └── semantic_segmentation_peft_lora.ipynb │ │ ├── sequence_classification/ │ │ │ ├── IA3.ipynb │ │ │ ├── LoRA.ipynb │ │ │ ├── P_Tuning.ipynb │ │ │ ├── Prompt_Tuning.ipynb │ │ │ ├── peft_no_lora_accelerate.py │ │ │ ├── prefix_tuning.ipynb │ │ │ └── requirements.txt │ │ └── token_classification/ │ │ ├── peft_lora_token_cls.ipynb │ │ └── requirements.txt │ ├── pyproject.toml │ ├── scripts/ │ │ ├── log_reports.py │ │ └── stale.py │ ├── setup.py │ ├── src/ │ │ └── peft/ │ │ ├── __init__.py │ │ ├── auto.py │ │ ├── import_utils.py │ │ ├── mapping.py │ │ ├── peft_model.py │ │ ├── py.typed │ │ ├── tuners/ │ │ │ ├── __init__.py │ │ │ ├── adalora.py │ │ │ ├── adaption_prompt.py │ │ │ ├── ia3.py │ │ │ ├── lora.py │ │ │ ├── p_tuning.py │ │ │ ├── prefix_tuning.py │ │ │ └── prompt_tuning.py │ │ └── utils/ │ │ ├── __init__.py │ │ ├── config.py │ │ ├── hub_utils.py │ │ ├── other.py │ │ └── save_and_load.py │ └── tests/ │ ├── __init__.py │ ├── test_adaption_prompt.py │ ├── test_auto.py │ ├── test_common_gpu.py │ ├── test_config.py │ ├── test_custom_models.py │ ├── test_decoder_models.py │ ├── test_encoder_decoder_models.py │ ├── test_feature_extraction_models.py │ ├── test_gpu_examples.py │ ├── test_stablediffusion.py │ ├── testing_common.py │ └── testing_utils.py ├── evaluate/ │ ├── demo_gradio_video_dubbing.py │ ├── evaluate_long_audio.py │ ├── evaluate_long_audio.sh │ └── inference.py ├── install_audiostory.sh ├── src/ │ ├── models/ │ │ ├── detokenizer/ │ │ │ ├── __init__.py │ │ │ ├── modeling_flux.py │ │ │ └── resampler.py │ │ ├── detokenizer_cotrain/ │ │ │ └── modeling_flux_cotrain.py │ │ ├── mllm/ │ │ │ ├── __init__.py │ │ │ ├── generation.py │ │ │ ├── load_qwenvl_llm.py │ │ │ ├── modeling_audiostory_llm.py │ │ │ ├── modeling_audiostory_unified.py │ │ │ ├── modeling_llama_xformer.py │ │ │ ├── peft_models.py │ │ │ └── utils.py │ │ └── tokenizer/ │ │ ├── __init__.py │ │ ├── init_qwen_tokenizer.py │ │ ├── init_qwen_tokenizer_special_token.py │ │ ├── modeling_tangoflux.py │ │ ├── modeling_whisper.py │ │ ├── modeling_whisper_inference.py │ │ └── qwen_visual.py │ └── processer/ │ ├── tokenizer.py │ └── transforms.py └── tokenizer/ ├── added_tokens.json ├── tokenizer.json ├── tokenizer_config.json └── vocab.json