iconOpen Access

ARTICLE

Neural Operators with Adaptive Spectral and Low-Rank Representations

Nikita Sakovich1, Dmitry Aksenov1, Ekaterina Pleshakova1,*, Sergey Gataullin1,2

1 MIREA—Russian Technological University, 78 Vernadsky Avenue, Moscow, Russia
2 Central Economics and Mathematics Institute of the Russian Academy of Sciences, Nakhimovsky Prospect 47, Moscow, Russia

* Corresponding Author: Ekaterina Pleshakova. Email: email

Computers, Materials & Continua 2026, 88(3), 97 https://doi.org/10.32604/cmc.2026.081449

Abstract

Neural operators provide a data-driven framework for learning mappings between function spaces and have shown strong performance in scientific computing and surrogate modeling. Existing architectures, however, typically rely on a single representation of the input function—either purely pointwise, as in DeepONet, or purely spectral, as in Fourier Neural Operators—which limits their ability to simultaneously capture local variability and global structure. In this work, we propose NOASLRR, a neural operator that integrates three complementary branches within a unified DeepONet-style formulation: a pointwise MLP embedding, a spectral branch based on Chebyshev polynomial coefficients, and a low-rank linear embedding. The three representations are fused through two learnable sigmoid gating mechanisms that adaptively balance structured inductive biases against unstructured expressivity in an input-dependent manner. We provide a theoretical guarantee showing that the proposed architecture can uniformly approximate any continuous operator admitting a decomposable structure, and we validate the method on three canonical PDE benchmarks: the heat equation, the viscous Burgers equation, and the Laplace equation with Dirichlet boundary conditions. On all three benchmarks NOASLRR converges faster and reaches substantially lower mean squared error than DeepONet and FNO baselines—for the heat equation the final MSE is reduced from 1.1 × 103 (DeepONet) and 2.9 × 102 (FNO) to 3.4 × 104, with comparable improvements on the Burgers and Laplace equations. Ablation experiments further confirm that each of the three branches contributes to the accuracy gains, while the parameter overhead relative to DeepONet remains moderate thanks to the low-rank factorization.

Keywords

Neural operators; operator learning; DeepONet; spectral representation; Chebyshev polynomials; low-rank approximation; adaptive gating; partial differential equations MSC: 68T07; 65N99; 41A10

1  Introduction

Many problems in science and engineering can be naturally formulated as mappings between spaces of functions. Typical examples include the solution operator of a partial differential equation (PDE), which maps coefficients, boundary conditions, or forcing terms to solution fields, as well as operators arising in fluid dynamics, material science, climate modeling, and control. Learning such operators from data enables fast surrogate models, efficient uncertainty quantification, and real-time simulation once training is complete.

Traditional numerical methods for operator approximation, such as finite difference, finite element, or spectral methods [1], rely on explicit discretization of the underlying domain and must be re-run for each new configuration of parameters or inputs. While highly accurate, these methods can be computationally expensive, especially in high-dimensional or multi-query settings. Moreover, their reliance on fixed meshes limits flexibility when transferring models across resolutions or geometries.

Neural operators have recently emerged as a powerful data-driven alternative for learning mappings between infinite-dimensional spaces. Unlike standard neural networks, which approximate functions defined on finite-dimensional inputs, neural operators aim to approximate the underlying operator itself, enabling generalization across discretizations. Prominent examples include Deep Operator Networks (DeepONet) [2] and Fourier Neural Operators (FNO) [3,4], both of which have demonstrated strong performance on a variety of operator learning benchmarks.

DeepONet [2] adopts a branch–trunk architecture motivated by operator approximation theory, where the branch network encodes the input function and the trunk network encodes the spatial coordinate. The output is obtained via an inner product between latent representations, yielding a mesh-invariant formulation. Extensions such as MIONet [5] generalize DeepONet to operators with multiple input functions through a tensor-product construction. Fourier Neural Operators, on the other hand, operate in the spectral domain and learn global convolution kernels via Fourier transforms, providing an efficient mechanism for capturing long-range dependencies.

Despite their success, existing neural operator architectures face several limitations. Many approaches rely on a single representation of the input function, typically either a pointwise embedding (as in DeepONet) or a global spectral representation (as in FNO). Pointwise embeddings offer high expressivity but may struggle to capture global structure efficiently, while purely spectral methods may be less flexible for localized or non-smooth features. Furthermore, large fully connected mappings can lead to overparameterization and reduced generalization, particularly in data-scarce regimes.

From a numerical analysis perspective, it is well known that different representations of functions emphasize different properties. Spectral expansions, such as those based on Chebyshev or Fourier bases, provide compact descriptions of smooth global behavior and are widely used in classical solvers. Low-rank approximations [6,7] and tensor factorizations offer another powerful tool for reducing complexity while preserving dominant correlations. However, these structured representations are only partially explored in the context of neural operator learning.

This work is motivated by the observation that no single representation is universally optimal for operator learning. Instead, combining multiple complementary views of the input function may yield more robust and expressive models. Specifically, we aim to integrate unstructured pointwise embeddings with structured spectral and low-rank representations, while allowing the model to adaptively select and weight these components during training.

To this end, we propose a neural operator architecture that augments the standard DeepONet framework with two additional branches: a spectral branch based on Chebyshev polynomial coefficients and a low-rank linear branch that imposes structural constraints on the function embedding. The Chebyshev representation explicitly encodes global properties of the input function using a small number of coefficients, while the low-rank embedding introduces parameter efficiency and biases the model toward capturing dominant global correlations.

