Views
No views yet
r=128, lora_alpha=128, bias=none, init=gaussianto_q/k/v, add_q/k/v_proj,
to_out.0, to_add_out) + MLP/modulation
(img_mlp.net.2, img_mod.1, txt_mlp.net.2, txt_mod.1)witcher3_velen dataset
(~10k samples after repetitions); final checkpoint at step 2120pipe._get_qwen_prompt_embeds)FlowMatchScheduler (vendored) with shift=3.0,
20 steps, guidance_scale=1.01import torch
2from diffusers import QwenImagePipeline
3
4pipe = QwenImagePipeline.from_pretrained(
5 "Qwen/Qwen-Image-2512", torch_dtype=torch.bfloat16
6).to("cuda")
7pipe.load_lora_weights("PNW-GM/qwen-image-witcher3-velen-lora")
8
9# Vendored DiffSynth FlowMatchScheduler with shift=3.0 is recommended.
10# See the training repo for the exact scheduler swap.
11
12image = pipe(
13 prompt="aerial cartographic view of a marshland village in the Velen style",
14 num_inference_steps=20,
15 guidance_scale=1.0,
16).images[0]
17image.save("velen.png")