ConceptioArchivearXiv CS
arXiv CSopen access

Interpretable Kolmogorov-Arnold Network with Feature-Isolated Temporal Attention Mechanism for Electricity Load Forecasting

Unknown · 2026 · arxiv_cs
arXiv CS · Papers · License: Open Access · 2026
Open Source ↗Direct PDF ↓
machine learning, deep learning, neural networks

Interpretable Kolmogorov-Arnold Network with Feature-Isolated Temporal Attention Mechanism for Electricity Load Forecasting Jinhao Lia , Hao Wanga,b,∗ a Department of Data Science and AI, Faculty of Information Technology, Monash University, Melbourne, Victoria, Australia b Monash Energy Institute, Monash University, Melbourne, Victoria, Australia

arXiv:2606.23425v1 [cs.LG] 22 Jun 2026

Abstract Accurate electricity load forecasting is a crucial prerequisite for stable power system operations. While prevalent deep learning models present competitive performance, they often operate as black boxes and lack interpretability. However, such capability has increasingly become a key enabler to understand the influences of forecast drivers, thereby assisting more informed system operations. While the Kolmogorov-Arnold network (KAN) has emerged as a promising alternative because of its learnable activation function design, its direct application to time-series forecasting faces challenges in modeling complex temporal data patterns. Also, simple integration into existing architectures, such as serving as replacement of neural modules, cannot fully leverage KAN’s interpretability strengths. To address these gaps, this study develops LoadKAN, a novel hybrid and interpretable framework for load forecasting that synergistically combines a specifically-designed feature-isolated temporal attention mechanism with a KAN module. The attention stage aims to extract temporal dynamics from each input feature independently, such as historical load and human mobility, providing distilled feature representations to the KAN module for interpretable predictions. When evaluated on datasets from three representative U.S. electricity markets, our LoadKAN remains highly competitive when compared to extensively-tuned, state-of-the-art, black-box deep learning benchmarks. More importantly, LoadKAN’s interpretability enables a granular analysis of the learned non-linear relationships between six distinct mobility patterns and electricity load. Through KAN-learned activation functions, our quantitative sensitivity analyses on mobility features reveal complex and market-specific dependencies. These findings further demonstrate the ability of our LoadKAN to generate insights often obscured by opaque black-box neural forecasting models. Keywords: Load forecasting, Kolmogorov-Arnold network, deep learning, human mobility, electricity market

1. Introduction Accurate electricity load forecasting is a cornerstone of modern energy management, which is essential for maintaining the stability, efficiency, and economic viability of power systems worldwide [1, 2]. Inaccuracies in load forecasting can lead to significant operational inefficiencies, including suboptimal generation dispatch, increased reliance on expensive peaking power plants, and compromised grid reliability [3], potentially incurring substantial operational costs [4] and, in severe cases, supply disruptions [5]. Even modest errors can translate into millions of dollars in unnecessary expenses or lost revenue [4]. The global power generation market, valued at approximately US$1.67 trillion in 2023 [6], is projected to reach nearly US$2.9 trillion by 2030, with global electricity demand anticipated to grow by an average of 3.4% annually through 2026 [7]. This scale and growth highlight the critical nature of precise demand predictions. Therefore, advancing load forecasting methodologies is essential to navigating the complexities of an evolving energy landscape featured by increasing re∗ Corresponding author: Hao Wang.

Email addresses: [email protected] (Jinhao Li), [email protected] (Hao Wang)

newable energy integration [8, 9], more complex demand patterns from growing adoption of electric vehicles, and dynamic human activities [10]. 1.1. Motivation Traditional statistical models, such as autoregressive integrated moving average (ARIMA) [11], often struggle to capture the inherent non-linearities in time-series data. While contemporary deep learning models – such as recurrent neural network (RNN)-based [12], convolutional neural network (CNN)based [13], graph neural network (GNN)-based [14, 15, 16], and transformer-based architectures [17, 18] – have demonstrated strong predictive performance, they often operate as “black boxes”, hindering a deeper understanding of forecast drivers. However, such forecast interpretability has been increasingly recognized as an essential enabler in the field of electricity load forecasting to understand the impact of complex and dynamic exogenous features on electricity consumption. Among these features, human mobility patterns have emerged as significant predictors of electricity demand [19, 20, 21], reflecting the collective behavior of consumers and the operational rhythms of commercial and industrial sectors [22, 23]. However, the precise relationship between diverse mobility streams (e.g., activities in retail areas, workplaces, transit hubs,

and residential areas) and electricity load is complex, nonlinear, and often varies considerably across different geographical regions and electricity market characteristics [24, 25]. Unraveling these relationships is therefore crucial for gaining deeper insights into energy consumption dynamics. Consequently, a pressing need exists for forecasting models that achieve high accuracy while also providing clear and interpretable insights into how input features (particularly human mobility) influence electricity load. The presence of the Kolmogorov-Arnold network (KAN) [26] offers a compelling alternative paradigm. Unlike most neural networks that employ fixed and often simple activation functions at the neuron nodes, KAN features learnable activation functions, represented as splines, directly on the network’s edges. This architectural distinction is key: while blackbox neural models may necessitate separate and post-hoc interpretability techniques [27], such as Local Interpretable Modelagnostic Explanations (LIME) [28] or Shapley Additive exPlanations (SHAP) [29], to approximate a model’s decisionmaking, KAN is capable of embedding interpretability directly within its structure. Post-hoc methods, though useful, act as external auditors in nature, attempting to approximate a model’s complex logic. These approximations can be unstable or even misleading, potentially providing a false sense of understanding while obscuring the true drivers of a forecast [30]. In contrast, the learnable splines in KAN explicitly represent the learned functional relationships between individual input variables and the subsequent layer or output, thereby reducing reliance on potentially unreliable post-hoc tools and providing an inherently transparent mechanism for understanding feature contributions. Inspired by the distinguished neural architecture of KAN, the principal aims of this study are summarized as follows.

GRU [33], are widely used to capture temporal dependencies, often utilizing self-feedback mechanisms [12]. CNNs, such as TCN [34], offer effective feature extraction from the temporal dimension via dilated causal convolutions [13]. To address spatial dependencies, GNNs have been employed to extract embeddings from power grid topologies [15, 16] or capture spatial-temporal relationships at multiple scales using graph attention [14]. More recently, transformer architectures have become prominent for capturing long-range dependencies; examples include LDTformer, which incorporates hybrid timefrequency attention [17], and encoder-decoder structures designed for diverse temporal patterns [18]. Hybrid Deep Learning Methods. To leverage the distinct strengths of individual architectures, hybrid models have been extensively developed. One common strategy combines CNNs for feature extraction with RNNs for sequence modeling, such as feeding CNN-extracted features into bidirectional LSTMs [35] or using Conv2D-GRU structures to identify steep load changes [36]. Another approach integrates GNNs with other modules; for instance, SmartFormer integrates GNN components within transformer layers [37], while other frameworks combine graph convolutions with dendritic neural models [38] or attention mechanisms [39] to enhance spatial-temporal processing. Furthermore, transformers are frequently hybridized with CNNs [40, 41] or LSTMs [42, 43] to improve feature preprocessing and residual modeling [44]. Interpretable Methods. Compared to black-box deep-learning methods, interpretable neural forecasting methods, such as attention-based explainable transformer [45] and symbolic regression network [46], provide human-understandable insights into the forecasting results. Recently, the KAN [26] has emerged as a promising alternative with noticeable advantages. For example, the explainable transformers rely heavily on attention maps which only provide feature importance (i.e., a scalar indicating where to look) but fail to describe the functional relationship, i.e., how the features impact the output, e.g., positive vs. negative correlation, saturation, or quadratic growth, while the symbolic networks suffer from combinatorial complexity and sensitivity to noise. Unlike networks with fixed node activation functions, KAN employs learnable activation functions (namely splines) on edges, offering potential advantages in both function approximation and interpretability. However, the direct application of KAN to load forecasting faces challenges. Recent studies indicate that pure KAN structures often struggle with time-series characteristics, suffering from training instability and performance degradation as depth increases [47, 48]. While some initial attempts used pure KANs [49], results suggest significant architectural modifications are required for effective temporal forecasting. Consequently, current research focuses on integrating KAN into existing architectures, typically by replacing MLP layers. For example, KAN layers have been inserted into DLinear [50], TCN, and Transformer frameworks [51] to enhance accuracy. Other approaches adapt KAN for temporal modeling via recurrent structures [52] or integrate it with multi-head self-

• Explore KAN’s applicability for electricity load forecasting, in particular its inherent architectural transparency in elucidating how input features drive forecast outcomes, along with evaluating the predictive accuracy of KANbased models against established deep learning benchmarks to ensure viability. • Leverage KAN’s interpretability via its learnable splinebased activation functions to analyze how diverse human mobility patterns influence electricity consumption, aiming to provide insights into the complex energy-behavioral relationships. 1.2. Related Work Statistical Methods. Statistical methods, such as ARIMA, have historically been foundational in load forecasting. However, conventional models often struggle with non-linear data patterns due to their linearity assumptions, limiting accuracy in scenarios with complex load dynamics [11, 31]. Consequently, recent research has increasingly shifted toward deep learning alternatives. Deep Learning-based Methods. Benefiting from the capacity to model complex non-linearities, various deep learning architectures have been adopted. RNNs, particularly LSTM [32] and 2

attention [53] and CNNs [54]. While these hybrids improve forecasting performance, merely using KAN as a replacement module often fails to unlock its full interpretability potential. This creates a specific methodological gap: utilizing KAN not just for accuracy, but to preserve and interpret feature-wise dynamics, a gap that this study aims to fill.

Load (MW)

6 4

1e4 CAISO NYISO ERCOT

2 May 2020

Aug 2020

Nov 2020

Feb 2021

Date

May 2021

Aug 2021

Nov 2021

Figure 1: Load profiles of NYISO, CAISO, and ERCOT.

1.3. Contributions The above research gaps regarding KAN implementation can be summarized into two aspects: 1) the challenges of pure KAN structures in handling temporal dynamics and 2) the limited and diminishing interpretive depth when KAN is merely used to replace MLP components. To address them, this study develops LoadKAN – a novel hybrid and interpretable deep learning framework integrated with KAN. It uniquely designs a featureisolated temporal attention mechanism with a KAN module. The attention stage is engineered to process and extract temporal representations from each input feature sequence independently without entangling its distinct dynamics. These features include historical load, weather, and various human mobility metrics such as residential and workplace presence. The distilled and temporally-aware feature representations are then fed into the KAN module to perform the final load prediction. The architectural design of LoadKAN not only aims for accurate forecasting but is also strategically geared towards comprehensively exploring and interpreting the learned non-linear relationships between the processed input features and the electricity load, with a particular focus on deciphering the hidden interplay between diverse human mobility patterns and energy consumption. The main contributions of this paper are summarized as follows:

complementary sensitivity analysis to quantify the relative significance of these identified relationships across the three electricity markets. This analysis reveals interesting market-specific dependencies, such as the varying influence of outside activities in public places versus commercial mobility across different jurisdictions of U.S. electricity markets. The remainder of this paper is organized as follows. Section 2 details the used electricity load datasets, the ancillary features including human mobility data, and the formal problem definition for load forecasting. Section 3 presents the developed LoadKAN framework, elaborating on its non-entangled temporal feature processing stage and the KAN module. Section 4 describes the experimental setup, benchmark models, evaluation metrics, and presents a comprehensive analysis of the results, including performance comparisons, the impact of mobility features, and the interpretable analysis based on LoadKAN. 2. Load Dataset and Forecasting Task Formulation This section first outlines the datasets for electricity load forecasting in Section 2.1, followed by Section 2.2, where the load forecasting task is formally defined.

• We explore the potential of KAN-based neural models in performing electricity load forecasting and providing interpretable results, through comprehensive evaluation using case studies across representative U.S. electricity markets with significant differences in terms of input features.

2.1. Dataset Overview This study uses electricity load data and a range of ancillary features collected from three major U.S. electricity markets: the New York Independent System Operator (NYISO), the California Independent System Operator (CAISO), and the Electric Reliability Council of Texas (ERCOT).

• We develop the LoadKAN framework, a hybrid deep learning model that synergistically integrates a nonentangled temporal attention mechanism for feature-wise temporal pattern extraction with a KAN module for interpretable prediction. Unlike black-box neural models, LoadKAN enables granular analysis of how individual features affect forecast outcomes. Our experimental results demonstrate the effectiveness of our LoadKAN compared to established deep learning benchmark models across all three tested electricity markets and evaluation metrics.

Electricity Load Data. The electricity load data is sourced from the COVID-EMDA+ data hub [55]. Fig. 1 illustrates the load profiles for NYISO, CAISO, and ERCOT from May 2020 to November 2021. As depicted, ERCOT generally exhibits the highest load levels and considerable seasonal variation, followed by CAISO and NYISO, each displaying unique demand characteristics influenced by regional climates and consumer behaviors. These profiles highlight the diverse operational scales and temporal patterns across the markets. Weather and Market Price. To improve load forecasting accuracy, the load data is augmented with several categories of ancillary features. These include key meteorological variables from the respective market jurisdictions, such as dewpoint temperature, relative humidity, wind speed, and ambient temperature. Additionally, locational marginal price data for each electricity market is incorporated as an economic indicator that can influence electricity consumption.

• We discover interpretable insights by analyzing the impacts of human mobility behaviors on electricity load. First, our ablation study highlights the substantial positive impact of incorporating human mobility features across various models and markets. Second, in addition to KAN-visualized relationships between mobility features and electricity load, we provide an independent, 3

Mob. Change (%) Mob. Change (%)

150 100 50 0 50

Mob. Change (%)

CAISO 25 0 25 50 75

25 0 25 50 75

