Closed
Description
We recently integrated PAG into diffusers! See this PR [here] (#7944) we added PAG to SDXL
we also want to add PAG support to SD1.5 pipelines! we will need:
- StableDiffusionPAGPipeline (assigned to @shauray8, PR add PAG support for SD architecture #8725)
- StableDiffusionPAGImg2ImgPipeline add PAG support for SD Img2Img #9463
- StableDiffusionPAGInpaintPipeline
- StableDiffusionControlNetPAGInpaintPipeline (Add PAG support to StableDiffusionControlNetPAGInpaintPipeline #8875)
- StableDiffusionControlNetPAGPipeline (assigned to @tuanh123789 )
- StableDiffusionControlNetPAGImg2ImgPipeline (assigned to @Bhavay-2001 add PAG support for SD Controlnet Img2Img #8864)
- You should put it under the pag folder
- you can use the implementation of SDXL PAG pipelines as a reference (see this PRhttps://github.com/add PAG support #7944 and you can find all the sdxl pag pipelines here https://github.com/huggingface/diffusers/tree/main/src/diffusers/pipelines/pag)
- you need to add AutoPipeline so that you can use this API to create it
AutoPipelineForImage2Image.from_pretrained(repo_id, controlnet=controlnet, enable_pag=True ...)
- tests and docs
If you are interested in working on this, Let me know which pipeline(s) you want to work on:)