1
0
mirror of https://github.com/huggingface/diffusers.git synced 2026-01-27 17:22:53 +03:00
Files
diffusers/docs/source/en/api/loaders/single_file.md
2025-06-19 07:46:01 +05:30

2.4 KiB

Single files

The [~loaders.FromSingleFileMixin.from_single_file] method allows you to load:

  • a model stored in a single file, which is useful if you're working with models from the diffusion ecosystem, like Automatic1111, and commonly rely on a single-file layout to store and share models
  • a model stored in their originally distributed layout, which is useful if you're working with models finetuned with other services, and want to load it directly into Diffusers model objects and pipelines

Tip

Read the Model files and layouts guide to learn more about the Diffusers-multifolder layout versus the single-file layout, and how to load models stored in these different layouts.

Supported pipelines

  • [StableDiffusionPipeline]
  • [StableDiffusionImg2ImgPipeline]
  • [StableDiffusionInpaintPipeline]
  • [StableDiffusionControlNetPipeline]
  • [StableDiffusionControlNetImg2ImgPipeline]
  • [StableDiffusionControlNetInpaintPipeline]
  • [StableDiffusionUpscalePipeline]
  • [StableDiffusionXLPipeline]
  • [StableDiffusionXLImg2ImgPipeline]
  • [StableDiffusionXLInpaintPipeline]
  • [StableDiffusionXLInstructPix2PixPipeline]
  • [StableDiffusionXLControlNetPipeline]
  • [StableDiffusionXLKDiffusionPipeline]
  • [StableDiffusion3Pipeline]
  • [LatentConsistencyModelPipeline]
  • [LatentConsistencyModelImg2ImgPipeline]
  • [StableDiffusionControlNetXSPipeline]
  • [StableDiffusionXLControlNetXSPipeline]
  • [LEditsPPPipelineStableDiffusion]
  • [LEditsPPPipelineStableDiffusionXL]
  • [PIAPipeline]

Supported models

  • [UNet2DConditionModel]
  • [StableCascadeUNet]
  • [AutoencoderKL]
  • [ControlNetModel]
  • [SD3Transformer2DModel]
  • [FluxTransformer2DModel]

FromSingleFileMixin

autodoc loaders.single_file.FromSingleFileMixin

FromOriginalModelMixin

autodoc loaders.single_file_model.FromOriginalModelMixin