represents the vector of M input features at daily time step τ, the task is to predict the future electricity load sequence ŷt = [ŷt+1 , . . . , ŷt+H ] ∈ RH . Here, L represents the lookback window size (in days) and H is the forecast horizon (in days). Note that, to ensure strict forecasting realism and prevent data leakage, all exogenous inputs, including weather, human mobility, and locational marginal prices, are strictly lagged. At inference time (e.g., time step t), the model strictly relies on historical observations up to t to forecast the multi-step horizon from t +1 to t + H. No future values of these exogenous features are assumed to be available. The input data for training the model consists of a set of historical sequences and their corresponding future load values. Ntrain Let the training dataset be denoted as Dtrain = {(x(i) , y(i) )}i=1 , (i) (i) (i) where x = [fti −L+1 , . . . , fti ] is the i-th training input sequence (i) and y(i) = [y(i) ti +1 , . . . , yti +H ] is the corresponding H-step future load sequence. The test dataset is denoted similarly as Ntest Dtest = {(x(i) , y(i) )}i=1 . The LoadKAN model, denoted by M(xt ; Θ), aims to learn a mapping from the input sequence xt to the predicted future load sequence ŷt , where Θ represents the set of all learnable parameters within the model. The output of the model for a given input xt is written as ŷt = M(xt ; Θ) = [ŷt+1 , . . . , ŷt+H ]. The model’s parameters Θ are learned by minimizing the mean squared error (MSE) between the predicted load sequence and the actual future load sequence over the training dataset Dtrain . The MSE loss function for a single training sample (x(i) , y(i) ) is defined as

NYISO

1

1

02 c2 De

1

t2 Oc

02

02

1

g2 Au

1 02

n2 Ju

r2 Ap

02

1

0 02

02 b2 Fe

02

0

c2 De

Oc

t2

0

0 02

02 g2 Au

n2 Ju

Ap

r2

02

0

ERCOT

Date Retail & Recreation

Grocery & Pharmacy

Parks

Transit Stations

Workplaces

Residential

Figure 2: Mobility features of CAISO, NYISO, and ERCOT.

Human Mobility Data. Recognizing the significant impact of human presence and activity on electricity demand [19, 20], this study includes human mobility data sourced from Google’s COVID-19 Community Mobility Reports (CCMR) [56]. The CCMR dataset quantifies daily mobility trends across six distinct categories: 1. Retail & Recreation: Mobility trends for places like restaurants, cafes, libraries, and movie theaters. 2. Grocery & Pharmacy: Mobility trends for places like grocery markets, food warehouses, farmers markets, specialty food shops, drug stores, and pharmacies. 3. Parks: Mobility trends for places like national parks, public beaches, marinas, dog parks, plazas, and public gardens. 4. Transit Stations: Mobility trends for public transport hubs such as subway, bus, and train stations. 5. Workplaces: Mobility trends for places of work. 6. Residential: Mobility trends for places of residence.

H

L(y(i) , ŷ(i) ) =

1 X (i) 2 (y − ŷ(i) ti +h ) . H h=1 ti +h

(1)

The overall objective is to find the optimal set of parameters Θ∗ that minimizes the average MSE loss over the entire training dataset, expressed as Θ∗ = argmin Θ

1

N train X

Ntrain i=1

L(y(i) , M(x(i) ; Θ)).

(2)

While sub-hourly forecasting is crucial for real-time dispatch, the daily-resolution forecasting developed in this study serves essential, macro-level operational and planning use cases. Accurate multi-day daily forecasts are essential for independent system operators (ISOs) and generation companies to perform unit commitment of slow-starting baseload generators, schedule sufficient operating reserves and long-duration energy storage operations, and plan critical system maintenance. Furthermore, since the human mobility metrics utilized in this study are inherently aggregated daily, they act as robust indicators of macro-level behavioral shifts.

These mobility metrics are measured as a daily percentage change in visitors (for categories 1-5) or time spent (for category 6) relative to a baseline period – the median value from the 5-week period from January 3rd to February 6th, 2020. Fig. 2 provides a visualization of these six mobility features for CAISO, NYISO, and ERCOT from approximately April 2020 to December 2021, clearly showing distinct regional variations. Note that all features described above are aggregated to a daily resolution. This daily aggregated dataset forms the foundation for the forecasting task formulated next. 2.2. Task Formulation

3. Load Forecast Framework of LoadKAN

The objective of this study is to develop a model for accurate multi-step daily electricity load forecasting, leveraging the daily aggregated features outlined in Section 2.1. Given a historical sequence of M input features up to the current time step t, denoted as xt = [ft−L+1 , . . . , ft ], where each fτ ∈ R M

The LoadKAN framework is engineered for accurate electricity load forecasting, combining temporal feature extraction with interpretability and expressive capacity via KAN. As illustrated in Fig. 3, the architecture proceeds in two principal 4

Conv-Proj Convolution Projection

Load

Temp-Attn Temporal Attention

KAN Neuron

Data Forward

in where Wm,d and Bin m,d are the scalar learnable weight and bias for the d-th filter of the m-th feature group. The output of this layer is denoted as Hproj ∈ RB×(M·Dh )×L . Eq. (3) expands the neural model’s capacity, enabling it to encode localized context for each feature independently before temporal processing begins.

Spline Predicted Actual Gradient Load Backward Load Function

MW

Conv-Proj Eq. (3)

Weather Info oC

Temp-Attn Eqs. (4)-(7)

Conv-Proj Eqs. (8)-(9)

Predictions MW

Accelerated by Parallel Computation Conv-Proj

Temp-Attn

Conv-Proj

Feature-Isolated Temporal Processing

Reshaping and Positional Encoding. The projected sequences Hproj are reshaped and permuted to Hatt_in ∈ R(B·M)×L×Dh . Such transformation effectively creates a batch where each of the M features from each of the B samples is treated as an independent sequence of length L and dimension Dh for the attention mechanism. Standard sinusoidal positional encoding [57] P ∈ RL×Dh is added element-wise to these sequences, formulated as

MSE Loss Human Mobility Info

Eq. (1)

Percentage

Conv-Proj

0%

Input Data

Temp-Attn

Conv-Proj

KAN Plugin For Final Forecast Eqs. (12)-(14)

LoadKAN Framework

Figure 3: The LoadKAN framework.

H′att_in = Hatt_in + P,

stages: first, a non-entangled temporal feature processing stage captures the dynamics of each input feature sequence independently; second, a KAN module models the relationships between these processed feature representations and the final load forecast. The following section provides a rigorous mathematical formulation of each module within LoadKAN. For a specific forecast initiation time t, the input to the LoadKAN model can be expressed as xt = [ft−L+1 , . . . , ft ], where each fτ ∈ R M represents the vector of M input features (i.e., historical load and exogenous variables like mobility metrics) at time step τ. Thus, xt can be viewed as a matrix in RL×M . For batch processing, the input can be written as Xbatch ∈ RB×L×M , where B is defined as the batch size. The LoadKAN’s objective is to predict the future load sequence ŷt = [ŷt+1 , . . . , ŷt+H ] ∈ RH .

In Eq. (4), the components of P are defined for position l ∈ {0, . . . , L − 1} and dimension index k as Pl,2k = sin(l/θ2k/Dh ),

Pl,2k+1 = cos(l/θ2k/Dh ),

(5)

where θ is a large constant set to a default value of 10000. Eq. (4) and (5) ensure the model considers the chronological sequence of the input data, allowing it to distinguish between recent trends and distant historical patterns. Feature-Wise Multi-Head Self-Attention. The positionally encoded sequences H′att_in are processed by a stack of Natt_layers transformer encoder layers. Each layer comprises a multi-head self-attention (MHSA) mechanism and a position-wise feedforward network (FFN), with layer normalization and residual connections. For each sequence z ∈ RL×Dh in H′att_in , the MHSA output is written as

3.1. Non-Entangled Temporal Feature Processing via Attention Mechanism This initial stage aims to independently process each of the M input features over the lookback window L. In this study, “non-entangled” refers to the design in which each input feature sequence is processed independently in the temporal attention stage before any cross-feature interaction is introduced. The goal is to derive a condensed and temporally-aware representation for each feature before these representations are collectively interpreted by the subsequent KAN module. This featureisolated approach ensures that the unique temporal dynamics of each input stream are distinctly captured.

MHSA(z) = Concat(head1 , . . . , headNh )WO .

(6)

Each head j is calculated as head j = Attention(zWQj , zWKj , zWVj ),    (zWQj )(zWKj )T   (zWV ),  = softmax  √ j  dk

Feature-Isolated Input Projection. The batch input Xbatch ∈ RB×L×M is first transposed to X′batch ∈ RB×M×L , ensuring the alignment with the channel-first convention for 1D convolutions. Each of the M feature sequences is then independently projected into a higher-dimensional embedding space of dimension Dh , representing hidden dimension per feature. This projection is performed by a 1D convolutional layer configured with M input channels, M · Dh output channels, a kernel size of 1, and M groups. For a single instance x′t ∈ R M×L from X′batch , let (x′t )m,ℓ be the value of the m-th feature at time step ℓ within the lookback window (ℓ ∈ {1, . . . , L}). The projection for the m-th feature group and its d-th output channel (d ∈ {1, . . . , Dh }) at time step ℓ can be formulated as in (Hproj )b,(m−1)Dh +d,ℓ = Wm,d · (X′batch )b,m,ℓ + Bin m,d ,

(4)

(7)

where WQj , WKj , WVj are learnable projection matrices for queries, keys, and values for head j, Nh is the number of heads, dk is the dimension of keys per head, and WO is an output projection matrix. The FFN is set as a two-layer MLP. This processing allows each feature’s temporal sequence to attend to its own past values, capturing intricate temporal dependencies independently. The output of the MHSA is denoted as Hatt_out ∈ R(B·M)×L×Dh . As shown in Eqs. (6) and (7), our MHSA, unlike standard architectures that entangle all features, processes each feature’s history independently, which acts as a temporal filter, identifying and weighting the most critical historical moments for that specific feature while suppressing irrelevant noise.

(3) 5

dently, preventing feature cross-talk until the final interpretable KAN layer. More importantly, this isolation is an essential prerequisite for the subsequent interpretable KAN analysis. In standard attention architectures, the mixing of features creates entangled latent embeddings. If a KAN layer were applied to such embeddings, the learned functions would describe relationships with abstract latent variables, not the physical drivers. By strictly prohibiting feature interaction until the final aggregation stage, our mechanism successfully prevents this entanglement. This ensures that the input to each KAN spline remains a pure representation of the specific real-world feature (e.g., mobility), guaranteeing that the visualized functions reflect true physical dependencies rather than opaque model artifacts.

Temporal Information Aggregation and Output Projection. The temporally processed information for each feature is aggregated by selecting the output corresponding to the last time step from Hatt_out , expressed as hlast = Hatt_out [:, −1, :] ∈ R(B·M)×Dh . This choice is consistent with the forecasting formulation, where predictions are initiated from the most recently observed time step t. Since the final output of the self-attention module attends to the entire lookback window, it provides a compact feature-specific representation that summarizes informative historical signals conditioned on the latest state. This output hlast is further reshaped to Hfeatwise ∈ RB×M×Dh , which is further converted into Hconv_in ∈ RB×(M·Dh )×1 to be processed by a final feature-isolated 1D convolution. This layer has M · Dh input channels, M output channels, kernel size 1, and M groups, applying an independent linear transformation to each feature’s Dh -dimensional aggregated temporal representation. After such an aggregation layer, a single scalar value rm′ for each feature m is finally obtained and expressed as T out rm′ = (wout m ) hfeatwise,m + bm ,

3.2. KAN Module for Final Forecast As illustrated in Fig. 3, the KAN module acts as the final forecasting module, mapping the processed feature representations R ∈ RB×M from the attention stage to the H-step ahead load forecast Ŷ ∈ RB×H . This KAN layer is constructed using learnable B-spline activation functions, enabling it to model non-linear interactions between the processed features and the output predictions in an inherently interpretable manner.

(8)

where hfeatwise,m ∈ RDh represents the aggregated representation Dh out for feature m, and wout m ∈ R , bm ∈ R denote learnable parameters. The collection of these values forms R′raw ∈ RB×M . Eq. (8) condenses the complex historical dynamics of feature m into a single scalar value, effectively summarizing the current state of that feature based on its past trajectory.

B-Spline Basis Functions. The foundation of KAN’s adaptive activations lies in a set of B-spline basis functions [26]. For an input scalar x (an element rm(b) from R) within a defined domain [dmin , dmax ], B-splines of degree p are constructed over a knot vector t = (t0 , t1 , . . . , tNb +p ), where Nb is the number of basis functions. The k-th B-spline basis function, Bk,p (x), is defined by the Cox-de Boor recursion formula and formulated as    1 if tk ≤ x < tk+1 , Bk,0 (x) =  (10)  0 otherwise

Final Processed Feature Representation. A hyperbolic tangent activation function, defined as tanh(·), is applied element-wise to obtain the final processed feature representation vector R ∈ RB×M : R = tanh(R′raw ). (9) Each row r(b) = [r1(b) , r2(b) , . . . , r(b) M ] of R represents the input (b) to the KAN layer, where rm is the distilled and temporallyaware representation of the m-th original input feature for batch sample b. Eq. (9) normalizes the aggregated features into the range of [−1, 1]. Since the following KAN layer operates over a bounded domain, this normalization is crucial for handling realworld data outliers and ensuring the interpretable layer receives consistent, stable inputs. The design choice to process features in isolation before aggregation is driven by the need to prevent both signal dominance and temporal blurring. Within this design, the featurewise attention weights are learned to identify informative historical time steps within each individual feature sequence, thereby allowing the model to emphasize the most forecastrelevant temporal moments of each feature while suppressing less informative variations. By employing a feature-isolated attention mechanism, we effectively decouple the temporal processing of each variable. Such a tailored mechanism allows our framework to act as a collection of specialized experts: one attention head focuses exclusively on extracting the periodicity of the load curve, while another parallel head independently identifies the unique lag structures of human mobility patterns. This architectural constraint ensures that the unique temporal signature of every input feature is preserved and refined indepen-

For p > 0, we have the following recursive expression Bk,p (x) =

tk+p+1 − x x − tk Bk,p−1 (x) + Bk+1,p−1 (x). (11) tk+p − tk tk+p+1 − tk+1

We handle coincident knots by setting terms to zero. The Bspline module computes a vector (with the length of Nb ) of basis function values – ϕ(x) = [B0,p (x), . . . , BNb −1,p (x)]T . When applied to each element rm(b) of the input representation R, it yields basis values Φ ∈ RB×M×Nb , where Φb,m,k′ = Bk′ −1,p (rm(b) ) for k′ ∈ {1, . . . , Nb }. Unlike standard neural networks that use fixed linear weights, Eqs. (10) and (11) enable our neural model to construct flexible, learnable curves, thereby capturing highly non-linear relationships between the input features and the electricity load, such as threshold effects or saturation points. KAN Layer Formulation. The KAN layer takes the processed feature representations R ∈ RB×M as input and produces the forecast Ŷ ∈ RB×H . For each output forecast step h ∈ {1, . . . , H}, the prediction ŷ(b) t+h for batch sample b (correspond(b) ing to input xt ) is modeled as: M  X  (b) (b)   ŷ =  fm,h (rm ) + βh , (12) t+h

