Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -96,16 +96,16 @@

# QwenImage (text-to-image) — default-setting LPIPS golden.
# Params mirror the QwenImage 20B reference defaults (pipeline_qwen_image.py).
# NOTE: QwenImage's forward CFG knob is ``true_cfg_scale`` (not ``guidance_scale``),
# and real-CFG only engages when a negative prompt is supplied.
# NOTE: QwenImage's forward CFG knob is ``negative_prompt_cfg_scale`` (not
# ``guidance_scale``), and negative-prompt CFG only engages when it is > 1.0.
QWENIMAGE_MODEL_SUBPATH = "qwen-image"
QWEN_IMAGE_EDIT_MODEL_SUBPATH = "Qwen-Image-Edit-2511"
QWENIMAGE_LPIPS_PROMPT = "a tiny astronaut hatching from an egg on the moon"
QWENIMAGE_LPIPS_NEGATIVE_PROMPT = ""
QWENIMAGE_LPIPS_HEIGHT = 1328
QWENIMAGE_LPIPS_WIDTH = 1328
QWENIMAGE_LPIPS_NUM_INFERENCE_STEPS = 50
QWENIMAGE_LPIPS_TRUE_CFG_SCALE = 4.0
QWENIMAGE_LPIPS_NEGATIVE_PROMPT_CFG_SCALE = 4.0
QWENIMAGE_LPIPS_SEED = 42
QWENIMAGE_LPIPS_THRESHOLD = 0.05
QWEN_IMAGE_LAYERED_LPIPS_PROMPT = ""
Expand Down Expand Up @@ -890,7 +890,7 @@ def _generate_qwenimage_lpips_image(model_path, output_path, *, enable_cuda_grap
height=QWENIMAGE_LPIPS_HEIGHT,
width=QWENIMAGE_LPIPS_WIDTH,
num_inference_steps=QWENIMAGE_LPIPS_NUM_INFERENCE_STEPS,
true_cfg_scale=QWENIMAGE_LPIPS_TRUE_CFG_SCALE,
negative_prompt_cfg_scale=QWENIMAGE_LPIPS_NEGATIVE_PROMPT_CFG_SCALE,
seed=QWENIMAGE_LPIPS_SEED,
)
generated_image = result.image[0].detach().cpu()
Expand Down
2 changes: 0 additions & 2 deletions tests/integration/test_lists/waives.txt
Original file line number Diff line number Diff line change
Expand Up @@ -137,8 +137,6 @@ examples/test_ray.py::test_ray_disaggregated_serving[tp2] SKIP (https://nvbugs/5
examples/visual_gen/test_visual_gen.py::test_cosmos3_nano_t2i_lpips_against_golden SKIP (https://nvbugs/6418815)
examples/visual_gen/test_visual_gen.py::test_cosmos3_nano_t2v_lpips_against_golden SKIP (https://nvbugs/6437341)
examples/visual_gen/test_visual_gen.py::test_ltx2_cuda_graph_trtllm_backend SKIP (https://nvbugs/6463822)
examples/visual_gen/test_visual_gen.py::test_qwenimage_cuda_graph_lpips_against_golden SKIP (https://nvbugs/6550126)
examples/visual_gen/test_visual_gen.py::test_qwenimage_lpips_against_golden SKIP (https://nvbugs/6550126)
examples/visual_gen/test_visual_gen.py::test_wan22_t2v_lpips_against_golden SKIP (https://nvbugs/6535765)
examples/visual_gen/test_visual_gen_multi_gpu.py::test_wan22_t2v_lpips_against_golden_multi_gpu[cfg2_ulysses2] SKIP (https://nvbugs/6535765)
examples/visual_gen/test_visual_gen_multi_gpu.py::test_wan22_t2v_lpips_against_golden_multi_gpu[ulysses4] SKIP (https://nvbugs/6535765)
Expand Down
Loading