Views
No views yet
| Model | Physics-IQ ↑ | PhyCo cont. ST-IoU ↑ | PisaBench IoU ↑ / Chamfer ↓ |
|---|---|---|---|
| Wan2.2-I2V-A14B base | 31.75 | 0.097 | 0.018 / 0.275 |
| + this LoRA (a14b_2x) | 37.04 (+5.29) | 0.311 (3.2×) | 0.070 (3.9×) / 0.263 |
| PhysAlign paper (Full, w/ 3D) | 38.1 | — | — |
low_noise_expert/pytorch_lora_weights.safetensors — LoRA for transformer_2 (σ < 0.9)high_noise_expert/pytorch_lora_weights.safetensors — LoRA for transformer (σ ≥ 0.9)config_*.yaml — the exact training configsL = L_FM + 0.25 · L_Gram, margin 0.1, constant LR 1e-4, 3000 steps/expert.1# load the low-noise LoRA onto transformer_2 and the high-noise LoRA onto transformer
2pipe.transformer_2.load_lora_adapter("low_noise_expert/pytorch_lora_weights.safetensors")
3pipe.transformer.load_lora_adapter("high_noise_expert/pytorch_lora_weights.safetensors")
4# then run I2V as usual (432×768, 121 frames @24fps in our eval)