CoRe: Coherence and Relational Alignment for Multivariate Time Series Forecasting
Summary
CoRe proposes a model-agnostic learning objective for multivariate time-series forecasting that uses frequency coherence and relational graph losses to improve prediction accuracy over standard methods.
View Cached Full Text
Cached at: 09/18/26, 09:02 AM
# CoRe: Coherence and Relational Alignment for Multivariate Time Series Forecasting
Source: [https://arxiv.org/html/2609.19670](https://arxiv.org/html/2609.19670)
Xiaoyu LinHuiran DuanAffiliation:City University of New York, USA Yining LiuAffiliation:University of California, Berkeley, USA Zhixiang WuAffiliation:Emory University, USA \*Corresponding author\.E\-mail[lulin@ctgu\.edu\.cn](mailto:)Chu LinAffiliation:City University of New York, USA Lin LuAffiliation:College of Computer and Information Technology, China Three Gorges University, China
###### Abstract
Direct forecasting has become a standard paradigm for multivariate time\-series forecasting because it predicts the full future horizon in a single pass\. However, its training objective is often still decomposed into pointwise errors such as MSE\. Such objectives provide stable supervision, but they do not explicitly preserve the structure of the future trajectory: temporal coherence within each variable and relational consistency across variables can both be weakened\. We propose CoRe, a model\-agnostic learning objective for direct multivariate forecasting\. CoRe replaces pointwise supervision with two output\-space constraints: a frequency coherence loss that aligns predicted and target spectra, and a low\-rank relational graph loss that matches sampled pairwise differences in a target\-derived PCA subspace\. The resulting objective introduces no trainable parameters and can be applied to existing forecasting backbones by changing only the loss\. Experiments on standard benchmarks show that CoRe improves strong baselines, compares favorably with recent forecasting objectives, and remains effective across different backbones, datasets, and hyperparameter settings overall consistently\.
###### Keywords:
Multivariate time\-series forecasting Relational alignment Frequency\-domain learning
## 1Introduction
Deep learning is transforming a wide range of research domains\[[63](https://arxiv.org/html/2609.19670#bib.bib18),[25](https://arxiv.org/html/2609.19670#bib.bib17),[52](https://arxiv.org/html/2609.19670#bib.bib13),[27](https://arxiv.org/html/2609.19670#bib.bib12),[26](https://arxiv.org/html/2609.19670#bib.bib10),[30](https://arxiv.org/html/2609.19670#bib.bib6),[59](https://arxiv.org/html/2609.19670#bib.bib62),[54](https://arxiv.org/html/2609.19670#bib.bib5),[20](https://arxiv.org/html/2609.19670#bib.bib61)\]\. Particularly rapid progress has been achieved in multimodal learning and high\-performance AI\[[29](https://arxiv.org/html/2609.19670#bib.bib16),[28](https://arxiv.org/html/2609.19670#bib.bib9),[19](https://arxiv.org/html/2609.19670#bib.bib60),[7](https://arxiv.org/html/2609.19670#bib.bib8),[8](https://arxiv.org/html/2609.19670#bib.bib7),[12](https://arxiv.org/html/2609.19670#bib.bib63)\]\. These advances create new possibilities for improving and extending scientific computing methods\[[21](https://arxiv.org/html/2609.19670#bib.bib64),[23](https://arxiv.org/html/2609.19670#bib.bib11),[56](https://arxiv.org/html/2609.19670#bib.bib15),[53](https://arxiv.org/html/2609.19670#bib.bib4),[55](https://arxiv.org/html/2609.19670#bib.bib3)\]\. Multivariate time\-series forecasting \(MTSF\) is a core problem in energy systems, traffic networks, meteorology, and industrial monitoring\. Given historical observations from multiple correlated variables, the task is to predict their future evolution over a target horizon\. Recent forecasting models have improved accuracy with stronger temporal encoders, channel interaction modules, and scalable architectures\[[35](https://arxiv.org/html/2609.19670#bib.bib39),[34](https://arxiv.org/html/2609.19670#bib.bib21),[50](https://arxiv.org/html/2609.19670#bib.bib20),[22](https://arxiv.org/html/2609.19670#bib.bib14)\]\. Among forecasting paradigms, direct forecasting \(DF\), which predicts the full horizon in one pass, is especially attractive because it avoids the error accumulation of iterative forecasting and supports efficient training and inference in practice\.
Despite this architectural progress, the objective used to train DF models remains comparatively simple\. Standard losses such as MSE decompose the future output into pointwise errors\. This is convenient, but it does not explicitly match the structure of a multivariate future\. Along the temporal dimension, future labels are autocorrelated and often contain periodic or long\-range patterns\. Along the variable dimension, channels are coupled by shared latent factors, such as neighboring sensors in traffic networks or correlated loads in electricity systems\. A model can therefore reduce pointwise error while still producing predictions with distorted temporal profiles or weakened cross\-variable geometry\.
Recent work has begun to close this gap by revisiting the learning objective\. Frequency\-domain objectives such as FreDF\[[43](https://arxiv.org/html/2609.19670#bib.bib42)\]and dependency\-aware objectives such as Time\-o1\[[42](https://arxiv.org/html/2609.19670#bib.bib55)\]show that modeling future\-label structure can improve direct forecasting without changing the backbone\. However, these objectives mainly focus on temporal dependencies within each variable\. For MTSF, the predicted future is also a joint multivariate object, and its cross\-variable structure is typically left to the architecture rather than explicitly regularized at the output level\.
We proposeCoRe\(Coherence andRelational Alignment\), a model\-agnostic objective for direct multivariate forecasting\. Instead of supervising each future value independently, CoRe trains the model with two complementary output\-space constraints\. A frequency coherence loss aligns predicted and target spectra along the future horizon, encouraging global temporal agreement\. A low\-rank relational graph loss projects predictions and targets into a target\-derived PCA subspace and matches sampled pairwise differences between latent components, providing scalable supervision for cross\-variable geometry\. CoRe is a plug\-in objective: it introduces no trainable parameters and can be used with representative Transformer, MLP, and CNN backbones by replacing their native loss\.
Our contributions are summarized as follows:
- •We identify an output\-level objective gap in direct MTSF: pointwise losses do not explicitly preserve future\-horizon coherence or cross\-variable relational consistency in direct multivariate forecasting outputs\.
- •We propose CoRe, a model\-agnostic objective that combines frequency coherence loss with efficient low\-rank relational graph alignment without adding trainable parameters or architecture\-level changes to the backbone\.
- •We validate CoRe on standard multivariate forecasting benchmarks, showing improvements over strong baselines, competitive objective\-level methods, and multiple forecasting backbones across datasets and horizons\.
## 2Related Work
### 2\.1MTSF Architectures and Cross\-Variable Dependency Modeling
MTSF requires modeling both temporal dynamics and dependencies among variables\[[37](https://arxiv.org/html/2609.19670#bib.bib49),[5](https://arxiv.org/html/2609.19670#bib.bib32)\]\. Early statistical methods\[[49](https://arxiv.org/html/2609.19670#bib.bib37),[1](https://arxiv.org/html/2609.19670#bib.bib38)\]have been largely extended by deep architectures, including RNNs\[[40](https://arxiv.org/html/2609.19670#bib.bib36)\], CNNs\[[50](https://arxiv.org/html/2609.19670#bib.bib20)\], GNNs\[[9](https://arxiv.org/html/2609.19670#bib.bib54)\], MLPs\[[61](https://arxiv.org/html/2609.19670#bib.bib40),[48](https://arxiv.org/html/2609.19670#bib.bib23),[47](https://arxiv.org/html/2609.19670#bib.bib24)\], and Transformers\[[22](https://arxiv.org/html/2609.19670#bib.bib14),[24](https://arxiv.org/html/2609.19670#bib.bib31),[4](https://arxiv.org/html/2609.19670#bib.bib22),[58](https://arxiv.org/html/2609.19670#bib.bib1),[18](https://arxiv.org/html/2609.19670#bib.bib2)\]\. A central question in these models is how to represent cross\-variable dependencies\. Channel Dependence \(CD\) methods explicitly model cross\-channel interactions\[[62](https://arxiv.org/html/2609.19670#bib.bib58),[34](https://arxiv.org/html/2609.19670#bib.bib21)\], while recent Channel Partiality \(CP\) methods filter noisy or redundant dependencies, e\.g\., DUET\[[39](https://arxiv.org/html/2609.19670#bib.bib47)\]with frequency\-domain clustering and TimeFilter\[[10](https://arxiv.org/html/2609.19670#bib.bib19)\]with patch\-specific routing graphs\.
These approaches mainly improve how the backbone extracts dependencies from historical observations\. CoRe is complementary: it does not modify the backbone, but regularizes the structure of the predicted future itself\. This distinction is important because a model can learn useful historical dependencies while still producing multivariate forecasts whose output geometry deviates from the target future horizon during forecasting\.
### 2\.2Direct Forecasting Objectives
For multi\-step forecasting, Iterative Forecasting \(IF\) recursively predicts future values and naturally preserves label autoregression, but it suffers from error accumulation\[[14](https://arxiv.org/html/2609.19670#bib.bib30),[41](https://arxiv.org/html/2609.19670#bib.bib33)\]\. Direct Forecasting \(DF\) predicts the entire horizon in one pass and is widely used for its efficiency and empirical strength\[[32](https://arxiv.org/html/2609.19670#bib.bib35),[35](https://arxiv.org/html/2609.19670#bib.bib39),[34](https://arxiv.org/html/2609.19670#bib.bib21)\]\. However, standard DF training typically decomposes the future horizon into pointwise targets, weakening explicit supervision over future\-label dependencies\.
Recent learning objectives address this limitation from different angles\. Shape\-based objectives align temporal trajectories\[[33](https://arxiv.org/html/2609.19670#bib.bib51),[2](https://arxiv.org/html/2609.19670#bib.bib53)\], distribution\-aware objectives improve probabilistic or likelihood\-based supervision\[[44](https://arxiv.org/html/2609.19670#bib.bib45),[42](https://arxiv.org/html/2609.19670#bib.bib55),[36](https://arxiv.org/html/2609.19670#bib.bib48),[45](https://arxiv.org/html/2609.19670#bib.bib46)\], and local objectives align steps or patches\[[57](https://arxiv.org/html/2609.19670#bib.bib50),[13](https://arxiv.org/html/2609.19670#bib.bib43)\]\. FreDF\[[43](https://arxiv.org/html/2609.19670#bib.bib42)\]moves direct forecasting supervision into the frequency domain, and Time\-o1\[[42](https://arxiv.org/html/2609.19670#bib.bib55)\]further studies objective\-level modeling of future temporal dependencies\. Related spectral models, such as Autoformer\[[51](https://arxiv.org/html/2609.19670#bib.bib26)\], FedFormer\[[64](https://arxiv.org/html/2609.19670#bib.bib59)\], and FreTS\[[60](https://arxiv.org/html/2609.19670#bib.bib34)\], also show that frequency representations capture periodicity and long\-range structure\. Unlike these objectives, CoRe jointly regularizes future\-horizon coherence and cross\-variable relational geometry in the output space\.
## 3Proposed Methodology
### 3\.1Problem Formulation and Objective Gap
Let𝐗∈ℝB×L×D\\mathbf\{X\}\\in\\mathbb\{R\}^\{B\\times L\\times D\}denote a batch of historical observations, whereBBis the batch size,LLis the look\-back length, andDDis the number of variables\. Given a forecasting backbonefθf\_\{\\theta\}, direct forecasting predicts the full future sequence𝐘^=fθ\(𝐗\)∈ℝB×T×D\\hat\{\\mathbf\{Y\}\}=f\_\{\\theta\}\(\\mathbf\{X\}\)\\in\\mathbb\{R\}^\{B\\times T\\times D\}for a target𝐘∈ℝB×T×D\\mathbf\{Y\}\\in\\mathbb\{R\}^\{B\\times T\\times D\}\.
Most DF models are trained with pointwise losses, e\.g\., MSE or MAE\. These objectives are effective scalar criteria, but they do not explicitly constrain the joint structure of𝐘^\\hat\{\\mathbf\{Y\}\}\. We focus on two missing output\-level constraints\. First, the future horizon has temporal structure: neighboring and periodic labels are correlated, and matching isolated time steps may underconstrain the global trajectory\. Second, the multivariate output has relational structure: variables should preserve relative patterns induced by shared latent factors\. CoRe addresses this objective gap by replacing pointwise supervision with frequency coherence and low\-rank relational graph alignment in the output space\.
Fig\.[1](https://arxiv.org/html/2609.19670#S3.F1)summarizes the overall framework of CoRe\.
Figure 1:Overall framework of CoRe, including frequency coherence and low\-rank relational graph alignment\.
### 3\.2Frequency Coherence Loss
The first component aligns predictions and targets at the sequence level by applying the 1D real fast Fourier transform \(RFFT\) along the temporal dimension to both targets and predicted trajectories:
𝐘~=ℱ\(𝐘\),𝐘~^=ℱ\(𝐘^\),\\tilde\{\\mathbf\{Y\}\}=\\mathcal\{F\}\(\\mathbf\{Y\}\),\\hskip 10\.00002pt\\hat\{\\tilde\{\\mathbf\{Y\}\}\}=\\mathcal\{F\}\(\\hat\{\\mathbf\{Y\}\}\),\(1\)where𝐘~,𝐘~^∈ℂB×F×D\\tilde\{\\mathbf\{Y\}\},\\hat\{\\tilde\{\\mathbf\{Y\}\}\}\\in\\mathbb\{C\}^\{B\\times F\\times D\}andF=⌊T/2⌋\+1F=\\lfloor T/2\\rfloor\+1\.
The frequency coherence loss averages the complex\-modulus distance over all batches, frequencies, and observed variables:
ℒfreq=1BFD∑b=1B∑f=1F∑d=1D\|𝐘~^b,f,d−𝐘~b,f,d\|\.\\mathcal\{L\}\_\{freq\}=\\frac\{1\}\{BFD\}\\sum\_\{b=1\}^\{B\}\\sum\_\{f=1\}^\{F\}\\sum\_\{d=1\}^\{D\}\\left\|\\hat\{\\tilde\{\\mathbf\{Y\}\}\}\_\{b,f,d\}\-\\tilde\{\\mathbf\{Y\}\}\_\{b,f,d\}\\right\|\.\(2\)Because the loss compares spectra rather than individual time steps, it constrains both amplitude and phase information of the predicted trajectory\. This encourages global temporal agreement, including periodicity and long\-range evolution, while remaining independent of the forecasting backbone\.
### 3\.3Low\-Rank Relational Graph Alignment
The second component preserves cross\-variable structure in the output space\. Directly matching pairwise relations among allDDvariables costs𝒪\(BTD2\)\\mathcal\{O\}\(BTD^\{2\}\)and can be sensitive to noisy high\-dimensional correlations\. Following recent efforts to explicitly preserve cross\-variable relational structure\[[6](https://arxiv.org/html/2609.19670#bib.bib44)\], we instead perform the alignment in a target\-derived low\-rank relational subspace\.
For each training batch, we center the target sequence over the batch and temporal dimensions\. Let𝐘¯∈ℝ1×1×D\\bar\{\\mathbf\{Y\}\}\\in\\mathbb\{R\}^\{1\\times 1\\times D\}be the target mean, and let𝐕∈ℝD×k\\mathbf\{V\}\\in\\mathbb\{R\}^\{D\\times k\}contain the top\-kkorthonormal principal directions computed from the target\-side covariance over variables\. We project predictions and targets with the same basis:
𝐙=\(𝐘−𝐘¯\)𝐕,𝐙^=\(𝐘^−𝐘¯\)𝐕,\\mathbf\{Z\}=\(\\mathbf\{Y\}\-\\bar\{\\mathbf\{Y\}\}\)\\mathbf\{V\},\\hskip 10\.00002pt\\hat\{\\mathbf\{Z\}\}=\(\\hat\{\\mathbf\{Y\}\}\-\\bar\{\\mathbf\{Y\}\}\)\\mathbf\{V\},\(3\)where𝐙,𝐙^∈ℝB×T×k\\mathbf\{Z\},\\hat\{\\mathbf\{Z\}\}\\in\\mathbb\{R\}^\{B\\times T\\times k\}\. Sharing the target\-derived centering and projection gives both outputs a common coordinate system for relational comparison\.
We then sample unordered latent component pairsℰ⊂\{1,…,k\}2\\mathcal\{E\}\\subset\\\{1,\\ldots,k\\\}^\{2\}and match first\-order differences between each sampled pair:
ℒgraph=1BT\|ℰ\|∑b=1B∑t=1T∑\(i,j\)∈ℰ\|\(𝐙^b,t,i−𝐙^b,t,j\)−\(𝐙b,t,i−𝐙b,t,j\)\|\.\\mathcal\{L\}\_\{graph\}=\\frac\{1\}\{BT\|\\mathcal\{E\}\|\}\\sum\_\{b=1\}^\{B\}\\sum\_\{t=1\}^\{T\}\\sum\_\{\(i,j\)\\in\\mathcal\{E\}\}\\left\|\\left\(\\hat\{\\mathbf\{Z\}\}\_\{b,t,i\}\-\\hat\{\\mathbf\{Z\}\}\_\{b,t,j\}\\right\)\-\\left\(\\mathbf\{Z\}\_\{b,t,i\}\-\\mathbf\{Z\}\_\{b,t,j\}\\right\)\\right\|\.\(4\)This LR\-Diff loss penalizes deviations in relative latent responses rather than isolated channel values\. After projection, random edge sampling reduces the pairwise comparison cost from𝒪\(BTk2\)\\mathcal\{O\}\(BTk^\{2\}\)to𝒪\(BT\|ℰ\|\)\\mathcal\{O\}\(BT\|\\mathcal\{E\}\|\), making the relational constraint scalable for datasets with many variables\.
### 3\.4Overall Objective
CoRe trains the forecasting backbone with a weighted objective that combines the two structural terms used by CoRe:
ℒtotal=αℒgraph\+\(1−α\)ℒfreq,\\mathcal\{L\}\_\{total\}=\\alpha\\mathcal\{L\}\_\{graph\}\+\(1\-\\alpha\)\\mathcal\{L\}\_\{freq\},\(5\)whereα∈\[0,1\]\\alpha\\in\[0,1\]controls the trade\-off between relational alignment and frequency coherence throughout the objective optimization process\.
During training, the backbone produces𝐘^\\hat\{\\mathbf\{Y\}\}from the historical input, and CoRe computes both losses directly on the predicted and target future sequences\. MSE and MAE are not used as training losses in CoRe; they are kept only as evaluation metrics for comparability\. Since CoRe changes only the objective, it can be applied to existing forecasting architectures without adding trainable parameters or modifying the model design\. Its extra cost stays in the output space during training: the RFFT over the horizon costs𝒪\(BDTlogT\)\\mathcal\{O\}\(BDT\\log T\), and edge sampling reduces the latent pairwise comparison from𝒪\(BTk2\)\\mathcal\{O\}\(BTk^\{2\}\)to𝒪\(BT\|ℰ\|\)\\mathcal\{O\}\(BT\|\\mathcal\{E\}\|\), while inference remains unchanged\.
## 4Experiments
### 4\.1Setup
#### Datasets\.
We use standard multivariate forecasting benchmarks: ETT\[[17](https://arxiv.org/html/2609.19670#bib.bib25)\], Weather, ECL, Traffic\[[51](https://arxiv.org/html/2609.19670#bib.bib26)\], and PEMS\[[31](https://arxiv.org/html/2609.19670#bib.bib27)\]\. These datasets cover electricity transformers, meteorological measurements, electricity consumption, freeway traffic occupancy, and traffic sensor networks, and therefore include both low\-dimensional and high\-dimensional forecasting settings\. Following common protocols\[[34](https://arxiv.org/html/2609.19670#bib.bib21)\], all datasets are split chronologically into training, validation, and test sets to avoid temporal leakage\. The input length is fixed to 96 for ETT, Weather, ECL, and Traffic, with prediction lengths\{96,192,336,720\}\\\{96,192,336,720\\\}; for PEMS, the prediction lengths are\{12,24,36,48\}\\\{12,24,36,48\\\}\.
#### Baselines\.
We compare with representative forecasting architectures from three families: Transformer\-based models \(PatchTST\[[35](https://arxiv.org/html/2609.19670#bib.bib39)\], FEDformer\[[64](https://arxiv.org/html/2609.19670#bib.bib59)\], iTransformer\[[34](https://arxiv.org/html/2609.19670#bib.bib21)\]\), MLP\-based models \(DLinear\[[61](https://arxiv.org/html/2609.19670#bib.bib40)\], TiDE\[[3](https://arxiv.org/html/2609.19670#bib.bib56)\], FreTS\[[60](https://arxiv.org/html/2609.19670#bib.bib34)\]\), and other competitive architectures \(TimesNet\[[50](https://arxiv.org/html/2609.19670#bib.bib20)\], MICN\[[46](https://arxiv.org/html/2609.19670#bib.bib41)\]\)\. Since CoRe is an objective rather than a new backbone, we also compare with objective\-level baselines, including FreDF\[[43](https://arxiv.org/html/2609.19670#bib.bib42)\]and Time\-o1\[[42](https://arxiv.org/html/2609.19670#bib.bib55)\], in the dedicated learning\-objective study\.
#### Implementation\.
Baselines are reproduced using the scripts from\[[34](https://arxiv.org/html/2609.19670#bib.bib21)\]and trained with Adam\[[11](https://arxiv.org/html/2609.19670#bib.bib29)\]under the standard MSE objective\. We follow the same chronological splits and evaluation protocol for all methods, and disable the drop\-last trick during testing following\[[38](https://arxiv.org/html/2609.19670#bib.bib28)\]\. When applying CoRe to an existing backbone, we keep the benchmark hyperparameters whenever possible, so that the comparison mainly reflects the effect of the training objective\. We tune only the learning rate and two CoRe\-specific parameters: the loss weightα\\alphaand PCA dimensionkk\. The PCA basis is estimated from the target side of each mini\-batch, and the same target\-derived basis is used to project both predictions and targets\. Latent component pairs are sampled uniformly without replacement for the relational graph loss, and the selected hyperparameters are chosen on the validation split\. Experiments are conducted on Intel\(R\) Xeon\(R\) Gold 6248R CPUs and 8 NVIDIA RTX 3090 GPUs\.
Table 1:Long\-term forecasting results with input length 96 following\[[34](https://arxiv.org/html/2609.19670#bib.bib21)\]\.Bolddenotes the best result andunderlineddenotes the second\-best result for each metric\.
### 4\.2Overall Performance
Table[1](https://arxiv.org/html/2609.19670#S4.T1)reports the main long\-term forecasting results across nine benchmarks and multiple prediction horizons\. CoRe achieves the best average performance on most datasets and remains competitive on the remaining cases, with consistent gains over the iTransformer baseline on both MSE and MAE\. The improvements are especially meaningful on high\-dimensional benchmarks such as ECL, Traffic, PEMS03, and PEMS08, where modeling variables independently is more likely to distort cross\-variable structure\. These results suggest that CoRe can improve direct forecasting without changing the underlying architecture\.
#### Qualitative forecasts\.
Fig\.[2](https://arxiv.org/html/2609.19670#S4.F2)visualizes representative forecasts from ETTh2, Weather, and ECL\. Standard DF captures the coarse trend in many cases, but it often smooths local fluctuations, underestimates sharp changes, or misses repeated peaks\. In contrast, CoRe produces trajectories that stay closer to the ground truth, especially around short\-term variations in ETTh2 and Weather and recurring peak patterns in ECL\. These qualitative results are consistent with the design of CoRe: frequency coherence encourages global temporal alignment, while relational alignment discourages forecasts that fit each variable independently but distort the multivariate structure of future outputs\.
\(a\)ETTh2 snapshot\.
\(b\)Weather snapshot\.
\(c\)ECL snapshot\.
Figure 2:Forecast sequences of Ground Truth \(black\), DF \(orange\), and CoRe \(blue\), with historical lengthH=96\\mathrm\{H\}=96in each case\.
### 4\.3Ablation studies
Table[2](https://arxiv.org/html/2609.19670#S4.T2)ablates the two components of CoRe\. CoRe†keeps the frequency coherence loss and removes the low\-rank relational graph loss, while CoRe‡keeps the relational graph loss and removes the frequency term\. This design separates the temporal and cross\-variable parts of the objective while leaving the backbone and training protocol unchanged\. Both variants improve over the MSE baseline, indicating that temporal coherence and cross\-variable relational alignment are individually useful for direct forecasting accuracy\.
The graph\-only variant is particularly effective on ETTh1, ECL, and short\-horizon Weather, suggesting that preserving cross\-variable relationships is important when the target variables are strongly coupled\. The frequency\-only variant remains competitive on ETTm1 and long\-horizon Weather, where temporal structure and repeated patterns are prominent\. Combining both components gives the strongest overall results, which supports the view that the two losses address different failure modes of pointwise supervision rather than acting as redundant regularizers during model training and evaluation\.
Table 2:Ablation study results\.- •Note:Boldandunderlineddenote best and second\-best results, respectively\. “Fre\.” and “Gra\.” are abbreviations for frequency and graph\.
Table 3:Comparable results with other objectives for time\-series forecast\.- •Note:Boldandunderlineddenote best and second results\. Follow the settings of Time\-o1\[[42](https://arxiv.org/html/2609.19670#bib.bib55)\]
### 4\.4Learning objective comparison
Table[3](https://arxiv.org/html/2609.19670#S4.T3)compares CoRe with recent time\-series learning objectives, including Time\-o1\[[42](https://arxiv.org/html/2609.19670#bib.bib55)\], FreDF\[[43](https://arxiv.org/html/2609.19670#bib.bib42)\], Koopman\[[15](https://arxiv.org/html/2609.19670#bib.bib57)\], DILATE\[[16](https://arxiv.org/html/2609.19670#bib.bib52)\], and Soft\-DTW\[[2](https://arxiv.org/html/2609.19670#bib.bib53)\]\. For a fair comparison, we integrate their official implementations into iTransformer\[[34](https://arxiv.org/html/2609.19670#bib.bib21)\]and keep the same backbone, data splits, and evaluation metrics\. This setting isolates the effect of the objective design from architectural differences\.
As shown in Table[3](https://arxiv.org/html/2609.19670#S4.T3), CoRe achieves the best or tied\-best results across the four datasets\. It improves over the MSE baseline on both MSE and MAE, supporting the benefit of replacing purely pointwise supervision with structural output constraints\. Compared with FreDF and Time\-o1, CoRe remains competitive on Weather and yields clearer gains on ETTm1, ETTh1, and ECL\. These results suggest that cross\-variable relational consistency provides information complementary to temporal objective design, especially in multivariate settings where variables should not be optimized independently\.
### 4\.5Generalization Studies
#### Varying forecast models\.
Figure[3](https://arxiv.org/html/2609.19670#S4.F3)integrates CoRe with iTransformer\[[34](https://arxiv.org/html/2609.19670#bib.bib21)\], TimesNet\[[50](https://arxiv.org/html/2609.19670#bib.bib20)\], DLinear\[[61](https://arxiv.org/html/2609.19670#bib.bib40)\], and PatchTST\[[35](https://arxiv.org/html/2609.19670#bib.bib39)\], covering Transformer, convolutional, linear, and patch\-based forecasting designs\. CoRe improves both MSE and MAE for all reported backbone–dataset combinations, with larger gains on challenging datasets such as Weather, ETTm2, and ECL\. The consistency across these heterogeneous models indicates that CoRe is not compensating for a particular architectural weakness\. Instead, it provides a model\-agnostic training signal that can be attached to different direct forecasting backbones\.
\(a\)ETTm1 with MSE\(b\)ETTm1 with MAE\(c\)ETTm2 with MSE\(d\)ETTm2 with MAE\(e\)ETTh1 with MSE\(f\)ETTh1 with MAE\(g\)ETTh2 with MSE\(h\)ETTh2 with MAE\(i\)ECL with MSE\(j\)ECL with MAE\(k\)Weather with MSE\(l\)Weather with MAE
Figure 3:Effect of incorporating CoRe into different forecasting backbones across six datasets in our experiments and evaluation protocol\.
#### Varying relational graph loss variants\.
We compare three relational graph losses, each combined with the same frequency coherence loss and the same training protocol\.
- •LR\-Diff\.This is the default relational loss used in CoRe\. It projects predictions and targets into the target\-derived PCA subspace and matches first\-order differences between randomly sampled latent component pairs\.
- •Cov\.It aligns prediction and ground\-truth covariance matrices in the original variable space after separate centering, providing a global constraint on cross\-variable dependency among the observed variables\.
- •PCA\-Cov\.It uses the same target\-derived PCA projection as LR\-Diff, but replaces sampled pairwise difference matching with covariance alignment in the low\-rank subspace of latent variables\.
As shown in Table[4](https://arxiv.org/html/2609.19670#S4.T4), LR\-Diff performs best in most cases\. Cov and PCA\-Cov are also competitive, showing that covariance\-based relational alignment can improve multivariate forecasting\. However, they are generally weaker than LR\-Diff, possibly because global covariance statistics discard fine\-grained pairwise differences that are directly relevant to preserving relative variable behavior\. We therefore use LR\-Diff as the default relational graph loss in CoRe\.
Table 4:Comparison of different graph loss variants\.
### 4\.6Hyperparameter Sensitivity
#### Sensitivity of loss weightα\\alpha\.
We vary the loss weightα\\alphafrom 0 to 1 on ECL, ETTm1, Weather, and ETTh2 with prediction lengthsT=192T=192andT=336T=336\. As shown in Fig\.[4](https://arxiv.org/html/2609.19670#S4.F4), MSE and MAE change smoothly in most cases, without abrupt degradation whenα\\alphamoves away from the best value\. This indicates that CoRe does not require delicate balancing between the frequency coherence loss and the low\-rank relational graph loss\. In practice, a broad range of intermediate weights provides stable gains, which is important when transferring the objective to new forecasting datasets and backbones\.
#### Sensitivity of PCA dimensionkk\.
We further evaluate the PCA dimensionkkin Fig\.[5](https://arxiv.org/html/2609.19670#S4.F5)\. CoRe remains stable across a range of values, suggesting that the low\-rank projection is not highly sensitive to this choice\. Low\-dimensional ETT datasets typically prefer most available components, which is expected because only a few variables are present and discarding components can remove useful signal\. High\-dimensional datasets exhibit more dataset\-specific optima: ECL, PEMS03, and PEMS08 benefit from relatively larger subspaces, while Weather and Traffic can perform well with more compact projections\. This behavior suggests that the PCA projection preserves dominant relational structure while filtering redundant or noisy cross\-variable variation\.
\(a\)ECL MSE
\(b\)ECL MAE
\(c\)ETTm1 MSE
\(d\)ETTm1 MAE
\(e\)Weather MSE
\(f\)Weather MAE
\(g\)ETTh2 MSE
\(h\)ETTh2 MAE
Figure 4:Sensitivity to the loss weightα\\alphafor prediction lengthsT=192T=192andT=336T=336\.\(a\)ETTh1
\(b\)ETTh2
\(c\)ETTm1
\(d\)ETTm2
\(e\)ECL
\(f\)PEMS03
\(g\)PEMS08
\(h\)Weather
\(i\)Traffic
Figure 5:Effect of the number of principal componentskkacross datasets\. The orange marker indicates the bestkkselected by MSE\.
## 5Conclusion
We introduced CoRe, a model\-agnostic objective for direct multivariate time\-series forecasting\. Rather than relying solely on pointwise errors, CoRe imposes two complementary structural constraints on the predicted future: frequency coherence alignment for temporal structure and low\-rank relational graph alignment for cross\-variable consistency\. It can be applied to existing forecasting backbones without architectural changes or additional trainable parameters\. Experiments on standard benchmarks show consistent improvements across strong baselines and different backbones\. Ablation and sensitivity analyses further confirm the complementarity and robustness of the two components, supporting output\-space structural supervision as an effective approach to multivariate forecasting\. Extending the relational term beyond a linear low\-rank basis is a natural next step\.
## References
- \[1\]D\. Asteriou and S\. G\. Hall\(2011\)ARIMA models and the box–jenkins methodology\.Applied Economics2\(2\),pp\.265–286\.Cited by:[§2\.1](https://arxiv.org/html/2609.19670#S2.SS1.p1.1)\.
- \[2\]M\. Cuturi and M\. Blondel\(2017\)Soft\-dtw: a differentiable loss function for time\-series\.InProc\. Int\. Conf\. Mach\. Learn\.,pp\.894–903\.Cited by:[§2\.2](https://arxiv.org/html/2609.19670#S2.SS2.p2.1),[§4\.4](https://arxiv.org/html/2609.19670#S4.SS4.p1.1)\.
- \[3\]A\. Das, W\. Kong, A\. Leach, R\. Sen, and R\. Yu\(2023\)Long\-term forecasting with tide: time\-series dense encoder\.arXiv preprint arXiv:2304\.08424\.Cited by:[§4\.1](https://arxiv.org/html/2609.19670#S4.SS1.SSS0.Px2.p1.1)\.
- \[4\]K\. Ding, F\. Fan, C\. Hou, Z\. Wang, L\. Wang, Z\. Yang, and J\. Zhan\(2026\)TimeMosaic: temporal heterogeneity guided time series forecasting via adaptive granularity patch and segment\-wise decoding\.Proceedings of the AAAI Conference on Artificial Intelligence\.Cited by:[§2\.1](https://arxiv.org/html/2609.19670#S2.SS1.p1.1)\.
- \[5\]K\. Ding, F\. Fan, Y\. Wang, R\. Jian, X\. Wang, L\. Gong, Y\. Jiang, C\. Luo, and J\. Zhan\(2025\)DualSG: a dual\-stream explicit semantic\-guided multivariate time series forecasting framework\.InProceedings of the 33rd ACM International Conference on Multimedia,Cited by:[§2\.1](https://arxiv.org/html/2609.19670#S2.SS1.p1.1)\.
- \[6\]K\. Ding, Y\. Hu, H\. Wang, and H\. Xue\(2026\)Multivariate time series forecasting needs cross variable loss\.Cited by:[§3\.3](https://arxiv.org/html/2609.19670#S3.SS3.p1.1)\.
- \[7\]W\. Feng, C\. Yang, H\. Qin,et al\.\(2026\)Mpq\-dmv2: flexible residual mixed precision quantization for low\-bit diffusion models with temporal distillation\.IEEE Transactions on Pattern Analysis and Machine Intelligence\.Cited by:[§1](https://arxiv.org/html/2609.19670#S1.p1.1)\.
- \[8\]W\. Feng, C\. Yang, H\. Qin,et al\.\(2026\)S2\{\}^\{2\}Q\-VDiT\+\{\}^\{\+\}: accurate quantized video diffusion transformer with multi\-resolution sampling and structural distillation\.IEEE Transactions on Pattern Analysis and Machine Intelligence\.Cited by:[§1](https://arxiv.org/html/2609.19670#S1.p1.1)\.
- \[9\]C\. Hou, Y\. Yu, J\. Ji, S\. Zhang, X\. Shen, and J\. Yan\(2026\)Graph\-patchformer: patch interaction transformer with adaptive graph learning for multivariate time series forecasting\.Neural Networks194,pp\.108140\.External Links:ISSN 0893\-6080Cited by:[§2\.1](https://arxiv.org/html/2609.19670#S2.SS1.p1.1)\.
- \[10\]Y\. Hu, G\. Zhang, P\. Liu, D\. Lan, N\. Li, D\. Cheng, T\. Dai, S\. Xia, and S\. Pan\(2025\)TimeFilter: patch\-specific spatial\-temporal graph filtration for time series forecasting\.InForty\-second International Conference on Machine Learning,Cited by:[§2\.1](https://arxiv.org/html/2609.19670#S2.SS1.p1.1)\.
- \[11\]D\. P\. Kingma and J\. Ba\(2015\)Adam: A method for stochastic optimization\.InICLR,pp\.1–9\.Cited by:[§4\.1](https://arxiv.org/html/2609.19670#S4.SS1.SSS0.Px3.p1.1)\.
- \[12\]Z\. Kong, Y\. Li, F\. Zeng, L\. Xin,et al\.\(2025\)Token reduction should go beyond efficiency in generative models–from vision, language to multimodality\.arXiv preprint arXiv:2505\.18227\.Cited by:[§1](https://arxiv.org/html/2609.19670#S1.p1.1)\.
- \[13\]D\. Kudrat, Z\. Xie, Y\. Sun, T\. Jia, and Q\. Hu\(2025\)Patch\-wise structural loss for time series forecasting\.InForty\-second International Conference on Machine Learning,Cited by:[§2\.2](https://arxiv.org/html/2609.19670#S2.SS2.p2.1)\.
- \[14\]G\. Lai, W\. Chang, Y\. Yang, and H\. Liu\(2018\)Modeling long\-and short\-term temporal patterns with deep neural networks\.InSIGIR,Cited by:[§2\.2](https://arxiv.org/html/2609.19670#S2.SS2.p1.1)\.
- \[15\]H\. Lange, S\. L\. Brunton, and J\. N\. Kutz\(2021\)From fourier to koopman: spectral methods for long\-term time series prediction\.Journal of Machine Learning Research22\(41\),pp\.1–38\.Cited by:[§4\.4](https://arxiv.org/html/2609.19670#S4.SS4.p1.1)\.
- \[16\]V\. Le Guen and N\. Thome\(2019\)Shape and time distortion loss for training deep time series forecasting models\.Proc\. Adv\. Neural Inf\. Process\. Syst\.32\.Cited by:[§4\.4](https://arxiv.org/html/2609.19670#S4.SS4.p1.1)\.
- \[17\]J\. Li, X\. Hui, and W\. Zhang\(2021\)Informer: beyond efficient transformer for long sequence time\-series forecasting\.InThe Thirty\-Fifth AAAI Conference on Artificial Intelligence,Cited by:[§4\.1](https://arxiv.org/html/2609.19670#S4.SS1.SSS0.Px1.p1.1)\.
- \[18\]X\. Li, Y\. Xia, X\. Zhao, Y\. Xu, Y\. Liu, C\. Lu, Y\. Long, Y\. Ma, J\. Cao, L\. Fan, and Y\. Xu\(2026\)GRACE: grounded reasoning via adapter composition and evidence\-aware calibration for educational visual question answering\.External Links:2608\.19355Cited by:[§2\.1](https://arxiv.org/html/2609.19670#S2.SS1.p1.1)\.
- \[19\]Y\. Li, L\. Lu, Z\. Kong, Y\. Wang, P\. Zhao, and X\. Lin\(2026\)Diff\-stygs: 3d gaussian splatting stylization via tuning\-free multi\-view sparse diffusion\.InInternational Conference on Pattern Recognition,Cited by:[§1](https://arxiv.org/html/2609.19670#S1.p1.1)\.
- \[20\]Y\. Li, N\. Yang, S\. Yin, S\. Thogarrati, and S\. o\. Chang\(2026\)MRMAD: a multi\-round multi\-audio benchmark for evaluating acoustic degradation perception in large audio\-language models\.arXiv preprint arXiv:2608\.22236\.Cited by:[§1](https://arxiv.org/html/2609.19670#S1.p1.1)\.
- \[21\]Y\. Li, Y\. Zhang, S\. Liu, and X\. Lin\(2025\)Pruning then reweighting: towards data\-efficient training of diffusion models\.InICASSP,Cited by:[§1](https://arxiv.org/html/2609.19670#S1.p1.1)\.
- \[22\]Y\. Li, K\. Ding, C\. Yang, S\. Chen, and Y\. Tian\(2026\)Distilling time series foundation models for efficient forecasting\.InICASSP,Cited by:[§1](https://arxiv.org/html/2609.19670#S1.p1.1),[§2\.1](https://arxiv.org/html/2609.19670#S2.SS1.p1.1)\.
- \[23\]Y\. Li, K\. Ding, C\. Yang, H\. Wang, H\. Wang, H\. Duan, J\. Liu, and Y\. Tian\(2025\)DDTime: dataset distillation with spectral alignment and information bottleneck for time\-series forecasting\.arXiv preprint arXiv:2511\.16715\.Cited by:[§1](https://arxiv.org/html/2609.19670#S1.p1.1)\.
- \[24\]Y\. Li, K\. Ding, C\. Yang, H\. Wang, H\. Wang, H\. Duan, J\. Liu, and Y\. Tian\(2025\)DDTime: dataset distillation with spectral alignment and information bottleneck for time\-series forecasting\.External Links:2511\.16715Cited by:[§2\.1](https://arxiv.org/html/2609.19670#S2.SS1.p1.1)\.
- \[25\]Y\. Li, J\. Dong, H\. Zeng, F\. Zhang, Z\. Dong, C\. Yang, and Y\. Tian\(2026\)Towards robust medical image segmentation: spectro\-spatial domain generalization with mram and dmir\.Computer Vision and Image Understanding\.Cited by:[§1](https://arxiv.org/html/2609.19670#S1.p1.1)\.
- \[26\]Y\. Li, S\. Meng, C\. Yang, W\. Feng, J\. Liu, Z\. An, Y\. Wang, and Y\. Tian\(2026\)A comprehensive survey of interaction techniques in 3d scene generation\.IJCAI\.Cited by:[§1](https://arxiv.org/html/2609.19670#S1.p1.1)\.
- \[27\]Y\. Li, X\. Xiao, Y\. Zhang, L\. Zhao, Y\. Li, A\. Zhao, T\. Wang, H\. Xu, and Y\. Tian\(2026\)Rethinking layer\-wise information allocation for vision foundation model adaptation\.arXiv preprint arXiv:2607\.21973\.Cited by:[§1](https://arxiv.org/html/2609.19670#S1.p1.1)\.
- \[28\]Y\. Li, C\. Yang, H\. Zeng, Z\. Dong, Z\. An, Y\. Xu, Y\. Tian, and H\. Wu\(2025\)Frequency\-aligned knowledge distillation for lightweight spatiotemporal forecasting\.InProceedings of the IEEE/CVF International Conference on Computer Vision,pp\.7262–7272\.Cited by:[§1](https://arxiv.org/html/2609.19670#S1.p1.1)\.
- \[29\]Y\. Li, H\. Zeng, F\. Zhang, C\. Yang, Y\. Li, and W\. Ding\(2025\)Efficient Medical Image Segmentation via Reinforcement Learning\-Driven K\-Space Sampling\.IEEE Transactions on Emerging Topics in Computational Intelligence\.Cited by:[§1](https://arxiv.org/html/2609.19670#S1.p1.1)\.
- \[30\]Z\. Lin, K\. Zhao, S\. Zhang, P\. Yu, and C\. Xiao\(2026\)Cec\-zero: zero\-supervision character error correction with self\-generated rewards\.InProceedings of the AAAI Conference on Artificial Intelligence,Vol\.40,pp\.23612–23620\.Cited by:[§1](https://arxiv.org/html/2609.19670#S1.p1.1)\.
- \[31\]M\. Liu, A\. Zeng, M\. Chen, Z\. Xu, Q\. Lai, L\. Ma, and Q\. Xu\(2022\)SCINet: time series modeling and forecasting with sample convolution and interaction\.InAdvances in Neural Information Processing Systems,Cited by:[§4\.1](https://arxiv.org/html/2609.19670#S4.SS1.SSS0.Px1.p1.1)\.
- \[32\]S\. Liu, R\. Ghosh, and M\. Motani\(2022\)Towards better long\-range time series forecasting using generative forecasting\.CoRRabs/2212\.06142\.Cited by:[§2\.2](https://arxiv.org/html/2609.19670#S2.SS2.p1.1)\.
- \[33\]X\. Liu, N\. Li, and S\. Xia\(2021\)Gdtw: a novel differentiable dtw loss for time series tasks\.InICASSP,Cited by:[§2\.2](https://arxiv.org/html/2609.19670#S2.SS2.p2.1)\.
- \[34\]Y\. Liu, T\. Hu, H\. Zhang, H\. Wu, S\. Wang, L\. Ma, and M\. Long\(2024\)ITransformer: inverted transformers are effective for time series forecasting\.InICLR,Cited by:[§1](https://arxiv.org/html/2609.19670#S1.p1.1),[§2\.1](https://arxiv.org/html/2609.19670#S2.SS1.p1.1),[§2\.2](https://arxiv.org/html/2609.19670#S2.SS2.p1.1),[§4\.1](https://arxiv.org/html/2609.19670#S4.SS1.SSS0.Px1.p1.1),[§4\.1](https://arxiv.org/html/2609.19670#S4.SS1.SSS0.Px2.p1.1),[§4\.1](https://arxiv.org/html/2609.19670#S4.SS1.SSS0.Px3.p1.1),[§4\.4](https://arxiv.org/html/2609.19670#S4.SS4.p1.1),[§4\.5](https://arxiv.org/html/2609.19670#S4.SS5.SSS0.Px1.p1.1),[Table 1](https://arxiv.org/html/2609.19670#S4.T1)\.
- \[35\]Y\. Nie, N\. H\. Nguyen, P\. Sinthong, and J\. Kalagnanam\(2023\)A time series is worth 64 words: long\-term forecasting with transformers\.InICLR,Cited by:[§1](https://arxiv.org/html/2609.19670#S1.p1.1),[§2\.2](https://arxiv.org/html/2609.19670#S2.SS2.p1.1),[§4\.1](https://arxiv.org/html/2609.19670#S4.SS1.SSS0.Px2.p1.1),[§4\.5](https://arxiv.org/html/2609.19670#S4.SS5.SSS0.Px1.p1.1)\.
- \[36\]L\. Pan, H\. Wang, H\. Yang, Y\. Li, Q\. Wen, X\. Li, Z\. Chen, H\. Li, Z\. Chu, and Y\. Lu\(2026\)Deep time\-series forecasting needs kernelized moment balancing\.External Links:2602\.00717Cited by:[§2\.2](https://arxiv.org/html/2609.19670#S2.SS2.p2.1)\.
- \[37\]X\. Qiu, H\. Cheng, X\. Wu, J\. Lu, J\. Hu, C\. Guo, C\. S\. Jensen, and B\. Yang\(2026\)A comprehensive survey of deep learning for multivariate time series forecasting: a channel strategy perspective\.External Links:2502\.10721Cited by:[§2\.1](https://arxiv.org/html/2609.19670#S2.SS1.p1.1)\.
- \[38\]X\. Qiu, J\. Hu, L\. Zhou, X\. Wu, J\. Du, B\. Zhang, C\. Guo, A\. Zhou, C\. S\. Jensen, Z\. Sheng, and B\. Yang\(2024\)TFB: towards comprehensive and fair benchmarking of time series forecasting methods\.InVLDB,pp\.2363–2377\.Cited by:[§4\.1](https://arxiv.org/html/2609.19670#S4.SS1.SSS0.Px3.p1.1)\.
- \[39\]X\. Qiu, X\. Wu, Y\. Lin, C\. Guo, J\. Hu, and B\. Yang\(2025\)DUET: dual clustering enhanced multivariate time series forecasting\.InSIGKDD,pp\.1185–1196\.Cited by:[§2\.1](https://arxiv.org/html/2609.19670#S2.SS1.p1.1)\.
- \[40\]D\. Salinas, V\. Flunkert, J\. Gasthaus, and T\. Januschowski\(2020\)DeepAR: probabilistic forecasting with autoregressive recurrent networks\.International Journal of Forecasting36\(3\),pp\.1181–1191\.Cited by:[§2\.1](https://arxiv.org/html/2609.19670#S2.SS1.p1.1)\.
- \[41\]S\. B\. Taieb and A\. F\. Atiya\(2015\)A bias and variance analysis for multistep\-ahead time series forecasting\.IEEE Transactions on Neural Networks and Learning Systems27\(1\),pp\.62–76\.Cited by:[§2\.2](https://arxiv.org/html/2609.19670#S2.SS2.p1.1)\.
- \[42\]H\. Wang, L\. Pan, Z\. Chen, X\. Chen, Q\. Dai, L\. Wang, H\. Li, and Z\. Lin\(2025\)Time\-o1: time\-series forecasting needs transformed label alignment\.Proc\. Adv\. Neural Inf\. Process\. Syst\.\.Cited by:[§1](https://arxiv.org/html/2609.19670#S1.p3.1),[§2\.2](https://arxiv.org/html/2609.19670#S2.SS2.p2.1),[1st item](https://arxiv.org/html/2609.19670#S4.I2.i1.p1.1),[§4\.1](https://arxiv.org/html/2609.19670#S4.SS1.SSS0.Px2.p1.1),[§4\.4](https://arxiv.org/html/2609.19670#S4.SS4.p1.1)\.
- \[43\]H\. Wang, L\. Pan, Z\. Chen, D\. Yang, S\. Zhang, Y\. Yang, X\. Liu, H\. Li, and D\. Tao\(2025\)FreDF: learning to forecast in the frequency domain\.InICLR,Cited by:[§1](https://arxiv.org/html/2609.19670#S1.p3.1),[§2\.2](https://arxiv.org/html/2609.19670#S2.SS2.p2.1),[§4\.1](https://arxiv.org/html/2609.19670#S4.SS1.SSS0.Px2.p1.1),[§4\.4](https://arxiv.org/html/2609.19670#S4.SS4.p1.1)\.
- \[44\]H\. Wang, L\. Pan, Y\. Lu, Z\. Chen,et al\.\(2026\)Quadratic direct forecast for training multi\-step time\-series forecast models\.InICLR,Cited by:[§2\.2](https://arxiv.org/html/2609.19670#S2.SS2.p2.1)\.
- \[45\]H\. Wang, L\. Pan, Y\. Lu, Z\. Chu, X\. Li, S\. He, Z\. Chen, H\. Li, Q\. Wen, and Z\. Lin\(2026\)DistDF: time\-series forecasting needs joint\-distribution wasserstein alignment\.InProc\. Int\. Conf\. Learn\. Represent\.,pp\.1–9\.Cited by:[§2\.2](https://arxiv.org/html/2609.19670#S2.SS2.p2.1)\.
- \[46\]H\. Wang, J\. Peng, F\. Huang, J\. Wang, J\. Chen, and Y\. Xiao\(2023\)Micn: multi\-scale local and global context modeling for long\-term series forecasting\.InICLR,Cited by:[§4\.1](https://arxiv.org/html/2609.19670#S4.SS1.SSS0.Px2.p1.1)\.
- \[47\]S\. Wang, J\. Li, X\. Shi, Z\. Ye, B\. Mo, W\. Lin, S\. Ju, Z\. Chu, and M\. Jin\(2024\)TimeMixer\+\+: a general time series pattern machine for universal predictive analysis\.arXiv preprint arXiv:2410\.16032\.Cited by:[§2\.1](https://arxiv.org/html/2609.19670#S2.SS1.p1.1)\.
- \[48\]S\. Wang, H\. Wu, X\. Shi, T\. Hu, H\. Luo, L\. Ma, J\. Y\. Zhang, and J\. ZHOU\(2024\)TimeMixer: decomposable multiscale mixing for time series forecasting\.InICLR \(ICLR\),Cited by:[§2\.1](https://arxiv.org/html/2609.19670#S2.SS1.p1.1)\.
- \[49\]M\. W\. Watson\(1993\)Vector autoregressions and cointegration\.Working Paper Series, Macroeconomic Issues4\.Cited by:[§2\.1](https://arxiv.org/html/2609.19670#S2.SS1.p1.1)\.
- \[50\]H\. Wu, T\. Hu, Y\. Liu, H\. Zhou, J\. Wang, and M\. Long\(2023\)TimesNet: temporal 2d\-variation modeling for general time series analysis\.InICLR,Cited by:[§1](https://arxiv.org/html/2609.19670#S1.p1.1),[§2\.1](https://arxiv.org/html/2609.19670#S2.SS1.p1.1),[§4\.1](https://arxiv.org/html/2609.19670#S4.SS1.SSS0.Px2.p1.1),[§4\.5](https://arxiv.org/html/2609.19670#S4.SS5.SSS0.Px1.p1.1)\.
- \[51\]H\. Wu, J\. Xu, J\. Wang, and M\. Long\(2021\)Autoformer: decomposition transformers with Auto\-Correlation for long\-term series forecasting\.InAdvances in Neural Information Processing Systems,Cited by:[§2\.2](https://arxiv.org/html/2609.19670#S2.SS2.p2.1),[§4\.1](https://arxiv.org/html/2609.19670#S4.SS1.SSS0.Px1.p1.1)\.
- \[52\]H\. Wu, Y\. Li, Y\. Gao, F\. Xu, F\. Zhang, K\. Wang, P\. Zhao, Q\. Wang, Y\. Zhao, W\. Wang,et al\.\(2026\)RoboAlign\-r1: distilled multimodal reward alignment for robot video world models\.arXiv preprint arXiv:2605\.03821\.Cited by:[§1](https://arxiv.org/html/2609.19670#S1.p1.1)\.
- \[53\]C\. Xiao, J\. Dou, Z\. Lin, Z\. Ke, and L\. Hou\(2026\)From points to coalitions: hierarchical contrastive shapley values for prioritizing data samples\.InProceedings of the AAAI Conference on Artificial Intelligence,Vol\.40,pp\.15995–16003\.Cited by:[§1](https://arxiv.org/html/2609.19670#S1.p1.1)\.
- \[54\]C\. Xiao and L\. Hou\(2026\)Prototype\-aligned federated soft\-prompts for continual web personalization\.InProceedings of the ACM Web Conference 2026,Cited by:[§1](https://arxiv.org/html/2609.19670#S1.p1.1)\.
- \[55\]C\. Xiao, T\. Xu, S\. Ma, Y\. Jiang, H\. Gao, and Y\. Wu\(2026\)Reversible primitive–composition alignment for continual vision–language learning\.InICLR,Cited by:[§1](https://arxiv.org/html/2609.19670#S1.p1.1)\.
- \[56\]Y\. Xie, Y\. Xiang, H\. You, N\. Liu, F\. Liu, B\. Zhao, Z\. Kang, Y\. Li, and Y\. Li\(2026\)Symmetry\-aware causal inference for robust neural pde solvers\.InProceedings of the 2026 International Conference on Multimedia Retrieval,Cited by:[§1](https://arxiv.org/html/2609.19670#S1.p1.1)\.
- \[57\]Q\. Xiong, K\. Tang, M\. Ma, J\. Zhang, J\. Xu, and T\. Li\(2025\)Modeling temporal dependencies within the target for long\-term time series forecasting\.IEEE Transactions on Knowledge and Data Engineering\.Cited by:[§2\.2](https://arxiv.org/html/2609.19670#S2.SS2.p2.1)\.
- \[58\]Y\. Xu, Z\. Hong, Z\. Yang, X\. Li, and Y\. Ma\(2026\)Chain\-aware encoding for microservice trace anomaly detection\.External Links:2607\.10156Cited by:[§2\.1](https://arxiv.org/html/2609.19670#S2.SS1.p1.1)\.
- \[59\]N\. Yang, Y\. Li, D\. A\. Cuji, R\. M\. Corey, P\. Zhao, X\. Lin, and A\. C\. Singer\(2026\)A survey of advancing audio super\-resolution and bandwidth extension from discriminative to generative models\.arXiv preprint arXiv:2605\.16681\.Cited by:[§1](https://arxiv.org/html/2609.19670#S1.p1.1)\.
- \[60\]K\. Yi, Q\. Zhang, W\. Fan, S\. Wang, P\. Wang, H\. He, N\. An, D\. Lian, L\. Cao, and Z\. Niu\(2023\)Frequency\-domain mlps are more effective learners in time series forecasting\.InProc\. Adv\. Neural Inf\. Process\. Syst\.,Cited by:[§2\.2](https://arxiv.org/html/2609.19670#S2.SS2.p2.1),[§4\.1](https://arxiv.org/html/2609.19670#S4.SS1.SSS0.Px2.p1.1)\.
- \[61\]A\. Zeng, M\. Chen, L\. Zhang, and Q\. Xu\(2023\)Are transformers effective for time series forecasting?\.InProc\. AAAI Conf\. Artif\. Intell\.,Cited by:[§2\.1](https://arxiv.org/html/2609.19670#S2.SS1.p1.1),[§4\.1](https://arxiv.org/html/2609.19670#S4.SS1.SSS0.Px2.p1.1),[§4\.5](https://arxiv.org/html/2609.19670#S4.SS5.SSS0.Px1.p1.1)\.
- \[62\]Y\. Zhang and J\. Yan\(2023\)Crossformer: transformer utilizing cross\-dimension dependency for multivariate time series forecasting\.InICLR,Cited by:[§2\.1](https://arxiv.org/html/2609.19670#S2.SS1.p1.1)\.
- \[63\]B\. Zhao, H\. Yu, L\. Liu, Z\. Chu, Y\. Liu, C\. Liu, S\. Chen, and Z\. Xie\(2026\)MIS\-hcc: hierarchical channel clustering for efficient medical image segmentation\.arXiv preprint arXiv:2607\.17329\.Cited by:[§1](https://arxiv.org/html/2609.19670#S1.p1.1)\.
- \[64\]T\. Zhou, Z\. Ma, Q\. Wen, X\. Wang, L\. Sun, and R\. Jin\(2022\)FEDformer: frequency enhanced decomposed transformer for long\-term series forecasting\.InInternational Conference on Machine Learning,pp\.27268–27286\.Cited by:[§2\.2](https://arxiv.org/html/2609.19670#S2.SS2.p2.1),[§4\.1](https://arxiv.org/html/2609.19670#S4.SS1.SSS0.Px2.p1.1)\.Similar Articles
Multivariate Time Series Forecasting needs Cross Variable Loss
This paper identifies an objective gap in Direct Forecasting for multivariate time series and proposes CvLoss, a plug-in structural regularizer that constrains forecast residuals on a cross-variable graph to improve consistency across synchronous and asynchronous interactions. Experiments show consistent improvements over competitive forecasting models.
Improving Coherence in Hierarchical Time Series Forecasting using Structured Temporal Fusion
Proposes Hierarchical Temporal Fusion (HTF), an extension of the Temporal Fusion Transformer that integrates a coherence-aware loss function to ensure forecasts are consistent across hierarchical levels, achieving improved accuracy and coherence on benchmark datasets.
CARNet Cycle-Conditioned Core Aggregation and Redistribution for Multivariate Time Series Forecasting
CARNet integrates global recurrent cycle information into efficient core-based interaction modeling for multivariate time series forecasting, achieving linear complexity and outperforming strong transformer baselines on real-world benchmarks.
SCoR: A Hierarchical Framework for Forecasting Relations Between Scientific Concepts
This paper introduces SCoR, a hierarchical framework for forecasting relations between scientific concepts, with a benchmark and model that improve research-direction discovery by predicting typed relations.
ReCoLoRA: Spectrum-Aware Recursive Consolidation for Continual LLM Fine-Tuning
ReCoLoRA is a spectrum-aware framework for continual fine-tuning of large language models that uses recursive consolidation of low-rank adapters to prevent catastrophic forgetting, achieving improved performance on continual GLUE tasks across multiple backbones.