Pith. sign in

REVIEW 3 major objections 5 minor 2 cited by

Transfer Learning in Physics-Informed Neural Networks: Full Fine-Tuning, Lightweight Fine-Tuning, and Low-Rank Adaptation

T0 review · 3 major / 5 minor · reviewed 2026-08-09 · deepseek-v4-flash

Pith's one-line read This paper claims that a PINN trained on one problem can be adapted to a related problem—different boundary conditions, materials, or geometries—through full fine-tuning or Low-Rank Adaptation, cutting convergence time and slightly…

desk verdict Useful systematic benchmark of transfer learning in PINNs, but the speed claim ignores source pretraining cost and the LoRA parameter counts don't add up; deserves a serious referee after major revision. read the letter →

arxiv 2502.00782 v1 pith:JYP6K7TZ submitted 2025-02-02 cs.LG

classification cs.LG
keywords physics-informedneuralnetworkstransferlearninglow-rankadaptationdeepenergymethodAIforPDEscomputationalmechanicsfine-tuning
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The reading

This paper asks whether a PINN trained on one PDE instance can be reused for a nearby instance, so that changes in boundary conditions, material laws, or geometry do not force training from scratch. It compares three parameter-transfer schemes—full fine-tuning, lightweight fine-tuning that freezes all but the last layer, and Low-Rank Adaptation (LoRA)—on strong-form PINNs for the Navier-Stokes Taylor-Green vortex and on the energy-form Deep Energy Method for a graded beam and a holed plate. The claim is that full fine-tuning and LoRA cut target convergence iterations substantially and slightly improve accuracy in most tested cases, while lightweight fine-tuning helps little because PINN networks lack the hierarchical features that make layer freezing effective. A secondary claim is that the optimal LoRA rank grows with the dissimilarity of source and target problems, and that training through an intermediate source problem can beat direct training at equal total iterations.

What carries the argument

The central machinery is parameter-based transfer learning: a network pretrained on a source problem provides the initial weights for a target problem, and adaptation follows one of three schemes. The named identity is LoRA, the low-rank update $W^* = W + \alpha AB$, which keeps pretrained weights fixed and trains a product of two low-rank matrices $A \in \mathbb{R}^{d \times r}$ and $B \in \mathbb{R}^{r \times m}$; rank $r$ acts as a dial interpolating between lightweight and full fine-tuning. The paper's efficiency analysis then shows why the expected savings are muted: since PINN losses require derivatives of the network output with respect to inputs, automatic differentiation rebuilds a computation graph of size growing with the PDE's derivative order, so freezing parameters or decomposing weight updates adds little wall-time benefit per epoch.

What would settle it

Run both pipelines end-to-end on identical hardware for one transfer pair (say Taylor-Green $\pi \to 2\pi$): train the source model to its reported stopping point, fine-tune to a fixed target error, and compare total wall time against training the target from scratch to the same error. If the transferred run is not faster, the paper's central convergence-speed claim is falsified.

Watch

Extended reading notes

Core claim

In the paper's own terms, the discovery is that parameter-based transfer learning generalizes across problem instances in both formulations of PINNs: initializing the target network with the source-domain weights and then applying either full fine-tuning or a LoRA low-rank update "significantly improve convergence speed while providing a slight enhancement in accuracy" across most scenarios. Lightweight fine-tuning—freezing the early layers and training only the last layer—performs worst in all three test groups, which the authors attribute to fully connected PINN networks not possessing the hierarchical feature extraction of CNNs. They also report that transferring from a high-frequency to a low-frequency Taylor-Green vortex works better than the reverse, and that LoRA's optimal rank increases as the source-target similarity decreases; with rank equal to the full matrix dimension, LoRA reduces to full fine-tuning.

Load-bearing premise

The load-bearing assumption is that the comparison should count only target-domain fine-tuning iterations and treat the source pretraining as free; if pretraining epochs are included in the total cost, the claimed speed advantage may narrow or disappear.

Editorial extensions