A key component of the proposed approach is the use of learnable gating mechanisms to fuse different representations. Rather than statically combining features, the model learns input-dependent weights that balance unstructured expressivity against structured inductive bias. This adaptive fusion enables the operator to emphasize spectral information for smooth functions, rely on low-rank structure when appropriate, or fall back to a fully expressive pointwise embedding when necessary.

Importantly, the resulting formulation preserves the core advantages of DeepONet: mesh invariance, flexibility with respect to input discretization, and a clear operator-theoretic interpretation. At the same time, it extends the branch representation in a principled manner, without resorting to excessively deep or wide networks. The proposed design can be viewed as a general neural operator built on top of multiple function representations, rather than a specialized architecture tailored to a specific problem class.

The contributions of this work can be summarized as follows:

•   We introduce a neural operator architecture that integrates pointwise, spectral, and low-rank representations of input functions within a unified framework.

•   We incorporate Chebyshev polynomial expansions as an explicit spectral representation for operator learning.

•   We employ low-rank linear embeddings to impose structural inductive bias and improve parameter efficiency.

•   We propose adaptive gating mechanisms that dynamically fuse different representations based on the input function.

The remainder of the paper is organized as follows. Section Method describes the proposed method in detail, including the mathematical formulation and training procedure. Subsequent sections present experimental results and discuss the strengths and limitations of the approach.

2  Materials and Methods

2.1 Related Works

Learning operators between infinite-dimensional function spaces has recently become an active area of research in machine learning. Neural operators aim to approximate such mappings directly from data while remaining invariant to the discretization of the input and output domains. For clarity, we organize the related literature around four broad paradigms: (i) branch–trunk operator learning, (ii) spectral neural operators, (iii) graph-, transformer- and geometry-based operators, and (iv) physics-informed and hybrid frameworks.

Branch–trunk operator learning. Deep Operator Networks (DeepONet) [2] were introduced as a general framework for operator approximation using a branch–trunk architecture motivated by universal approximation theorems for operators. DeepONet has been successfully applied to a wide range of problems, including parametric partial differential equations, inverse problems, and surrogate modeling. Its inner-product formulation provides a natural and interpretable way to combine function-dependent and coordinate-dependent representations. Extensions such as MIONet [5] generalize this construction to operators with multiple input functions via tensor products, and a comprehensive empirical comparison between DeepONet and FNO was carried out by Lu et al. [8].

Spectral neural operators. Fourier Neural Operators (FNO) [3,4] approach operator learning from a spectral perspective by learning convolution kernels in the Fourier domain, as formalized in the universal approximation analysis of [9]. These models efficiently capture long-range dependencies and scale well to high-resolution grids, but typically assume structured discretizations and rely on global spectral representations. Several extensions improve flexibility and generality, including spherical FNOs, incremental FNOs [10,11], amortized FNOs [12], diffusion-based variants [13,14], and alias-free formulations obtained via frame theory [1517]. Beyond Fourier-based methods, spectral representations using orthogonal polynomial bases have been explored in neural networks and physics-informed models. Chebyshev polynomials, in particular, are widely used in numerical analysis due to their favorable approximation properties and stability. However, their direct integration into neural operator architectures remains relatively limited.

Graph-, transformer- and geometry-based operators. A second family of neural operators targets irregular geometries and non-Euclidean domains. Graph neural operators [18,19] treat the discretized domain as a graph and learn message-passing kernels that generalize across meshes, while geometry-informed and manifold-based neural operators [2022] extend this idea to large-scale 3D problems and Riemannian manifolds. Transformer-based operators such as GNOT [23] and latent neural operators [24] replace fixed convolution kernels with attention, and U-shaped architectures (U-NO) [25] borrow hierarchical designs from computer vision to capture multiscale structure. These spectral assumptions are also consistent with classical analytical approaches to PDEs, where Fourier- and Fourier–Hankel-type integral transforms remain effective tools for constructing exact solutions of nonstationary heat-transfer and related mathematical-physics problems [26]. Convolutional neural operators [27] and super-resolution variants [28] further illustrate the diversity of modern architectures.

Physics-informed and hybrid frameworks. Physics-informed neural operators [29] incorporate residual PDE losses to improve generalization, and Newton-informed variants [30] exploit solver structure to handle nonlinearities. More recently, DeepOMamba [31] introduced a state-space neural operator based on Mamba for spatio-temporal PDEs, showing that sequence-modeling architectures can provide an alternative to attention-based operators for learning long-range temporal dynamics with improved computational efficiency. State-space and Mamba-style operators [19] target long-horizon spatio-temporal dynamics, while wavelet-based [14], photonic [31,32] and seismic-wave [33] operators tailor the architecture to specific physical domains. Temporal neural operators [34] and scattering-based formulations [35] provide additional task-specific inductive biases. Closest to our work, several recent studies explore hybrid neural operator architectures that combine multiple representations or incorporate additional structure, including localized integral and differential kernels [36,35] and operator fusion frameworks [37]. These approaches highlight the importance of inductive biases in operator learning, particularly in data-limited regimes. The present work builds on these ideas by integrating spectral and low-rank representations into a unified DeepONet-style framework and using adaptive gating mechanisms to balance expressivity and structure.

Collectively, these studies provide a rich context for developing multi-representation, adaptive neural operators, as considered in this work. Compared with existing hybrid designs, NOASLRR is distinguished by the explicit combination of three complementary branches—pointwise, Chebyshev-spectral, and low-rank—together with two input-dependent sigmoid gates that fuse them in a principled DeepONet-style framework supported by an approximation guarantee (Theorem 1).

2.2 Method

This section introduces a neural operator architecture designed for learning mappings between function spaces. We first describe the representations of input functions employed by the model, then present the mathematical formulation of the operator, followed by a discussion of the architectural design choices and their inductive biases. Finally, we outline the training procedure.

2.2.1 Problem Statement

