SDXL Cute Fruits LoRA: Cartoon Fruit Faces Made Easy
CuteFruitsRedmond is an SDXL LoRA that turns fruit into funny cartoon characters with faces. Trigger word, settings, and usage inside.
On this page
SDXL Cute Fruits LoRA: Cartoon Fruit Faces Made Easy
CuteFruitsRedmond, by ArtificialGuyBR, is a Stable Diffusion XL LoRA purpose-built for one job: generating funny, cute images of fruits with faces. Instead of fighting prompts to get a strawberry to smile, you load the LoRA, type the trigger word, and get consistent cartoon fruit characters.
- Trigger word:
CtFruitsRedmAF— add it to any positive prompt. - Base model: SDXL 1.0, with Flux.2 Klein 9B, Qwen, and ZImageTurbo also listed on Civitai.
- Best for: character-style fruit art, stickers, game assets, and playful illustrations.

What the model does
The LoRA was trained on a large dataset of fruits with faces and fine-tuned on SDXL 1.0, per the HuggingFace model card. Gallery output shows the signature result: bright, toy-like 3D renders of fruit characters with big expressive faces — the kind of image you'd expect on a sticker sheet or a kids' app. Because it's a LoRA rather than a full checkpoint, the base model's general capabilities stay intact and you can blend the style with whatever prompts you already know.
The model card credits GPU time from Redmond.AI for the training run, which is where the "Redmond" in the name comes from.

How to use it
ComfyUI
- Download the LoRA from the HuggingFace model page or Civitai.
- Drop the file into your
models/lorasfolder. - Add a LoRA loader node, pick the base SDXL checkpoint, and connect it to your positive conditioning.
- Put
CtFruitsRedmAFin the positive prompt and describe the fruit: "CtFruitsRedmAF, a cheerful strawberry with big eyes, soft studio lighting".
If you're new to the node-based pipeline, our ComfyUI LoRA workflow guide walks through the loader, weight, and sampler basics.
Automatic1111 / ComfyUI WebUI
- Place the file in
stable-diffusion-webui/models/Lora. - Click the LoRA icon, or add
<lora:CuteFruitsRedmond:0.8>to the prompt. - Keep the trigger word in the prompt and generate with an SDXL checkpoint.
Diffusers
from diffusers import DiffusionPipeline
import torch
pipe = DiffusionPipeline.from_pretrained(
"stabilityai/stable-diffusion-xl-base-1.0", torch_dtype=torch.float16
).to("cuda")
pipe.load_lora_weights("artificialguybr/CuteFruitsRedmond")
image = pipe("CtFruitsRedmAF, a happy watermelon character").images[0]
Recommended settings
The card doesn't specify exact sampler or step recommendations, so start from standard SDXL LoRA defaults and tune from there:
- LoRA weight: 0.6–1.0. Start at 0.8.
- Steps: 25–35 for SDXL pipelines.
- Sampler: any SDXL-friendly sampler (DPM++ family, Euler a).
- Resolution: 1024×1024 native for SDXL.
- CFG: 4.5–7.0.
The fruit character style is forgiving, so moderate weights usually keep the fruit looking like fruit while the face stays consistent. For a full walkthrough of loader setups, see our Stable Diffusion LoRA guide.

Where it fits
If you generate a lot of cute character art, this LoRA is a fast shortcut: no prompt-wrestling to anthropomorphize fruit. It also pairs well with other style models — try stacking it with a sticker-style or clay-render LoRA to push the look further. Browse the rest of the cute LoRA collection for matching styles.
Common errors and fixes
Error | Cause | Fix | Source
|---|---|---|---
Style not activating | Trigger word missing | Add CtFruitsRedmAF to the positive prompt | Model card Distorted fruit | Wrong base model | Use SDXL 1.0 checkpoint; other bases (Flux, Qwen, ZImageTurbo) have their own loaders | Civitai base models Faces look wrong at low weight | LoRA weight too low | Raise weight toward 1.0 | Inference
FAQ
What is the trigger word? CtFruitsRedmAF. It appears in the model card as instance_prompt and in the Civitai trained words list.
What base model do I need? SDXL 1.0 is the training base. Civitai also lists Flux.2 Klein 9B, Qwen, and ZImageTurbo as compatible, but those use their own model formats.
Is it free to use? The HuggingFace card is licensed under creativeml-openrail-m; the Civitai page lists Apache 2.0. Check the base model's license too for commercial use.
Sources
- HuggingFace: artificialguybr/CuteFruitsRedmond — model card, trigger word, license, base model.
- Civitai: CuteFruitsRedmond — description, trained words, base model compatibility, download stats.