If this is right

  • Full fine-tuning should be the default transfer baseline for PINNs; in the tested cases it consistently reached a given target error in fewer iterations than training from scratch, and usually matched or beat the no-transfer error.
  • LoRA with a moderate rank (around 4) matches or exceeds full fine-tuning on the energy-form problems while training far fewer parameters, making it attractive when per-task storage or parameter efficiency matters.
  • Lightweight fine-tuning that freezes early layers is not a viable transfer strategy for PINNs; its measured error is often worse than no transfer at all.
  • The LoRA rank should be set according to source-target similarity: the paper's rank sweep suggests larger gaps call for larger ranks (up to around 56 when transferring from $\pi$ to $3\pi$), which a proposed cosine-similarity rule could eventually automate.
  • Training sequentially through source problems before the target—termed "scenario fusion"—can beat direct training at equal total iteration counts, implying that intermediate tasks act as useful warm starts.
  • The high-to-low frequency transfer asymmetry hints at a practical scheduling rule the authors leave implicit: when facing a family of problems ordered by difficulty, training on the hardest instance first and transferring down may compress total effort; a direct test would compare curricula ordered by increasing versus decreasing frequency.
  • The scenario-fusion result effectively describes a curriculum over tasks, and the paper's proposed cosine-similarity rank rule could be tested immediately by encoding a few hand-chosen problem features and comparing the predicted rank to the empirically optimal rank found in the paper's rank sweep.
  • The claim that transfer learning 'significantly improve convergence speed' has not been established on a total-compute basis; a fair end-to-end comparison would need to include the source pretraining epochs.
Share X Bluesky LinkedIn Reddit HN

Signed reviews

No signed human review yet.

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

3 major / 5 minor

Summary. The manuscript reports a systematic comparison of transfer learning strategies—full fine-tuning, lightweight fine-tuning, and Low-Rank Adaptation (LoRA)—applied to two flavors of physics-informed neural networks: the strong-form PINN for the Taylor-Green vortex with varying frequency parameter (boundary/initial conditions) and the energy-form Deep Energy Method for functionally graded beams (material property variation) and square plates with holes (geometry variation). The main reported findings are that full fine-tuning and LoRA substantially reduce the number of target-domain training epochs needed to reach a given accuracy and often yield slightly lower relative L2 and H1 errors, whereas lightweight fine-tuning performs poorly. The paper also discusses LoRA rank selection based on source-target similarity and proposes a scenario-fusion idea for improving PINN accuracy under a fixed total iteration budget.

Significance. The paper addresses a practically relevant question: whether pretraining on a related source PDE and adapting via full fine-tuning or LoRA can replace from-scratch training when boundary conditions, material fields, or geometries change. Its scope is broader than most prior studies because it covers both strong-form and energy-form formulations and three adaptation strategies. The positive features include a transparent experimental setup (architectures, optimizers, loss weights, and integration rules), per-epoch timing analysis in Tables 1–3, and an explicit total-iteration comparison in Section 5.2 for accuracy. If the speed claims survive a total-compute analysis, the paper would be a useful reference for practitioners considering transfer learning in PINNs. However, as written, the central speed claim is not yet supported by the reported data because source pretraining cost is excluded, and the absence of repeated-run statistics leaves the conclusions vulnerable to stochastic variation.

major comments (3)
  1. [§4.1–4.3, Tables 1–3] The headline claim that full fine-tuning and LoRA can significantly improve convergence speed is measured only by target-domain epochs or iterations. Transfer runs consume extra source pretraining: Section 4.2 states 100,000 source epochs, Section 4.3 states 60,000 source epochs, and Section 4.1 shows source training to 80,000 epochs, while Table 1 reports nearly identical per-epoch wall-clock times across methods (14.6–14.9 s per 1,000 epochs for the Navier-Stokes case). Under total-compute accounting (source pretraining plus target fine-tuning versus target-only training), the reported speed advantage can shrink or disappear. The paper should report time-to-threshold including source training, or an explicit amortization argument when one source is reused for multiple targets, before claiming 'significantly improve convergence speed'.
  2. [§4, Tables 1–3, Figures 9–20] All accuracy and convergence comparisons are single-run values with no error bars, seed counts, or significance tests. Statements such as 'significantly improve convergence speed' and the rank comparison in Figure 21 need repeated-run statistics (at least 3–5 independent runs) to separate systematic effects from initialization and sampling noise.
  3. [§4.1 and Table 1] The LoRA configuration is internally inconsistent. The text says LoRA 'only trains the layers [100, 100, 100, 100]' (four 100-dimensional layers), but the reported trainable-parameter counts (900, 2,700, and 60,300 for r=1, 4, and 100) correspond to three square layers including biases (3 × [r(100+100)+100]). This inconsistency affects the efficiency comparison and the claim that LoRA's parameter count is much smaller than full fine-tuning; please state exactly which weight matrices and biases LoRA modifies and recompute the parameter counts.