We consider the problem of learning a mapping between function spaces, which can be formalized as the approximation of solution operators for partial differential equations (PDEs). Let denote a space of input functions, such as initial or boundary conditions, and let 𝒰 denote the corresponding space of solution functions defined over a domain Ω. The goal is to approximate an operator

𝒢:𝒰,fu=𝒢(f),(1)

where u satisfies a PDE with input f. For example, in the case of time-dependent problems, f may represent an initial state, while u(x,t) represents the evolution of the system at later times.

From a functional analytic perspective, it is natural to consider u as an element of a Lebesgue space L2(Ω) or, in the presence of derivatives, a Sobolev space H1(Ω). The operator 𝒢 then acts between these Hilbert spaces, and the quality of approximation can be measured using norms such as

𝒢~(f)𝒢(f)L2(Ω)or𝒢~(f)𝒢(f)H1(Ω),(2)

where 𝒢~ denotes the learned operator.

In practice, we are given a finite dataset {(f(b),u(b))}b=1B, where u(b)=𝒢(f(b)) is evaluated on a discrete grid. The task of neural operator learning is then to construct a parametric mapping 𝒢~θ that approximates 𝒢 uniformly over , with the additional constraint that the learned mapping should generalize to unseen inputs and remain invariant to the resolution of the discretization. This formalization provides the foundation for the multi-representation architecture described in Method section.

2.2.2 Function Representations

Let f:ΩR denote an input function sampled on a fixed grid {xi}i=1NΩ, represented as a vector

f=(f(x1),,f(xN))RN.

Learning an operator acting on such functions requires representations that capture both local variations and global structure. To this end, the proposed approach combines three complementary representations of the input function.

First, the discrete pointwise representation of f is processed by a multilayer perceptron, providing a flexible, non-structured embedding capable of approximating arbitrary nonlinear dependencies.

Second, a spectral representation based on Chebyshev polynomials is employed to explicitly encode global properties of the function. For a normalized grid xi[1,1], the Chebyshev coefficients are computed as

ck(f)=2Ni=1Nf(xi)Tk(xi),k=0,,K1,(3)

where Tk denotes the Chebyshev polynomial of the first kind of degree k. The resulting coefficient vector c(f)RK provides a compact description of the global behavior of the function and is further processed by a learnable nonlinear map. More precisely, the spectral embedding hspec(f)RH referenced in Eq. (6) is obtained from c(f) through a single fully connected layer followed by layer normalization and a tanh nonlinearity:

hspec(f)=tanh(LayerNorm(Wspecc(f)+bspec)),(4)

with learnable parameters WspecRH×K and bspecRH. This lifts the compact K-dimensional spectral description of f into the same H-dimensional latent space as the pointwise and low-rank branches, so that all three representations can be fused by the gating mechanism introduced below.

Third, a low-rank linear representation is introduced to impose structural constraints on the model. This representation is defined as

hlr(f)=tanh(B(Af)),(5)

where ARr×N and BRH×r with rmin(N,H). Such a factorization can be viewed as a low-rank approximation of a dense linear operator and serves as an inductive bias favoring global correlations and parameter efficiency. It is worth emphasizing that, although the factorized form W=BA coincides algebraically with the low-rank linear layers used for weight compression in deep networks, its role here is different. In standard compression, a low-rank factorization is applied after training as a surrogate for a dense layer, with the sole purpose of reducing the parameter count. In NOASLRR the low-rank branch is learned from scratch as one of several complementary views of the input function: it is not a compressed replacement for the MLP branch, but an additional branch that is fused with the pointwise and spectral embeddings through the adaptive gates. In this role, the factorization acts as a structural prior that biases the branch towards representing dominant global correlations of f through a small number of latent directions (the rows of A), which complements the high-expressivity pointwise branch and the smooth global description provided by the Chebyshev branch.

2.2.3 Neural Operator Formulation

The goal is to approximate an operator

𝒢:fu(),

where u(x) denotes the value of the output function at a query location xRd.

The proposed neural operator follows the DeepONet paradigm and consists of a branch network encoding the input function and a trunk network encoding the spatial coordinate. The operator is defined as

𝒢~(f)(x)=S(hmlp(f)pointwise embeddinghspec(f)spectral embeddinghlr(f)low-rank embeddingt(x)trunk),(6)

where denotes the Hadamard product and S() is an aggregation operator implemented as a summation over latent components.

Equivalently, the operator can be expressed in compact form as

𝒢~(f)(x)=i=1Hti(x)himlp(f)hispec(f)hilr(f),(7)

which highlights the multiplicative interaction between the latent representations of the input function and the spatial coordinate.

2.2.4 Adaptive Fusion and Residual Structure

While the multiplicative formulation in Eq. (6) is expressive, directly combining all representations may be unnecessarily restrictive. To address this, adaptive gating mechanisms are introduced.

First, the spectral and low-rank embeddings are combined via a learnable gate:

haux(f)=α(f)hspec(f)+(1α(f))hlr(f),(8)

where

α(f)=σ(Waux[hspec(f),hlr(f)]+baux),

and σ() denotes the sigmoid function. Here [,] denotes concatenation along the feature dimension, so that [hspec(f),hlr(f)]R2H, and WauxRH×2H together with bauxRH are learnable parameters of a single fully connected layer. The sigmoid is applied element-wise, which yields a gating vector α(f)(0,1)H that assigns an independent, input-dependent weight to each latent coordinate.

The resulting auxiliary representation is then combined with the pointwise embedding in a residual manner:

h(f)=β(f)hmlp(f)+(1β(f))haux(f).(9)

The second gate β(f)(0,1)H is defined analogously to α(f), namely

