PILIR: Physics-Informed Local Implicit Representation
Paper: PILIR: Physics-Informed Local Implicit Representation Authors: Jianfeng Li, Feng Wang, Ke Tang arXiv: 2605.00385 | 2026-04-29
---
1. The Physics AI That "Only Learns the Smooth Part"
Consider using a physics-informed neural network (PINN) to solve a wave equation:
The PINN problem:
- Learns low-frequency (smooth) components well
- But high-frequency (detail) components converge extremely slowly
- Root cause: spectral bias
- Standard MLPs tend to learn low-frequency functions
- High-frequency details get "ignored"
- This is an inherent property of the network architecture
- The overall shape of the solution is right
- But the details are completely wrong
- Unacceptable in engineering practice
- Instead of fitting the entire solution with one global MLP
- The spatial domain is divided into local regions
- Each region gets its own implicit representation
- High-frequency details are confined to local regions
- Each local network only needs to learn local frequencies
- Avoiding the global spectral bias
- Every local representation satisfies the physical equations
- Continuity is maintained at boundaries
- The overall solution satisfies conservation laws
- Extend by simply adding more local regions
- Suitable for complex geometries
- Parallel computation
- Global MLP = viewing the world through a single photo
- Details are blurry
- PILIR = stitching together many photos
- Each photo focuses on a local area
- The whole picture is sharp
- Low frequencies prioritized
- High frequencies suppressed
- Details lost
- All parameters influence each other
- Adjusting one spot changes everything
- Hard to control locally with precision
- Each local region has an independent frequency range
- High frequencies are no longer high locally
- Much easier to learn
- Local adjustments don't affect the global solution
- Details can be finely tuned
- Accuracy improves
- Regions computed independently
- Naturally parallel
- Scalable
- Decompose the big problem
- Small problems are easy to solve
- Recombine the solutions
What is spectral bias?
Consequences:
---
2. PILIR: Local Implicit Representation
The paper proposes PILIR (Physics-Informed Local Implicit Representation):
Core idea: > Replace global representation with local representation to overcome spectral bias.
Technical approach:
1. Local implicit representation
2. Localization of high frequencies
3. Physical constraints
4. Scalability
An analogy:
---
3. Why Local Representation Beats Global Representation
Problems with global representation:
Spectral bias:
Global coupling:
Advantages of local representation:
Frequency decoupling:
Precise control:
Parallelism:
---
4. A Feynman-Style Takeaway: Global Understanding Starts from Local Precision
Feynman reportedly said:
> "If you can't break it into small pieces, you can't handle the big problem."
In physical simulation:
> "A global representation tries to swallow everything in one bite and only learns the 'rough shape.' PILIR's insight is to split the big problem into local subproblems, solve each one precisely, and stitch them together. That is the path from 'vaguely correct' to 'precisely correct.'"
This reflects the wisdom of divide and conquer:
5. Takeaways
If you work on physical simulation or high-frequency function fitting, ask yourself:
1. "Is my model affected by spectral bias?" 2. "Could a local representation capture the high-frequency details?" 3. "Does a divide-and-conquer strategy apply to my problem?" 4. "How should physical constraints be coordinated between local and global levels?"
PILIR reminds us: in physics-informed neural networks, local precision is more valuable than global vagueness.
When a PINN learns to divide and conquer—using local implicit representations to precisely characterize every small region—it evolves from an "approximate physicist" into a "precise physicist." In the universe of scientific computing, local beauty constitutes global truth.
In the physical world, details are not decoration—they are the essence.