Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

SD. Next default true_cfg is 0

https://huggingface.co/Qwen/Qwen-Image

Code Block
model_name = "Qwen/Qwen-Image"

positive_magic = {
    "en": "Ultra HD, 4K, cinematic composition.", # for english prompt
    "zh": "超清,4K,电影级构图" # for chinese prompt
}
# Generate with different aspect ratios
aspect_ratios = {
    "1:1": (1328, 1328),
    "16:9": (1664, 928),
    "9:16": (928, 1664),
    "4:3": (1472, 1140),
    "3:4": (1140, 1472)
}

    prompt=prompt + positive_magic["en"],
    num_inference_steps=50,
    true_cfg_scale=4.0,
    manual_seed(42)



Other articles with this model are in

...