mirror of
https://github.com/huggingface/diffusers.git
synced 2025-12-10 22:44:38 +08:00
* first draft * remove old loader doc * start adding lora code examples * finish * add link to loralinearlayer * feedback * fix
1.7 KiB
1.7 KiB
Single files
Diffusers supports loading pretrained pipeline (or model) weights stored in a single file, such as a ckpt or safetensors file. These single file types are typically produced from community trained models. There are three classes for loading single file weights:
- [
FromSingleFileMixin] supports loading pretrained pipeline weights stored in a single file, which can either be ackptorsafetensorsfile. - [
FromOriginalVAEMixin] supports loading a pretrained [AutoencoderKL] from pretrained ControlNet weights stored in a single file, which can either be ackptorsafetensorsfile. - [
FromOriginalControlnetMixin] supports loading pretrained ControlNet weights stored in a single file, which can either be ackptorsafetensorsfile.
To learn more about how to load single file weights, see the Load different Stable Diffusion formats loading guide.
FromSingleFileMixin
autodoc loaders.single_file.FromSingleFileMixin
FromOriginalVAEMixin
autodoc loaders.single_file.FromOriginalVAEMixin
FromOriginalControlnetMixin
autodoc loaders.single_file.FromOriginalControlnetMixin