REVIEW 4 major objections 5 minor 3 cited by
On the study of frequency control and spectral bias in Wavelet-Based Kolmogorov Arnold networks: A path to physics-informed KANs
T0 review · 4 major / 5 minor · reviewed 2026-08-09 · deepseek-v4-flash
Pith's one-line read This paper claims that the frequency of the mother wavelet in a Wav-KAN controls the decay rate of the network's neural tangent kernel eigenvalues, giving a tunable mechanism to counteract spectral bias in function approximation and in…
desk verdict A plausible empirical trend wrapped in an invalid NTK argument; the frequency-control claim is not supported by the math. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The load-bearing object is the neural tangent kernel of a single-layer Wav-KAN, $K(x_r, x_s) = \sum_i \psi_i(x_r) \psi_i(x_s)$, obtained by fixing the translation and scale parameters $T$ and $S$ so that only the weights $W$ train (equation 10). In one dimension this becomes the rank-one kernel $\psi_1(x_r)\psi_1(x_s)$; Proposition 2 shows the eigenfunctions take the form $g(x_r) = C \psi_1^{1/S}(x_r)$, and Proposition 3 derives the eigenvalue lower bound $\lambda \geq \tfrac{1}{4} e^{-4b^2(x_r - T)^2}$ for the Morlet wavelet with $S = 1$. This bound is the whole mechanism: it expresses how the wavelet frequency $b$ controls the kernel's spectral decay, which through the gradient-flow solution $f(X; t) = (I - e^{-tK_{\mathrm{ntk}}})Y$ determines how fast each frequency component of the target is learned. The same NTK equations (4)-(7) connect larger eigenvalues to faster convergence, so slowing the decay transfers directly into faster high-frequency learning.
What would settle it
Compute the neural tangent kernel eigenvalues of the full two-layer $[1, 35, 1]$ Wav-KAN at initialization over the 100 training points for $b = 1, 5, 10, 15, 25$ on repeated random initializations, and check whether the spectral decay rate is monotonically decreasing in $b$. Because Proposition 3 is proven only for the rank-one kernel with fixed $S$ and $T$, any failure of that monotonicity in the full kernel — or evidence that hidden-unit count, not $b$, dominates the decay — would falsify the claimed frequency-control mechanism.
Extended reading notes
Core claim
The paper's central claim is that the decay rate of a Wav-KAN's neural tangent kernel eigenvalues is controlled by the frequency of the mother wavelet, giving a handle on spectral bias. Working in the single-layer case with translation and scale parameters fixed so that only the weights train, the kernel becomes rank-one, $K(x_r, x_s) = \psi_1(x_r)\psi_1(x_s)$ (equation 10), and for the Morlet wavelet $\psi(x) = e^{-x^2/2}\cos(bx)$ with $S = 1$ and $T \in [0,1]$ the authors prove the eigenvalue satisfies $\lambda \geq \tfrac{1}{4} e^{-4b^2(x_r - T)^2}$ (Proposition 3). Larger $b$ keeps the bound from dropping as fast, which they interpret as slower eigenvalue decay and therefore faster convergence on high-frequency components. Numerically, on the target $u(x) = \sin(2\pi x) + 0.1\sin(50\pi x)$, raising $b$ from 1 to 15 lets a two-layer $[1, 35, 1]$ Wav-KAN capture the high-frequency detail, while $b = 25$ overfits; increasing the hidden-unit count achieves a similar effect at fixed $b$. The paper then embeds Wav-KANs in physics-informed networks (Wav-KINNs) and reports that they approximate solutions to Poisson, heat, and wave equations with high-frequency content without domain separation, and that the Helmholtz and wave equations require balancing the domain and boundary terms in the loss.
Load-bearing premise
The proof of frequency control covers only a single wavelet neuron with fixed translation and scale parameters, and the paper assumes the same behavior carries over to full multi-layer Wav-KANs with all parameters trainable.
Editorial extensions
If this is right
- Practitioners can treat the mother wavelet's frequency $b$ as a tunable control over learning speed across frequency bands: raising $b$ accelerates convergence on high-frequency components, at the cost of overfitting when $b$ is too large (the paper observes this at $b = 25$).
- Wav-KINNs approximate solutions of elliptic, parabolic, and hyperbolic PDEs with high-frequency content without partitioning the domain or adding Fourier-feature hyperparameters, and the paper reports they do so with fewer parameters than multiple-Fourier-feature methods.
- Increasing the number of hidden units at fixed wavelet frequency flattens the NTK eigenvalue spectrum in the same direction as raising $b$, giving an architecture-based alternative to frequency tuning that the paper finds does not overfit.
- Loss terms for Wav-KINNs must be balanced (the paper uses weights $\lambda_D$ and $\lambda_{\partial D}$) to reach accurate solutions on Helmholtz and wave equations; without balancing, training stalls on one term.
- Fixing the translation and scale parameters ($T \in [0,1]$, $S = 1$) leaves only the weights trainable, which the paper shows reproduces the accuracy of the full model and reduces the parameter count.
Reading between the lines
- The rank-one argument proves the eigenvalue bound for a single wavelet neuron, so the transfer to deep, wide networks with trainable $T$ and $S$ is an empirical question that the paper's own experiments only partially cover; a direct test would be measuring the full network's NTK spectrum at initialization for several $b$ values.
- If the mechanism holds generally, the wavelet frequency behaves like a bandwidth knob, which suggests an automatic tuning scheme: choose $b$ so that the NTK eigenvalue decay rate matches the target function's known or estimated frequency content, something the paper does not develop.
- The overfitting observed at $b = 25$ implies a bias-variance trade-off, so for targets with unknown frequency ranges, cross-validating $b$ against the NTK spectrum or the validation loss may be a cheaper alternative to grid-searching Fourier-feature scales.
- The authors note that an NTK analysis of Wav-KINNs (where the loss includes PDE residuals) is computationally prohibitive; an approximate or empirical kernel for the residual loss could turn the observed loss-imbalance problem into a principled weighting rule instead of manual tuning.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper studies spectral bias in Wavelet-based Kolmogorov-Arnold networks (Wav-KANs) through the lens of the neural tangent kernel (NTK). It claims that the decay rate of the NTK eigenvalues of a Wav-KAN can be controlled by the frequency of the mother wavelet, thereby mitigating spectral bias and accelerating learning of high-frequency components. The theoretical analysis is carried out in Section 3.2 for a simplified rank-one kernel and is then used to motivate experiments in which the mother-wavelet frequency b is varied while approximating u(x)=sin(2πx)+0.1 sin(50πx). The paper also replaces the neural network inside PINNs by Wav-KANs, forming 'Wav-KINNs', and reports experiments on Poisson, heat, Helmholtz, and wave equations with high-frequency components.
Significance. If the central claim were established, the paper would provide a useful design principle for Wav-KANs: choose the mother-wavelet frequency to reshape the NTK spectrum and thereby control the convergence of high-frequency components in both function approximation and physics-informed settings. The empirical trend reported in Section 3.3—larger b slows eigenvalue decay and improves fitting of the 50π component—is plausible and visible in the figures, and the paper is commendable for testing the approach on several PDEs and for explicitly acknowledging limitations such as loss-term imbalance and the computational difficulty of Wav-KINN NTKs. However, the theoretical propositions that are supposed to explain this trend are invalid, and the experiments are not designed as an independent test of the theory. As it stands, the manuscript does not provide a sound theoretical foundation for the claimed frequency-control mechanism, so its significance is currently limited to an empirical observation.
major comments (4)
- [Sec. 3.2, Eq. (10), Proposition 2] The rank-one kernel K(x_r,x_s)=ψ1(x_r)ψ1(x_s) has exactly one nonzero eigenvalue, λ=∫_C ψ1^2(x_s) dx_s, with eigenfunction ψ1; every function orthogonal to ψ1 has eigenvalue zero. Consequently there is no eigenvalue-decay spectrum whose rate could be controlled by b. Proposition 2's assertion that g=C1 ψ1^{1/S} is an eigenfunction is also algebraically wrong for S≠1: substituting it into the integral equation gives ψ1(x_r) times a constant on the left-hand side, not λ ψ1^{1/S}(x_r). The many-eigenvalue spectra plotted in Figures 3(b), 4, 11(b), 12(b), and 13(b) therefore cannot be produced by the kernel analyzed in Proposition 2, and the theoretical mechanism asserted in the abstract is not supported.
- [Sec. 3.2, Proposition 3, Eqs. (36)-(39)] Equation (39) is not an eigenvalue equation: it expresses λ as a function of x_r, whereas an eigenvalue of the rank-one kernel is a constant independent of x_r. For S=1 the actual nonzero eigenvalue is ∫_0^1 e^{-(x_s-T)^2} cos^2(b(x_s-T)) dx_s, which does not contain the factor e^{-2(x_r-T)^2} cos^2(b(x_r-T)) appearing in Eq. (39). The lower bounds (14) and (15) therefore do not bound any eigenvalue, and the conclusion that 'the decay rate of the eigenvalues can be modulated by adjusting the frequency of the selected mother wave function' is not established by this proposition.
- [Sec. 3.3] The empirical validation is partially circular. The text states that 'the frequency parameter b can be empirically selected based on learning curves to optimize performance,' and the experiments then show that b=15 works well for target frequency 50π. The theoretical bound in Proposition 3 does not predict which b should be used, does not involve the target frequency, and does not predict the observed transition near b≈15. Thus the experiments demonstrate a fitted observation rather than a successful prediction of the proposed spectral-bias mechanism.
- [Sec. 3.2, Eqs. (4)-(5); Sec. 4] The NTK dynamics in Eqs. (4)-(5) require the infinite-width gradient-flow limit in which the kernel remains constant during training, but the experiments use finite-width networks (e.g., [1,35,1], [2,15,15,1], [2,20,20,20,1]) trained with Adam and LBFGS. The paper explicitly assumes that 'similar behavior will extend to the general architecture of Wav-KANs,' but this is the load-bearing transfer step from the rank-one toy model to the actual networks whose spectra are plotted. No argument, convergence check, or width-scaling study is provided to justify this transfer, so the connection between the theory and the measured finite-width eigenvalue spectra is not established.
minor comments (5)
- [Fig. 3 caption vs. Eq. (38)] The Morlet wavelet is written as ψ(x)=e^{-x^2} cos(bx) in the Figure 3 caption but as e^{-x^2/2} cos(bx) earlier in the text and as e^{-(x-T)^2/(2S^2)} cos(b(x-T)/S) in Eq. (38); the normalization should be made consistent throughout.
- [Proposition 3, Eqs. (14) and (15)] Equation (14) writes the exponent as -4(bx_r - T/S)^2, while the proof's Eq. (40) derives -4b^2(x_r-T)^2; these are not equivalent. Eq. (15) is also not implied for arbitrary T∈[0,1], since for T<1/2 the minimum over x_r∈[0,1] of the exponent occurs at x_r=0, not at x_r=1.
- [Sec. 4, Eq. (21)] The Helmholtz equation and the forcing q(x,y) contain the parameter k, but k is never specified. Since the solution and the forcing depend on k through the k^2 u term, the problem is incompletely defined as stated.
- [Sec. 3.4] The claim that increasing the number of hidden units avoids overfitting while still learning high-frequency components is supported only by training curves and eigenvalue plots; no test error or other generalization metric is reported for the hidden-unit experiment.
- [Throughout] There are numerous typos and minor wording issues, including 'scalars' for 'scales' in Section 3.3, 'hiden units' in Figure 6(b), 'freq' in Figure 3(c), and '100 data points x ∈ [0,1] that are spaced' in Section 3.3, which should be 'evenly spaced'.
Circularity Check
Frequency-control claim is partly constructed: Proposition 3's bound is an ansatz-dependent expression, and the reported best b is chosen from the same learning curves it is said to explain.
-
other
[Section 3.2, Proposition 3 and Appendix C, Eq. (40)]
"since cos^2(b(x − T)) provides a controlling factor, λ is bounded from below by: 1/4 e^{-4b^2(x_r−T)^2} ≤ λ."
The bound is not an eigenvalue statement: λ in the integral equation (11) is a number independent of x_r, while the RHS retains the sample point x_r. It is obtained by writing the Morlet wavelet with frequency b and reading off the b-dependent factor, not by solving the eigenproblem. The subsequent conclusion that the eigenvalue decay rate can be modulated by b therefore follows from the definition of the wavelet used in the kernel, not from the spectral analysis; the claimed control is equivalent to the input ansatz.
-
fitted input called prediction
[Section 3.3, paragraph after Fig. 3]
"The frequency parameter b can be empirically selected based on learning curves to optimize performance and prevent overfitting. Thus, b is a valuable hyperparameter in balancing the trade-off between learning speed for high frequencies and generalization to avoid overfitting."
This admits that the specific b values are chosen from the learning curves on the same target u(x)=sin(2πx)+0.1 sin(50πx) used for validation. The paper presents b as the discovered mechanism controlling NTK eigenvalue decay and high-frequency convergence, but b=15 (and later b=10, b=5) is selected post hoc from the loss curves; the theory does not predict these values. The demonstrated effect is therefore partly a fitted hyperparameter choice rather than an independent prediction.
full rationale
The central theoretical step, Proposition 3, is constructed rather than derived: its x_r-dependent lower bound is not a valid eigenvalue bound, and the claimed frequency dependence is already present in the chosen Morlet wavelet. A correct rank-one kernel has only one nonzero eigenvalue, so the plotted decay spectra cannot come from the given theory. I do not count the algebraic errors in Propositions 2-3 as circularity by themselves; they are correctness risks. The paper also explicitly says the extension to general Wav-KANs is anticipated, not proven. The empirical sweeps over b, hidden units, and alternative wavelets supply some independent evidence that spectral bias can be influenced, but they do not validate the constructed bound, and the best b is selected on the same data it is claimed to explain. No load-bearing self-citation chain exists here; cited works on KANs, Wav-KANs, and NTK are external. Because the main theoretical 'prediction' reduces in part to the input ansatz and the key hyperparameter is fitted post hoc, the circularity score is 6.
Assumptions & free parameters
free parameters (4)
- Morlet wavelet frequency b =
1, 5, 10, 15, 25 in function experiments; 10 for Poisson; 5 for Heat, Helmholtz, Wave
- Loss-balancing weights λD, λ∂D, λbc, λic, λnbc =
not reported
- Number of hidden units n =
10, 50, 100, 150, 200 in Section 3.4; 35 and 64 in other experiments
- Translation and scale parameters T, S when fixed =
T in [0,1], S=1
assumptions (6)
- standard math Kolmogorov-Arnold representation theorem (Theorem 1)
- domain assumption NTK gradient-flow and infinite-width limits apply (Eqs. 4-5)
- ad hoc to paper Rank-one kernel with fixed T and S is representative of full Wav-KANs
- ad hoc to paper Eigenfunctions have the form g = C ψ^(1/S) (Proposition 2)
- ad hoc to paper Setting S=1 and T in [0,1] preserves the spectral conclusion
- standard math Mercer/integral-equation eigenvalue framework on compact domains
Cite this review
Pith. "Pith review of On the study of frequency control and spectral bias in Wavelet-Based Kolmogorov Arnold networks: A path to physics-informed KANs." pith.science (2026). https://pith.science/paper/5WDPN3DW
@misc{pith2026250200280,
author = {Pith},
title = {Pith review of: On the study of frequency control and spectral bias in Wavelet-Based Kolmogorov Arnold networks: A path to physics-informed KANs},
year = {2026},
howpublished = {\url{https://pith.science/paper/5WDPN3DW}},
note = {Machine review of arXiv:2502.00280}
}
read the original abstract
Spectral bias, the tendency of neural networks to prioritize learning low-frequency components of functions during the initial training stages, poses a significant challenge when approximating solutions with high-frequency details. This issue is particularly pronounced in physics-informed neural networks (PINNs), widely used to solve differential equations that describe physical phenomena. In the literature, contributions such as Wavelet Kolmogorov Arnold Networks (Wav-KANs) have demonstrated promising results in capturing both low- and high-frequency components. Similarly, Fourier features (FF) are often employed to address this challenge. However, the theoretical foundations of Wav-KANs, particularly the relationship between the frequency of the mother wavelet and spectral bias, remain underexplored. A more in-depth understanding of how Wav-KANs manage high-frequency terms could offer valuable insights for addressing oscillatory phenomena encountered in parabolic, elliptic, and hyperbolic differential equations. In this work, we analyze the eigenvalues of the neural tangent kernel (NTK) of Wav-KANs to enhance their ability to converge on high-frequency components, effectively mitigating spectral bias. Our theoretical findings are validated through numerical experiments, where we also discuss the limitations of traditional approaches, such as standard PINNs and Fourier features, in addressing multi-frequency problems.
Figures
Figures from the paper (10 more)
Forward citations
Cited by 3 Pith papers
-
Hyb-KAN ViT: Hybrid Kolmogorov-Arnold Networks Augmented Vision Transformer
The authors augment ViT with hybrid spline and wavelet KAN modules and claim state-of-the-art results across classification, detection, and segmentation, but they release no code or evidence that the experiments were run.
-
FiberKAN: Kolmogorov-Arnold Networks for Nonlinear Fiber Optics
Kolmogorov-Arnold networks with a pretrain-prune-train-symbolize pipeline can rediscover known analytical solutions of the nonlinear Schrödinger equation and model intrapulse Raman scattering and supercontinuum genera...
-
Conformalized-KANs: Uncertainty Quantification with Coverage Guarantees for Kolmogorov-Arnold Networks (KANs) in Scientific Machine Learning
Conformal prediction applied to ensembles of KANs, FBKANs, and MFKANs yields prediction intervals that empirically hit the target 95% coverage on four synthetic problems.
Reference graph
Works this paper leans on
-
[1]
Differential equations and their applications, 2nd edition (martin braun)
Harry Hochstadt. Differential equations and their applications, 2nd edition (martin braun). SIAM Review, 21(2):264–266, 1979
work page 1979
-
[2]
The road to reality: A complete guide to the laws of the universe
Roger Penrose and Palle Jorgensen. The road to reality: A complete guide to the laws of the universe. The Mathematical Intelligencer, 28:59–61, 06 2008
work page 2008
-
[3]
Strogatz
Steven H. Strogatz. Nonlinear Dynamics and Chaos: With Applications to Physics, Biology, Chemistry and Engineering. Westview Press, 2000
2000
-
[4]
Georgios Kissas, Yibo Yang, Eileen Hwuang, Walter R. Witschey, John A. Detre, and Paris Perdikaris. Machine learning in cardiovascular flows modeling: Predicting arterial blood pres- sure from non-invasive 4d flow mri data using physics-informed neural networks.Computer Methods in Applied Mechanics and Engineering, 358:112623, 2020
work page 2020
-
[5]
A. Mathews, M. Francisquez, J. W. Hughes, D. R. Hatch, B. Zhu, and B. N. Rogers. Uncov- ering turbulent plasma dynamics via deep learning from partial observations.Phys. Rev. E, 104:025205, 08 2021
work page 2021
- [6]
-
[7]
Dgm: A deep learning algorithm for solving partial differential equations.Journal of Computational Physics, 375:1339–1364, 2018
Justin Sirignano and Konstantinos Spiliopoulos. Dgm: A deep learning algorithm for solving partial differential equations.Journal of Computational Physics, 375:1339–1364, 2018
2018
-
[8]
George V. Cybenko. Approximation by superpositions of a sigmoidal function.Mathematics of Control, Signals and Systems, 2:303–314, 1989
work page 1989
Show all 31 references
-
[9]
Universal approximation of an un- known mapping and its derivatives using multilayer feedforward networks.Neural Networks, 3(5):551–560, 1990
Kurt Hornik, Maxwell Stinchcombe, and Halbert White. Universal approximation of an un- known mapping and its derivatives using multilayer feedforward networks.Neural Networks, 3(5):551–560, 1990
1990
-
[10]
Srinivasan, Ben Mildenhall, Sara Fridovich-Keil, Nithin Raghavan, Utkarsh Singhal, Ravi Ramamoorthi, Jonathan T
Matthew Tancik, Pratul P. Srinivasan, Ben Mildenhall, Sara Fridovich-Keil, Nithin Raghavan, Utkarsh Singhal, Ravi Ramamoorthi, Jonathan T. Barron, and Ren Ng. Fourier features let networks learn high frequency functions in low dimensional domains. InProceedings of the 34th Int...
2020
-
[11]
Towards understand- ing the spectral bias of deep learning, 2020
Yuan Cao, Zhiying Fang, Yue Wu, Ding-Xuan Zhou, and Quanquan Gu. Towards understand- ing the spectral bias of deep learning, 2020
2020
-
[12]
Benjamin L. Badger. Why deep learning generalizes, 2022
2022
-
[14]
Hamprecht, Yoshua Bengio, and Aaron Courville
Nasim Rahaman, Aristide Baratin, Devansh Arpit, Felix Draxler, Min Lin, Fred A. Hamprecht, Yoshua Bengio, and Aaron Courville. On the spectral bias of neural networks, 2019
2019
-
[15]
The convergence rate of neural networks for learned functions of different frequencies, 2019
Ronen Basri, David Jacobs, Yoni Kasten, and Shira Kritchman. The convergence rate of neural networks for learned functions of different frequencies, 2019. 22
2019
-
[16]
Krishnapriyan, Amir Gholami, Shandian Zhe, Robert M
Aditi S. Krishnapriyan, Amir Gholami, Shandian Zhe, Robert M. Kirby, and Michael W. Mahoney. Characterizing possible failure modes in physics-informed neural networks, 2021
2021
-
[17]
Understanding and mitigating gradient flow pathologies in physics-informed neural networks
Sifan Wang, Yujun Teng, and Paris Perdikaris. Understanding and mitigating gradient flow pathologies in physics-informed neural networks. SIAM Journal on Scientific Computing, 43(5):A3055–A3081, 2021
2021
-
[18]
When and why pinns fail to train: A neural tangent kernel perspective.Journal of Computational Physics, 449:110768, 2022
Sifan Wang, Xinling Yu, and Paris Perdikaris. When and why pinns fail to train: A neural tangent kernel perspective.Journal of Computational Physics, 449:110768, 2022
2022
-
[19]
On the eigenvector bias of fourier feature networks: From regression to solving multi-scale pdes with physics-informed neural networks
Sifan Wang, Hanwen Wang, and Paris 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:113938, 2021
2021
-
[20]
Hou, and Max Tegmark
Ziming Liu, Yixuan Wang, Sachin Vaidya, Fabian Ruehle, James Halverson, Marin Soljačić, Thomas Y. Hou, and Max Tegmark. Kan: Kolmogorov-arnold networks, 2024
2024
-
[21]
Givental, Boris A
Alexander B. Givental, Boris A. Khesin, Jerrold E. Marsden, Alexander N. Varchenko, Vic- tor A. Vassiliev, Oleg Ya. Viro, and Vladimir M. Zakalyukin, editors.On the representation of functions of several variables as a superposition of functions of a smaller number of variable...
2009
-
[22]
On the representation of continuous functions of many vari- ables by superposition of continuous functions of one variable and addition
Andrei Nikolaevich Kolmogorov. On the representation of continuous functions of many vari- ables by superposition of continuous functions of one variable and addition. In Doklady Akademii Nauk, 114:953–956, 1957
1957
-
[23]
Chebyshev polynomial-based kolmogorov- arnold networks: An efficient architecture for nonlinear function approximation, 2024
Sidharth SS, Keerthana AR, Gokul R, and Anas KP. Chebyshev polynomial-based kolmogorov- arnold networks: An efficient architecture for nonlinear function approximation, 2024
2024
-
[24]
Wav-kan: Wavelet kolmogorov-arnold networks, 2024
Zavareh Bozorgasl and Hao Chen. Wav-kan: Wavelet kolmogorov-arnold networks, 2024
2024
-
[25]
Neural tangent kernel: convergence and generalization in neural networks
Arthur Jacot, Franck Gabriel, and Clément Hongler. Neural tangent kernel: convergence and generalization in neural networks. In Proceedings of the 32nd International Conference on Neural Information Processing Systems, NIPS’18, page 8580–8589, Red Hook, NY, USA, 2018. Curran A...
2018
-
[26]
Frequency bias in neural networks for input of non-uniform density
Ronen Basri, Meirav Galun, Amnon Geifman, David Jacobs, Yoni Kasten, and Shira Kritch- man. Frequency bias in neural networks for input of non-uniform density. InProceedings of the 37th International Conference on Machine Learning, ICML’20. JMLR.org, 2020
2020
-
[27]
Kolmogorov arnold informed neural network: A physics-informed deep learning framework for solving forward and inverse problems based on kolmogorov arnold networks, 2024
Yizheng Wang, Jia Sun, Jinshuai Bai, Cosmin Anitescu, Mohammad Sadegh Eshaghi, Xiaoying Zhuang, Timon Rabczuk, and Yinghua Liu. Kolmogorov arnold informed neural network: A physics-informed deep learning framework for solving forward and inverse problems based on kolmogorov ar...
2024
-
[28]
Bondar, and Abhijit Sen
Subhajit Patra, Sonali Panda, Bikram Keshari Parida, Mahima Arya, Kurt Jacobs, Denys I. Bondar, and Abhijit Sen. Physics informed kolmogorov-arnold neural networks for dynamical analysis via efficent-kan and wav-kan, 2024
2024
-
[29]
Chapter 4 - time meets frequency
Mallat Stéphane. Chapter 4 - time meets frequency. In Mallat Stéphane, editor,A Wavelet Tour of Signal Processing (Third Edition), pages 89–153. Academic Press, Boston, third edition edition, 2009
2009
-
[30]
Chapter 1 - sparse representations
Mallat Stéphane. Chapter 1 - sparse representations. In Mallat Stéphane, editor,A Wavelet 23 Tour of Signal Processing (Third Edition), pages 1–31. Academic Press, Boston, third edition edition, 2009
2009
-
[31]
Shawe-Taylor, C.K.I
J. Shawe-Taylor, C.K.I. Williams, N. Cristianini, and J. Kandola. On the eigenspectrum of the gram matrix and the generalization error of kernel-pca.IEEE Transactions on Information Theory, 51(7):2510–2522, 2005
2005
-
[32]
Scientific machine learning through physics-informed neural networks: Where we are and what’s next, 2022
Salvatore Cuomo, Vincenzo Schiano di Cola, Fabio Giampaolo, Gianluigi Rozza, Maziar Raissi, and Francesco Piccialli. Scientific machine learning through physics-informed neural networks: Where we are and what’s next, 2022. 24 A Proof Proposition 1 Proof. Since K(xr, xs) = Pn i...
2022
Reviewed August 9, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.