m=1

6

where rm(b) is the m-th processed input feature for sample b, βh is a learnable bias term for the h-th output step, and each univariate function fm,h (·) is approximated by a linear combination of B-spline basis functions, expressed as fm,h (rm(b) ) =

Nb X

wm,h,k′ · Bk′ −1,p (rm(b) ),

Algorithm 1 Training Process of the LoadKAN Framework Ntrain Require: Training dataset Dtrain = {(x(i) , y(i) )}i=1 , Lookback window L, Forecast horizon H, Number of features M, Hidden dimension Dh , Number of B-spline basis functions Nb , Degree of splines p, Batch size B. Ensure: Optimal model parameters Θ∗ . 1: Initialize model parameters Θ randomly. 2: while not converged or max epochs not reached do 3: Sample a mini-batch of inputs Xbatch ∈ RB×L×M and targets Ybatch ∈ RB×H . ▷ Stage 1: Feature-Isolated Temporal Attention ′ 4: Transpose input to Xbatch ∈ RB×M×L . 5: Apply feature-isolated 1D convolution to obtain Hproj ∈ RB×(M·Dh )×L . 6: Reshape Hproj and add positional encoding P to obtain ′ Hatt_in ∈ R(B·M)×L×Dh . 7: Apply feature-wise Multi-Head Self-Attention (MHSA) to get Hatt_out . 8: Extract the last time step for temporal aggregation: hlast = Hatt_out [:, −1, :]. 9: Apply output 1D convolution to hlast to yield R′raw ∈ RB×M . 10: Apply activation to get final processed representations: R = tanh(R′raw ). ▷ Stage 2: KAN Module for Final Forecast 11: Compute B-spline basis function values Φb,m,k′ = Bk′ −1,p (rm(b) ) for all items in R. 12: Compute H-step ahead predictions: ŷ(b) = t+h P M P Nb ( m=1 k′ =1 wm,h,k′ · Φb,m,k′ ) + βh . ▷ Optimization (b) 1 P B PH 13: Compute the MSE loss: L = B·H b=1 h=1 (yt+h − (b) 2 ŷt+h ) . 14: Update model parameters Θ using the Adam optimizer to minimize L. 15: end while 16: return Θ∗

(13)

k′ =1

where wm,h,k′ are the learnable spline coefficients. Each function fm,h (rm(b) ) represents a learnable activation function specific to the m-th processed feature when predicting the h-th future load value. Hence, the KAN layer operation for the h-th forecast step can be further broken down into M N  b X X  (b) ŷt+h =  (14) wm,h,k′ · Φb,m,k′  + βh . m=1 k′ =1

Eq. (14) replaces the opaque matrix multiplications of “blackbox” neural models with a transparent, additive structure, enabling the visualization and interpretation of exactly how a change in a single input feature impacts the final load forecast. In summary, the hybrid and feature-isolated structure of LoadKAN enables learning distinct and highly non-linear relationships for each processed input feature, as well as explaining how it contributes to each step’s prediction in the forecast horizon. The feature-isolated temporal processing stage is essential to ensuring that these final relationships are learned based on individually refined feature representations without entangled dynamics. The algorithmic procedure of our LoadKAN is provided in Algorithm 1. Remark 1 (KAN Interpretability and Expressivity). The interpretability of the KAN plugin comes from the fundamental additive decomposition form of the Kolmogorov-Arnold Representation Theorem. The theorem posits that any multivariate continuous function defined on a bounded domain can be represented as a finite sum of continuous univariate functions, creating the additivity attribute for KAN. While the Kolmogorov-Arnold Representation Theorem requires a specific nested structure to achieve universality for any continuous function, the original work of KAN [26] demonstrates that even shallow or constrained KAN structures, like Eq. (12) in our study, are still powerful approximators. Additionally, the additive nature of KAN does not compromise its expressivity. By mapping each processed feature into multiple learnable B-spline basis functions with dynamic, learnable coefficients, the model maintains high expressive capacity in capturing highly non-linear, smooth patterns like threshold effects or saturation points that simpler additive models, such as ReLU-based sub-networks relying on piecewiselinear approximations [58, 59, 60], might miss.

ison, the metrics for assessing performance, and the comprehensive setup of our experiments. 4.1.1. Benchmarks To rigorously evaluate the performance of our developed LoadKAN model, we introduce a comparative baseline using six benchmark models, including a direct application of KAN and five widely recognized neural network architectures commonly employed for time-series forecasting tasks, including MLP, LSTM [32], GRU [33], TCN [34], Transformer [57], Informer [61], Chronos [62], and PureKAN [49, 48]. Detailed descriptions of these models, as well as hyperparameter configurations are provided in Appendix A.

4. Experiments

4.1.2. Evaluation Metrics To quantitatively assess and compare the performance of the developed LoadKAN model against the benchmarks, we evaluate their predictions on the test set, previously defined

4.1. Experimental Settings This subsection outlines the framework for our empirical evaluation, detailing the benchmark models used for compar7

as Dtest . The evaluation considers the forecasting accuracy over the defined forecast horizon H using three standard metrics: root mean squared error (RMSE), mean absolute percentage error (MAPE), and the coefficient of determination (R2 ). The detailed formulations of these metrics are provided in Appendix B.

4.2.1. Forecast Performance Analysis With all models incorporating mobility features, the comprehensive results are summarized in Table 1. Note that key benchmarks used in our experiments are extensively tuned, and the results shown in Table 1 reflect the best-performing model with optimal hyperparameter configurations. The details of hyperparameter search are reported in Appendix C. Notably, the PureKAN model (which aims to assess the applicability of KAN without modifications) consistently presents significantly poorer performance across all three markets compared to the other deep learning benchmarks and the developed LoadKAN. For instance, in the NYISO market, PureKAN yields a MAPE of 9.87% and a low R2 score of 0.281, indicating its predictions are substantially less accurate than more established architectures. Similarly, high errors are observed in CAISO and ERCOT, with MAPEs of 6.47% and 7.82%, and RMSEs of 1943 MW and 4093 MW, respectively. These results empirically indicate the challenges that KAN faces in directly modeling complex temporal dependencies without specific architectural adaptations for sequence processing, such as the temporal attention mechanism employed in our LoadKAN. As noted in Section 1.2, this finding aligns with discussions in the literature [48, 49] regarding the limitations of standard KAN for direct application to time-series data. Given this considerably weak performance, PureKAN will not be included in the subsequent analysis. Regarding our developed LoadKAN, the experimental results demonstrate that it remains highly competitive and achieves the best overall balance (i.e., prediction accuracy and transparency) across all three markets. While the extensive hyperparameter tuning enables specific state-of-the-art architectures, such as Informer, to slightly exceed LoadKAN in particular scenarios, our model consistently performs within the top tier while providing the unique advantage of intrinsic interpretability.

4.1.3. Experimental Setup and Configurations This subsection details the experimental setup, including data preparation, training procedures, implementation settings, and the specific configurations for the benchmark models and our developed LoadKAN. Data Preparation. The original tabular dataset is divided chronologically into training and test sets, maintaining the temporal order crucial for time series forecasting. The train set comprises the initial 80% of the data, while the remaining 20% constitutes the test set used for final performance evaluation. Each feature within the train and test sets is separately normalized using min-max scaling into the range of [−1, 1]. To finally derive the train and test sets – Dtrain and Dtest defined in Section 2.2, we create time-series sequences in a rolling-horizon manner based on the two parameters – historical input length L and forecast horizon H with default values of 7 and 3 in our study, respectively. The 7-day lookback window is selected to capture weekly temporal regularities in daily electricity load, such as weekday-weekend demand differences. The 3-day forecast horizon represents a practical multi-day-ahead forecasting task that is relevant to short-term operational planning. Training Procedure. All experiments are performed on an NVIDIA V100 GPU. The implementations are developed using Python (version 3.10.13) and the PyTorch deep learning framework (version 1.12.0). All neural network models, including the benchmarks and LoadKAN, are trained using a consistent procedure to ensure fair comparison. The Adam optimizer is utilized for updating model parameters. The learning rate is set to 0.001. Models are trained using a batch size of 32. Training is conducted for a maximum of 300 epochs. An early stopping mechanism is implemented to mitigate overfitting; training is terminated if the training loss does not show significant improvement for 50 consecutive epochs.

NYISO. In the NYISO market, LoadKAN achieves an MAPE of 3.34%, an RMSE of 847 MW, and an R2 score of 0.914. Under this rigorous hyperparameter search, the Informer model slightly exceeds LoadKAN’s predictive accuracy, recording a MAPE of 3.17%, an RMSE of 812 MW, and an R2 of 0.924. While the Informer provides a marginal accuracy gain, LoadKAN’s performance represents a substantial improvement over traditional benchmarks like the MLP (4.88% MAPE) and remains within a very narrow 0.17% MAPE margin of the market’s best performer.

Neural Architecture Design. The architectural specifics for each model, i.e., both baselines and our LoadKAN, are outlined in Appendix A.

CAISO. Trends in the CAISO market are similar, where LoadKAN attains a low MAPE of 1.94% and RMSE of 641 MW, alongside a high R2 of 0.9716. In this market, the TCN model is the most competitive, slightly outperforming our model with a MAPE of 1.81% and an RMSE of 596 MW. Despite the TCN’s slightly higher precision, LoadKAN demonstrates substantial superiority over other standard benchmarks, such as LSTM/GRU (MAPEs above 3.1%), and matches the performance of complex transformer-based architectures while maintaining its structural transparency.

4.2. Experimental Results This subsection presents the outcomes of our experiments, beginning with an overall forecast performance comparison of LoadKAN against the benchmark models in Section 4.2.1, followed by Section 4.2.2, where an ablation study is conducted to quantify the impact of human mobility features. Section 4.2.3 provides a detailed interpretable analysis of LoadKAN’s learned relationships and a discussion of their broader implications. 8

Table 1: Load forecast performance metrics (MAPE, RMSE, R2 ) in NYISO, CAISO, and ERCOT markets with the inclusion of mobility features. The Transformer model is referred to as Trans. for brevity.

Market NYISO

CAISO

ERCOT

Metric MAPE RMSE (MW) R2 MAPE RMSE (MW) R2 MAPE RMSE (MW) R2

MLP 4.88% 1172 0.776 3.72% 1276 0.864 4.52% 2743 0.831

LSTM 4.24% 1047 0.814 3.14% 1077 0.903 4.11% 2446 0.864

GRU 4.31% 1062 0.807 3.22% 1098 0.897 4.19% 2478 0.859

TCN 3.44% 861 0.908 1.81% (1st) 596 (1st) 0.978 (1st) 3.16% 1817 0.927

Trans. 3.51% 877 0.903 2.09% 682 0.963 2.97% (2nd) 1708 (2nd) 0.939 (2nd)

ERCOT. The results in the ERCOT market highlight the particular strength of LoadKAN, where it secures the best overall performance with a MAPE of 2.91%, RMSE of 1674 MW, and a leading R2 of 0.9429. In this market, LoadKAN outperforms the best-performing baseline (Transformer at 2.97% MAPE). The gap between LoadKAN and traditional recurrent models like LSTM and GRU is particularly pronounced, with LoadKAN reducing the MAPE by approximately 29.2% compared to the LSTM’s 4.11%. Furthermore, LoadKAN reduces the RMSE by over 770 MW compared to the best recurrent benchmark, indicating its superior ability to capture the high-variance load patterns characteristic of the ERCOT market. These findings across the three markets demonstrate the effectiveness and competitiveness of the LoadKAN architecture. We explicitly note that LoadKAN does not uniformly outperform all baselines across every market and metric. Specifically, through extensive hyperparameter tuning, the Informer and TCN models achieved marginally higher accuracy in the NYISO and CAISO markets, respectively. However, LoadKAN secures best-in-class results in ERCOT and consistently remains within the top tier (e.g., within 0.2% in MAPE of the best-performing models) across the others. This indicates that LoadKAN’s underlying mechanism, combining dedicated temporal feature processing with KAN’s expressive capacity, provides a highly competitive alternative that successfully bridges the gap between predictive power and essential structural interpretability. Additionally, the time costs for LoadKAN training are 201, 55, and 186 seconds for the NYISO, CAISO, and ERCOT. Notably, in the CAISO market, LoadKAN demonstrates better convergence efficiency, completing training in 55 seconds (faster than both the Transformer and PureKAN). Thus, the marginal computational overhead is a reasonable and necessary trade-off to achieve the framework’s core objective: unlike the faster but opaque benchmarks, LoadKAN provides granular interpretability, allowing stakeholders to explicitly visualize and understand the non-linear relationship between each specific feature and the electricity load.

Informer 3.17% (1st) 812 (1st) 0.924 (1st) 2.03% 668 0.967 3.03% 1754 0.936

Chronos 4.07% 1009 0.832 2.72% 937 0.926 3.83% 2246 0.874

PureKAN 9.87% 2244 0.281 6.47% 1943 0.651 7.82% 4093 0.584

LoadKAN 3.34% (2nd) 847 (2nd) 0.914 (2nd) 1.94% (2nd) . 641 (2nd) 0.971 (2nd) 2.91% (1st) 1674 (1st) 0.942 (1st)

formers, different features are mixed into latent embeddings, potentially leading to signal dominance where a high-variance feature masks the subtle but important temporal signatures of others [63, 64, 65, 66]; 2) Noise Propagation: Full interaction allows noise in one feature to garble the representation of another [63]. Additionally, in the context of electricity load forecasting, the total observed load can be considered the result of additive superposition of various demand drivers. For instance, the demand surge caused by increased transit mobility and the demand shift caused by residential activity act as distinct signals that sum at the grid level. Benefiting from the additive property of KAN, our LoadKAN represents the model as a collection of these feature-wise contributions, thereby aligning the model structure with the physical law of superposition in power systems.