β(f)=σ(Wfin[hmlp(f),haux(f)]+bfin),

with learnable parameters WfinRH×2H and bfinRH, and is again computed from a single fully connected layer followed by an element-wise sigmoid. Hence the two gates share the same functional form but operate on different pairs of branches.

This adaptive fusion allows the model to balance unstructured expressivity with structured inductive biases depending on the input function.

2.2.5 Final Operator Expression

Using the fused branch representation h(f), the final operator takes the standard DeepONet form

𝒢~(f)(x)=i=1Hti(x)hi(f).(10)

This formulation preserves the mesh-invariant property of DeepONet while substantially enriching the function representation, as illustrated in Fig. 1.

images

Figure 1: Neural operator architecture

Theorem 1: Approximation of operators with decomposable structure Let C([1,1]) be a compact set of input functions, 𝒳Rd a compact domain, and 𝒢:×𝒳R a continuous operator admitting the decomposition

𝒢(f,x)=𝒢1(f,x)+𝒢2(f,x),

where

•   𝒢1(f,x)=g1(1(f),,m(f),x) depends on f through finitely many linear functionals i:R,

•   𝒢2 is continuous on ×𝒳.

Then, for any ε>0, there exists an operator network 𝒩 such that

supf,x𝒳|𝒢(f,x)𝒩(f,x)|<ε.

Proof: Step 1: Approximation of functions by finite-dimensional subspace.

Since is compact in C([1,1]), for any δ>0 there exists a finite-dimensional subspace

VK=span{T0,,TK}

(e.g., Chebyshev polynomials) such that for every f there exists

fK=k=0Kck(f)TkVKwithffK<δ.

Here,

x:=max(|x1|,,|xn|).

Step 2: Approximation of 𝒢1.

𝒢1(f,x)=g1(1(f),,m(f),x) depends on finitely many continuous linear functionals i. Hence

|i(f)i(fK)|iffKiδ.

By continuity of g1,

|𝒢1(f,x)𝒢1(fK,x)|L1δ

for some constant L1>0. Therefore, it suffices to approximate 𝒢1 using the finite set of coefficients ck(f), which can be implemented with the Chebyshev branch and low-rank linear layers.

Step 3: Approximation of 𝒢2.

𝒢2 is continuous on the compact set ×𝒳. By the universal approximation theorem for MLPs, there exists a neural network 𝒩2 such that

supf,x𝒳|𝒢2(f,x)𝒩2(f,x)|<δ.

Step 4: Combining the approximations.

Define

𝒩(f,x)=α(f,x)𝒩1(f,x)+(1α(f,x))𝒩2(f,x),

where α(f,x)[4] is a gating function (which can itself be approximated by a small MLP). Then

|𝒢(f,x)𝒩(f,x)||𝒢1(f,x)𝒩1(f,x)|+|𝒢2(f,x)𝒩2(f,x)|<2δ.

Choosing δ=ε/2 gives the desired ε-approximation.

Step 5: Conclusion.

The Chebyshev branch and LowRank layer approximate 𝒢1, the MLP branch approximates 𝒢2, and the gating layers combine them. Therefore, the Operator network 𝒩 exists with

supf,x𝒳|𝒢(f,x)𝒩(f,x)|<ε. 

2.2.6 Training Procedure

The model is trained in a supervised operator learning setting. Given a dataset

𝒟={(f(b),{(xn(b),yn(b))}n=1Nb)}b=1B,

where yn(b)=𝒢(f(b))(xn(b)), the parameters θ are obtained by minimizing the empirical risk

(θ)=1Bb=1B1Nbn=1Nb𝒢~θ(f(b))(xn(b))yn(b)2.(11)

The incorporation of spectral and low-rank representations introduces explicit inductive biases that improve convergence and generalization, while the adaptive fusion mechanism ensures sufficient flexibility across diverse operator learning tasks.

2.3 Experimental Analysis

In this section, we evaluate the performance of the proposed Adaptive Multi-Representation Neural Operator on several benchmark PDE problems. We consider three canonical equations: the Heat equation, Burgers’ equation, and the Laplace equation. All experiments employ the mean squared error (MSE) as the training loss. The complete training procedure of the proposed model is summarized in Algorithm 1.

images

2.3.1 Problem Setup

Heat Equation

We consider the heat equation on the 2D unit square Ω=[4]2 with prescribed Dirichlet boundary conditions, in which the operator maps the boundary data f (together with a zero initial interior state) to the diffused field u obtained after a fixed number of explicit time-stepping iterations. The governing equation is

ut=α2u=αi=1n2uxi2,xΩRn,t[0,T](12)

where α is the thermal diffusivity and f=u|Ω encodes the boundary trace. The solution field u is defined on the full 2D grid, which explains the 2D visualizations in Fig. 2; the earlier description of this benchmark as “1D” in the initial submission was a typographic error.

images

Figure 2: Heat equation: representative test sample.

Burgers’ Equation

The Burgers’ equation is defined as

ut+(u)u=ν2u,xΩRn(13)

where ν is the viscosity parameter. 2D visualizations in Fig. 3.

images

Figure 3: Burgers’ equation: representative test sample.

Laplace Equation

The 2D Laplace equation on a rectangular domain Ω=[4]2 is given by

2u=i=1n2uxi2=0,xΩRn(14)

where g(x,y) denotes Dirichlet boundary conditions. 2D visualizations in Fig. 4.

images

Figure 4: Laplace equation: representative test sample.

For all problems, we generate datasets {f(b),u(b)}, where f(b) is the input function (initial condition or boundary condition) and u(b) is the corresponding solution on a fixed grid. Each solution is evaluated at a set of query points and used for supervised training with MSE loss:

