ArtificialGuyBR

Home / Blog / Fixing things

Wuerstchen Finetune: Sausage Redmond Art Style

Sausage Redmond is a community Wuerstchen prior finetune from ArtificialGuyBR that shifts generations toward a painterly, art-style look.

2 sources cited Fixing things

Sausage Redmond: A Community Wuerstchen Finetune

Wuerstchen made a name for itself as one of the most efficient text-to-image pipelines around: the prior compresses prompts into a tiny latent space, a fast decoder turns them into images, and the whole thing runs in far fewer steps than most diffusion models. What the community didn't have, early on, was finetunes of that prior. Sausage Redmond, published by ArtificialGuyBR, is an attempt at one of the first — a Wuerstchen prior finetune with a distinctly painterly, art-style aesthetic.

Side-by-side comparison of Wuerstchen output before and after the Sausage Redmond finetune

What the model does

The model card and Civitai page describe Sausage Redmond as a finetune of the Wuerstchen prior made with GPU time donated by Redmond.AI. Visually, the sample grid shows two key behaviors, per the images published on Civitai: text-to-image generations come out with a painterly, slightly procedural character instead of a photograph, and img2img transfers of a photo into that style keep the scene's structure while restyling the rendering. The author is upfront that it is "not perfect but really cool to gen" — a characterful finetune rather than a polished studio tool.

Wuerstchen output after applying the Sausage Redmond art-style finetune

How to run it

Two paths are given on the model card:

  1. diffusers / HF script — load the warp-ai/wuerstchen-prior script and swap the prior:
   prior_pipeline = WuerstchenPriorPipeline.from_pretrained(
       "artificialguybr/SausageRedmond-wuerstchen", torch_dtype=dtype
   ).to(device)

Everything else — decoder, VQGAN, prompt, steps — stays the same, because only the prior weights change.

  1. SD.Next (A1111 fork) — the model card points to vladmandic/automatic (SD.Next) as the GUI route for loading the checkpoint.

On Civitai the file is distributed as a fp16 diffusers checkpoint (SausageRedmond.zip, ft2.48 GB), so it loads as a diffusers-style model rather than a single-file .safetensors checkpoint.

Tips and limitations

Common errors and fixes

Error | Cause | Fix | Source

|---|---|---|---

TypeError / missing args when loading | A new diffusers HF version changed the pipeline call signature | Pin the diffusers version you trained or tested with | Model card setup Output looks exactly like vanilla Wuerstchen | The prior path still points at warp-ai/wuerstchen-prior | Swap to artificialguybr/SausageRedmond-wuerstchen in from_pretrained | Model card Clip skip / sampler questions | Wuerstchen has different sampling defaults than SD1.5 | Follow the warp-ai Wuerstchen how-to-run settings | Reference script

FAQ

Is Sausage Redmond a LoRA? The author calls it a finetune, and the release is a full diffusers prior checkpoint (~2.48 GB fp16) — for practical purposes it is loaded and used like a checkpoint finetune of the Wuerstchen prior.

Does it change the decoder? No. Only the prior weights are replaced; the decoder and simulation steps are unchanged, which is why swap-in is one line.

Do I need a trigger word? No trigger words are published. The style is embedded in the finetuned weights.

Is the original Wuerstchen still needed? Yes — the prior is only half the pipeline. You still run the standard Wuerstchen decoder alongside it.

Sources

Want to explore the original model behind it? Read about Wuerstchen and how the prior works and see more Wuerstchen-style experiments from the ArtificialGuyBR portfolio.