minor comments (5)
  1. [§4.1] The sentence 'Full finetuning refers to fully fine-tuning the pre-trained parameters' is duplicated.
  2. [Tables 2 and 3] The header 'Epoches' should be 'Epochs'.
  3. [§5.1 and Figure 21] The claim that the optimal LoRA rank correlates with source-target similarity is presented without a quantitative similarity measure; consider marking this as an observation rather than a concluded design rule.
  4. [§2.2 and §4.1] The text around Eq. (25) refers to 'solving Eq. (8)' when the pressure Poisson equation is meant, and the pressure variable is not included in the loss function Eq. (27); please clarify which equations are actually being solved.
  5. [Appendix D] The code is promised only 'after accepted'; for a reproducibility-focused empirical study, make the code available with the submission or provide a permanent repository link.

Circularity Check

0 steps flagged · score 0.0 of 10

No circular steps: the paper is an empirical transfer-learning benchmark whose measurements are compared against independent reference solutions; self-citations are methodological background only.

full rationale

The paper does not contain a derivation chain in which an output quantity is constructed from the quantity it claims to predict. The central claims, that full finetuning and LoRA improve convergence speed and slightly improve accuracy, are supported by direct, independently measured comparisons. For the Taylor-Green case, L2 errors are computed against the analytical solution of Eq. (26); for the DEM cases, errors are computed against IGA and Abaqus reference solutions (Figs. 12 and 17). Transfer and no-transfer runs use the same network, optimizer, and target-domain iteration counts (Tables 1-3), and the paper reports wall-clock times and trainable-parameter counts per method. No fitted parameter is renamed as a prediction: the LoRA rank r=4 is an explicitly studied hyperparameter, with rank sensitivity shown in Fig. 21, rather than a derived value. The numerous self-citations (DEM [1], integration choices [26,37], and the statement that the NS equations cannot be solved by the energy form [26]) are used for methodological motivation or experimental design; the present benchmarks validate the choices externally, and none of these citations is a uniqueness theorem or an unverified premise that forces the transfer-learning conclusion. The one notable weakness, that the convergence-speed claim counts only target-domain fine-tuning epochs and does not debit source pretraining cost, is a benchmarking fairness issue rather than circularity: the measured convergence curves are not defined in terms of the conclusion. No circular step can be exhibited under the required standard.

Assumptions & free parameters 5 free parameters · 4 assumptions · 0 invented entities

The paper introduces no new physical entities. Its central empirical claims rest on several hand-chosen hyperparameters (LoRA rank, scaling alpha, loss weights, learning rate) and on domain assumptions about the validity of the DEM admissible functions and the reference solutions. The most consequential assumption is the accounting choice that measures transfer speed on target iterations only, which is favorable to transfer learning.

free parameters (5)
  • LoRA rank r = r=4
    Chosen manually for all experiments except the rank sweep in Fig. 21; Section 5.1 admits no automatic rank selection and notes the optimal rank depends on domain similarity.
  • LoRA scaling factor alpha = 1
    Default value stated in Section 3.3; controls the weight between pretrained W and LoRA matrices AB.
  • Loss weights lambda = 1
    All loss weights in Eq. (27) are manually set to 1, stated in Section 4.1; no adaptive weighting or tuning is performed.
  • Adam learning rate = 0.001
    Fixed across all experiments for objective comparison, stated in Sections 4.1 and 4.2.
  • LoRA A/B initialization standard deviation = 0.02
    Gaussian initialization with mean 0 and standard deviation 0.02 stated in Section 3.3.
