Views
No views yet
black-forest-labs/FLUX.1-devto_q, to_k, to_v, to_out.0 · rank 64, alpha 64| Setting | Value |
|---|---|
| GRPO steps | 10 |
| Prompts / step | 1 |
| Samples / prompt (G) | 3 |
| Resolution | 512×512, 6 denoising steps |
| Optimizer | AdamW, lr 1e-4 |
| Clip ε / KL β | 0.2 / 0.04 |
| SDE noise σ | 0.15 |
| Prompts | Qwen-Image-Bench test split (1,000 prompts, dims_en) |
| Hardware | 1× A100 80GB · 670 s/step · 1.86 h |
| Metric | Value |
|---|---|
| Q-Judger parse rate | 1.000 (30/30 prompt–image pairs) |
| Gradient norm | 332 – 764 |
| Policy–reference KL | 0 → 256 |
| Mean reward | 32.11 ± 11.62 |
| OLS slope | +1.34/step (r² = 0.12, not significant) |
1from diffusers import FluxPipeline
2import torch
3
4pipe = FluxPipeline.from_pretrained(
5 "black-forest-labs/FLUX.1-dev", torch_dtype=torch.bfloat16
6).to("cuda")
7pipe.load_lora_weights("thedinaiym/judge-in-the-loop-flux-lora")
8
9image = pipe("a robot walking in Tokyo", num_inference_steps=20).images[0]