# PhiZero: A World Model Built Around Physical Language

> PHiZERO achieves state-of-the-art physical video generation and understanding by learning a compact discrete physical language for explicit transition reasoning before rendering.

- **Source:** [arXiv](https://arxiv.org/abs/2607.28624)
- **Published:** 2026-08-01
- **Permalink:** https://picx.dev/p/tKHGyr
- **Whiteboard:** https://picx.dev/p/tKHGyr/image

## Summary

## Summary (Overview)

- **PHIZERO** introduces a **physical language** – a compact discrete representation of state-transition patterns learned from unlabeled in-the-wild videos via self-supervised learning.
- It adopts a **reason-then-render paradigm**: first infer future world evolution in physical-language space, then render the inferred transitions into videos.
- Two core components: a **Physical Language Tokenizer** (encoder with transition-level Q‑Former + FSQ quantization + diffusion decoder) and a **Physical Language Reasoner** (autoregressive VLM predicting physical‑language sequences).
- **Strong empirical results**: achieves top performance on physical video generation benchmarks (Physics‑IQ Verified, PhyGround, WorldModelBench) and competitive results on video understanding benchmarks (IntPhys2, LikePhys, YoCausal).
- **Broader applications**: supports fine‑grained action‑conditioned simulation, interactive rollouts, and zero‑shot motion transfer across embodiments and visual domains.

## Introduction and Theoretical Foundation

The paper is motivated by the observation that existing physical world models predict future videos directly in pixel space, leaving world dynamics implicit in high‑dimensional visual predictors. This often leads to physically inconsistent outcomes.

Inspired by human intelligence – where patterns from visual experience are abstracted into generalizable knowledge and organized via natural language for explicit reasoning – the authors ask: *Can we learn a finer‑grained representation of physical‑world transitions that enables explicit reasoning?*

The answer is **physical language**, a compact discrete representation of state‑transition patterns. Unlike natural language, which is too coarse for complex physical transitions, physical language captures the precise *how* of world evolution. PHIZERO is built around this representation: it reasons about world evolution in physical‑language space before rendering videos, separating dynamics inference from pixel synthesis.

## Methodology

### Problem Formulation
Let \(V\) be the future video, \(I_0\) the first frame, \(c\) the textual action intent, and \(z\) the discrete physical language describing the transition from \(I_0\) to \(V\). The prediction factorizes as:

$$
p_{\theta,\psi}(V, z \mid I_0, c) = p_{\theta}(z \mid I_0, c) \; p_{\psi}(V \mid I_0, z)
$$
where \(\theta\) is the Physical Language Reasoner and \(\psi\) the diffusion decoder (Eq. 1).

### Physical Language Tokenizer
- **Encoder with Transition‑level Q‑Former**: A spatiotemporal encoder extracts latent features. For each adjacent pair of latent states \((x_i, x_{i+1})\), a shared Q‑Former with \(M\) learnable queries extracts transition features \(q_i\) (Eq. 2). These are concatenated and quantized via **FSQ** (Finite Scalar Quantization) to obtain the discrete physical‑language sequence \(z\) (Eq. 3):
  $$
  z = \text{FSQ}(\text{Proj}_{\text{down}}(q))
  $$
- **Diffusion‑prior Decoder**: A pretrained video diffusion model (Wan2.2‑5B) is used as decoder. Only the text condition is replaced with the physical‑language context \(P_c\). The first frame \(I_0\) provides static appearance, encouraging the bottleneck to encode only state transitions. The decoder is fine‑tuned with LoRA using the flow‑matching objective (Eq. 4):
  $$
  \mathcal{L}_{\text{FM}} = \mathbb{E}_{x,\epsilon,\tau}\left[\left\| v_{\psi}(x_\tau, \tau; I_0, P_c) - (\epsilon - x_0) \right\|_2^2\right],
  \quad x_\tau = (1-\tau)x_0 + \tau\epsilon
  $$
- **Pure‑noise Warm‑up**: To prevent the decoder from ignoring the physical‑language context, future frames are initialized from pure noise in a warm‑up stage, forcing reliance on the physical‑language condition.
- **Data curation**: A hierarchical pipeline yields 10K hours for pretraining, 5M 4‑second clips for tokenizer SFT, and 1M motion‑rich clips for reasoner SFT. A curriculum progresses from 256×448 resolution and 1s clips to 512×896 and 4s.

### Physical Language Reasoner
- **Architecture**: Initialized from a pretrained VLM (Qwen3‑VL‑4B) with vocabulary extended to include one atomic symbol per FSQ index (25K symbols). It autoregressively predicts a length‑\(N\) physical‑language sequence \(z\) (Eq. 5):
  $$
  p_\theta(z \mid I_0, c) = \prod_{j=1}^{N} p_\theta(z_j \mid I_0, c, z_{<j})
  $$
- **Training**: Optimized with cross‑entropy (Eq. 6) under teacher forcing. Two‑stage training: continued pretraining on 5M general clips, then SFT on 1M motion‑rich and physically informative clips.

## Empirical Validation / Results

### Main Results on Video Generation Benchmarks

| Benchmark | Metric | PHIZERO | Best Baseline |
|-----------|--------|---------|---------------|
| Physics‑IQ Verified (Table 1) | IQ‑Score ↑ | **41.2** | 39.5 (Cosmos3‑Super) |
| PhyGround (Table 2) | Overall ↑ | **2.97** | 2.95 (Wan2.2‑14B) |
| WorldModelBench (Table 3) | Total ↑ | **8.19** | 8.08 (Runway) |

PHIZERO achieves **best scores** on all three generation benchmarks, demonstrating superior physical outcome fidelity, physical‑law adherence, and general world‑modeling ability.

### Main Results on Video Understanding Benchmarks

| Benchmark | Metric | PHIZERO | Best Baseline |
|-----------|--------|---------|---------------|
| IntPhys2 (Table 4) | Overall ↑ | **56.34** | 55.63 (Gemini‑2.5 Flash) |
| LikePhys (Table 5) | Avg. Error ↓ | **41.7** | 43.6 (Hunyuan‑Video) |
| YoCausal (Table 6) | Agg. Rank ↓ | **2.0** | 3.5 (Wan2.1‑14B) |

PHIZERO shows strong physical plausibility discrimination, identifying physically valid videos in pairwise comparisons via likelihood comparison in physical‑language space.

### Tokenizer Reconstruction Quality (Table 7)

| Model | Tokens ↓ | PSNR ↑ | SSIM ↑ | LPIPS ↓ |
|-------|----------|--------|--------|---------|
| Wan2.2‑5B VAE | 44,800 | 37.7 | 0.957 | 0.042 |
| **PHIZERO (Ours)** | **256** | **28.9** | **0.903** | **0.087** |
| VideoFlexTok (k=64) | 576 | 26.5 | 0.870 | 0.167 |

Using only **256 discrete tokens** (vs. 44,800 continuous), PHIZERO achieves the best reconstruction among compressed tokenizers.

### Ablation Studies

| Component (Table 8) | PSNR ↓ |
|---------------------|--------|
| w/o diffusion decoder | 26.6 |
| w/o transition Q‑Former | 28.2 |
| w/o pure‑noise warm‑up | 27.9 |
| **Full** | **28.9** |

| Reasoner (Table 9) | IQ‑Score ↑ |
|--------------------|------------|
| Wan2.2‑5B + prompt enhancement | 26.6 |
| Ours w/o simulation data | 37.7 |
| Ours w/o two‑stage training | 39.2 |
| **Ours (Full)** | **41.2** |

### Qualitative Results
Figures 4, 7, and 8 illustrate that PHIZERO generates physically coherent outcomes (collision, deformation, chain reactions, shadows), supports fine‑grained action conditioning (driving trajectories, gripper poses), and enables zero‑shot motion transfer across embodiments (human→humanoid, human hand→dexterous hand) and sim‑to‑real.

## Theoretical and Practical Implications

- **Physical language** provides an explicit, compact, and appearance‑disentangled representation of state transitions that can be reasoned over, evaluated, and transferred.
- The **reason‑then‑render** paradigm separates dynamics inference from pixel synthesis, enabling more physically consistent generation and a natural way to condition on actions.
- **Practical applications** include physically realistic video generation, fine‑grained action‑conditioned simulation for robotics and autonomous driving, interactive world models under sequential control, and zero‑shot cross‑embodiment motion transfer (reducing need for paired data).
- The success of simulator‑generated data in improving real‑world video generation suggests potential for scaling physical language with synthetic data.

## Conclusion

PHIZERO introduces **physical language** – a compact discrete representation of state‑transition patterns learned from in‑the‑wild videos – and builds a world model around it using a reason‑then‑render paradigm. Extensive experiments demonstrate physically coherent generation and understanding, while the explicit representation enables controllable simulation, interactive rollouts, and zero‑shot motion transfer. Future work includes integrating physical language into VLMs for spatiotemporal understanding, scaling to long‑horizon modeling via hierarchical prediction, and expanding to larger backbones and diverse training corpora. The authors also note limitations: the empirical nature of physical language (not explicitly grounded in physical laws), coverage constrained by visual observability, and current model scale.

---

_Markdown view of https://picx.dev/p/tKHGyr, served by PicX — AI-generated visual whiteboard summaries of research papers._