assumptions (4)
  • standard math The strong-form PINN loss in Eq. (5) is a valid weighted residual discretization of the target PDE system.
    Used to justify the Navier-Stokes experiments; this is the standard derivation in the PINN literature.
  • domain assumption The Deep Energy Method minimizes the potential energy L in Eq. (15), and the admissible functions in Eqs. (16), (34), and (36) satisfy the essential boundary conditions in advance.
    Underlies all DEM experiments. The distance network and explicit multiplier constructions are assumed to correctly enforce clamped or symmetry boundary conditions, though Eq. (36) is not fully specified against the plate boundary conditions described in the text.
  • domain assumption Reference solutions from isogeometric analysis (functionally graded beam) and Abaqus (plate with hole) are accurate enough to serve as ground truth for relative error computation.
    Used in Sections 4.2 and 4.3; no uncertainty estimates for the reference solutions are provided.
  • ad hoc to paper Transfer learning gains measured by target-domain iterations are the appropriate metric for convergence speed.
    Tables 1-3 compare transfer and no-transfer at equal target iteration counts while ignoring source pretraining epochs; this is the paper's speed metric and is not justified as a total-cost comparison.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Transfer Learning in Physics-Informed Neural Networks: Full Fine-Tuning, Lightweight Fine-Tuning, and Low-Rank Adaptation." pith.science (2026). https://pith.science/paper/JYP6K7TZ

@misc{pith2026250200782,
  author       = {Pith},
  title        = {Pith review of: Transfer Learning in Physics-Informed Neural Networks: Full Fine-Tuning, Lightweight Fine-Tuning, and Low-Rank Adaptation},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/JYP6K7TZ}},
  note         = {Machine review of arXiv:2502.00782}
}
read the original abstract

AI for PDEs has garnered significant attention, particularly Physics-Informed Neural Networks (PINNs). However, PINNs are typically limited to solving specific problems, and any changes in problem conditions necessitate retraining. Therefore, we explore the generalization capability of transfer learning in the strong and energy form of PINNs across different boundary conditions, materials, and geometries. The transfer learning methods we employ include full finetuning, lightweight finetuning, and Low-Rank Adaptation (LoRA). The results demonstrate that full finetuning and LoRA can significantly improve convergence speed while providing a slight enhancement in accuracy.

Figures

Figures reproduced from arXiv: 2502.00782 by the authors.