4.2.2. Ablation Study – The Impact of Mobility Features Building upon the demonstrated forecast performance where mobility features are integral, this subsection further assesses their specific contribution through an ablation study, which compares the performance of each model when trained with and without integrating these mobility-related inputs across the NYISO, CAISO, and ERCOT markets. The percentage changes in MAPE, RMSE, and R2 due to the inclusion of mobility features are depicted in Fig. 4. Note that the improvement percentages have been capped within the range of [−100%, 100%] for better readability. The inclusion of mobility features demonstrates a significantly positive impact on load forecasting performance. Out of 54 evaluated scenarios, i.e., model-market-metric combinations, approximately 77.8% of scenarios show performance gains. On average, mobility features contribute to an approximate 16.28% reduction in MAPE, a 16.90% reduction in RMSE, and a 189.10% increase in R2 across all combinations. This suggests that mobility data provides valuable contextual signals, capturing dynamic shifts in electricity consumption patterns. Remark 2 (Potential Rationales for LoadKAN’s Performance). More specifically, integrating mobility data enhances the perIn high-dimensional time-series forecasting, models that do formance of all neural models, albeit to varying degrees. The not restrict feature interaction at early stages of the neural developed LoadKAN model consistently and substantially benpipeline may suffer from two issues, as observed and discussed efits from such data augmentation, achieving notable error rein the literature: 1) Signal Entanglement: In models like transductions such as a 31.15% decrease in MAPE and a 35.32% 9

Improvement (%) Improvement (%) Improvement (%)

RMSE

100

accurate predictions across various models and markets. The developed LoadKAN architecture, in particular, demonstrates a strong aptitude for capitalizing on this supplementary information, which contributes significantly to its outstanding forecasting capabilities documented in the overall performance comparison.

50 0 50 100

Market CAISO ERCOT NYISO

R2

100

4.2.3. Interpretable Analysis via LoadKAN In addition to the previous findings of LoadKAN’s accurate forecasts and the significant positive impact of mobility features, we now focus on analyzing the model’s interpretability to understand how it leverages mobility information. Through the unique architecture of KAN, where activation functions are learnable splines on the edges, this study explores the learned relationships between the six distinct human mobility features and the forecasted electricity load across NYISO, CAISO, and ERCOT. As described in Section 2.1, the mobility features include: 1) Retail & Recreation; 2) Grocery & Pharmacy; 3) Parks; 4) Transit Stations; 5) Workplaces; and 6) Residential. The analysis focuses on visualizing and quantifying these relationships through learned activation functions and their sensitivities, aiming to demonstrate LoadKAN’s capability to provide not only accurate forecasts but also interpretable insights into the complex interplay between human mobility and electricity consumption. Our analysis first examines the learned activation functions by the KAN plugin for three-day-ahead electricity load forecasting by using KAN’s input (i.e., the output of the featureisolated attention) related to the six human mobility features. Figs. 5, 6, and 7 depict these activation functions for the three markets, respectively, illustrating the learned relationship between each processed mobility feature and the KAN-output predictions. The significant positive correlations between the processed mobility representation and the corresponding raw mobility input are detailed in Appendix D, making the scalar representation a high-fidelity proxy for the actual mobility features. Therefore, an increased value of the scalar representation signifies more human presence or activity in that category. For instance, an increased residential value indicates that more people are at their places of residence.

50 0 50 100

Market CAISO ERCOT NYISO

MAPE

100 50 0 50 100

Market CAISO ERCOT NYISO

MLP

LSTM

GRU

TCN

Model

Trans. LoadKAN

Figure 4: Performance improvements after integrating mobility features.

decrease in RMSE in the ERCOT market, indicating its proficiency in leveraging exogenous features. Other advanced architectures like transformer and TCN also show strong improvements, with the transformer achieving up to a 50.57% MAPE reduction in NYISO, and TCN a 57.75% MAPE reduction in CAISO. Standard sequential models including LSTM and GRU, as well as the simpler MLP, also demonstrate considerable performance gains, exemplified by LSTM’s 52.55% MAPE reduction in CAISO and MLP’s 45.61% MAPE reduction in the same market, indicating the broad utility of mobility data across different model complexities. These model-specific variations suggest that architectures with greater capacity or more sophisticated mechanisms for feature interaction, such as those in LoadKAN and transformer models, may be better equipped to extract predictive value from diverse data sources like mobility. The influence of mobility features also reveals some dependency on the specific characteristics of each electricity market. In NYISO, for example, the transformer model’s MAPE is reduced by 50.57% and LSTM’s R2 increased by a significant 611.75% with mobility data. Similarly, CAISO sees substantial enhancements, such as a 57.75% MAPE reduction for the TCN model and a 118.67% increase in R2 for MLP. In ERCOT, the KAN model’s MAPE improves by 31.15%, while MLP’s R2 sees an increase of 524.14%. These regional differences in impact likely stem from unique correlations between population movement and energy usage, driven by factors such as urban density, economic activities, and local commuting habits. In conclusion, this ablation study confirms that the specified mobility features are a valuable addition to the input feature set for electricity load forecasting. Their integration leads to more

NYISO (Fig. 5) operates in a region with high population density, significant commercial activity, and heavy reliance on public transit, especially in New York City. Its climate features distinct seasons with substantial heating and cooling demands. • Retail & Recreation: Increased activity consistently leads to a slight to moderate positive KAN output across the three days, aligning with higher load from commercial activities at venues such as restaurants and theaters. • Grocery & Pharmacy: This feature shows a relatively modest impact. Increased mobility towards these essential stores correlates with a slight positive KAN output on Day 2 and Day 3, while the impact becomes negligible or even slightly negative at higher feature values on Day 1. 10

• Parks: A notable positive KAN output is observed with increased mobility to parks and public gardens across all three days. This pronounced effect could reflect energy use in associated facilities (e.g., visitor centers and lighting) within larger parks and energy consumption related to travel to and from these locations.

• Parks: The influence of park-related mobility is multifaceted. Increased activity often results in negative or mixed KAN output; Day 1 is predominantly negative, while Day 2 and Day 3 show complex shapes with significant negative dips before potentially turning slightly positive only at higher activity levels. In contrast, decreased activity consistently yields a positive KAN output, with discernible positive peaks of varying intensity across the three days.

• Transit Stations: Increased transit activity correlates with a consistently negative KAN output across all three days, the magnitude of which is notable. This suggests that greater transit usage may be associated with reduced overall electricity consumption, possibly due to substitution effects, e.g., people leaving more energy-intensive homes or commercial areas.

• Transit Stations: Increased transit activity generally correlates with a positive KAN output across all three days, with moderate positive peaks observed. This positive correlation for increased activity contrasts with the pattern observed in NYISO. For decreased activity, the KAN output is negative on Day 1 and Day 2, but surprisingly shows a strong positive peak on Day 3.

• Workplaces: Higher workplace presence correlates with a notable positive KAN output on Day 1, reflecting increased load from commercial and industrial activity. However, this effect diminishes significantly on Day 2 and Day 3, where the relationship becomes much weaker and the KAN output remains close to zero or may even turn slightly negative at higher feature values – suggesting a delayed or non-linear response of system load to workplace mobility over time.

• Workplaces: Workplace mobility presents a highly variable impact on KAN output. Increased activity shows a slight positive peak on Day 2, a mixed effect (i.e., initially positive then negative) on Day 1, and is predominantly negative on Day 3. Conversely, and consistently across all three days (except Day 3), decreased activity results in a strong positive KAN output, with substantial positive peaks of varying intensity observed.

• Residential: An increase in the residential feature value — indicating more people staying at home — generally leads to a more negative KAN output. This effect is minimal or negligible on Day 1 but becomes more pronounced with a clear negative correlation on Day 2 and Day 3. This pattern implies that increased residential presence may coincide with reduced total system demand, potentially due to concurrent reductions in workplace and commercial activity.

• Residential: Residential mobility’s influence on KAN output is complex and day-dependent. Increased presence leads to a slight positive KAN output on Day 1, but results in a significantly negative output on Days 2 and 3. Decreased presence yields a slightly positive output on Day 1, a significant negative dip on Days 2 and 3. ERCOT (Fig. 7) manages most of Texas’s grid, which is largely independent and operates in a hot climate with high airconditioning load and substantial industrial activity. Urban areas are sprawling with high reliance on personal vehicles.

CAISO (Fig. 6) manages California’s grid, characterized by large, dispersed urban areas, significant agricultural and technological sectors, and high renewable penetration, in particular with the increasing installation of solar photovoltaics.

• Retail & Recreation: Increased activity results in a positive KAN output, though the shape of this response can be complex, with S-curves observed on Day 2 and Day 3 where output may dip before peaking. Decreased activity often shows a mildly positive or mixed (e.g., Day 2) KAN output, with Day 3 exhibiting a clearer positive peak in this domain.

• Retail & Recreation: The relationship between this mobility feature and KAN output is complex. Increased activity (positive feature domain) generally leads to a positive KAN output, typically reaching a slight to moderate peak; however, Day 2 and Day 3 exhibit S-shaped curves where output may initially dip or stay near zero before rising. Conversely, decreased activity (negative feature domain) results in a slightly negative KAN output on Day 1, and more notable negative dips on Day 2 and Day 3 before the output trends back towards zero.

• Grocery & Pharmacy: Increased activity consistently leads to a noticeable positive KAN output across all three days. When activity decreases, all three days exhibit a clear positive KAN output in this domain.

• Grocery & Pharmacy: This feature’s impact on KAN output varies significantly across days and activity levels. Increased activity yields a notable positive peak on Days 2 and 3, but presents a mixed effect on Day 1 – initially positive then slightly negative. Decreased activity leads to a negative dip on Day 1, an initial positive KAN output peak followed by a dip on Day 2, and a very strong positive peak on Day 3.

• Parks: This feature demonstrates a very substantial KAN output, which is particularly pronounced when park visitation decreases; here, extremely strong positive peaks are evident on all three days, often dominating the KAN response. When park visitation increases, there is also a significant positive KAN output forming notable peaks, though these are generally less pronounced than the peaks 11

Day 1

KAN Output

Retail&Recreation

Grocery&Pharamcy

Day 2

Day 3

Parks

Transit

Workplace

Residential

0.5 0.0 Negative Domain

1.0

0.5

Positive Domain

0.0

0.5

Feature Value

Negative Domain

1.0 1.0

0.5

Positive Domain

0.0

0.5

Feature Value

Negative Domain

1.0 1.0

0.5

Positive Domain

0.0

0.5

Feature Value

Negative Domain

1.0 1.0

0.5

Positive Domain

0.0

0.5

Feature Value

Negative Domain

1.0 1.0

0.5

Positive Domain

0.0

0.5

Feature Value

Negative Domain

1.0 1.0

0.5

Positive Domain

0.0

0.5

Feature Value

1.0

Figure 5: Visualizations of learned activation functions in the NYISO market. Day 1

KAN Output

Retail&Recreation

Grocery&Pharamcy

Day 2

Day 3

Parks

Transit

Workplace

Residential

0.5 0.0 Negative Domain

1.0

0.5

Positive Domain

0.0

0.5

Feature Value

Negative Domain

1.0 1.0

0.5

Positive Domain

0.0

0.5

Feature Value

Negative Domain

1.0 1.0

0.5

Positive Domain

0.0

0.5

Feature Value

Negative Domain

1.0 1.0

0.5

Positive Domain

0.0

0.5

Feature Value

Negative Domain

1.0 1.0

0.5

Positive Domain

0.0

0.5

Feature Value

Negative Domain

1.0 1.0

0.5

Positive Domain

0.0

0.5

Feature Value

1.0

Figure 6: Visualizations of learned activation functions in the CAISO market. Day 1

KAN Output

Retail&Recreation

Grocery&Pharamcy

Day 2

Day 3

Parks

Transit

Workplace

Residential

0.5 0.0 Negative Domain

1.0

0.5

Positive Domain

0.0

0.5

Feature Value

Negative Domain

1.0 1.0

0.5

Positive Domain

0.0

0.5

Feature Value

Negative Domain

1.0 1.0

0.5

Positive Domain

0.0

0.5

Feature Value

Negative Domain

1.0 1.0

0.5

Positive Domain

0.0

0.5

Feature Value

Negative Domain

1.0 1.0

0.5

Positive Domain

0.0

0.5

Feature Value

Negative Domain

1.0 1.0

0.5

Positive Domain

0.0

0.5

Feature Value

1.0

Figure 7: Visualizations of learned activation functions in the ERCOT market.

observed in the negative domain. The shape of the curve in the positive domain can also include dips after an initial peak, as seen on Day 3.

each feature. Sensitivity, in this context, is defined as the derivative of the learned activation functions, indicating the rate at which the KAN output changes in response to a change in the input feature. Fig. 8, 9, and 10 present the average absolute sensitivity and average maximum absolute sensitivity for each feature across both the three markets and the forecast horizon. These metrics help identify which features induce the most significant changes in load predictions for given changes in their values.

• Transit Stations: The relationship between transit station activity and KAN output is complex and varies daily. Increased activity leads to a slightly positive KAN output on Day 1, is mostly flat or slightly negative on Day 2, and shows a clearer positive peak on Day 3 before dipping. Decreased activity results in a slightly negative output on Day 1, is flat near zero on Day 2, and shows a notable positive peak on Day 3.

• NYISO Sensitivity (Fig. 8): The Parks feature exhibits the highest sensitivity by a significant margin, with an average absolute sensitivity of approximately 0.615 and an average maximum sensitivity of 1.543. Transit Stations, Grocery & Pharmacy, and Residential show moderate sensitivities. Workplaces and Retail & Recreation are the least sensitive on average. This high sensitivity for Parks aligns with its activation function depicted in Fig. 5, which shows a pronounced and relatively steep change in KAN output with increased park visitation. This suggests that factors correlated with park visitation – such as specific weather conditions, energy use for travel to/from parks, or activities in associated recreational facilities – have a highly dynamic impact on load. The moderate sensitivity of Transit Stations and Residential reflects the clear and responsive shapes of their activation functions – consistently negative for Transit, and increasingly negative for Residential on Days 2 and 3. Conversely, the lower average sensitivity

• Workplaces: The impact of workplace presence on KAN output is highly variable and not consistently positive with increased activity. Increased presence leads to a positive KAN output on Day 1, a mixed response (dipping negative then becoming positive) on Day 2, and a noticeable negative output on Day 3. Decreased presence also shows complex behavior, with slightly positive KAN outputs on Day 1 and 2, while a notable negative response appears on Day 3. • Residential: Both decreased and increased activities correspond to negative KAN output for this mobility category. Quantitative Sensitivity Analysis of Mobility Features. To further quantify the influence of each mobility feature, we analyze the sensitivity of the KAN output with respect to changes in 12

