When PINNs Go Wrong: Pseudo-Time Stepping Against Spurious Solutions

arXiv cs.LG / 4/28/2026

📰 NewsIdeas & Deep AnalysisModels & Research

Key Points

  • The paper argues that PINNs can converge to physically incorrect (spurious) PDE solutions even when the training residual loss is small, due to a fundamental weakness of using only empirical PDE residual loss.
  • It revisits pseudo-time stepping and claims its key benefit is not just optimization easing; when paired with collocation-point resampling, it helps detect and avoid spurious solutions during training.
  • The authors find pseudo-time stepping’s success depends strongly on the pseudo step size, and this step size cannot be reliably tuned using training loss alone.
  • They propose an adaptive pseudo-time stepping method that chooses step size via a finite-difference surrogate of the local residual Jacobian to take the largest locally stable step without manual per-problem tuning.
  • Across multiple PDE benchmarks, the proposed adaptive strategy improves both accuracy and robustness, with accompanying code and data released on GitHub.

Abstract

Physics-informed neural networks (PINNs) provide a promising machine learning framework for solving partial differential equations, but their training often breaks down on challenging problems, sometimes converging to physically incorrect solutions despite achieving small residual losses. This failure, we argue, is not merely an optimization difficulty. Rather, it reflects a fundamental weakness of the empirical PDE residual loss, which can admit trivial or spurious solutions during training. From this perspective, we revisit pseudo-time stepping, a technique that has recently shown strong empirical success in PINNs. We show that its main benefit is not simply to ease optimization; instead, when combined with collocation-point resampling, it helps reveal and avoid spurious solutions. At the same time, we find that the effectiveness of pseudo-time stepping depends critically on the choice of step size, which cannot be tuned reliably from the training loss alone. To overcome this limitation, we propose an adaptive pseudo-time stepping strategy that selects the step size from a finite-difference surrogate of the local residual Jacobian, yielding the largest step permitted by local stability without per-problem tuning. Across a diverse set of PDE benchmarks, the proposed method consistently improves both accuracy and robustness. Together, these findings provide a clearer understanding of why PINNs fail and suggest a practical pathway toward more reliable physics-informed learning. All code and data accompanying this manuscript are available at https://github.com/sifanexisted/jaxpi2.