Aminrabi's picture
End of training
c0af20c
|
raw
history blame
2.65 kB

AutoPipeline

In many cases, one checkpoint can be used for multiple tasks. For example, you may be able to use the same checkpoint for Text-to-Image, Image-to-Image, and Inpainting. However, you'll need to know the pipeline class names linked to your checkpoint.

AutoPipeline is designed to make it easy for you to use multiple pipelines in your workflow. We currently provide 3 AutoPipeline classes to perform three different tasks, i.e. [AutoPipelineForText2Image], [AutoPipelineForImage2Image], and [AutoPipelineForInpainting]. You'll need to choose the AutoPipeline class based on the task you want to perform and use it to automatically retrieve the relevant pipeline given the name/path to the pre-trained weights.

For example, to perform Image-to-Image with the SD1.5 checkpoint, you can do

from diffusers import PipelineForImageToImage

pipe_i2i = PipelineForImageoImage.from_pretrained("runwayml/stable-diffusion-v1-5")

It will also help you switch between tasks seamlessly using the same checkpoint without reallocating additional memory. For example, to re-use the Image-to-Image pipeline we just created for inpainting, you can do

from diffusers import PipelineForInpainting

pipe_inpaint = AutoPipelineForInpainting.from_pipe(pipe_i2i)

All the components will be transferred to the inpainting pipeline with zero cost.

Currently AutoPipeline support the Text-to-Image, Image-to-Image, and Inpainting tasks for below diffusion models:

AutoPipelineForText2Image

[[autodoc]] AutoPipelineForText2Image - all - from_pretrained - from_pipe

AutoPipelineForImage2Image

[[autodoc]] AutoPipelineForImage2Image - all - from_pretrained - from_pipe

AutoPipelineForInpainting

[[autodoc]] AutoPipelineForInpainting - all - from_pretrained - from_pipe