---
title: 'NewtonRewards: Physics-Guided Video Generation'
url: https://www.emergentmind.com/topics/newtonrewards
type: topic
---

# NewtonRewards: Physics-Guided Video Generation

NewtonRewards is a physics-grounded post-training framework designed to improve physical realism in video generation models. It operates by leveraging verifiable, rule-based rewards derived entirely from measurable proxies extracted from generated videos. The system is characterized by its explicit enforcement of Newton's laws without reliance on human or VLM feedback. NewtonRewards demonstrates substantial gains in both physical plausibility and visual fidelity across canonical Newtonian motion primitives, and generalizes effectively under out-of-distribution physical parameters [2512.00425].

## 1. Measurable Proxies for Physical Quantities

NewtonRewards utilizes two frozen utility models to estimate proxies for physical variables directly from video frames:
- **Optical-Flow Model ($\Psi$):** Computes per-frame pixel displacement fields, $\boldsymbol\phi_t = \Psi(V_t, V_{t+1}) \in \mathbb{R}^{H\times W\times 2}$. Under a fixed frame rate ($\mathrm{FPS}$), the velocity proxy is defined as $\mathbf{v}_t \approx \frac{\boldsymbol\phi_t}{\Delta t}$, where $\Delta t=1/\mathrm{FPS}$.
- **Video Encoder ($M_{\rm mass}$):** Produces high-level appearance embeddings, $\mathbf{z}_t = M_{\rm mass}(V_t) \in \mathbb{R}^d$, interpreted as a proxy for the object's effective mass. Objects with similar visual appearances are assumed to possess similar inertial properties.

These proxies are fully differentiable, enabling gradient-based optimization and direct enforcement of physical constraints in pixel space.

## 2. Verifiable Physics Rewards

NewtonRewards defines two complementary loss functions, computed exclusively from the above-mentioned proxies:
- **Newtonian Kinematic Constraint (Constant Acceleration):** In accordance with Newton's second law, image-plane acceleration ($\mathbf{a}$) should remain invariant under constant force. The discrete second difference of the displacement proxies,
  $$
  \boldsymbol\phi_{t+1} - 2\,\boldsymbol\phi_t + \boldsymbol\phi_{t-1} = \mathbf{0},
  $$
  yields the kinematic residual:
  $$
  \mathcal{R}_{\rm kinematic} = \frac{1}{T-2}\sum_{t=1}^{T-1} \left\| \boldsymbol\phi_{t+1} - 2\,\boldsymbol\phi_t + \boldsymbol\phi_{t-1} \right\|^2_2.
  $$
- **Mass-Conservation Reward:** Avoids degenerate solutions (velocity collapse) by matching generated appearance embeddings to those of physics-simulated reference clips. Denoting $\mathbf{z}^{\rm sim}_t$ as simulator embeddings,
  $$
  \mathcal{R}_{\rm mass} = \frac{1}{T}\sum_{t=1}^T \left\| \mathbf{z}^{\rm gen}_t - \mathbf{z}^{\rm sim}_t \right\|^2_2.
  $$
Minimization of $\mathcal{R}_{\rm mass}$ maintains object persistence and non-zero motion, counteracting reward gaming effects such as object freezing.

## 3. Post-Training Workflow

The framework applies a succinct post-training phase to a pre-trained video diffusion generator ($G_\theta$), utilizing the NewtonBench-60K synthetic benchmark:
- Sample noise and conditioning code to generate video $V=G_\theta(\epsilon,c)$.
- Extract $\{\boldsymbol\phi_t\}$ via $\Psi$ and $\{\mathbf{z}_t^{\rm gen}\}$ via $M_{\rm mass}$.
- Compute the combined physical loss:
  $$
  \mathcal{L}_{\rm phys} = \lambda_{\rm kin}\,\mathcal{R}_{\rm kinematic} + \lambda_{\rm mass}\,\mathcal{R}_{\rm mass}.
  $$
- Backpropagate gradients through the generator; utility models remain frozen.
- Update generator parameters using AdamW (typical learning rate $10^{-5}$) for thousands of iterations.

The reward signal is entirely derived from pixel-level measurements, ensuring complete verifiability and reproducibility.

