PDE-Refiner (2023)

PDE-Refiner: Iterative Refinement for PDE Forecasting and Reconstruction
(see paper)

Refinement Residual correction Rollout stability
Quick facts

Type: iterative refinement (diffusion-like)
Targets long-horizon rollouts
Strong on chaotic PDEs

← Research · Home

TL;DR

PDE-Refiner wraps an existing neural PDE solver with an iterative correction mechanism. Given an initial prediction, a refiner network predicts corrections based on the current state and (optionally) PDE residual/constraints, improving accuracy and long-horizon stability.

Problem

Neural PDE solvers often accumulate error during rollouts or when asked to reconstruct missing data. Training a single forward pass model can be insufficient for high accuracy across many steps. PDE-Refiner targets this by explicitly learning a correction step that can be applied repeatedly.

Benefits vs others

Interesting detail

Core method (math)

Template for SciML. Paper-specific equations are added when manually curated.

\[u^{(0)} = G_\theta(\text{input})\quad\text{(base predictor)}\] \[r^{(k)} = F(u^{(k)})\quad\text{(PDE residual)}\] \[\Delta u^{(k)} = R_\phi\big(u^{(k)}, r^{(k)}, c\big)\] \[u^{(k+1)} = u^{(k)} + \Delta u^{(k)}\quad\text{(iterative refinement)}\] \[\mathcal{L} = \sum_{k=0}^{K-1} \|u^{(k)}-u^\*\|^2 + \lambda\|F(u^{(k)})\|^2\quad\text{(unrolled training, example)}\]

Main theoretical contribution

Main contribution

Main results (headline)

(Optional) Add main_results for a quick headline summary.

Experiments

PDE problems

  • Kuramoto–Sivashinsky
  • Kolmogorov flow

Tasks

  • Long-horizon rollout forecasting
  • Partial reconstruction

Experiment setting (high level)

  • Iterative refine steps at inference; can be paired with neural operators.
  • Evaluates stability/accuracy for long rollouts on chaotic PDEs.

Comparable baselines

Main results

Key results

BenchmarkMetricReported takeaway
KS long rolloutsTrajectory errorRefinement reduces drift vs one-shot operator baselines.
Kolmogorov flowRollout stabilityImproves long-horizon stability without retraining the base solver.

Citation (BibTeX)

@article{pderefiner2023,
  title={PDE-Refiner: Iterative Refinement for PDE Forecasting and Reconstruction},
  author={...},
  journal={arXiv preprint arXiv:2308.05732},
  year={2023}
}