stable-diffusion stable-diffusion-diffusers text-to-image rust

This repository hosts weights for a Rust based version of Stable Diffusion. These weights have been directly adapted from the stabilityai/stable-diffusion-2-1 weights, they can be used with the diffusers-rs crate.

To do so, checkout the diffusers-rs repo, copy the weights in the data/ directory and run the following command:

cargo run --example stable-diffusion --features clap -- --prompt "A rusty robot holding a fire torch."

This is for the image-to-text pipeline, example using the image-to-image and inpainting pipelines can be found in the crate readme.

License

The license is unchanged, see the original version. In line with paragraph 4, the original copyright is preserved: Copyright (c) 2022 Robin Rombach and Patrick Esser and contributors

The model details section below is copied from the runwayml version, refer to the original repo for use restrictions, limitations, bias discussion etc.

Model Details

Weight Extraction

The weights have been converted by downloading them from the stabilityai/stable-diffusion-2-1 repo, and then running the following commands in the diffusers-rs repo.

After downloading the files, use Python to convert them to npz files.

import numpy as np
import torch
model = torch.load("./vae.bin")
np.savez("./vae_v2.1.npz", **{k: v.numpy() for k, v in model.items()})
model = torch.load("./unet.bin")
np.savez("./unet_v2.1.npz", **{k: v.numpy() for k, v in model.items()})

Convert these .npz files to .ot files via tensor-tools.

cargo run --release --example tensor-tools cp ./data/vae_v2.1.npz ./data/vae_v2.1.ot
cargo run --release --example tensor-tools cp ./data/unet_v2.1.npz ./data/unet_v2.1.ot