For the complete documentation index, see llms.txt. This page is also available as Markdown.

Krea2 Prompt Weight

Adjusting Prompt Weight in Krea 2

Note: This syntax applies specifically to Krea 2. Unlike SD/SDXL, Krea 2 does not support nested brackets or parentheses like ((word)) or [[word]].

1. Weight Syntax: Explicit Numerical Values (word:weight)

Instead of nesting brackets, Krea 2 uses explicit numerical ratios inside single parentheses to adjust prompt influence.

  • Emphasis (Increase Weight): Use values greater than 1.0.

    • (word:1.2) = Increases prompt weight to 1.2×

  • De-emphasis (Decrease Weight): Use values between 0.0 and 1.0.

    • (word:0.5) = Reduces prompt weight to 0.5×

2. Negative Weights: Direct Replacement for Negative Prompts

Krea 2 allow you to handle negative prompting directly within the main prompt line using negative numbers.

  • Negative Weight Syntax: (word:-weight)

    • (word:-0.5) = Lightly deprioritizes the concept.

    • (word:-1.0) = Standard negative suppression (equivalent to traditional Negative Prompt).

    • (word:-2.0) = Strong/Aggressive suppression (useful for stubborn artifacts, bad quality, or unwanted styles).

Key Benefit: You don't need a separate "Negative Prompt" text box; you can control both positive and negative attributes within a single prompt line.

For example, If you don't want to generate a woman as Japanese girl, you can add (japanese girl:-1) in your prompt.

If you click - on highlighted plain text, it will start at (word:-1.0) If you click ++ on highlighted plain text, it will start at (word:1.0)

Quick Reference Comparison (SD/SDXL vs. Krea 2)

Effect

SD / SDXL Syntax

Krea 2 Syntax

Emphasis

((word)) or (word:1.21)

(word:1.2)

De-emphasis

[word] or (word:0.9)

(word:0.5)

Negative Weight

Requires separate Negative Prompt box

(word:-1.0) (In main prompt)

Nested Syntax

Supported (((...))) / [[[...]]]

Not supported

Last updated