ArtificialGuyBR

Home / Blog / Training LoRAs

KidsBook Redmond LoRA: Children's Book Illustration for Qwen-Image

Generate consistent kids' book illustrations with Qwen-Image using the KidsBook Redmond LoRA. Trigger words, settings, and example images.

1 sources cited Training LoRAs

KidsBook Redmond LoRA for Qwen-Image: Children's Book Illustration Style

TL;DR

What This Model Does

KidsBook Redmond is a Low-Rank Adaptation (LoRA) trained on the Qwen-Image base model (Qwen/Qwen-Image-2512). It specializes in generating illustrations in the style of children's picture books — clean line work, vibrant but soft colors, expressive characters, and consistent scene composition across generations.

The model was created by ArtificialGuyBR with GPU compute sponsored by Redmond.AI. It's distributed as a Safetensors file compatible with the diffusers ecosystem.

Trigger Words

Include the following in your prompt to activate the style:

KidsRedmAF. Kids Book.

The HF model card lists both KidsRedmAF and Kids Book. as triggers; using both together yields the strongest style adherence.

Setting | Recommendation

|---|---

Base model | Qwen/Qwen-Image-2512 Interface | ComfyUI (recommended by author) LoRA weight | 0.7–1.0 (start at 0.8) Resolution | 1024×1024 or 1024×1536 Sampler | Euler a, DPM++ 2M Karras Steps | 20–30 CFG | 3.5–5.0 These are starting points; Qwen-Image responds well to lower CFG values than SDXL.

Example Images

Kids book illustration of a friendly animal character reading to children

Whimsical forest scene with child protagonist and woodland creatures

Cozy bedroom scene with storybook atmosphere and soft lighting

The samples show the model's characteristic style: gentle watercolor-like textures, expressive character faces, consistent color palettes, and compositions that feel like professional children's book spreads.

How to Use

  1. Load Qwen-Image-2512 as your base checkpoint
  2. Add a Load LoRA node, select the KidsBook Redmond .safetensors file
  3. Set LoRA strength to 0.8
  4. Include KidsRedmAF. Kids Book. in your positive prompt
  5. Generate

diffusers (Python)

from diffusers import DiffusionPipeline
import torch

pipe = DiffusionPipeline.from_pretrained(
    "Qwen/Qwen-Image-2512",
    torch_dtype=torch.bfloat16
).to("cuda")

pipe.load_lora_weights("artificialguybr/KIDSBOOK-REDMOND-QWENIMAGE")

prompt = "KidsRedmAF. Kids Book. A gentle bear reading a story to forest animals, soft watercolor style"
image = pipe(prompt, num_inference_steps=25, guidance_scale=4.0).images[0]

Automatic1111 / WebUI Forge

  1. Place the .safetensors file in models/Lora
  2. In the prompt, add <lora:KIDSBOOK-REDMOND-QWENIMAGE:0.8>
  3. Include trigger words: KidsRedmAF. Kids Book.
  4. Generate with Qwen-Image checkpoint selected

License

Apache License 2.0 — permits commercial use, modification, and distribution with attribution. See the HF model card for the full license text.

Common Errors and Fixes

Error | Cause | Fix | Source

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

"LoRA not found" / weights don't load | Wrong filename or path | Ensure the .safetensors file is in the correct LoRA folder for your UI | HF model card Style not appearing | Missing trigger words | Add KidsRedmAF. Kids Book. to the positive prompt | HF model card OOM on Qwen-Image | Model is large (~20 GB in bfloat16) | Use 8-bit quantization, offload to CPU, or reduce resolution | Qwen-Image docs Inconsistent characters across generations | LoRA weight too low or prompt too vague | Increase LoRA weight to 0.9–1.0, add more descriptive prompt details | Observation

FAQ

Q: Does this work with Qwen-Image-Edit or other Qwen variants? A: It was trained on Qwen-Image-2512 specifically. It may work on other Qwen-Image family models but results aren't guaranteed.

Q: Can I use this commercially? A: Yes, Apache 2.0 allows commercial use with attribution.

Q: What's the difference between this and the Storybook Redmond LoRA? A: Storybook Redmond targets SDXL/FLUX; KidsBook Redmond is built for Qwen-Image and focuses specifically on children's picture book aesthetics.

Q: Where can I download the Safetensors file? A: From the Files & versions tab on the HuggingFace model page.

Sources