Summary
The paper proposes an approach for solving PDEs by using a low-rank parameterized NN.
While traditional PINNs are restricted to a single PDE instance, the authors use a hypernetwork to be able to solve PDEs with different parameters. The hypernetwork predicts the weights matrices of a PINN network in a low-rank fashion: each weight matrix is decomposed via SVD, and only the singular values diagonal matrix are modulated by the hypernetwork, while the other two matrices are shared across all the different PDEs. This allows quick inference on unseen PDEs, by learning only the diagonal terms.
Performance is evaluated on 1D-convection-reaction-diffusion and 2D-Helmholtz PDEs. It is shown that this low-rank hypernetwork architecture allows to learn on previous failure cases of the vanilla PINN (eg high convection or high reaction).
The hypernetwork method shows strong performance, compared to other meta-learning methods (MAML, Reptile), as well as other PINN variants.
Strengths
- The paper is well-written, and provides an extensive set of experiments and ablations showing the relevance of the low-rank decomposition, proposed loss terms and evaluate
- The performance of the proposed model is very competitive, while also providing much faster inference compared to the other meta-learning algorithms, and generalizing better than the other PINN variants
Weaknesses
- “low-rank PINNs containing only hundreds of model parameters” (l. 10): the parameter comparison seems unfair, since only the parameters learned during phase 2 are counted (not hypernetwork or basis vectors parameters)
- The adaptive rank (section K) in appendix is missing
Questions
- "For higher values (20), it appears that a higher rank is required to achieve a certain level of accuracy, presumably due to numerical reasons.” (l.503): what do you mean by numerical reasons?
- How does the proposed architecture scale to higher dimensions?
- How does the Phase 1 computation compare to the PINN variants?
Rating
6: Weak Accept: Technically solid, moderate-to-high impact paper, with no major concerns with respect to evaluation, resources, reproducibility, ethical considerations.
Confidence
3: You are fairly confident in your assessment. It is possible that you did not understand some parts of the submission or that you are unfamiliar with some pieces of related work. Math/other details were not carefully checked.
Limitations
The method is currently limited to generalizing to new PDE parameters only, it would be interesting to see if it can be extended to different initial / boundary conditions