ArtificialGuyBR

Home / Blog / Models of 2026

Illustrious & NoobAI: Characters, Prompting, LoRA Training

Which anime characters Illustrious XL and NoobAI know natively, how to prompt them with Danbooru tags, and practical LoRA training settings that work.

9 sources cited Models of 2026

TL;DR


What These Models Are

Illustrious XL is an open-source SDXL derivative from OnomaAI Research. Unlike base SDXL (capped at 1024×1024), it generates natively at 1536×1536 and understands a hybrid prompt format: natural English plus Danbooru2023 tags. The project has iterated from v0.1 through v3.5 VPred; v2.0 STABLE introduced cosine annealing for more predictable rendering and is the version most LoRA trainers use as a base. For more on model versions, see internal version history.

NoobAI XL comes from Laxhar Dream Lab. It takes Illustrious and continues training on full Danbooru + e621 tag sets, shipping both ε-prediction (classic SDXL workflow) and v-prediction (richer color, sampler-specific) lines. The community reports broader artist-tag recall and stronger character coverage when you steer with style tags rather than relying on a baked-in look.

Which Characters Work Without a LoRA

The Civitai article "Illustrious XL (v0.1) Recognized Characters List" tested characters across franchises — Marvel, DC, Pokémon, Digimon, Mario, Zelda, Overwatch, Elden Ring, Transformers, Star Wars, Dragon Ball, Star Fox, Undertale, Beastars, League of Legends, and more — by prompting character_name (franchise) on WAI-illustrious-SDXL and Hoseki checkpoints. It color-codes recognition:

TierMeaning
GreenFully recognized, no LoRA needed
Light GreenRecognized but missing detail; LoRA may help
YellowBarely recognized; LoRA required
RedNot recognized; LoRA mandatory

Examples reported as Green: Spider-Man, Iron Man, Deadpool, Superman, Batman, Venom, Mario, Link, Ganondorf, Optimus Prime, Charizard, Lucario, Rayquaza, Kratos, The Mandalorian, Boba Fett. Pokémon and Digimon need an extra species tag: pokemon (creature) or digimon (creature).

The author notes that because Illustrious trains on a more recent dataset than Pony Diffusion XL, characters recognized by Pony are likely also recognized by Illustrious — but this is an inference, not a tested equivalence. The Pony list itself (Civitai article 5102) is larger and better maintained; Ponychar.com tracks it programmatically.


Prompt Syntax and Tag Order

Illustrious XL (Hybrid Prompting)

  1. Descriptive sentence — one or two clauses: A girl sitting in a cafe, sunlight through the window
  2. Danbooru tags — comma-separated specifics: 1girl, red hair, school uniform, coffee, blush
  3. Quality anchors (optional but common): masterpiece, best quality, highres

The model interprets both simultaneously. Tag order within the Danbooru block doesn't strictly matter for comprehension, but many users lead with subject (1girl), then appearance, then setting.

NoobAI XL (Tag-First Workflow)

NoobAI documentation explicitly recommends leading with quality/aesthetic tags:

masterpiece, best quality, 1girl, red hair, school uniform, cafe, sunlight

Then add character and artist tags for style control. The ε-pred line behaves like standard SDXL; the v-pred line needs v-prediction-aware settings.

Note: Exact v-pred sampler names should be found in the NoobAI official documentation or tested in practice, as v-prediction requires samplers configured for the v-pred architecture.

Negative Prompts (Both)

Standard anime negative embeddings work:

worst quality, low quality, bad anatomy, watermark, censored, jpeg artifacts, signature, fewer digits, extra digits, bad hands

For character LoRA training, add style conflicts you don't want baked in: 3d, cgi, render, plastic skin, glossy, ((3d model)).


LoRA Training Settings That Work

Settings below are drawn from two community guides (Civitai article 9148 and Civitai article 31875). Both use kohya_ss; one author explicitly advises against AI-Toolkit. Treat these as starting points — the only way to know what works for your dataset is to train, inspect, and adjust. For more training guides, see internal training resources.

Character LoRA (General)

ParameterValueSource
Base modelIllustrious XL v2.0 STABLE[31875]
UNET LR0.0003[9148]
Text Encoder LR0.00003[9148]
LR ratio (UNET:TE)10:1[9148]
Network Dim (Rank)64[9148]
Network Alpha32[9148]
OptimizerAdamW8bit[9148], [31875]
SchedulerConstant or Cosine with restart[9148]
Steps~1000–3000 (dataset-dependent)[9148]
Batch size1–4[9148], [31875]
Min SNR Gamma4[31875]
Noise Offset0.02[31875]