0.50 0.246 0.216 0.194 0.169 0.135

0.0 Par. Tra. G&P Res. Wor. R&R

0.25

Mobility Feature

1.543

1

1.5 0.538 0.534 0.485 0.392 0.338

0 Par. Tra. G&P Res. Wor. R&R

1.0 0.5

0.2

0.25

0.0 R&R G&P Wor. Par. Res. Tra.

Mobility Feature

0.251 0.222 0.172 0.169 0.152

0.0 Par. G&P R&R Res. Wor. Tra.

Average Maximum Sensitivity 0.50 0.25

1.682

1

1.5 0.523 0.518 0.420 0.402 0.351

0 Par. R&R G&P Res. Wor. Tra.

1.0 0.5

Mobility Feature

Figure 10: Sensitivity of learned activation functions in the ERCOT market.

Average Maximum Sensitivity 0.30

Sen. Value

Sen. Value

Average Sensitivity

0.5

Average Sensitivity

Mobility Feature

Mobility Feature

Figure 8: Sensitivity of learned activation functions in the NYISO market.

0.307 0.283 0.280 0.257 0.227 0.223

0.743

Sen. Value

0.5

Average Maximum Sensitivity Sen. Value

Average Sensitivity Sen. Value

Sen. Value

0.615

0.5

0.743 0.708 0.629 0.612 0.561

0.415

0.0 Wor. R&R Par. G&P Tra. Res.

This suggests that activities or conditions strongly correlated with park mobility (e.g., energy use in recreational facilities, energy use during periods of high outdoor leisure activity which might also drive HVAC loads) significantly influence load. The lower sensitivity of Transit Stations is also reflected in its more subdued and complex activation function shape in ERCOT, which reflects a less direct and more varied impact compared to NYISO.

0.7 0.6 0.5

Mobility Feature

Figure 9: Sensitivity of learned activation functions in the CAISO market.

for Workplaces might reflect its strong impact being concentrated on Day 1 before diminishing, while for Retail & Recreation, it aligns with its slight to moderate impact, suggesting their influence, while definite, might be characterized by more gradual average slopes or less sustained steepness across the entire input domain and forecast horizon.

Comparing across markets, the Parks feature is exceptionally sensitive in NYISO and ERCOT, a finding that resonates with the strong and often steep responses observed in their activation functions shown in Fig. 5 and 7, respectively. This insight suggests that factors associated with mobility to parks are highly dynamic drivers of load in these regions. In contrast, CAISO shows higher sensitivity for commercial-activity-related features such as Workplaces, Retail & Recreation, and Grocery & Pharmacy, which aligns with the complex and responsive shapes of their activation functions in Fig. 6. The Transit Stations feature’s moderate sensitivity in NYISO, compared to its lower sensitivity in ERCOT and CAISO, mirrors the notable and consistent (though negative) impact seen in its NYISO activation function. This sensitivity analysis, therefore, provides a quantitative measure of feature influence that not only ranks features by their rate of impact but also complements and reinforces the qualitative interpretations of the activation function shapes, highlighting which features the model deems most influential in driving load changes.

• CAISO Sensitivity (Fig. 9): In CAISO, the sensitivity is more evenly distributed compared to NYISO and ERCOT. Retail & Recreation shows the highest average sensitivity (0.307), closely followed by Grocery & Pharmacy (0.283) and Workplaces (0.280). Parks has an average sensitivity of approximately 0.257. For average maximum sensitivity, Workplaces ranks highest (0.743), followed by Retail & Recreation (0.708). Residential exhibits the lowest average maximum sensitivity (0.415). The high sensitivity of commercial features, including Retail & Recreation, Workplaces, and Grocery & Pharmacy, is consistent with their activation functions shown in Fig. 6, which outline complex and dynamic changes, including significant peaks, dips, and S-curves, indicating responsive KAN outputs. The lower average maximum sensitivity for Residential, despite its complex activation function with notable dips on Days 2 and 3, suggests that while the relationship is intricate, the steepest slopes within its learned relationship might be less extreme on average than those for the leading commercial features.

Similarities Across Markets Despite regional differences, several common trends emerge when analyzing the learned relationships between mobility features and electricity load, as captured by LoadKAN’s activation functions and sensitivities: • Workplace Activity Impact: Increased presence at workplaces often shows a positive KAN output, particularly on Day 1 in NYISO and ERCOT, reflecting initial increases in commercial and industrial electricity consumption. However, this effect is not consistently positive across all markets or all forecast days. In NYISO, the positive impact diminishes significantly on Day 2 and Day 3. In CAISO, increased activity has a mixed effect on Day 1, a slight positive peak on Day 2, and is predominantly negative on Day 3. In ERCOT, after a positive Day 1, the response is mixed on Day 2 and negative on Day 3. Decreased workplace activity in CAISO, notably, can lead to a strong positive KAN output. This highlights a complex, time-dependent, and market-specific relationship rather than a uniformly positive correlation.

• ERCOT Sensitivity (Fig. 10): Similar to NYISO, the Parks feature overwhelmingly dominates in ERCOT, with the highest average absolute sensitivity (0.743) and average maximum sensitivity (1.682). Other features like Grocery & Pharmacy (average sensitivity 0.251) and Retail & Recreation (0.222) show moderate average sensitivities. Transit Stations presents the lowest average sensitivity (0.152) in ERCOT. This exceptional sensitivity for Parks directly corresponds to its activation function illustrated in Fig. 7, which shows very substantial KAN outputs, including extremely strong positive peaks when park visitation decreases and significant positive peaks when it increases, and also exhibits steep slopes indicating a strong and rapid response of load to changes in park mobility. 13

• Retail & Recreation Activity Impact: Increased mobility towards Retail & Recreation locations leads to a positive KAN output, corresponding to energy use in these commercial sectors. This is observed with slight to moderate positive output in NYISO. In CAISO and ERCOT, while positive for increased activity, the relationship can be more complex and is often featured by S-shaped curves or initial dips before rising, especially on Day 2 and Day 3.

complex and varied activation shape, reflects its lesser and more ambiguous role in overall load dynamics. • Variations in Commercial Feature Sensitivities: While mobility to commercial locations influences load, their relative sensitivities differ. CAISO, for instance, shows a cluster of high sensitivity among these features, whereas in NYISO and ERCOT, the Parks feature overshadows them in terms of sensitivity. • Complexity of Activation Function Shapes and Sensitivity Magnitudes: Beyond general trends, the exact shapes of activation functions (e.g., presence of multiple peaks, dips, S-curves, saturation points) and particularly their sensitivity magnitudes differ markedly. For instance, the Residential feature’s activation function in CAISO exhibits complex day-dependent behavior, i.e., slight positive output on Day 1, significant negative output/dips on Days 2 and 3 for increased presence, yet its average maximum sensitivity is the lowest among all features in that market, contrasting with its moderate sensitivity ranking in NYISO where increased presence also leads to a negative KAN output, especially Day 2-3. This implies different behavioral thresholds and response intensities.

• Residential Presence Impact: The impact of an increase in the Residential feature value (i.e., more people at home) on KAN output varies significantly and is often negative, contrary to simple intuitions of increased home energy use directly leading to higher overall system load. In NYISO, increased residential presence leads to a more negative KAN output, especially on Day 2 and Day 3. In CAISO, it leads to a slight positive KAN output on Day 1 but a significantly negative output on Day 2 and Day 3. In ERCOT, both increased and decreased residential activity correspond to a negative KAN output. These patterns suggest that increased residential presence often coincides with reductions in other potentially more energy-intensive activities (e.g., at workplaces or commercial areas), leading to a net decrease in the KAN model’s system-wide load prediction. The specific shapes and magnitudes vary, reflecting diverse regional factors.

• Temporal Evolution in Activation Functions: The way activation functions for specific features evolve from Day 1 to Day 3 predictions differs among markets, as seen in Fig. 6 and 7. This indicates that the model learns varying short-term versus slightly longer-term impacts of mobility patterns. For example, in ERCOT, the KAN output for increased mobility to Parks shows changing shapes (e.g., dips after initial peak on Day 3), while for decreased mobility, the extremely strong positive peaks are evident across all three days. For Transit Stations in ERCOT, the impact varies from slightly positive on Day 1, to flat/slightly negative on Day 2, to a positive peak then dip on Day 3. In CAISO, the Residential function not only becomes more complex but also shows a shift from slightly positive KAN output for increased presence on Day 1 to significantly negative on Days 2 and 3.

Significant Differences Across Markets The learned relationships and their sensitivities also highlight distinct marketspecific characteristics: • Dominance and Nature of Parks Impact: The Parks feature reflects strikingly high KAN output and sensitivity in ERCOT and NYISO. In ERCOT, such effect is particularly pronounced, with extremely strong positive KAN output peaks when park visitation decreases, alongside significant positive outputs when it increases. In NYISO, increased park visitation leads to a notable positive KAN output. This suggests factors correlated with park mobility are highly impactful and responsive load drivers in these regions. In CAISO, while mobility to Parks influences load (e.g., increased activity often yielding negative or mixed output, and decreased activity yielding positive output), its sensitivity and overall KAN output effect are less dominant compared to its commercial features.

Interpretation Based on Market Characteristics The observed differences and similarities in activation functions and their sensitivities can be largely attributed to the unique socioeconomic fabric, climate, and infrastructure of each electricity market’s jurisdictions:

• Role of Transit Stations Activity: The Transit Stations feature demonstrates a notable impact and moderate sensitivity in NYISO, where increased activity consistently correlates with a negative KAN output, contrasting with CAISO where it correlates with a positive output. This directly aligns with New York’s greater reliance on public transportation, where changes in transit use appear more strongly indicative of broader load-affecting activity shifts (e.g., people leaving energy-intensive homes or commercial areas). In ERCOT, its lower sensitivity, along with

• NYISO: The dense urban environment and high public transit usage are reflected in the notable negative impact and moderate sensitivity of Transit Stations activity, possibly indicating a shift away from more energy-intensive locations. The moderate impact of Workplaces activity on the load is also characteristic. The high sensitivity and positive impact associated with Parks visitation might reflect energy consumption linked to specific types of recreational activities or facilities, travel, or could be a proxy for weather conditions. The distinct seasons likely make 14

residential load patterns complex, which showed a negative KAN output with increased presence, especially on later days, possibly reflecting a greater reduction in commercial/industrial load when more people are home.

their quantitative sensitivities, reveals a multifaceted and regionally distinct relationship between human mobility patterns and electricity load. The following discussion synthesizes these findings from Section 4.2.3 to explore the broader implications of these observed dependencies. A primary observation is that human mobility serves as a significant and notably complex driver of electricity consumption patterns as learned by the model. Increased activity in Retail & Recreation and Grocery & Pharmacy points towards increased KAN output, though the specifics vary by market and can involve complex non-linearities like S-curves or dips. The impact of Workplaces mobility is highly variable: often positive on the first day of forecast but diminishing, becoming mixed, or even negative on subsequent days or for increased activity in certain markets. This deviates from a simple assumption that more people at work always means higher system load over a multi-day horizon. Perhaps most strikingly, increased Residential presence frequently correlates with a negative KAN output, suggesting that system-wide load may decrease, possibly due to concurrent reductions in commercial or industrial activity outweighing increased domestic use. The Transit Stations feature shows market-dependent impacts: a notable negative KAN output with increased activity in NYISO, contrasting with a positive correlation in CAISO, reflecting differing transportation roles. The Parks feature emerges as surprisingly influential and highly sensitive, especially in ERCOT and NYISO, suggesting that factors associated with park-related mobility are substantial and volatile contributors to the model’s load predictions, potentially linked to associated travel, facility use, or correlated weather patterns. Moreover, the LoadKAN model demonstrates that these relationships are far from simple linear correlations. The learnable spline activation functions capture significant non-linearities, including varying sensitivities across the range of mobility changes, saturation effects, and potential threshold phenomena. For instance, while an increase in a particular mobility feature points to a directional change in KAN output, the magnitude and even direction of this change can differ substantially depending on the current level of mobility, the specific market, and the forecast day. The high sensitivity and dramatic KAN output changes related to Parks mobility in ERCOT, for example, imply that load predictions in this region are particularly responsive to fluctuations in this specific type of mobility, more so than to changes in other mobility categories that might otherwise be considered primary load drivers. This highlights the model’s ability to uncover non-obvious yet impactful relationships. The market-specific nature of these relationships, revealed through both activation functions and sensitivities, is a crucial insight. The dominance of commercial activity sensitivities in CAISO, the pronounced impact and sensitivity related to Parks mobility in ERCOT and NYISO, and the notable role and sensitivity of Transit Stations in NYISO highlight how regional demographics, economic structures, urban layouts, transportation infrastructure, and climate dictate the distinct ways human movement translates into electricity demand predictions. For example, the lower sensitivity of Transit Stations in ERCOT

• CAISO: California’s diverse geography, sprawling urban centers, and distinct economic activities likely contribute to the complex activation function shapes and the higher sensitivity of commercial features like Workplaces, Retail & Recreation, and Grocery & Pharmacy. Significant cooling demand, varied recreational patterns, and high renewable penetration could all influence these intricate relationships. • ERCOT: The hot climate and large industrial base are key influencers. The exceptionally strong KAN output and highest sensitivity associated with Parks mobility could be linked to energy use in recreational facilities, or it may strongly correlate with widespread residential/commercial air conditioning use during periods of outdoor leisure activity (or lack thereof, prompting other activities). The Workplaces signal indicates a complex industrial/commercial response over the forecast horizon. The lower sensitivity of Transit Stations is consistent with Texas’s predominantly car-centric transportation. The consistently negative KAN output for Residential mobility suggests complex interactions with other consumption sectors or baseline load patterns in this market. To further demonstrate the KAN’s interpretability, in addition to the above quantitative analysis, we further calculate feature importance scores and correlations between learned spline gradients and load changes. Detailed results are reported in Appendix E. The findings are consistent with both spline function visualizations and sensitivity analysis. Note that our study does not treat the model’s interpretability as a mathematical prerequisite for the provided sensitivity analysis. Rather, the sensitivity analysis serves as a secondary, independent validation to quantify the relative significance of relationships (identified by KAN) across the three electricity markets. In summary, this detailed interpretable analysis, combining the qualitative insights from activation function shapes with quantitative measures, demonstrates that the LoadKAN model, to a great extent, learns and elucidates market-specific, nonlinear relationships between human mobility patterns and electricity load. The variations across NYISO, CAISO, and ERCOT suggest the importance of considering unique regional socio-economic characteristics, climate conditions, and infrastructure in load forecasting models. These insights highlight how different mobility aspects drive load changes with varying intensity and responsiveness, offering a deeper understanding beyond mere forecast accuracy. 4.2.4. Discussion on Relations between Human Mobility and Electricity Load The above detailed interpretable analysis via LoadKAN, consisting of both the shapes of learned activation functions and 15

