Files
huggingface--peft/docs/source/package_reference/functional.md
T
wehub-resource-sync caf324b09d
tests / check_code_quality (push) Waiting to run
tests / tests (ubuntu-latest, 3.10) (push) Blocked by required conditions
tests / tests (ubuntu-latest, 3.11) (push) Blocked by required conditions
Deploy "method_comparison" Gradio to Spaces / deploy (push) Waiting to run
Deploy "PEFT shop" Gradio app to Spaces / deploy (push) Waiting to run
tests on transformers main / tests (push) Waiting to run
tests / tests (ubuntu-latest, 3.12) (push) Blocked by required conditions
tests / tests (ubuntu-latest, 3.13) (push) Blocked by required conditions
tests / tests (windows-latest, 3.10) (push) Blocked by required conditions
tests / tests (windows-latest, 3.11) (push) Blocked by required conditions
tests / tests (windows-latest, 3.12) (push) Blocked by required conditions
tests / tests (windows-latest, 3.13) (push) Blocked by required conditions
Secret Leaks / trufflehog (push) Waiting to run
CI security linting / zizmor latest via Cargo (push) Waiting to run
Build documentation / build (push) Failing after 0s
chore: import upstream snapshot with attribution
2026-07-13 13:24:42 +08:00

1.2 KiB

Functions for PEFT integration

A collection of functions that could be useful for non-PeftModel models, e.g. transformers or diffusers integration

The functions provided here can be considered "public API" of PEFT and hence are safe to be used by packages that provide PEFT integrations.

Cast the adapter weight dtypes

autodoc functional.cast_adapter_dtype - all

Delete the PEFT adapter from model

autodoc functional.delete_adapter - all

Get the state dict of the PEFT adapter

autodoc functional.get_peft_model_state_dict - all

Inject a PEFT adapter into the model based on a PEFT config

autodoc functional.inject_adapter_in_model - all

Set the active PEFT adapter(s) of the model

autodoc functional.set_adapter - all

Set the requires_grad attribute of the specified adapters

autodoc functional.set_requires_grad - all

Load the weights of the PEFT state dict into the model

autodoc functional.set_peft_model_state_dict - all