1
0
mirror of https://github.com/huggingface/diffusers.git synced 2026-01-29 07:22:12 +03:00
Files
diffusers/docs/source/en/api/loaders/single_file.md
Dhruv Nair fee93c81eb [Refactor] Update from single file (#6428)
* update

* update

* update

* update

* update

* update

* update

* update

* update

* update

* update'

* update

* update

* update

* update

* update

* update

* up

* update

* update

* update

* update

* update

* update

* update

* update

* update

* update

* update

* update

* up

* update

* update

* update

* update

* update'

* update

* update

* update

* update

* update

* update

* update

* update

* update

* update

* update

* update

* update

* update

* update

* update

* update

* update

* update

* update

* update

* update

* update

* update

* update

* update

* update

* update

* update

* update

* update

* clean

* update

* update

* clean up

* clean up

* update

* clean

* clean

* update

* updaet

* clean up

* fix docs

* update

* update

* Revert "update"

This reverts commit dbfb8f1ea9.

* update

* update

* update

* update

* fix controlnet

* fix scheduler

* fix controlnet tests
2024-01-23 14:42:03 +05:30

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 a ckpt or safetensors file.
  • [FromOriginalVAEMixin] supports loading a pretrained [AutoencoderKL] from pretrained ControlNet weights stored in a single file, which can either be a ckpt or safetensors file.
  • [FromOriginalControlnetMixin] supports loading pretrained ControlNet weights stored in a single file, which can either be a ckpt or safetensors file.

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.autoencoder.FromOriginalVAEMixin

FromOriginalControlnetMixin

autodoc loaders.controlnet.FromOriginalControlNetMixin