A short intro on running Stable Diffusion on DeepInfra

Published on 2023.03.08 by Iskren

A short intro on running Stable Diffusion on DeepInfra header picture

Pick a model

Pick a model from the list by using

deepctl model list | grep text-to-image

For example, we'll use runwayml/stable-diffusion-v1-5.

Using deepctl

deepctl infer -m runwayml/stable-diffusion-v1-5 \
    -i prompt="A photo of a cube floating in space"
    -o images=cube.jpg

And check out the output in cube.jpg.

Advanced options

You can check all the available settings via

deepctl model info -m runwayml/stable-diffusion-v1-5