File size: Dim 64 / Alpha 32 ≈ 70 MB (based on Dim 64/Alpha 32 LoRA at SDXL scale per [9148]). For complex characters (armor, intricate outfits), some trainers drop to Dim 48 / Alpha 24.

Style / Artist LoRA

ParameterValueSource
Base modelIllustrious XL v2.0 STABLE[31875]
UNET LR0.00025[31875]
Text Encoder LR0.00007[31875]
Network Dim40[31875]
Network Alpha20[31875]
OptimizerAdamW8bit[31875]
Min SNR Gamma4[31875]
Noise Offset0.02[31875]

File size: Dim 40 / Alpha 20 ≈ 272 MB (reported by [31875]; not independently verified).

Trigger word: Do not use the artist's real name — base models already associate it with a style. Invent a unique token (e.g., style_of_artistname) or add descriptors like comic, flat color to captions where they apply.

Optimizer Notes

Dataset Preparation

  1. Count: 55–60 images minimum for style LoRAs; more is better. [31875]
  2. Sources (ranked by community preference): Twitter/X → Pixiv → Gelbooru → Rule34.us → hitomi.la / imhentai / pawchive for bulk downloads. Avoid rate-limited sites (e621, Rule34.xxx) unless you have tooling.
  3. Quality filter: No blur, no crops, no clutter, no style outliers. "Dataset congruence is the biggest factor." [31875]
  4. Tagging: Use CivitAI's on-site tagger (free) or JoyTag (some prefer it). Export captions as .txt files alongside images.
  5. Manual pass: Mandatory. Review every caption. Bad tags bake into the LoRA and are hard to remove.
  6. Negative captions (character LoRAs): Add a [Negative Prompt] line to each .txt with conflicting styles (3d, cgi, render...) so they don't leak into the adapter.

Common Errors and Fixes

SymptomFix
LoRA produces washed-out, low-contrast imagesAdd Noise Offset (0.02). Verify dataset has no style outliers. [31875]
Character features bleed into background or other subjectsLower Text Encoder LR. Keep UNET:TE ratio ≈ 10:1. [9148]
Training diverges or loss spikesLower learning rate. Switch to AdamW8bit. [9148], [31875]

FAQ

| LoRA file unexpectedly large | Reduce Network Dim; set Alpha to half of Dim. See Dim/Alpha table above. |

| Style LoRA doesn't match the intended artist | Use a unique trigger token; add style descriptors (comic, flat color) to captions. [31875] |

| Generations ignore Danbooru tags | Check prompt format: Illustrious uses sentence + tags; NoobAI prefers quality tags first. |

How does NoobAI XL differ from Illustrious XL? NoobAI is a fine-tune of Illustrious trained on Danbooru + e621 tags. It offers ε-pred and v-pred lines, deeper artist-tag recall, and rewards quality tags at prompt start. Illustrious is the more neutral base canvas; NoobAI is the "opinionated" derivative.

What tag order should I use for Illustrious prompting? Sentence first, then Danbooru tags: A girl in a cafe, 1girl, red hair, school uniform, coffee. NoobAI prefers quality tags first: masterpiece, best quality, 1girl, red hair...

How do I train a character LoRA for Illustrious XL? Base: Illustrious v2.0 STABLE. 55–60 clean images. Tag with CivitAI tagger, verify manually. kohya_ss, AdamW8bit, UNET LR 0.0003, TE LR 0.00003, Dim 64 / Alpha 32, batch 1–4, ~1000–3000 steps. Add negative captions for style conflicts.

Can I use Illustrious LoRAs on NoobAI XL? LustrousMix v2 (Hoseki) was merged with NoobAI models for compatibility. Community reports suggest most Illustrious LoRAs transfer, but v-pred NoobAI may need strength adjustment. Test before production. See LoRA compatibility guide for details.

What's the minimum dataset size for a usable LoRA? 55–60 images for style LoRAs per [31875]. Character LoRAs: no consensus minimum; use 55+ images for consistency. More data generally improves fidelity, but rank and training steps matter more than raw count alone.

Why does my LoRA look like 3D / plastic? 3D-style images slipped into the dataset or negative captions weren't used. Add 3d, cgi, render, plastic skin, glossy, ((3d model)) to per-image negative captions during training.


Sources