compared to NYISO clearly reflects differing reliance on public transportation. Similarly, the intense sensitivity and strong KAN output related to Parks visitation changes in ERCOT could be amplified by its hot climate, where park-related mobility (or lack thereof) might coincide with significant HVAC load shifts or energy use in specific types of recreational facilities. Understanding these granular, feature-specific, and marketdependent relationships between human mobility and electricity load has significant implications. For load forecasting, incorporating such detailed mobility features and leveraging models like LoadKAN that can capture their complex and nonlinear impacts and enhance prediction accuracy, particularly for short to medium-term horizons where mobility fluctuations are prominent. Beyond forecasting, these insights can inform grid management strategies. For instance, anticipating load shifts due to evolving mobility trends, such as changes in work-fromhome patterns affecting Workplaces and Residential KAN outputs (which are not always intuitive) or planning for the impact of large public events affecting mobility to Parks or Transit Stations, becomes more data-driven. Furthermore, the varying sensitivities suggest where targeted demand-response initiatives, if linked to anticipated mobility changes, might be most effective. While this study provides valuable insights, the relationships between human mobility and electricity load are part of a larger and interconnected system. The mobility features themselves, though treated as separate inputs, can have interdependencies in the real world. For example, increased workplace presence often implies decreased residential presence during work hours, and the model learns the net effect of these shifts. Moreover, the impact of external factors not directly included in this mobility-focused feature set, such as concurrent weather conditions, day type (weekday/weekend/holiday), and underlying economic shifts, undoubtedly modulate these relationships. Integrating these additional dimensions could further refine the understanding and predictive power of models like LoadKAN. It is important to note that the mobility-load relationships learned in this study are derived from pandemic-era data. While this specific regime heavily influenced certain dynamics, such as the pronounced load reduction during increased residential presence, these learned relationships maintain a significant degree of post-pandemic generalizability. Recent literature indicates that post-COVID mobility patterns have not fully reverted to pre-pandemic norms, largely due to the permanent structural entrenchment of hybrid and remote work arrangements [67, 68, 69]. Consequently, the complex interplay between residential and commercial energy consumption captured by our model remains highly relevant today. Furthermore, LoadKAN successfully captures universal, regime-agnostic temporal rhythms, such as the inherent distinctions between weekday and weekend mobility patterns, demonstrating the robust and enduring applicability of these learned relationships. In summary, the interpretable framework of LoadKAN, through its combined analysis of activation functions and sensitivities, provides a powerful lens to dissect the complex nexus of human mobility and electricity consumption. It moves beyond simple correlations to reveal nuanced, market-specific,

and non-linear dependencies, offering actionable insights for more accurate load forecasting and informed energy system planning. The ability to not only predict but also to understand why predictions are made, based on the learned influence of specific real-world features like human mobility, is a crucial step towards more robust and intelligent energy management. 4.3. Limitations While the LoadKAN framework demonstrates highly competitive accuracy and interpretability across the tested scenarios, we acknowledge the limitations of our study to contextualize the findings. First, our evaluation is limited to three major U.S. electricity markets (NYISO, CAISO, and ERCOT). While these markets offer diverse climatic and economic profiles, they operate under advanced infrastructure and mature data recording standards. The model’s performance on grids with less stable data quality or significantly different consumption behaviors (e.g., in developing regions) remains to be verified. Second, our ablation study confirms that a significant portion of the accuracy gain stems from the integration of granular human mobility features. Consequently, the model’s effectiveness is contingent on the availability of such high-quality external data sources. In scenarios where real-time mobility data is unavailable or restricted by privacy regulations, the performance advantage of the framework may be reduced. Finally, the feature-isolated temporal attention mechanism introduces an inherent structural trade-off. To preserve the purity of individual feature representations and prevent signal entanglement prior to the interpretable KAN head, the architecture explicitly limits cross-feature interactions during the temporal processing stage. While this design choice is essential for accurately interpreting the isolated impact of individual drivers (such as specific human mobility categories), it restricts the model’s capacity to capture complex, synergistic interdependencies between different input variables. 5. Conclusion and Future Works This paper develops LoadKAN, a novel hybrid deep learning framework with the integration of KAN for interpretable electricity load forecasting. LoadKAN uniquely designs a feature-isolated temporal attention mechanism, aiming to independently extract robust temporal patterns from each input feature sequence, together with a KAN module for the final interpretable load prediction. The incorporation of KAN effectively transforms the black-box neural forecasting model into an intrinsically interpretable one, enabling analysis of how input features, especially human mobility, influence electricity load. Our comprehensive experiments across three representative U.S. electricity markets – NYISO, CAISO, and ERCOT – demonstrate that LoadKAN remains highly competitive when compared to extensively-tuned, state-of-the-art, black-box deep learning benchmarks. Further, we quantitatively affirm the substantial positive impact of incorporating human mobility features in enhancing load forecasting performance via a detailed 16

• Transformer: A model based on the self-attention mechanism, effectively modeling global dependencies [57].

ablation study. For example, our sensitivity analysis identifies distinct regional drivers, such as the “Parks” mobility feature in ERCOT, which exhibits a dominant average sensitivity of 0.743 compared to other input features. More importantly, by leveraging the learnable splines of the KAN module, LoadKAN successfully elucidates complex, market-specific, and non-linear relationships between six distinct human mobility features and electricity load, offering insights into load dynamics that are typically opaque in conventional models. This work highlights the potential of hybrid KAN-based models to advance the load forecasting field by providing tools that are both highly predictive and transparent. For future work, while LoadKAN models individual feature temporal dynamics effectively, future research could explore methods to explicitly model potential interdependencies and interactions among the different mobility features themselves before or within the KAN layer, thereby providing a more holistic view of behavioral impacts.

An encoder-only transformer architecture is used. Key parameters include: embedding dimension of 32, 4 attention heads in the multi-head self-attention layers, and 2 encoder layers. The feed-forward networks within each layer use 64 units with ReLU activation. A dropout rate of 0.1 is applied throughout the model. • Informer: A state-of-the-art transformer-based baseline [61]. Its configuration follows the original implementation. • Chronos: A pre-trained model based on T5 language model architecture [62]. Since Chronos is primarily designed for univariate probabilistic time-series forecasting, we adapt it to the present multivariate daily load forecasting task by using the historical load sequence within the same rolling-window setup as the forecasting context. The model receives the past L-day load observations and generates the H-step ahead daily load forecast. Therefore, Chronos serves as a pretrained foundation-model benchmark for load-only temporal forecasting, while the other neural benchmarks and LoadKAN use the full multivariate input feature set, including weather, price, and mobility variables. Its configuration follows the original implementation.

Appendix A. Benchmark Descriptions and Configurations The descriptions and hyperparameter configurations of benchmarks are provided below. • MLP: A foundational feedforward neural network, serving as a standard baseline in numerous deep learning applications. Two hidden layers, each containing 32 neurons and employing the rectified linear unit (ReLU) activation function. The input sequence is flattened to a vector of size L · M before being fed into the first hidden layer.

• PureKAN: A baseline model composed of stacked KAN layers [49, 48]. It consists of three stacked KAN layers. Similar to MLP, the input sequence is flattened. Each KAN layer uses 4 basis functions for its splines with a polynomial degree of 3.

• LSTM: A type of RNN specifically designed to capture long-range temporal dependencies in sequential data [32]. It consists of two stacked LSTM layers, each with 32 hidden LSTM cells. A dropout rate of 0.3 is applied after each LSTM layer (except the last) to reduce overfitting. The output from the last time step of the final LSTM layer is passed to a final linear layer for forecast.

Note that a final fully-connected neural layer, also known as the linear layer, is used in most benchmark architectures, including MLP, LSTM, GRU, TCN, transformer, to map the network’s internal representation to the required prediction dimension; our LoadKAN model and the PureKAN model inherently produce the H-dimensional output from their final KAN layer. For our LoadKAN, the output channel number of the input 1D convolution projection is the number of input features (i.e., M) multiplied with a hidden dimension (set to 32 by default). The feature-isolated attention mechanism has 2 layers and 4 attention heads per layer. The output channel number of the output 1D convolution projection is set to 32. The number of basis functions for each spline is set to 4 and the polynomial degree of each spline is set to 3. The output dimension of the KAN layer corresponds to the forecast horizon of H.

• GRU: Another variant of RNN, often considered a computationally efficient alternative to LSTM [33]. It is configured similarly to the LSTM, with two stacked GRU layers, each having 32 hidden units. A dropout rate of 0.3 is applied between GRU layers. The output from the final GRU layer’s last time step is used for prediction via a linear layer. • TCN: An architecture applying convolutional layers to sequence data [34]. Implemented using two residual blocks of temporal convolution. Each block employed causal convolutions with a kernel size of 3 and 32 output channels. Standard TCN practices like weight normalization and ReLU activations are used. A dropout rate of 0.2 is applied within the residual blocks. The output sequence is processed using average pooling before a final linear mapping.

Appendix B. Detailed Formulation of Forecasting Evaluation Metrics The evaluation metrics aggregate the forecasting performance across all H forecast steps for all initiation times t ∈ all Ttest . Let Ntest = Ntest · H be the total number of individual 17

actual-predicted point pairs (yt+h , ŷt+h ) within the test set. Let ȳ all be the mean of all Ntest individual actual load values yt+h across P PH the entire test set, which is defined as ȳ = N1all t∈Ttest h=1 yt+h .

• Informer: layers ∈ {1, 2, 3, 4}, hidden units ∈ {32, 64, 128}, number of attention heads ∈ {2, 4, 8, 16}, embedding size ∈ {32, 64, 128}.

all The three metrics are calculated over these Ntest individual points as follows. v u t H 1 X X (yt+h − ŷt+h )2 , (B.1) RMSE = all Ntest t∈Ttest h=1

• PureKAN: layers ∈ {1, 2, 3, 4}

test

In addition to the above model-specific parameters, training parameters are considered – batch size ∈ {16, 32, 64, 128} and learning rate ∈ {0.001, 0.0001, 0.00001}. The best-performing configurations for each baseline are

H

100% X X yt+h − ŷt+h , all yt+h Ntest t∈Ttest h=1 P PH 2 t∈Ttest h=1 (yt+h − ŷt+h ) 2 R =1− P . PH 2 t∈Ttest h=1 (yt+h − ȳ)

MAPE =

(B.2)

• MLP: 3 layers with 128 hidden units each; Batch size: 64; Learning rate: 0.001.

(B.3)

• LSTM: 2 layers with 128 hidden units each and 0.1 dropout; Batch size: 32; Learning rate: 0.0001. • GRU: 3 layers with 128 hidden units each and 0.1 dropout; Batch size: 32; Learning rate: 0.0001.

These three metrics, while all evaluating forecast accuracy on Dtest by comparing individual predicted points ŷt+h to actual points yt+h , offer distinct perspectives on model performance. Both RMSE and MAPE directly quantify prediction errors, with lower values indicating higher accuracy. However, they differ significantly in scale and sensitivity. RMSE expresses the average error magnitude in the original units of the load, i.e., MW, and is heavily influenced by large deviations due to the squaring of errors. In contrast, MAPE provides a scaleindependent measure by calculating the average absolute percentage error, making it useful for comparisons across different load scales or time periods, though it can be sensitive to nearzero actual values and is undefined if any yt+h equals zero. The R2 metric differs from the other two as it is not a direct measure of error magnitude but rather quantifies the goodness-of-fit. It indicates the proportion of variance in the actual load across all all Ntest points explained by the forecast, relative to a baseline model that simply predicts the overall mean load ȳ. An R2 value closer to 1 indicates a better fit, while values close to 0 or negative suggest the model performs poorly compared to the mean baseline.

• TCN: 4 layers with 128 output channels and kernel size of 3; Batch size: 64; Learning rate: 0.0001. • Transformer: 4 layers with 8 attention heads and embedding size of 128; Batch size: 32; Learning rate: 0.00001. • Informer: 3 layers with 8 attention heads and embedding size of 128; Batch size: 64; Learning rate: 0.00001. • PureKAN: 2 layers; Batch size: 32; Learning rate: 0.001. Appendix D. Relationships between Raw Input Mobility and Corresponding Scalar Representation To facilitate a direct comparison between the temporal mobility sequences and the resulting scalar representations, we calculate the average value of the mobility sequence as the primary metric for the x-axis in the plots in Fig. D.11. This averaging process enables a point-wise comparison between the raw input’s magnitude and the scalar feature representation. Moreover, the average mobility is an essential and physically intuitive metric to evaluate the historical mobility level, as it captures the net intensity of activity within the history window, making it a reasonable proxy for the total volume of movement that drives electricity demand. The results of Fig. D.11 provide an empirical proof that the scalar representation preserves both the scale and the sign of the physical input. As illustrated by the green-shaded regions, the data points predominantly reside in the (+, +) and (−, −) quadrants, suggesting that a physical increase in mobility consistently results in a positive representation, while a decline results in a negative one. Such strong and consistent positive correlations can be observed across all six mobility features and three markets. For example, in the Retail & Recreation category, correlation coefficients (denoted as r) range from 0.86 to 0.91. Furthermore, the linear fit lines in blue across all features show slopes near unity with intercepts near zero. This near 1:1 mapping demonstrates that the scalar representation is not merely an abstract number but a high-fidelity proxy that respects the original feature’s scale and sign.

Appendix C. Hyperparameter Grid Search for Key Benchmarks We extensively tune all baselines with respect to layer depth, width, structural parameters, and training parameters (e.g., learning rates). The details of refined hyperparameter testing per baseline are presented as follows. • MLP: layers ∈ {1, 2, 3, 4}, hidden units ∈ {16, 32, 64, 128}. • LSTM: layers ∈ {1, 2, 3, 4}, dropout ∈ {0, 0.1, 0.2}, hidden units ∈ {16, 32, 64, 128}. • GRU: layers ∈ {1, 2, 3, 4}, dropout ∈ {0, 0.1, 0.2}, hidden units ∈ {16, 32, 64, 128}. • TCN: layers ∈ {1, 2, 3, 4}, output ∈ {16, 32, 64, 128}, kernel size ∈ {1, 3, 5}.