## 4. NewtonBench-60K Benchmark

NewtonBench-60K serves as the evaluation backbone, comprising 60,000 clips generated using Kubric, PyBullet, and Blender. It covers five canonical Newtonian motion primitives:
1. Free fall
2. Horizontal throw
3. Parabolic throw
4. Sliding down an inclined ramp (with friction)
5. Sliding up an inclined ramp

Training utilizes 50,000 clips (10,000 per primitive). The 10,000-clip test set is partitioned into in-distribution (ID) and out-of-distribution (OOD) bands, stressing model generalization across variables such as drop height ($[0.5,1.5]$ m vs $[1.6,2.5]$ m), throw speed ($[2,6]$ m/s vs $[6.5,8]$ m/s), ramp angle ($[15^\circ,45^\circ]$ vs $(45^\circ,60^\circ]$), and friction ($\pm25\%$ perturbation). Metrics encompass both visual fidelity (trajectory L2 error, Chamfer distance, IoU) and physical plausibility (velocity RMSE, acceleration RMSE).

## 5. Empirical Performance and Analysis

NewtonRewards outperforms baseline and prior post-training strategies (e.g., OpenSora SFT, PISA-OF) across all motion primitives and metrics on both ID and OOD splits. Representative results from Table 1 are:

| Method         | L2 ↓  | CD ↓  | IoU ↑   | RMSE₍v₎ ↓   | RMSE₍a₎ ↓   | Avg Δ      |
|----------------|-------|-------|---------|-------------|-------------|------------|
| SFT            |0.1098 |0.3159 |0.1103   |0.2792       |3.3244       |—           |
| PISA-OF        |0.1042 (+5.1%)|0.2963 (+6.2%)|0.1179 (+6.9%)|0.2799 (–0.3%)|2.7217 (+18.1%)|+7.6%     |
| NewtonRewards  |0.0962 (+12.4%)|0.2930 (+7.2%)|0.1266 (+14.8%)|0.2628 (+5.9%)|3.0432 (+8.5%)|+9.8%     |

NewtonRewards maintains an average $+8.6\%$ improvement on the OOD split. Ablation without the mass constraint produces “reward hacking”: the kinematic residual falls, but velocity magnitude collapses by $66\%$, leading to reduced motion realism.

Qualitatively, NewtonRewards yields straight, smooth trajectories in free-fall, maintains stable contact and deceleration on ramps, and uniquely recovers correct ballistic arcs in throws. Residual field diagnostics show near-zero mean for $\phi_{t+1}-2\phi_t+\phi_{t-1}$, whereas baselines exhibit structured violations indicative of unphysical motion.

## 6. Strengths, Limitations, and Future Research

**Strengths:**  
- Direct, explicit enforcement of Newton's laws via verifiable, deterministic rewards.
- Generalizable approach: any physical law and proxy model can yield a differentiable reward.
- Robustness across diverse single-object motion primitives; stable performance under OOD scenarios.
- Lightweight post-training procedure—no simulator–generator coupling at inference.

**Limitations:**  
- Dependency on frozen metric proxies (optical flow, appearance embeddings), which may introduce noise.
- Limited to simple, single-object physical scenarios; does not address collisions, multi-body, or deformable object dynamics.
- Appearance-based mass proxy is coarse, lacking sensitivity to true mass or density variations.

**Suggested Directions:**  
- Extension to multi-object scenarios, enforcing collision and momentum conservation.
- Integration of additional physical constraints (energy conservation, rotational dynamics, drag).
- Refinement of proxy models (e.g., inclusion of depth, segmentation, learned 3D pose).
- Application to real-world videos via fine-tuned proxy models.
- Exploration of continuous ODE- or Hamiltonian-network constraints within latent spaces.

*This suggests that physics-aware video generation can be achieved without human supervision by grounding learning signals in deterministic, pixel-level measurements and rule-based rewards. A plausible implication is that broader classes of generative models may benefit from similar verifiable, physics-guided constraints, closing the gap between visual realism and actual physical plausibility in synthetic videos* [2512.00425].

Source: https://www.emergentmind.com/topics/newtonrewards