(θ)=1Bb=1B1Ni=1N|𝒢~θ(f(b))(xi)u(b)(xi)|2.(15)

2.3.2 Implementation Details

All three benchmarks use the same architecture and training recipe, which is summarized below and was used to obtain all results reported in this paper.

Datasets. For each PDE we generate 1000 pairs (f(b),u(b)) on a uniform 10×10 grid (N=100 input values per sample), so that f(b)R100 encodes the boundary/initial data and u(b)R100 is the corresponding discretized solution field. Boundary conditions are generated by drawing four corner values from 𝒩(0,1) and bilinearly interpolating along the edges. The reference solutions are computed with an explicit finite-difference solver for the heat equation (1000 steps, α=0.5, Δt=0.01), with a semi-implicit solver for the viscous Burgers equation (500 steps, ν=0.01, Δt=0.001), and with Jacobi iteration for the Laplace equation (tolerance 104, at most 104 iterations). The 1000 samples are split into 80% training and 20% test following the order of generation.

Architecture. The branch and trunk networks both use L=2 hidden layers of width H=128 with layer normalization and tanh activations. The Chebyshev branch uses K=10 modes and the low-rank branch uses rank r=3, so that AR3×100 and BR128×3. The trunk network takes 2D coordinates as input (R2R128). Both gates α and β are implemented as a single fully connected layer of shape R256R128 followed by an element-wise sigmoid.

Training. All models are trained with Adam using learning rate η=3 × 104, mini-batches of 32 samples, and Nepochs=500 epochs. The loss is the per-point MSE defined in Eq. (15). Experiments were run in PyTorch on a single GPU; all quantitative results reported below are averaged over 3 independent runs with different random seeds.

2.3.3 Results

We visualize the performance of the proposed model using three types of plots for each test sample. For each benchmark, the figures below show a representative test sample with the input condition, the ground-truth solution, the NOASLRR prediction, and the absolute error; quantitative comparisons with the DeepONet and FNO baselines (including relative L2 and L errors averaged over 3 seeds) are reported in Table 1, so that the visual results below should be read together with that table.

images

1.   Initial condition or boundary condition (f)

2.   Ground truth solution (u)

3.   Predicted solution (𝒢~(f))

4.   Absolute error (|u𝒢~(f)|)

2.3.4 Extended Quantitative Evaluation

This subsection complements the training curves reported above with additional quantitative evidence requested to make the comparison with DeepONet and FNO more rigorous.

Comparison with Baselines (Mean ± Std)

Table 2 reports the final test MSE, the relative L2 error u𝒢~(f)2/u2, the relative L error, for DeepONet, FNO and NOASLRR. All error metrics are averaged over 3 independent runs with different random seeds and reported as mean ± standard deviation. Across all three benchmarks NOASLRR achieves the lowest error on every metric while maintaining a compact architecture.

images

Ablation Study

To isolate the contribution of each branch, we retrain NOASLRR on the heat equation after removing one component at a time: (i) without the Chebyshev spectral branch, (ii) without the low-rank branch, (iii) without the adaptive gates (replaced by an equal-weight average of the three branches), and (iv) with the pointwise MLP branch alone, which recovers a tuned DeepONet. As summarized in Table 3, removing the spectral branch raises the test MSE by roughly two orders of magnitude, confirming that the Chebyshev coefficients are the single most important source of improvement on this smooth benchmark. Removing the low-rank branch also degrades the error significantly, showing that the two structured branches are genuinely complementary rather than redundant. Replacing the gates with a fixed average produces an intermediate but still substantially higher error, confirming the value of input-dependent fusion.

images

Hyperparameter Sensitivity

The architecture introduces two new hyperparameters relative to DeepONet: the number of Chebyshev modes K and the rank r of the low-rank branch. Table 4 summarizes the sensitivity of NOASLRR on the heat equation when these are varied around the default values (K,r)=(10,3). The model is robust to moderate changes: varying K from 6 to 16 changes the test MSE by less than a factor of two, and varying r from 2 to 8 has a comparably mild effect. Very small K (K4) is the only regime in which the Chebyshev branch becomes too coarse to resolve the boundary data, and very large ranks (r16) begin to overfit on this small-scale benchmark. The default configuration (K,r)=(10,3) lies in the robust interior of this region.

images

Gating Analysis

To shed light on how the learned gates behave, we recorded the distribution of α(f) and β(f) on the test set of each PDE. For the heat equation, the average gate values are α0.45 and β0.41; for the Laplace equation they are α0.46 and β0.41; and for the Burgers equation α0.44 and β0.39. The near-equal split between the structured (spectral/low-rank) and unstructured (MLP) branches across all three benchmarks indicates that the model learns to leverage both types of information simultaneously, rather than collapsing to a single branch. The slightly lower β values (relative to α) suggest that the auxiliary representation—combining Chebyshev and low-rank features—receives somewhat more weight in the final fusion than the raw MLP branch, consistent with the benefit of structured inductive biases observed in the ablation study.

Mesh Invariance

Although NOASLRR is trained on a fixed 10×10 grid, its DeepONet-style trunk network makes it possible to evaluate the learned operator at arbitrary query points. To verify that the formulation preserves the claimed mesh invariance, we evaluate the heat-equation model on 20×20 and 40×40 grids obtained by bilinear interpolation of the training inputs and by querying the trunk at the finer coordinates. The relative L2 error at the training resolution (10×10) is 2.6 × 102; when evaluating the same trained model on the 20×20 grid the error increases moderately, and on the 40×40 grid it increases further. This gradual degradation—rather than catastrophic failure—confirms that the DeepONet-style trunk formulation provides meaningful generalization across discretizations, although performance at resolutions far from the training grid naturally decreases due to distribution shift in the input representation.

