ArtificialGuyBR

Home / Blog / Training LoRAs

TShirtDesignRedmond 1.5V LoRA for SD 1.5 T-Shirt Designs

Generate t-shirt design illustrations with TShirtDesignRedmond 1.5V LoRA. Trigger words, settings, and examples for Stable Diffusion 1.5.

2 sources cited Training LoRAs

TShirtDesignRedmond 1.5V LoRA for Stable Diffusion 1.5

TL;DR

What It Does

TShirtDesignRedmond 1.5V is a Low-Rank Adaptation (LoRA) trained on the LiberteRedmond variant of Stable Diffusion 1.5. It specializes in producing circular/portrait-format illustrations optimized for t-shirt prints. The model responds to two trigger tokens: T shirt design and TShirtDesignAF.

Sample generations show consistent framing — subjects centered in circular compositions — with a graphic illustration style: clean lines, solid color regions, and print-friendly contrast. Subjects range from scenic (beach, space) to character-based (cats with sunglasses, horror clowns, Santa Claus).

Circular t-shirt design of a cat wearing sunglasses, epic cinematic style

How to Use

With diffusers (Python)

from diffusers import AutoPipelineForText2Image
import torch

pipeline = AutoPipelineForText2Image.from_pretrained(
    'runwayml/stable-diffusion-v1-5',
    torch_dtype=torch.float16
).to('cuda')

pipeline.load_lora_weights(
    'artificialguybr/tshirtdesignredmond-1-5v-t-shirt-design-lora-for-liberteredmond-sd-1-5',
    weight_name='TShirtDesignRedmond1-5V-LiberteRedmond-TShirtDesignAF.safetensors'
)

prompt = 'Beach, cozy, calm, circular, ,T shirt design,TshirtDesignAF,'
image = pipeline(prompt).images[0]

In ComfyUI / Automatic1111

Setting | Value

|---|---

Base model | runwayml/stable-diffusion-v1-5 (LiberteRedmond) Trigger words | T shirt design, TShirtDesignAF LoRA weight | 0.8–1.0 Sampler | DPM++ 2M Karras / Euler a Steps | 20–30 CFG | 7–9 Resolution | 512×512 or 768×768 (portrait)

Style Control

The model accepts style modifiers in prompts:

License

Bespoke license (multimodal.art): commercial use permitted (including rental), derivatives allowed, attribution not required, re-licensing not permitted.

Example Generations

Horror clown t-shirt design, circular composition

Common Errors and Fixes

Error | Cause | Fix | Source

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

LoRA not loading | Wrong weight filename | Use exact name: TShirtDesignRedmond1-5V-LiberteRedmond-TShirtDesignAF.safetensors | HF model card Trigger not working | Missing trigger tokens | Include both T shirt design and TShirtDesignAF in prompt | HF model card Wrong base model | Using SD 2.1 base | This variant requires SD 1.5 (runwayml/stable-diffusion-v1-5) | HF tags

FAQ

Q: Is this the same as the SD 2.1 version? A: No. This is the 1.5V variant for LiberteRedmond (SD 1.5). The Civitai page (ID 210325) shows the 2.1V variant for FreedomRedmond SD 2.1.

Q: Can I use this commercially? A: Yes, the bespoke license permits commercial use including rental, with derivatives allowed.

Q: What resolution works best? A: 512×512 or 768×768 in portrait orientation, matching the circular composition training.

Sources