Diffusers documentation
How to use the ONNX Runtime for inference
Get started
Tutorials
Using Diffusers
Loading & Hub
OverviewLoad pipelines, models, and schedulersLoad and compare different schedulersLoad community pipelinesLoad KerasCV Stable Diffusion checkpoints
Pipelines for Inference
OverviewUnconditional image generationText-to-image generationText-guided image-to-imageText-guided image-inpaintingText-guided depth-to-imageImprove image quality with deterministic generationCreate reproducible pipelinesCommunity pipelinesHow to contribute a community pipelineUsing safetensorsStable Diffusion in JAX/FlaxWeighting Prompts
Training
OverviewUnconditional image generationTextual InversionDreamBoothText-to-imageLow-Rank Adaptation of Large Language Models (LoRA)ControlNetInstructPix2Pix TrainingCustom Diffusion
Taking Diffusers Beyond Images
Optimization/Special Hardware
Conceptual Guides
PhilosophyControlled generationHow to contribute?Diffusers' Ethical GuidelinesEvaluating Diffusion Models
API
Main Classes
Pipelines
OverviewAltDiffusionAudio DiffusionAudioLDMCycle DiffusionDance DiffusionDDIMDDPMDiTIFLatent DiffusionPaintByExamplePNDMRePaintSafe Stable DiffusionScore SDE VESemantic GuidanceSpectrogram Diffusion
Stable Diffusion
OverviewText-to-ImageImage-to-ImageInpaintDepth-to-ImageImage-VariationSuper-ResolutionStable-Diffusion-Latent-UpscalerInstructPix2PixAttend and ExcitePix2Pix ZeroSelf-Attention GuidanceMultiDiffusion PanoramaText-to-Image Generation with ControlNet ConditioningText-to-Image Model Editing
Stable Diffusion 2Stable unCLIPStochastic Karras VEText-to-VideoText-to-Video ZeroUnCLIPUnconditional Latent DiffusionVersatile DiffusionVQ DiffusionSchedulers
OverviewDDIMDDIMInverseDDPMDEISDPM Discrete SchedulerDPM Discrete Scheduler with ancestral samplingEuler Ancestral SchedulerEuler schedulerHeun SchedulerIPNDMLinear MultistepMultistep DPM-SolverPNDMRePaint SchedulerSinglestep DPM-SolverStochastic Kerras VEUniPCMultistepSchedulerVE-SDEVP-SDEVQDiffusionScheduler
Experimental Features
You are viewing v0.16.0 version. A newer version v0.38.0 is available.
How to use the ONNX Runtime for inference
🤗 Optimum provides a Stable Diffusion pipeline compatible with ONNX Runtime.
Installation
Install 🤗 Optimum with the following command for ONNX Runtime support:
pip install optimum["onnxruntime"]Stable Diffusion Inference
To load an ONNX model and run inference with the ONNX Runtime, you need to replace StableDiffusionPipeline with ORTStableDiffusionPipeline. In case you want to load
a PyTorch model and convert it to the ONNX format on-the-fly, you can set export=True.
from optimum.onnxruntime import ORTStableDiffusionPipeline
model_id = "runwayml/stable-diffusion-v1-5"
pipe = ORTStableDiffusionPipeline.from_pretrained(model_id, export=True)
prompt = "a photo of an astronaut riding a horse on mars"
images = pipe(prompt).images[0]
pipe.save_pretrained("./onnx-stable-diffusion-v1-5")If you want to export the pipeline in the ONNX format offline and later use it for inference,
you can use the optimum-cli export command:
optimum-cli export onnx --model runwayml/stable-diffusion-v1-5 sd_v15_onnx/Then perform inference:
from optimum.onnxruntime import ORTStableDiffusionPipeline
model_id = "sd_v15_onnx"
pipe = ORTStableDiffusionPipeline.from_pretrained(model_id)
prompt = "a photo of an astronaut riding a horse on mars"
images = pipe(prompt).images[0]Notice that we didn’t have to specify export=True above.
You can find more examples in optimum documentation.
Known Issues
- Generating multiple prompts in a batch seems to take too much memory. While we look into it, you may need to iterate instead of batching.