channels

• Transformer: layers ∈ {1, 2, 3, 4}, number of attention heads ∈ {2, 4, 8, 16}, embedding size ∈ {32, 64, 128}. 18

0.0 0.5 1.0

(,)

1.0

0.5

0.0

0.5

Avg. Mobility

0.5

1.0

1.0

CAISO (r=0.92) ERCOT (r=0.88) NYISO (r=0.82) Fit: y=0.96x-0.01

(+,+)

0.0 0.5 1.0

(,)

1.0

0.0

0.5

Avg. Mobility

0.5

1.0

CAISO (r=0.87) ERCOT (r=0.87) NYISO (r=0.85) Fit: y=0.92x+0.01

1.0 0.5

(,)

1.0

0.5

(+,+)

(,)

0.0

0.5

Avg. Mobility

0.5

1.0

CAISO (r=0.85) ERCOT (r=0.90) NYISO (r=0.83) Fit: y=0.94x+0.01

1.0 0.5

1.0

(+,+)

0.0

NYISO 0.885 0.720 0.355 0.310 0.580 0.445 0.320 0.410

CAISO 0.910 0.765 0.510 0.425 0.290 0.380 0.495 0.360

ERCOT 0.945 0.810 0.330 0.315 0.612 0.210 0.385 0.395

0.5 1.0

0.5

0.0

Avg. Mobility

Residential

0.5

1.0

Feature Category Historical Load Weather (Temp & Dew) Retail & Recreation Grocery & Pharmacy Parks Transit Stations Workplaces Residential

0.5

1.0

0.0

1.0 0.5

0.0

Avg. Mobility

Table E.2: The calculated FIS in three electricity markets. Higher values indicate greater contribution to the forecast.

(+,+)

0.0

Workplaces Scalar Representation

Scalar Representation

0.5

0.5

1.0 0.5

CAISO (r=0.88) ERCOT (r=0.87) NYISO (r=0.80) Fit: y=0.93x-0.01

1.0

(,)

Transit Stations 1.0

Parks

(+,+)

0.0

1.0 0.5

CAISO (r=0.90) ERCOT (r=0.88) NYISO (r=0.82) Fit: y=0.98x+0.01

1.0

Scalar Representation

Scalar Representation

0.5

Grocery & Pharmacy

(+,+)

Scalar Representation

CAISO (r=0.91) ERCOT (r=0.88) NYISO (r=0.86) Fit: y=0.98x+0.00

Scalar Representation

Retail & Recreation 1.0

Table E.3: The calculated GLC in three electricity markets. Positive values indicate a pro-cyclic relationship; negative values indicate a counter-cyclic (substitution) relationship.

(,)

1.0

0.5

0.0

0.5

Avg. Mobility

1.0

Figure D.11: Relationships between average mobility and scalar representation.

Feature Category Retail & Recreation Grocery & Pharmacy Parks Transit Stations Workplaces Residential

Our framework is uniquely capable of capturing these clean, positive correlations due to the structural advantages of our feature-isolated attention architecture. In traditional MLPbased models, feature representations are often entangled through global matrix multiplications, making the resulting values a complex byproduct of interaction with other variables. Conversely, our model ensures that the representation for a specific mobility feature is a direct functional mapping of that indicator’s own sequence alone. By combining this isolated processing with the local, univariate properties of KAN’s B-spline activation functions, our LoadKAN is structurally incentivized to learn monotonic mappings between the raw input intensity and the final scalar representation. This transparency prevents the black-box mixing typical of deeper architectures and ensures that the sign and magnitude of the representation maintain a clear, interpretable link to the physical mobility dynamics they represent.

NYISO 0.45 0.38 0.52 -0.35 0.28 -0.42

CAISO 0.55 0.48 0.15 0.42 0.45 -0.38

ERCOT 0.41 0.42 0.68 0.12 0.31 -0.25

Recreation (0.510) and Workplaces (0.495) showing consistently high contributions. • In ERCOT, the Parks feature exhibits an exceptionally high importance score of 0.612, surpassing even typical commercial drivers like Workplaces (0.385). This quantitatively confirms our finding that outdoor recreational behavior (and associated HVAC loads) is a dominant driver in the Texas market. The results of GLC are reported in Table E.3, further elucidating the nature of these relationships. Notably, the Residential feature consistently shows negative correlations (e.g., −0.42 in NYISO, −0.38 in CAISO). This quantitatively validates the substitution effect hypothesis discussed in Section 4.2.4: increased residential presence correlates with a net decrease in system-wide load, likely due to the concurrent reduction in higher-intensity commercial and industrial consumption. Furthermore, the strong positive correlation of Parks in ERCOT (0.68) indicates that the grid load is highly sensitive and directionally aligned with fluctuations in park visitation, suggesting a direct link between outdoor activity conditions (likely weather-driven) and cooling demand.

Appendix E. Quantitative Feature Importance Analysis We calculate feature importance scores (FIS) and correlations between learned spline gradients and load changes. For the former, instead of using Shapley values (which is a post-hoc approach, whereas our LoadKAN is inherently interpretable), we here calculate the L1-norm (i.e., the average absolute magnitude) of the learned spline activation functions. If the spline has a large amplitude, the corresponding feature contributes more to the load prediction. For the gradient-load correlation (GLC), we calculate the Pearson correlations between the derivative of the spline and the load changes. The FIS results are reported in Table E.2, which strongly corroborate the qualitative patterns observed in the activation visualizations of all three electricity markets.

Acknowledgement This work was supported in part by the Australian Research Council (ARC) Discovery Early Career Researcher Award (DECRA) under Grant DE230100046.

• In NYISO, the Transit Stations mobility achieves a score of 0.445, significantly higher than in ERCOT (0.210), reflecting the high dependence on public transport in New York and its utility as a proxy for urban energy activity.

References

• In CAISO, the mobility feature importance is more distributed among commercial indicators, with Retail &

[1] A. El Maghraoui, H. El Hadraoui, Y. Ledmaoui, N. El Bazi, N. Guennouni, A. Chebak, Revolutionizing smart 19

grid-ready management systems: A holistic framework for optimal grid reliability, Sustainable Energy, Grids and Networks 39 (2024) 101452. doi:https: //doi.org/10.1016/j.segan.2024.101452. URL https://www.sciencedirect.com/science/ article/pii/S2352467724001814

[9] H. Min, B. Noh, Solarnexus: A deep learning framework for adaptive photovoltaic power generation forecasting and scalable management, Applied Energy 391 (2025) 125848. doi:https: //doi.org/10.1016/j.apenergy.2025.125848. URL https://www.sciencedirect.com/science/ article/pii/S0306261925005781

[2] C. Wang, H. Zhao, Y. Liu, G. Fan, Minute-level ultrashort-term power load forecasting based on time series data features, Applied Energy 372 (2024) 123801. doi:https://doi.org/10.1016/j.apenergy. 2024.123801. URL https://www.sciencedirect.com/science/ article/pii/S030626192401184X

[10] X. Wang, H. Wang, S. Li, H. Jin, A reinforcement learning-based online learning strategy for real-time short-term load forecasting, Energy 305 (2024) 132344. [11] C. Kuster, Y. Rezgui, M. Mourshed, Electrical load forecasting models: A critical systematic review, Sustainable Cities and Society 35 (2017) 257–270. doi:https: //doi.org/10.1016/j.scs.2017.08.009. URL https://www.sciencedirect.com/science/ article/pii/S2210670717305899

[3] L. Yang, R. Ren, X. Gu, L. Sun, Interactive generalized additive model and its applications in electric load forecasting, in: Proceedings of the 29th ACM SIGKDD Conference on Knowledge Discovery and Data Mining, KDD ’23, Association for Computing Machinery, New York, NY, USA, 2023, p. 5393–5403. doi:10.1145/ 3580305.3599848. URL https://doi.org/10.1145/3580305.3599848

[12] M. Xia, H. Shao, X. Ma, C. W. de Silva, A stacked grurnn-based approach for predicting renewable energy and electricity load for smart grid operation, IEEE Transactions on Industrial Informatics 17 (10) (2021) 7050–7059. doi:10.1109/TII.2021.3056867.

[4] D. Marshman, M. Brear, B. Ring, Impact of unit commitment and rocof constraints on revenue sufficiency in decarbonising wholesale electricity markets, Energy Economics 106 (2022) 105763. doi:https: //doi.org/10.1016/j.eneco.2021.105763. URL https://www.sciencedirect.com/science/ article/pii/S0140988321006046

[13] C. Wang, H. Zhao, Y. Liu, G. Fan, Minute-level ultrashort-term power load forecasting based on time series data features, Applied Energy 372 (2024) 123801. doi:https://doi.org/10.1016/j.apenergy. 2024.123801. URL https://www.sciencedirect.com/science/ article/pii/S030626192401184X

[5] D. Davis, M. J. Brear, Impact of short-term wind forecast accuracy on the performance of decarbonising wholesale electricity markets, Energy Economics 130 (2024) 107304. doi:https: //doi.org/10.1016/j.eneco.2024.107304. URL https://www.sciencedirect.com/science/ article/pii/S0140988324000124

[14] J. Li, H. Wang, A multi-view multi-timescale hypergraphempowered spatiotemporal framework for ev charging forecasting, IEEE Transactions on Smart Grid 17 (2) (2026) 1430–1443. doi:10.1109/TSG.2025.3633777. [15] H. Mansoor, M. S. Gull, H. Rauf, I. ul Hasan Shaikh, M. Khalid, N. Arshad, Graph convolutional networks based short-term load forecasting: Leveraging spatial information for improved accuracy, Electric Power Systems Research 230 (2024) 110263. doi:https: //doi.org/10.1016/j.epsr.2024.110263. URL https://www.sciencedirect.com/science/ article/pii/S0378779624001512

[6] Next Move Strategy Consulting, Power generation market – global opportunity analysis and industry forecast, 2024–2030, https://www.nextmsc.com/report/ power-generation-market, accessed: 2025-05-09 (2024). [7] International Energy Agency, Electricity 2024, https: //www.iea.org/reports/electricity-2024, iEA, Paris. Licence: CC BY 4.0. Accessed: 2025-05-09 (2024).

[16] N. Giamarelos, E. N. Zois, Boosting short term electric load forecasting of high & medium voltage substations with visibility graphs and graph neural networks, Sustainable Energy, Grids and Networks 38 (2024) 101304. doi: https://doi.org/10.1016/j.segan.2024.101304. URL https://www.sciencedirect.com/science/ article/pii/S235246772400033X

[8] O. Rubasinghe, T. Zhang, X. Zhang, S. S. Choi, T. K. Chau, Y. Chow, T. Fernando, H. H.-C. Iu, Highly accurate peak and valley prediction short-term net load forecasting approach based on decomposition for power systems with high pv penetration, Applied Energy 333 (2023) 120641. doi:https: //doi.org/10.1016/j.apenergy.2023.120641. URL https://www.sciencedirect.com/science/ article/pii/S0306261923000053

[17] Z. Peng, X. Yang, Short- and medium-term power load forecasting model based on a hybrid attention mechanism in the time and frequency domains, Expert Systems with Applications 278 (2025) 127329. doi:https: //doi.org/10.1016/j.eswa.2025.127329. 20

URL https://www.sciencedirect.com/science/ article/pii/S0957417425009510

36 (5) (2021) 4754–4763. doi:10.1109/TPWRS.2021. 3067551.

[18] B. Jiang, H. Yang, Y. Wang, Y. Liu, H. Geng, H. Zeng, J. Ding, Dynamic temporal dependency model for multiple steps ahead short-term load forecasting of power system, IEEE Transactions on Industry Applications 60 (4) (2024) 5244–5254. doi:10.1109/TIA.2024.3375802.

[26] Z. Liu, Y. Wang, S. Vaidya, F. Ruehle, J. Halverson, M. Soljacic, T. Y. Hou, M. Tegmark, KAN: Kolmogorov–arnold networks, in: The Thirteenth International Conference on Learning Representations, 2025. URL https://openreview.net/forum?id= Ozo7qJ5vZi

[19] Y. Chen, W. Yang, B. Zhang, Using mobility for electrical load forecasting during the covid-19 pandemic (2020). arXiv:2006.08826. URL https://arxiv.org/abs/2006.08826

[27] L. Baur, K. Ditschuneit, M. Schambach, C. Kaymakci, T. Wollmann, A. Sauer, Explainability and interpretability in electric load forecasting using machine learning techniques – a review, Energy and AI 16 (2024) 100358. doi: https://doi.org/10.1016/j.egyai.2024.100358. URL https://www.sciencedirect.com/science/ article/pii/S2666546824000247

[20] J. Liu, Z. Zhang, X. Fan, Y. Zhang, J. Wang, K. Zhou, S. Liang, X. Yu, W. Zhang, Power system load forecasting using mobility optimization and multi-task learning in covid-19, Applied Energy 310 (2022) 118303. doi:https: //doi.org/10.1016/j.apenergy.2021.118303. URL https://www.sciencedirect.com/science/ article/pii/S0306261921015622

[28] M. T. Ribeiro, S. Singh, C. Guestrin, "why should i trust you?": Explaining the predictions of any classifier, in: Proceedings of the 22nd ACM SIGKDD International Conference on Knowledge Discovery and Data Mining, KDD ’16, Association for Computing Machinery, New York, NY, USA, 2016, p. 1135–1144. doi:10.1145/ 2939672.2939778. URL https://doi.org/10.1145/2939672.2939778

[21] N. Zarbakhsh, M. S. Misaghian, G. Mcardle, Human mobility-based features to analyse the impact of covid19 on power system operation of ireland, IEEE Open Access Journal of Power and Energy 9 (2022) 213–225. doi:10.1109/OAJPE.2022.3155960.

[29] S. M. Lundberg, S.-I. Lee, A unified approach to interpreting model predictions, in: I. Guyon, U. V. Luxburg, S. Bengio, H. Wallach, R. Fergus, S. Vishwanathan, R. Garnett (Eds.), Advances in Neural Information Processing Systems 30, Curran Associates, Inc., 2017, pp. 4765–4774. URL http://papers.nips.cc/paper/ 7062-a-unified-approach-to-interpreting-model-predi pdf