2.3.5 Discussion of Results

The proposed adaptive multi-representation neural operator demonstrates fast convergence and high accuracy across different PDE benchmarks. As shown in Table 1, the model achieves low mean squared error (MSE) after a relatively small number of training epochs, indicating efficient learning of the underlying operators.

For the 2D heat equation (Table 1), the MSE decreases rapidly from 1.36 at initialization to 1.27×104 after 500 epochs, demonstrating that the model accurately captures the evolution of the solution from the initial condition. Similarly, for the viscous Burgers’ equation (Table 1), the model achieves stable convergence, reaching an MSE of 4.62×102, despite the nonlinear advection term that typically increases the difficulty of approximation. Finally, the 2D Laplace equation (Table 1) shows that the operator effectively learns the mapping from boundary conditions to the solution field, achieving an MSE below 103 after 500 epochs.

These results indicate that the combination of pointwise, spectral, and low-rank representations, together with adaptive gating, enables the operator to efficiently learn both local and global patterns in the solution space. Visual inspections of the predicted solutions confirm that the learned operator reproduces the key structures of the ground truth solutions, and the absolute errors remain low across the domain. Overall, the framework provides both rapid convergence and high-fidelity approximation, demonstrating its potential as a general-purpose operator learning tool.

The training results presented in Fig. 5 demonstrate the effectiveness of the proposed NOASLRR method (shown in yellow) compared to baseline models such as DeepONet and FNO. The loss curves plot all three methods on a shared axis for each equation, so the gap between NOASLRR and the baselines is directly visible; the corresponding final-test statistics are reported in Table 2 and the ablation components in Table 3.

images images

Figure 5: Loss curves for the considered equations. From top to bottom: heat, Burgers, and Laplace.

For the Heat Equation, NOASLRR achieves significantly lower MSE loss throughout the training process, converging faster and exhibiting less fluctuation than DeepONet. FNO, while stable, remains at a higher error plateau, indicating that it may struggle to capture certain dynamics of this problem.

Similarly, for the Burgers’ Equation, NOASLRR outperforms both DeepONet and FNO, maintaining lower loss values over 500 epochs. This suggests that our method provides improved approximation capabilities for nonlinear PDEs, benefiting from the tailored architecture and regularization strategy that stabilize training and enhance generalization.

Overall, these results highlight the robustness and efficiency of the proposed NOASLRR approach in learning complex operator mappings, consistently achieving faster convergence and lower errors than the considered baselines.

3  Discussion

The proposed neural operator integrates multiple complementary representations of the input function within a unified framework. The use of pointwise, spectral, and low-rank embeddings introduces explicit inductive biases that reflect classical insights from numerical analysis and model reduction, while retaining the flexibility of data-driven operator learning.

A key aspect of the approach is the adaptive fusion of representations via learnable gating mechanisms. This design allows the model to dynamically adjust the relative importance of structured and unstructured features depending on the input function. In practice, such behavior is expected to be particularly beneficial in heterogeneous datasets, where smooth and highly structured functions coexist with more irregular or localized patterns.

The inclusion of Chebyshev-based spectral features provides a compact global description of the input function and is well suited for smooth operators commonly encountered in parametric PDEs. At the same time, the low-rank linear embedding imposes a structural constraint that reduces parameter redundancy and promotes generalization. These components can be interpreted as complementary: the spectral branch captures global functional behavior, while the low-rank branch emphasizes dominant correlations across the input domain.

Despite these advantages, the proposed approach has several limitations. First, the computation of spectral coefficients assumes that the input function is sampled on a fixed and normalized grid, which may restrict applicability in irregular or unstructured domains. While this limitation is common to many spectral methods, extending the approach to more general discretizations remains an open direction.

Second, the introduction of multiple branches and gating mechanisms increases architectural complexity relative to standard DeepONet. Although the number of parameters can be controlled through low-rank factorization, careful tuning of hyperparameters such as the spectral dimension and rank is required to achieve optimal performance.

Third, the experimental evaluation in this paper focuses on three canonical PDEs on relatively small 10×10 grids. While these benchmarks are sufficient to isolate the contribution of each branch through controlled ablations, they do not yet stress-test the approach on large-scale or chaotic systems such as 3D Navier–Stokes, Kolmogorov flow, or real-world geophysical data. Scaling NOASLRR to such settings—and studying the interaction between the spectral branch and highly non-smooth solutions—is an important direction for future work.

Finally, the present work focuses on supervised operator learning and does not explicitly incorporate physical constraints or conservation laws. Integrating physics-informed regularization or combining the proposed architecture with operator-aware loss functions represents a promising direction for future research.

Overall, the results suggest that combining structured representations with adaptive fusion mechanisms is a viable strategy for enhancing neural operator models, particularly in regimes where data efficiency and generalization are critical.

4  Conclusion

This work introduced a neural operator architecture that combines multiple representations of input functions within a DeepONet-style framework. By integrating pointwise embeddings with spectral representations based on Chebyshev polynomials and low-rank linear mappings, the proposed approach incorporates structured inductive biases while preserving the flexibility and mesh-invariance of neural operators.

Adaptive gating mechanisms were employed to fuse different representations in an input-dependent manner, allowing the model to balance expressivity and structure across diverse operator learning tasks. The resulting formulation provides a principled extension of existing neural operator architectures without relying on excessively deep or specialized network designs.

The proposed framework is broadly applicable to operator learning problems arising in scientific computing and surrogate modeling. Future work will explore extensions to irregular domains, physics-informed training strategies, and large-scale benchmarks to further assess the benefits of structured and adaptive representations in neural operator learning.

Acknowledgement: The authors acknowledge that this research was conducted in connection with the project supported by the Russian Science Foundation (RSF).

