Files
huggingface--peft/docs/source/package_reference/functional.md
T
wehub-resource-sync caf324b09d
Build documentation / build (push) Failing after 0s
Deploy "method_comparison" Gradio to Spaces / deploy (push) Has been cancelled
Deploy "PEFT shop" Gradio app to Spaces / deploy (push) Has been cancelled
tests on transformers main / tests (push) Has been cancelled
tests / check_code_quality (push) Has been cancelled
tests / tests (ubuntu-latest, 3.10) (push) Has been cancelled
tests / tests (ubuntu-latest, 3.11) (push) Has been cancelled
tests / tests (ubuntu-latest, 3.12) (push) Has been cancelled
tests / tests (ubuntu-latest, 3.13) (push) Has been cancelled
tests / tests (windows-latest, 3.10) (push) Has been cancelled
tests / tests (windows-latest, 3.11) (push) Has been cancelled
tests / tests (windows-latest, 3.12) (push) Has been cancelled
tests / tests (windows-latest, 3.13) (push) Has been cancelled
Secret Leaks / trufflehog (push) Has been cancelled
CI security linting / zizmor latest via Cargo (push) Has been cancelled
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