[22] J. Cordova, L. M. Konila Sriram, A. Kocatepe, Y. Zhou, E. E. Ozguven, R. Arghandeh, Combined electricity and traffic short-term load forecasting using bundled causality engine, IEEE Transactions on Intelligent Transportation Systems 20 (9) (2019) 3448–3458. doi:10.1109/TITS. 2018.2876871. [23] Z. Zhang, J. Liu, S. Pang, M. Shi, H. H. Goh, Y. Zhang, D. Zhang, General short-term load forecasting based on multi-task temporal convolutional network in covid-19, International Journal of Electrical Power & Energy Systems 147 (2023) 108811. doi:https: //doi.org/10.1016/j.ijepes.2022.108811. URL https://www.sciencedirect.com/science/ article/pii/S0142061522008079

[30] D. Slack, A. Hilgard, S. Singh, H. Lakkaraju, Reliable post hoc explanations: Modeling uncertainty in explainability, in: M. Ranzato, A. Beygelzimer, Y. Dauphin, P. Liang, J. W. Vaughan (Eds.), Advances in Neural Information Processing Systems, Vol. 34, Curran Associates, Inc., 2021, pp. 9391–9404. URL https://proceedings.neurips. cc/paper_files/paper/2021/file/ 4e246a381baf2ce038b3b0f82c7d6fb4-Paper.pdf

[24] A. Prabowo, K. Chen, H. Xue, S. Sethuvenkatraman, F. D. Salim, Navigating out-of-distribution electricity load forecasting during covid-19: Benchmarking energy load forecasting models without and with continual learning, in: Proceedings of the 10th ACM International Conference on Systems for Energy-Efficient Buildings, Cities, and Transportation, BuildSys ’23, Association for Computing Machinery, New York, NY, USA, 2023, p. 41–50. doi:10.1145/3600100.3623726. URL https://doi.org/10.1145/3600100.3623726

[31] W. Waheed, Q. Xu, Data-driven short term load forecasting with deep neural networks: Unlocking insights for sustainable energy management, Electric Power Systems Research 232 (2024) 110376. doi:https: //doi.org/10.1016/j.epsr.2024.110376. URL https://www.sciencedirect.com/science/ article/pii/S0378779624002645 [32] S. Hochreiter, J. Schmidhuber, Long short-term memory, Neural Comput. 9 (8) (1997) 1735–1780. doi:10.1162/neco.1997.9.8.1735. URL https://doi.org/10.1162/neco.1997.9.8. 1735

[25] D. Obst, J. de Vilmarest, Y. Goude, Adaptive methods for short-term electricity load forecasting during covid-19 lockdown in france, IEEE Transactions on Power Systems 21

[33] J. Chung, C. Gulcehre, K. Cho, Y. Bengio, Empirical evaluation of gated recurrent neural networks on sequence modeling, cite arxiv:1412.3555Comment: Presented in NIPS 2014 Deep Learning and Representation Learning Workshop (2014). URL http://arxiv.org/abs/1412.3555

[41] H. Xu, F. Hu, X. Liang, G. Zhao, M. Abugunmi, A framework for electricity load forecasting based on attention mechanism time series depthwise separable convolutional neural network, Energy 299 (2024) 131258. doi:https: //doi.org/10.1016/j.energy.2024.131258. URL https://www.sciencedirect.com/science/ article/pii/S0360544224010314

[34] C. Lea, M. D. Flynn, R. Vidal, A. Reiter, G. D. Hager, Temporal convolutional networks for action segmentation and detection, in: 2017 IEEE Conference on Computer Vision and Pattern Recognition (CVPR), 2017, pp. 1003– 1012. doi:10.1109/CVPR.2017.113.

[42] V. Pentsos, S. Tragoudas, J. Wibbenmeyer, N. Khdeer, A hybrid lstm-transformer model for power load forecasting, IEEE Transactions on Smart Grid 16 (3) (2025) 2624– 2634. doi:10.1109/TSG.2025.3535407.

[35] H. Eskandari, M. Imani, M. P. Moghaddam, Convolutional and recurrent neural network based model for short-term load forecasting, Electric Power Systems Research 195 (2021) 107173. doi:https: //doi.org/10.1016/j.epsr.2021.107173. URL https://www.sciencedirect.com/science/ article/pii/S0378779621001541

[43] J. Dong, Y. Jiang, P. Chen, J. Li, Z. Wang, S. Han, Short-term power load forecasting using bidirectional gated recurrent units-based adaptive stacked autoencoder, International Journal of Electrical Power & Energy Systems 165 (2025) 110459. doi:https: //doi.org/10.1016/j.ijepes.2025.110459. URL https://www.sciencedirect.com/science/ article/pii/S0142061525000109

[36] Y. Chen, C. Lin, Y. Zhang, J. Liu, D. Yu, Day-ahead load forecast based on conv2d-gru_sc aimed to adapt to steep changes in load, Energy 302 (2024) 131814. doi:https: //doi.org/10.1016/j.energy.2024.131814. URL https://www.sciencedirect.com/science/ article/pii/S0360544224015871

[44] J. Hu, W. Hu, D. Cao, X. Sun, J. Chen, Y. Huang, Z. Chen, F. Blaabjerg, Probabilistic net load forecasting based on transformer network and gaussian process-enabled residual modeling learning method, Renewable Energy 225 (2024) 120253. doi:https: //doi.org/10.1016/j.renene.2024.120253. URL https://www.sciencedirect.com/science/ article/pii/S0960148124003185

[37] F. Saeed, A. Rehman, H. A. Shah, M. Diyan, J. Chen, J.-M. Kang, Smartformer: Graph-based transformer model for energy load forecasting, Sustainable Energy Technologies and Assessments 73 (2025) 104133. doi: https://doi.org/10.1016/j.seta.2024.104133. URL https://www.sciencedirect.com/science/ article/pii/S2213138824005290

[45] M. Rigotti, C. Miksovic, I. Giurgiu, T. Gschwind, P. Scotton, Attention-based interpretability with concept transformers, in: International conference on learning representations, 2021. [46] H. Zhao, H. Zhang, C. Tian, Z. Wei, A. Zhou, Srlinear: Lightweight long-term time series forecasting via symbolic regression, IEEE Transactions on Artificial Intelligence (2025).

[38] C. Zhang, Y. Yu, T. Zhang, K. Song, Y. Wang, S. Gao, Short-term load forecasting based on graph convolution and dendritic deep learning, IEEE Transactions on Network Science and Engineering (2025) 1–13doi:10. 1109/TNSE.2025.3558193.

[47] X. Han, X. Zhang, Y. Wu, Z. Zhang, Z. Wu, Are kans effective for multivariate time series forecasting? (2025). arXiv:2408.11306. URL https://arxiv.org/abs/2408.11306

[39] Z. Su, G. Zheng, M. Hu, L. Kong, G. Wang, Short-term load forecasting of regional integrated energy system based on spatio-temporal convolutional graph neural network, Electric Power Systems Research 232 (2024) 110427. doi:https: //doi.org/10.1016/j.epsr.2024.110427. URL https://www.sciencedirect.com/science/ article/pii/S0378779624003158

[48] B. Jiang, Y. Wang, Q. Wang, H. Geng, A novel interpretable short-term load forecasting method based on kolmogorov-arnold networks, IEEE Transactions on Power Systems 40 (1) (2025) 1180–1183. doi:10.1109/ TPWRS.2024.3498452. [49] M. Abbas, Y. Che, A. Zafar, Utilizing the new kolmogorov-arnold network for short-term electric load forecasting, Journal of Renewable and Sustainable Energy 17 (2) (2025) 025501. arXiv:https://pubs. aip.org/aip/jrse/article-pdf/doi/10.1063/5. 0253629/20479602/025501\_1\_5.0253629.pdf, doi:10.1063/5.0253629. URL https://doi.org/10.1063/5.0253629

[40] Z. Tian, W. Liu, W. Jiang, C. Wu, Cnnstransformer based day-ahead probabilistic load forecasting for weekends with limited data availability, Energy 293 (2024) 130666. doi:https: //doi.org/10.1016/j.energy.2024.130666. URL https://www.sciencedirect.com/science/ article/pii/S0360544224004389 22

[50] M. Jiang, H. Zhou, D_kan model: Enhancing power load forecasting with kolmogorov-arnold networks, in: 2024 4th International Conference on Energy Engineering and Power Systems (EEPS), 2024, pp. 335–338. doi:10. 1109/EEPS63402.2024.10804420.

[61] H. Zhou, S. Zhang, J. Peng, S. Zhang, J. Li, H. Xiong, W. Zhang, Informer: Beyond efficient transformer for long sequence time-series forecasting, in: Proceedings of the AAAI conference on artificial intelligence, Vol. 35, 2021, pp. 11106–11115.

[51] Y. Zhang, L. Cui, W. Yan, Integrating kolmogorov–arnold networks with time series prediction framework in electricity demand forecasting, Energies 18 (6) (2025). doi:10.3390/en18061365. URL https://www.mdpi.com/1996-1073/18/6/ 1365

[62] A. F. Ansari, L. Stella, C. Turkmen, X. Zhang, P. Mercado, H. Shen, O. Shchur, S. S. Rangapuram, S. P. Arango, S. Kapoor, et al., Chronos: Learning the language of time series, arXiv preprint arXiv:2403.07815 (2024). [63] Y. Li, X. Lu, Y. Wang, D. Dou, Generative time series forecasting with diffusion, denoise, and disentanglement, in: S. Koyejo, S. Mohamed, A. Agarwal, D. Belgrave, K. Cho, A. Oh (Eds.), Advances in Neural Information Processing Systems, Vol. 35, Curran Associates, Inc., 2022, pp. 23009–23022. URL https://proceedings.neurips. cc/paper_files/paper/2022/file/ 91a85f3fb8f570e6be52b333b5ab017a-Paper-Conference. pdf

[52] M. U. Danish, K. Grolinger, Kolmogorov–arnold recurrent network for short term load forecasting across diverse consumers, Energy Reports 13 (2025) 713–727. doi: https://doi.org/10.1016/j.egyr.2024.12.038. URL https://www.sciencedirect.com/science/ article/pii/S2352484724008539 [53] S. Wang, Y. Huang, Q. Wang, Medium-term jointly load forecasting via an enhanced kan-based mtl framework, in: 2024 IEEE PES 16th Asia-Pacific Power and Energy Engineering Conference (APPEEC), 2024, pp. 1–5. doi:10.1109/APPEEC61255.2024.10922466.

[64] Z. An, J. You, J. Li, Y. Tang, W. Li, H. Du, S. Du, Fredn: Spectral disentanglement for time series forecasting via learnable frequency decomposition (2025). arXiv:2511. 11817. URL https://arxiv.org/abs/2511.11817

[54] Z. Pei, Z. Zhang, J. Chen, W. Liu, B. Chen, Y. Huang, H. Yang, Y. Lu, Kan–cnn: A novel framework for electric vehicle load forecasting with enhanced engineering applicability and simplified neural network tuning, Electronics 14 (3) (2025). doi:10.3390/electronics14030414. URL https://www.mdpi.com/2079-9292/14/3/414

[65] Y. Li, Z. Chen, D. Zha, M. Du, J. Ni, D. Zhang, H. Chen, X. Hu, Towards learning disentangled representations for time series, in: Proceedings of the 28th ACM SIGKDD Conference on Knowledge Discovery and Data Mining, KDD ’22, Association for Computing Machinery, New York, NY, USA, 2022, p. 3270–3278. doi:10.1145/ 3534678.3539140. URL https://doi.org/10.1145/3534678.3539140

[55] G. Ruan, D. Wu, X. Zheng, H. Zhong, C. Kang, M. Dahleh, S. Sivaranjani, L. Xie, A cross-domain approach to analyzing the short-run impact of covid-19 on the us electricity sector, Joule 4 (11) (2020) 2322–2337. doi:10.1016/j.joule.2020.08.017.

[66] Z. Liu, J. Yang, Q. Mao, Y. Zhao, M. Cheng, Z. Li, Q. Liu, E. Chen, Disents: Disentangled channel evolving pattern modeling for multivariate time series forecasting (2024). arXiv:2410.22981. URL https://arxiv.org/abs/2410.22981

[56] Google, Covid-19 community mobility report (2021). URL https://www.google.com/covid19/ mobility/ [57] A. Vaswani, N. Shazeer, N. Parmar, J. Uszkoreit, L. Jones, A. N. Gomez, Ł. Kaiser, I. Polosukhin, Attention is all you need, Advances in neural information processing systems 30 (2017).

[67] E. N. Cawood, D. Fiorello, P. Christidis, Mobility patterns after the pandemic: a survey in 20 european cities, Transportation Research Procedia 72 (2023) 611–618, tRA Lisbon 2022 Conference Proceedings Transport Research Arena (TRA Lisbon 2022),14th17th November 2022, Lisboa, Portugal. doi:https: //doi.org/10.1016/j.trpro.2023.11.446. URL https://www.sciencedirect.com/science/ article/pii/S2352146523007433

[58] A. Noorizadegan, S. Wang, L. Ling, A practitioner’s guide to kolmogorov-arnold networks (2025). arXiv:2510. 25781. URL https://arxiv.org/abs/2510.25781 [59] C. Zeng, J. Wang, H. Shen, Q. Wang, Kan versus mlp on irregular or noisy functions (2024). arXiv:2408.07906. URL https://arxiv.org/abs/2408.07906

[68] S. Shokouhyar, S. Shokoohyar, A. Sobhani, A. J. Gorizi, Shared mobility in post-covid era: New challenges and opportunities, Sustainable Cities and Society 67 (2021) 102714.

[60] Y. Cang, Y. hang liu, L. Shi, Can kan work? exploring the potential of kolmogorov-arnold networks in computer vision (2024). arXiv:2411.06727. URL https://arxiv.org/abs/2411.06727

[69] Z. Zarabi, E. O. D. Waygood, T. Schwanen, Switching back to transit? post-pandemic commute choices and 23

emotional response, Transportation Research Part A: Policy and Practice 203 (2026) 104748. doi:https: //doi.org/10.1016/j.tra.2025.104748. URL https://www.sciencedirect.com/science/ article/pii/S0965856425003817

24

Record · ID 299957 · SHA-256 2e8ea3b2a36c17c9
Retrieved via Conceptio — every document is proof-bundled with source, license, and retrieval metadata.