Figure 1
Figure 1. The strong form of Physics-informed neural networks (PINNs). The inputs x1, x2, · · · , t are typically spatial coordinates, while the outputs y1, · · · , yn are the network’s outputs, usually representing the variables of interest. We use the weighted residual method to transform these equations into their weighted residual form: (´ Ω [P (u(x)) − f(x)] · w(x)dΩ = 0 x ∈ Ω ´ Γ [B(u(x)) − g(x)] · w(x)dΓ = 0 x ∈ Γ , (2… view at source ↗
Figure 2
Figure 2. The energy form of Physics-informed neural networks (PINNs). The inputs x, y, z are typically spatial coordinates, while the outputs Ux, Uy, and Uz represent the displacement field u. The admissible displacement u˜(x; θ) is the displacement field u that satisfies the essential boundary conditions in advance. 2.2. PINNs: Energy Form We introduce the energy form of the Physics-Informed Neural Network (DEM: Deep Energy… view at source ↗
Figure 3
Figure 3. Categories of Transfer Learning [14] 3.1. Full Fine-Tuning The most common method for adapting pretrained models to downstream tasks is full fine-tuning, where all model parameters are fine-tuned [29]. However, this results in a full copy of fine-tuned model parameters for each task, which becomes prohibitively expensive when the models have a large number of trainable parameters [30]. Full fine-tuning is easy to un… view at source ↗
Figures from the paper (21 more)
Figure 4
Figure 4. Figure 4: Three common methods for Parameter-based transfer learning: (a) Full fine-tuning: fine-tune all parameters of the model, with the red arrows indicating the parameters that need fine-tuning. (b) Lightweight fine-tuning: fine-tune a subset of the model’s parameters, with…
Figure 5
Figure 5. Figure 5: Introduction to the Taylor-Green vortex: the velocity vector field at different values of frequency w. The flow pattern of the Taylor-Green vortex typically involves multiple vortex structures, where the size and distribution of the vortices exhibit high symmetry. Over…
Figure 6
Figure 6. Figure 6: Performance of PINNs in the strong form on the stream function: for different w values (w = 1.0 ∗ π, w = 2.0 ∗ π, and w = 3.0 ∗ π), at different times (t = 0.3, t = 0.6, and t = 1.0) t=0.3 t=0.6 t=1.0 w=1 w=2 w=3 exact solution PINNs prediction exact solution PINNs pre…
Figure 7
Figure 7. Figure 7: Performance of PINNs in the strong form on vorticity: for different w values (w = 1.0 ∗ π, w = 2.0 ∗ π, and w = 3.0 ∗ π), at different times (t = 0.3, t = 0.6, and t = 1.0) [PITH_FULL_IMAGE:figures/full_fig_p012_7.png]
Figure 8
Figure 8. Figure 8: Evolution of the relative error L2 of PINNs in the strong form on the stream function and vorticity Next, we are naturally curious about the generalization performance of transfer learning on the boundary conditions in PINNs’ strong form. For boundary condition general…
Figure 9
Figure 9. Figure 9: Evolution of the relative error L2 of transfer learning on the stream function in PINNs’ strong form: w = X → Y indicates that in PINNs, pre-training is performed on the source domain w = X, and then transfer learning is applied to the target domain w = Y . performs we…
Figure 10
Figure 10. Figure 10: Evolution of the relative error L2 of transfer learning on the vorticity in PINNs’ strong form: w = X → Y indicates that in PINNs, pre-training is performed on the source domain w = X, and then transfer learning is applied to the target domain w = Y [PITH_FULL_IMAGE…
Figure 11
Figure 11. Figure 11: Schematic of functionally graded porous beams: Both ends are clamped. The upper surface of the beam is subjected to a uniform load f = 1N/m. The symmetric and asymmetric porosity distributions are two different material distributions for functionally graded porous bea…
Figure 12
Figure 12. Figure 12: Prediction contour maps of the displacement field uy for symmetric (first column) and asymmetric (second column) porosity distributions using the PINNs energy form: The first row shows the reference solution obtained from isogeometric analysis; the second row shows th…
Figure 13
Figure 13. Figure 13: Comparison of relative displacement uy error L2 (left) and Von Mises stress error H1 (right) for symmetric and asymmetric porosity distributions using the PINNs energy form [PITH_FULL_IMAGE:figures/full_fig_p018_13.png]
Figure 14
Figure 14. Figure 14: Relative error evolution of L2 (uy) for material generalization in the PINNs energy form: Sym and Asym represent the symmetric and asymmetric porosity distributions, respectively. Sym → Asym indicates that the symmetric porosity distribution is the source domain, and …
Figure 15
Figure 15. Figure 15: Relative error evolution of H1 (Von Mises) for material generalization in the PINNs energy form: Sym and Asym represent the symmetric and asymmetric porosity distributions, respectively. Sym → Asym indicates that the symmetric porosity distribution is the source domai…
Figure 16
Figure 16. Figure 16: Schematic of the square plate with a hole: The left figure shows a square plate with a circular hole of radius 5 mm, and the plate has a side length of 20 mm. The load is a uniform load of 100 N/mm applied to the right boundary of the plate. The right figure shows a s…
Figure 17
Figure 17. Figure 17: Predicted displacement field (umag) and Von Mises stress for the square plate with a hole: The first row shows the reference solution computed using Abaqus, the second row shows the predicted solution from DEM, and the third row shows the absolute error. (a) (b) [PIT…
Figure 18
Figure 18. Figure 18: Evolution of the relative error for the displacement field L2 umag (a) and Von Mises stress H1 (b) for the square plate with a hole [PITH_FULL_IMAGE:figures/full_fig_p021_18.png]
Figure 19
Figure 19. Figure 19: Performance of transfer learning on the lines x = 0 and y = 0 for the square plate with a hole: (a, b, c) Transfer from the elliptical hole plate to the circular hole plate, where the "circle" curve represents the result without transfer learning. (d, e, f) Transfer f…
Figure 20
Figure 20. Figure 20: Evolution of the relative error for displacement (umag) and Von Mises stress under different transfer learning schemes for the square plate with a hole: (a) Evolution of the relative error for the displacement field of the circular hole plate. (b) Evolution of the rel…
Figure 21
Figure 21. Figure 21: Performance of different ranks in LoRA for PINNs: We vary the rank in LoRA as 1, 4, 8, 12, . . . , 96, 100 and observe the relative error L2 in 4.1. w = X → Y indicates that PINNs are pre-trained on w = X as the source domain and then fine-tuned on w = Y as the target…
Figure 22
Figure 22. Figure 22: Schematic for determining the rank r in LoRA iterations in the source domain followed by 100,000 iterations in the target domain yields higher accuracy than training for 200,000 iterations without transfer learning. Note that the total number of iterations remains the…
Figure 23
Figure 23. Figure 23: Scenarios showing the evolution of relative errors for displacement (left) and stress (right): Symmetric refers to training without transfer learning for 200,000 iterations. Asy → Sym refers to pre-training on the asymmetric porosity distribution (source domain) for 1…
Figure 24
Figure 24. Figure 24 [PITH_FULL_IMAGE:figures/full_fig_p026_24.png]

Discussion (0). Continue with ORCID to comment.

Forward citations

Cited by 2 Pith papers

Reviewed papers in the Pith corpus that reference this work. Sorted by Pith novelty score. Full citation record

  1. IP-Basis PINNs: Efficient Multi-Query Inverse Parameter Estimation

    cs.LG 2025-09 conditional novelty 5.0 of 10

    A pre-trained basis network enables fast multi-query inverse parameter estimation by fitting only a linear readout online, demonstrated on harmonic oscillators, Lotka-Volterra, and quantum harmonic oscillator.

  2. Physics-Informed Neural Networks in Clean Combustion: A Pathway to Sustainable Aerospace Propulsion

    physics.flu-dyn 2025-09 conditional novelty 3.0 of 10

    A review article argues physics-informed neural networks are a faster, more data-efficient route to clean combustion modeling, but its 'transformative' thesis is undercut by its own scaling caveats and duplicated sections.

Reference graph

Works this paper leans on

39 extracted references · 22 canonical work pages · cited by 2 Pith papers

  1. [1]

    Samaniego, C

    E. Samaniego, C. Anitescu, S. Goswami, V. M. Nguyen-Thanh, H. Guo, K. Hamdia, X. Zhuang, T. Rabczuk, An energy approach to the solution of partial differential equations in computational mechanics via machine learning: Concepts, imple- mentation and applications, Computer Methods in Applied Mechanics and Engineering 362 (2020) 112790

  2. [2]

    G. E. Karniadakis, I. G. Kevrekidis, L. Lu, P. Perdikaris, S. Wang, L. Yang, Physics-informed machine learning, Nature Reviews Physics 3 (6) (2021) 422–440.doi:10.1038/s42254-021-00314-5

  3. [3]

    S. Wang, H. Wang, P. Perdikaris, Learning the solution operator of parametric partial differential equations with physics- informed deeponets, Science advances 7 (40) (2021) eabi8605

  4. [4]

    Y. Wang, J. Bai, Z. Lin, Q. Wang, C. Anitescu, J. Sun, M. S. Eshaghi, Y. Gu, X.-Q. Feng, X. Zhuang, et al., Artificial intelligence for partial differential equations in computational mechanics: A review, arXiv preprint arXiv:2410.19843 (2024)

  5. [5]

    Yizheng, Z

    W. Yizheng, Z. Xiaoying, T. Rabczuk, L. Yinghua, Ai for pdes in solid mechanics: A review, Advances in Mechanics 54 (3) (2024) 1–57

  6. [6]

    Raissi, P

    M. Raissi, P. Perdikaris, G. E. Karniadakis, Physics-informed neural networks: A deep learning framework for solving forward and inverse problems involving nonlinear partial differential equations, Journal of Computational Physics 378 (2019) 686–707

  7. [7]

    L. Lu, P. Jin, G. Pang, Z. Zhang, G. E. Karniadakis, Learning nonlinear operators via deeponet based on the universal approximation theorem of operators, Nature Machine Intelligence 3 (3) (2021) 218–229.doi:10.1038/s42256-021-00302-5

  8. [8]

    Z. Li, N. Kovachki, K. Azizzadenesheli, B. Liu, K. Bhattacharya, A. Stuart, A. Anandkumar, Fourier neural operator for parametric partial differential equations, arXiv preprint arXiv:2010.08895 (2020)

Show all 39 references
  1. [9]

    Z. Li, H. Zheng, N. Kovachki, D. Jin, H. Chen, B. Liu, K. Azizzadenesheli, A. Anandkumar, Physics-informed neural operator for learning partial differential equations, ACM/JMS Journal of Data Science 1 (3) (2024) 1–27

  2. [10]

    M. S. Eshaghi, C. Anitescu, M. Thombre, Y. Wang, X. Zhuang, T. Rabczuk, Variational physics-informed neural operator (vino) for solving partial differential equations, arXiv preprint arXiv:2411.06587 (2024). 30

  3. [11]

    L. Yang, S. Liu, T. Meng, S. J. Osher, In-context operator learning with data prompts for differential equation problems, Proceedings of the National Academy of Sciences 120 (39) (2023) e2310142120

  4. [12]

    Desai, M

    S. Desai, M. Mattheakis, H. Joy, P. Protopapas, S. Roberts, One-shot transfer learning of physics-informed neural networks, arXiv preprint arXiv:2110.11286 (2021)

  5. [13]

    Y. Gao, K. C. Cheung, M. K. Ng, Svd-pinns: Transfer learning of physics-informed neural networks via singular value decomposition, in: 2022 IEEE Symposium Series on Computational Intelligence (SSCI), IEEE, 2022, pp. 1443–1450

  6. [14]

    Zhuang, Z

    F. Zhuang, Z. Qi, K. Duan, D. Xi, Y. Zhu, H. Zhu, H. Xiong, Q. He, A comprehensive survey on transfer learning, Proceedings of the IEEE 109 (1) (2020) 43–76

  7. [15]

    C. Xu, B. T. Cao, Y. Yuan, G. Meschke, Transfer learning based physics-informed neural networks for solving inverse problems in engineering structures under different loading scenarios, Computer Methods in Applied Mechanics and Engineering 405 (2023) 115852

  8. [16]

    H. Guo, X. Zhuang, P. Chen, N. Alajlan, T. Rabczuk, Analysis of three-dimensional potential problems in non-homogeneous media with physics-informed deep collocation method using material transfer learning and sensitivity analysis, Engineering with Computers 38 (6) (2022) 5423–5444

  9. [17]

    Chakraborty, C

    A. Chakraborty, C. Anitescu, X. Zhuang, T. Rabczuk, Domain adaptation based transfer learning approach for solving pdes on complex geometries, Engineering with Computers 38 (5) (2022) 4569–4588

  10. [18]

    X. Chen, C. Gong, Q. Wan, L. Deng, Y. Wan, Y. Liu, B. Chen, J. Liu, Transfer learning for deep neural network-based partial differential equations solving, Advances in Aerodynamics 3 (2021) 1–14

  11. [19]

    Haghighat, M

    E. Haghighat, M. Raissi, A. Moure, H. Gomez, R. Juanes, A physics-informed deep learning framework for inversion and surrogate modeling in solid mechanics, Computer Methods in Applied Mechanics and Engineering 379 (2021) 113741.doi: 10.1016/j.cma.2021.113741

  12. [20]

    Goswami, C

    S. Goswami, C. Anitescu, S. Chakraborty, T. Rabczuk, Transfer learning enhanced physics informed neural network for phase-field modeling of fracture, Theoretical and Applied Fracture Mechanics 106 (2020) 102447

  13. [21]

    Chakraborty, Transfer learning based multi-fidelity physics informed deep neural network, Journal of Computational Physics 426 (2021) 109942

    S. Chakraborty, Transfer learning based multi-fidelity physics informed deep neural network, Journal of Computational Physics 426 (2021) 109942

  14. [22]

    E. J. Hu, Y. Shen, P. Wallis, Z. Allen-Zhu, Y. Li, S. Wang, L. Wang, W. Chen, Lora: Low-rank adaptation of large language models, arXiv preprint arXiv:2106.09685 (2021)

  15. [23]

    Majumdar, V

    R. Majumdar, V. Jadhav, A. Deodhar, S. Karande, L. Vig, V. Runkana, Hyperlora for pdes, arXiv preprint arXiv:2308.09290 (2023)

  16. [24]

    W. Cho, K. Lee, D. Rim, N. Park, Hypernetwork-based meta-learning for low-rank physics-informed neural networks, Advances in Neural Information Processing Systems 36 (2023) 11219–11231

  17. [25]

    Fung, Foundations of solid mechanics

    Y. Fung, Foundations of solid mechanics. 1965, Englewood Cliffs, NJ 436 (2010)

  18. [26]

    Y. Wang, J. Sun, J. Bai, C. Anitescu, M. S. Eshaghi, X. Zhuang, T. Rabczuk, Y. Liu, Kolmogorov arnold informed neural network: A physics-informed deep learning framework for solving forward and inverse problems based on kolmogorov–arnold networks, Computer Methods in Applied M...

  19. [27]

    Zhang, L

    X. Zhang, L. Wang, J. Helwig, Y. Luo, C. Fu, Y. Xie, M. Liu, Y. Lin, Z. Xu, K. Yan, et al., Artificial intelligence for science in quantum, atomistic, and continuum systems, arXiv preprint arXiv:2307.08423 (2023)

  20. [28]

    Y. Wang, J. Sun, W. Li, Z. Lu, Y. Liu, Cenn: Conservative energy method based on neural networks with subdomains for solving variational problems involving heterogeneous and complex geometries, Computer Methods in Applied Mechanics and Engineering 400 (2022) 115491

  21. [29]

    J. He, C. Zhou, X. Ma, T. Berg-Kirkpatrick, G. Neubig, Towards a unified view of parameter-efficient transfer learning, arXiv preprint arXiv:2110.04366 (2021)

  22. [30]

    Radford, J

    A. Radford, J. Wu, R. Child, D. Luan, D. Amodei, I. Sutskever, et al., Language models are unsupervised multitask learners, OpenAI blog 1 (8) (2019) 9

  23. [31]

    S. V. Patankar, D. B. Spalding, A calculation procedure for heat, mass and momentum transfer in three-dimensional parabolic flows, in: Numerical prediction of flow, heat transfer, turbulence and combustion, Elsevier, 1983, pp. 54–73

  24. [32]

    S. Wang, Y. Teng, P. J. S. J. o. S. C. Perdikaris, Understanding and mitigating gradient flow pathologies in physics-informed neural networks, SIAM Journal on Scientific Computing 43 (5) (2021) A3055–A3081

  25. [33]

    S. Wang, H. Wang, P. Perdikaris, On the eigenvector bias of fourier feature networks: From regression to solving multi-scale pdes with physics-informed neural networks, Computer Methods in Applied Mechanics and Engineering 384 (2021) 113938. doi:10.1016/j.cma.2021.113938

  26. [34]

    S.Wang, X.Yu, P.Perdikaris, Whenandwhypinnsfailtotrain: Aneuraltangentkernelperspective, JournalofComputational Physics 449 (2022) 110768

  27. [35]

    M. D. Zeiler, R. Fergus, Visualizing and understanding convolutional networks, in: Computer Vision–ECCV 2014: 13th European Conference, Zurich, Switzerland, September 6-12, 2014, Proceedings, Part I 13, Springer, 2014, pp. 818–833

  28. [36]

    M. S. Eshaghi, M. Bamdad, C. Anitescu, Y. Wang, X. Zhuang, T. Rabczuk, Applications of scientific machine learning for the analysis of functionally graded porous beams, Neurocomputing 619 (2025) 129119

  29. [37]

    V. M. Nguyen-Thanh, X. Zhuang, T. Rabczuk, A deep energy method for finite deformation hyperelasticity, European Journal of Mechanics-A/Solids 80 (2020) 103874

  30. [38]

    Y. Wang, J. Sun, T. Rabczuk, Y. Liu, Dcem: A deep complementary energy method for solid mechanics, International Journal for Numerical Methods in Engineering (2024).doi:10.1002/nme.7585

  31. [39]

    Paszke, S

    A. Paszke, S. Gross, S. Chintala, G. Chanan, E. Yang, Z. DeVito, Z. Lin, A. Desmaison, L. Antiga, A. Lerer, Automatic differentiation in pytorch (2017)

Pith tools

Reviewed August 9, 2026 · model on record in the stance chip above.