Models that are compatible / loadable into a specific pipeline

How can I find models that are compatible / loadable into a specific pipeline?

For example, I was looking at loading various models into AutoPipelineForImage2Image. The “stable-diffusion-v1-5/stable-diffusion-v1-5” worked fine, but “Qwen/Qwen-Image-Edit" did not. Instead of looking back at every model to see if the model will load into the pipeline, I wondered whether there is a list of compatible models for each pipeline.

Or, can I limit a search on huggingface to a particular pipeline?

1 Like

Regarding Diffusers, though Transformers are a separate topic.

The list of supported models (pipelines) is published here.

Once you know the pipeline name, you can narrow down them in the model search.

If a supported model doesn’t work, first ensure:
pip install -U diffusers accelerate peft huggingface_hub[hf_xet]