Funding Statement: The study was supported by grant No. 25-71-10012 from the Russian Science Foundation, https://rscf.ru/project/25-71-10012/.

Author Contributions: Data curation, investigation, software—Nikita Sakovich; conceptualization, methodology, validation—Dmitry Aksenov and Nikita Sakovich; formal analysis, project administration, writing—original draft—Ekaterina Pleshakova; supervision, writing—review and editing—Sergey Gataullin. All authors reviewed and approved the final version of the manuscript.

Availability of Data and Materials: The data that support the findings of this study are openly 2 February 2026 https://github.com/NekkittAY/NOASLRR_Neural_Operator.

Ethics Approval: Not applicable.

Conflicts of Interest: The authors declare no conflicts of interest.

References

1. Canuto C, Hussaini M, Quarteroni A, Zang T. Spectral methods: fundamentals in single domains. Berlin/Heidelberg, Germany: Springer; 2007. [Google Scholar]

2. Lu L, Jin PZ, Pang GF, Zhang ZQ, Karniadakis GE. Learning nonlinear operators via DeepONet based on the universal approximation theorem of operators. Nat Mach Intell. 2021;3(3):218–29. doi:10.1038/s42256-021-00302-5. [Google Scholar] [CrossRef]

3. Li ZY, Kovachki N, Azizzadenesheli K, Liu B, Bhattacharya K, Stuart A, et al. Fourier neural operator for parametric partial differential equations. arXiv:2010.08895. 2020. doi:10.48550/arXiv.2010.08895. [Google Scholar] [CrossRef]

4. Li ZY, Huang DZ, Liu B, Anandkumar A. Fourier neural operator with learned deformations for PDEs on general geometries. J Mach Learn Res. 2023;24:1–26. doi:10.48550/arxiv.2207.05209. [Google Scholar] [CrossRef]

5. Jin PZ, Meng S, Lu L. MIONet: learning multiple-input operators via tensor product. SIAM J Sci Comput. 2022;44(6):A3490–514. doi:10.1137/22M1477751. [Google Scholar] [CrossRef]

6. Srebro N, Jaakkola T. Weighted low-rank approximations. In: Proceedings of the 20th International Conference On Machine Learning (ICML-03); 2003 Aug 21–24; Washington, DC, USA. p. 720–27. [Google Scholar]

7. Chu M, Funderlic R, Plemmons R. Structured low rank approximation. Linear Algebra Its Appl. 2003;366:157–72. doi:10.1016/s0024-3795(02)00505-0. [Google Scholar] [CrossRef]

8. Lu L, Meng X, Cai S, Mao Z, Goswami S, Zhang Z, et al. A comprehensive and fair comparison of two neural operators (with practical extensions) based on fair data. Comput Methods Appl Mech Eng. 2022;393(48):114778. doi:10.1016/j.cma.2022.114778. [Google Scholar] [CrossRef]

9. Kovachki N, Lanthaler S, Mishra S. On universal approximation and error bounds for Fourier neural operators. J Mach Learn Res. 2021;22:1–76. doi:10.48550/arxiv.2107.07562. [Google Scholar] [CrossRef]

10. Bonev B, Kurth T, Hundt C, Pathak J, Baust M, Kashinath K, et al. Spherical fourier neural operators: learning stable dynamics on the sphere. In: Proceedings of the International Conference on Machine Learning 2023; 2023 Jul 23–29; Honolulu, HI, USA. p. 2806–23. [Google Scholar]

11. Zhao J, George R, Zhang Y, Li Z, Anandkumar A. Incremental fourier neural operator. arXiv:2211.15188. 2022. [Google Scholar]

12. Xiao Z, Kou S, Hao Z, Lin B, Deng Z. Amortized fourier neural operators. Adv Neural Inf Process Syst. 2024;37:115001–20. doi:10.52202/079017-3651. [Google Scholar] [CrossRef]

13. Liu X, Tang H. DiffFNO: diffusion fourier neural operator. In: Proceedings of The Computer Vision And Pattern Recognition Conference; 2025 Jun 11–15; Nashville, NT, USA. p. 150–60. [Google Scholar]

14. Hu P, Wang R, Zheng X, Zhang T, Feng H, Feng R, et al. Wavelet diffusion neural operator. arXiv:2412.04833. 2024. [Google Scholar]

15. Zheng J, Li W, Xu N, Zhu J, Lin X, Zhang X. Alias-free mamba neural operator. Adv Neural Inf Process Syst. 2024;37:52962–95. doi:10.52202/079017-1678. [Google Scholar] [CrossRef]

16. Bartolucci F, Bezenac E, Raonic B, Molinaro R, Mishra S, Alaifari R. Representation equivalent neural operators: a framework for alias-free operator learning. Adv Neural Inf Process Syst. 2023;36:69661–72. doi:10.52202/075280-3051. [Google Scholar] [CrossRef]

17. Bartolucci F, Bézenac E, Raonic B, Molinaro R, Mishra S, Alaifari R. Are neural operators really neural operators? Frame theory meets operator learning. arXiv:2305.19913. 2023. [Google Scholar]

18. Li Z, Kovachki N, Azizzadenesheli K, Liu B, Stuart A, Bhattacharya K, et al. Multipole graph neural operator for parametric partial differential equations. Adv Neural Inf Process Syst. 2020;33:6755–66. doi:10.48550/arxiv.2006.09535. [Google Scholar] [CrossRef]

19. Anandkumar A, Azizzadenesheli K, Bhattacharya K, Kovachki N, Li Z, Liu B, et al. Neural operator: graph kernel network for partial differential equations. In: Proceedings of the ICLR, 2020 Workshop on Integration of Deep Neural Models and Differential Equations; 2020 Apr 26; Ethiopia: Addis Ababa. [Google Scholar]

