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
Aryan ba06124e4a Remove CogVideoX mentions from single file docs; Test updates (#9444)
* remove mentions from single file

* update tests

* update
2024-09-17 10:05:45 -10:00

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