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.
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.
- A drop-in replacement for the
warp-ai/wuerstchen-priorcheckpoint in diffusers. - Shifts generations from Wuerstchen's photographic default toward a stylized, art-edit look.
- Works with the standard Wuerstchen text-to-image, or with img2img-style art transfer on an existing photo.

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.

How to run it
Two paths are given on the model card:
- 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.
- 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
- The prior is the model that reads your prompt — prompting habits from other pipelines carry over, but the style bias is baked in.
- For art-transfer results like the samples, start from an image and restyle it; for direct generations, expect the same stylized output from a normal text prompt.
- The author notes the model is a first-generation community finetune, so quality varies by prompt and subject.
- No trigger words are published — this is a checkpoint finetune, not a LoRA, so no keyword activates it.
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
- artificialguybr/SausageRedmond-wuerstchen (HuggingFace) — model card, usage script, and swap instructions
- SausageRedmond - Wuerstchen Finetune (Civitai, model 187158) — version info, sample images, download file
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.