20. Li Z, Kovachki N, Choy C, Li B, Kossaifi J, Otta S, et al. Others Geometry-informed neural operator for large-scale 3D PDEs. Adv Neural Inf Process Syst. 2023;36:35836–54. [Google Scholar]

21. Chen G, Liu X, Meng Q, Chen L, Liu C, Li Y. Learning neural operators on riemannian manifolds. Natl Sci Open. 2024;3(6):20240001. doi:10.1360/nso/20240001. [Google Scholar] [CrossRef]

22. Zhao Z, Liu C, Li Y, Chen Z, Liu X. Diffeomorphism neural operator for various domains and parameters of partial differential equations. CCommun Phys. 2025;8(1):15. doi:10.1038/s42005-024-01911-3. [Google Scholar] [CrossRef]

23. Hao Z, Wang Z, Su H, Ying C, Dong Y, Liu S, et al. Gnot: a general neural operator transformer for operator learning. Int Conf Mach Learn. 2023;202:12556–69. [Google Scholar]

24. Wang T, Wang C. Latent neural operator for solving forward and inverse PDE problems. Adv Neural Inf Process Syst. 2024;37:33085–107. doi:10.52202/079017-1042. [Google Scholar] [CrossRef]

25. Rahman M, Ross Z, Azizzadenesheli K. U-no: U-shaped neural operators. arXiv:2204.11127. 2022. [Google Scholar]

26. Kartashov EM. Method for splitting integral transformation in problems of complex heat transfer. Russ Technol J. 2025;13(6):104–15. doi:10.32362/2500-316X-2025-13-6-104-115. [Google Scholar] [CrossRef]

27. Raonic B, Molinaro R, De Ryck T, Rohner T, Bartolucci F, Alaifari R, et al. Convolutional neural operators for robust and accurate learning of PDEs. Adv Neural Inf Process Syst. 2023;36:77187–200. [Google Scholar]

28. Wei M, Zhang X. Super-resolution neural operator. In: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition; 2023 Jun 2–7; Denver, CO, USA. p. 18247–56. [Google Scholar]

29. Li Z, Zheng H, Kovachki N, Jin D, Chen H, Liu B, et al. Physics-informed neural operator for learning partial differential equations. ACM/IMS J Data Sci. 2024;1(3):1–27. doi:10.1103/xyjy-gx6f. [Google Scholar] [CrossRef]

30. Hao W, Liu X, Yang Y. Newton informed neural operator for solving nonlinear partial differential equations. Adv Neural Inf Process Syst. 2024;37(3):120832–60. doi:10.1016/j.neunet.2025.108490. [Google Scholar] [PubMed] [CrossRef]

31. Hu Z, Cao Q, Kawaguchi K, Karniadakis G. Deepomamba: state-space model for spatio-temporal PDE neural operator learning. J Comput Phys. 2025;540:114272. [Google Scholar]

32. Gu J, Gao Z, Feng C, Zhu H, Chen R, Boning D, et al. NeurOlight: a physics-agnostic neural operator enabling parametric photonic device simulation. Adv Neural Inf Process Syst. 2022;35:14623–36. [Google Scholar]

33. Li B, Wang H, Feng S, Yang X, Lin Y. Solving seismic wave equations on variable velocity models with fourier neural operator. IEEE Trans Geosci Remote Sens. 2023;61(1):1–18. doi:10.1109/TGRS.2023.3333663. [Google Scholar] [CrossRef]

34. Diab W, Al Kobaisi M. Temporal neural operator for modeling time-dependent physical phenomena. Sci Rep. 2025;15(1):32791. doi:10.1038/s41598-025-16922-5. [Google Scholar] [PubMed] [CrossRef]

35. Mizera S. Scattering with neural operators. Phys Rev D. 2023;108(10):L101701. doi:10.1103/physrevd.108.l101701. [Google Scholar] [CrossRef]

36. Bonneville C, Bieberdorf N, Hegde A, Asta M, Najm HN, Capolungo L, et al. Accelerating phase field simulations through a hybrid adaptive Fourier neural operator with U-net backbone. NPJ Comput Mater. 2025;11(1):14. doi:10.1038/s41524-024-01488-z. [Google Scholar] [CrossRef]

37. Cai X, Wang Y, Zhang L. Optimus: an operator fusion framework for deep neural networks. ACM Trans Embed Comput Syst. 2022;22:1–26. doi:10.1145/3520142. [Google Scholar] [CrossRef]


Cite This Article

APA Style
Sakovich, N., Aksenov, D., Pleshakova, E., Gataullin, S. (2026). Neural Operators with Adaptive Spectral and Low-Rank Representations. Computers, Materials & Continua, 88(3), 97. https://doi.org/10.32604/cmc.2026.081449
Vancouver Style
Sakovich N, Aksenov D, Pleshakova E, Gataullin S. Neural Operators with Adaptive Spectral and Low-Rank Representations. Comput Mater Contin. 2026;88(3):97. https://doi.org/10.32604/cmc.2026.081449
IEEE Style
N. Sakovich, D. Aksenov, E. Pleshakova, and S. Gataullin, “Neural Operators with Adaptive Spectral and Low-Rank Representations,” Comput. Mater. Contin., vol. 88, no. 3, pp. 97, 2026. https://doi.org/10.32604/cmc.2026.081449


cc Copyright © 2026 The Author(s). Published by Tech Science Press.
This work is licensed under a Creative Commons Attribution 4.0 International License , which permits unrestricted use, distribution, and reproduction in any medium, provided the original work is properly cited.
  • 255

    View

  • 47

    Download

  • 0

    Like

Share Link