REVIEW 4 major objections 8 minor 2 cited by
EDformer: Embedded Decomposition Transformer for Interpretable Multivariate Time Series Predictions
T0 review · 4 major / 8 minor · reviewed 2026-08-11 · deepseek-v4-flash
Pith's one-line read EDformer claims that decomposing a multivariate series into trend and seasonal parts, embedding each variable's whole series as a token, and applying self-attention across variables yields state-of-the-art forecasts with lower compute.
desk verdict The architecture is a clean iTransformer-plus-decomposition combo, but the paper's own Table V contradicts its state-of-the-art claim, so it doesn't hold up. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The central mechanism is the variate token formed by the reverse operation: instead of one token per time step, each variable's whole seasonal and trend series is embedded as one token, so the token dimension is the number of variables. Eq. (5) defines the update: $h^0_n = \mathrm{Embedding}(\mathrm{Reverse}(X^S_{:,n})) + \mathrm{Embedding}(\mathrm{Reverse}(X^T_{:,n}))$, then $H^{(l+1)} = \mathrm{IntBlock}(H^l)$ and the forecast is $\hat{Y}_{:,n} = \mathrm{Projection}(h^L_n)$. The multivariate self-attention block computes attention scores $\frac{QK^T}{\sqrt{d_k}}$ across variate tokens, while the shared feed-forward network $\mathrm{FFN}(H') = \mathrm{ReLU}(H'W_1 + b_1)W_2 + b_2$ processes each variate's representation separately. This division of labor is what lets EDformer drop temporal attention and positional encoding.
What would settle it
Re-run the ETTh1 horizon-96 comparison with the strongest baseline at its officially released hyperparameters: if EDformer's reported MSE of 0.404 does not beat the baseline's published MSE under identical splits, the state-of-the-art claim collapses; likewise, the no-decomposition ablation's average MSE of 1.010 on ETTh1 should not be worse than a simple linear forecaster.
Extended reading notes
Core claim
The paper's central claim is that an encoder-only Transformer with the same basic components can reach state-of-the-art multivariate forecasting if the components are used differently: decompose each input into trend and seasonal parts, embed each variable's entire seasonal series as a single token, run self-attention across variables, pass each variable's representation through a shared feed-forward network, then add the projected trend back. The decomposition is $X_T = \mathrm{AvgPooling}(\mathrm{Padding}(X))$, $X_S = X - X_T$; the token update is $h^0_n = \mathrm{Embedding}(\mathrm{Reverse}(X^S_{:,n})) + \mathrm{Embedding}(\mathrm{Reverse}(X^T_{:,n}))$, followed by stacked blocks of multivariate self-attention and feed-forward layers before projection. Attention therefore captures cross-variate correlations while the feed-forward network stores temporal structure, and no positional encoding is needed because the per-variate MLP preserves sequence order.
Load-bearing premise
The load-bearing premise is that the comparison baselines were faithfully reimplemented and equally tuned; if they were undertuned, the reported accuracy gains are artifacts rather than real improvements.
Editorial extensions
If this is right
- On most long-term benchmarks and horizons, EDformer reports lower average MSE and MAE than the compared transformer baselines, with the largest gains on high-dimensional datasets such as Electricity and Traffic.
- EDformer's per-iteration and total execution times are substantially lower than the compared models, so it can be retrained more often and used in settings with limited compute.
- Ablations show that both decomposition and reverse embedding contribute to accuracy, and their combination is better than either alone.
- On Electricity, EDformer scores highest on comprehensiveness and sufficiency across five explainability methods, indicating that its predictions track the features that attribution methods flag as important.
- The efficiency result implies that the model can be updated more frequently on streaming data, making it feasible for near-real-time forecasting workflows.
Reading between the lines
- If the reported speed holds, the decomposition-plus-variate-token recipe could be grafted onto other encoder-only forecasters to cut the cost of temporal attention, not just as a standalone model.
- The ablation suggests decomposition alone already helps; a natural test is whether the order of decomposition and reverse embedding matters, or whether a simpler per-variate MLP with trend addition matches EDformer.
- The high sufficiency scores on Electricity imply EDformer concentrates predictive signal in a few features; a testable extension is to prune low-attribution channels and measure accuracy retention.
- Because the paper provides no code or baseline configurations, an immediate extension is to check how EDformer behaves when compared against baselines at their officially tuned settings.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes EDformer, an encoder-only transformer for multivariate time series forecasting. It decomposes the input into seasonal and trend components, embeds each variate's entire series as a token using a reverse/inverted embedding, applies self-attention across variates and a feed-forward network per variate, and adds the trend component back at the end. The authors report long-term results on eight benchmarks, short-term results on PEMS and M4, efficiency measurements, ablations, and an explainability analysis. They claim that EDformer achieves state-of-the-art accuracy and efficiency and that its decomposition and reverse embedding are key to its performance.
Significance. The architectural idea of combining series decomposition with an inverted transformer is a reasonable incremental direction, and the paper provides a substantial set of experiments: standard benchmarks, ablations, runtime tables, and an explainability evaluation on Electricity. The paper also names its implementation environment and uses public datasets. However, the central accuracy claim is contradicted by the paper's own Table V, where ATFNet achieves lower average MSE on five of eight datasets. The comparison also omits iTransformer, the direct predecessor of the variate-token design, making the incremental value difficult to assess. As presented, the evidence does not support the headline state-of-the-art claim; this is a load-bearing issue rather than a presentational one.
major comments (4)
- [Abstract; Section V.B; Table V] The state-of-the-art accuracy claim is contradicted by the paper's own averaged results in Table V. Averaging over horizons 96, 192, 336, and 720, ATFNet reports lower average MSE than EDformer on ETTh1 (0.515 vs 0.594), ETTh2 (0.252 vs 0.538), ETTm2 (0.169 vs 0.543), Weather (0.229 vs 0.304), and Exchange (0.436 vs 0.537), and lower average MAE on six of the eight datasets. The # of Total Wins row records only a 3-3 tie in MSE. Thus the claim that EDformer obtains state-of-the-art accuracy is not supported by the data presented.
- [Section IV.B; Section V.B; Tables V and VIII] The main multivariate long-term comparison omits iTransformer, even though Section IV.B identifies iTransformer as the inspiration for the variate-frame design and iTransformer appears only in the M4 supplementary table (Table VIII). Since EDformer's mechanism is essentially an inverted transformer plus a decomposition block, the absence of iTransformer from the long-term benchmark tables prevents the reader from assessing the incremental contribution of the proposed modifications. Without this baseline, the state-of-the-art claim is not actionable.
- [Section VI; Table XI] The ablation results suggest that the baseline implementations may be undertuned. The 'without decomposition' configuration reaches an average MSE of 1.010 on ETTh1 and 0.905 on ETTm1, which is substantially worse than published results for the same underlying inverted-transformer design (e.g., iTransformer reports an average MSE of about 0.5 on ETTh1). Because the paper states that baselines were reimplemented via TSLib (Section V.B), the discrepancy needs to be resolved by releasing exact configurations and hyperparameters; otherwise the reported gains from decomposition and reverse embedding may be artifacts of a weak base rather than genuine improvements.
- [Section V.B; Tables IX and X] The efficiency claim is not established against the relevant state of the art. Tables IX and X compare EDformer with Autoformer, Informer, Reformer, Pyraformer, FEDformer, and NS-Trans, but omit comparably lightweight and high-performing models such as iTransformer and PatchTST. Showing that EDformer is faster than deliberately heavy architectures does not support the stated claim of state-of-the-art efficiency; the runtime comparison needs to include the models that are actually competitive in accuracy.
minor comments (8)
- [Table VI] Table VI is labeled 'Comparison of Standard deviations ... with prediction horizons (96,192,336,720)'; the numbers appear to be standard deviations across the four horizons, but the text does not specify this, nor does it clarify whether the standard deviation is computed over seeds or horizons. Please state the statistic explicitly.
- [Section V.B; Table VII] The text says EDformer has 'competitive performance' in short-term forecasting on PEMS, but Table VII shows that NS-Trans is clearly better on all four PEMS datasets (e.g., PEMS03 MSE 0.106 vs 0.187). Rephrase to reflect the actual results.
- [Section III] Equation (1) uses inconsistent notation: X_t is defined in R^{T x N}, but the history is called X_{t-l} and the future X_{t+h}, and the look-back window L and horizon H are not tied to these expressions. Please unify the notation.
- [Section IV.A] Equation (4) writes the input as X in R^{L x D}, while Section III defines the input as R^{T x N}; the dimensions and symbols should be consistent across the problem statement and the architecture description.
- [Section IV.C.1] The sentence following Equation (7) is incomplete: 'where n represents an input sequence of length...'. Also, the complexity O(n^2 d) should identify n as the number of variates in the inverted design, not the temporal sequence length.
- [Section VII.A; Tables XII-XV] The interpretability tables report MAE and MSE values but describe higher values as better for comprehensiveness and sufficiency. Since MAE and MSE are error metrics where lower is better, the direction of the 'wins' needs to be justified and explained; otherwise the reader cannot interpret which model benefits most from an explainability method.
- [Reference [12]] Reference [12] is listed as 'Autoformer: Searching transformers for visual recognition' and is used in the text as the Autoformer time-series forecasting paper. The actual time-series Autoformer paper should be cited instead.
- [Section IV.B] The 'reverse' operation in the embedding is never formally defined. The text says 'reverse embedding' but does not specify the mathematical transformation, making the method difficult to reproduce.
Circularity Check
No circularity: EDformer's decomposition and forecasting pipeline is a standard supervised learning construction; the SOTA accuracy overclaim is an empirical/correctness issue, not a derivation-from-inputs issue.
full rationale
The paper's derivation chain is a standard supervised forecasting pipeline: the input series is decomposed in Eq. (4) by defining the trend as an average-pooled version of the input and the seasonal component as the residual; each variate is then embedded as a token, processed by self-attention and feed-forward blocks, projected, and finally recombined with the trend. No fitted constant or fitted parameter is later relabeled as a prediction, and no equation reduces to another by construction. The forecasting evaluation uses public datasets with held-out test splits, so the reported MSE/MAE values are empirical outcomes rather than consequences of the model definition. The ablation study in Table XI compares configurations and is not circular. The paper's 'state-of-the-art' claim is contradicted by its own Table V, where ATFNet achieves lower average MSE on several datasets, but that is a correctness or internal-consistency problem, not a circularity problem. The citation of iTransformer is only for architectural inspiration and is not load-bearing in the sense of a self-citation chain or an imported uniqueness theorem. The explainability analysis is an evaluation of attribution methods, not a source of predictions. Therefore, no significant circularity is present.
Assumptions & free parameters
free parameters (5)
- AvgPooling kernel size (moving average window) =
not reported
- Embedding dimension D =
not reported
- Number of encoder layers (IntBlocks) =
not reported
- Number of attention heads =
not reported
- K (number of scales) =
4
assumptions (4)
- domain assumption The standard benchmarks (ETT, Weather, Electricity, Traffic, Exchange, PEMS, M4) and their train/test splits are representative of the multivariate time series forecasting problem.
- domain assumption The reimplemented baseline models are faithful to their original publications and fairly tuned.
- domain assumption The moving-average decomposition (Eq. 4) separates the signal into trend and seasonal parts that are each individually learnable and additively sufficient for forecasting.
- domain assumption Treating each variate's entire lookback series as a single token preserves the temporal information needed for forecasting.
Cite this review
Pith. "Pith review of EDformer: Embedded Decomposition Transformer for Interpretable Multivariate Time Series Predictions." pith.science (2026). https://pith.science/paper/FTNHA6ZH
@misc{pith2026241212227,
author = {Pith},
title = {Pith review of: EDformer: Embedded Decomposition Transformer for Interpretable Multivariate Time Series Predictions},
year = {2026},
howpublished = {\url{https://pith.science/paper/FTNHA6ZH}},
note = {Machine review of arXiv:2412.12227}
}
read the original abstract
Time series forecasting is a crucial challenge with significant applications in areas such as weather prediction, stock market analysis, and scientific simulations. This paper introduces an embedded decomposed transformer, 'EDformer', for multivariate time series forecasting tasks. Without altering the fundamental elements, we reuse the Transformer architecture and consider the capable functions of its constituent parts in this work. Edformer first decomposes the input multivariate signal into seasonal and trend components. Next, the prominent multivariate seasonal component is reconstructed across the reverse dimensions, followed by applying the attention mechanism and feed-forward network in the encoder stage. In particular, the feed-forward network is used for each variable frame to learn nonlinear representations, while the attention mechanism uses the time points of individual seasonal series embedded within variate frames to capture multivariate correlations. Therefore, the trend signal is added with projection and performs the final forecasting. The EDformer model obtains state-of-the-art predicting results in terms of accuracy and efficiency on complex real-world time series datasets. This paper also addresses model explainability techniques to provide insights into how the model makes its predictions and why specific features or time steps are important, enhancing the interpretability and trustworthiness of the forecasting results.
Figures
Figures from the paper (4 more)
Forward citations
Cited by 2 Pith papers
-
CaReTS: A Multi-Task Framework Unifying Classification and Regression for Time Series Forecasting
CaReTS forecasts multi-step time series by combining a trend classifier with a deviation regressor in a residual, uncertainty-weighted multi-task framework.
-
A Quantum-Classical Hybrid Framework for Multivariate Time-Series Forecasting Complexity-Fidelity Trade-offs and Limitations
A trainable 6-qubit-per-channel variational circuit plus linear readout roughly matches transformer forecasters at short horizons on ETT/Weather/Electricity benchmarks, but the reported setup does not match the paper'...
Reference graph
Works this paper leans on
-
[1]
Deep learning models for time series forecasting: a review
Wenxiang Li and KL Eddie Law. Deep learning models for time series forecasting: a review. IEEE Access, 2024
work page 2024
-
[2]
Time-series clustering for data analysis in smart grid
Akanksha Maurya, Alper Sinan Akyurek, Baris Aksanli, and Tajana Simunic Rosing. Time-series clustering for data analysis in smart grid. In 2016 IEEE International Conference on Smart Grid Communications (SmartGrid- Comm), pages 606–611. IEEE, 2016
work page 2016
-
[3]
Junting Zhang, Haifei Liu, Wei Bai, and Xiaojing Li. A hybrid approach of wavelet transform, arima and lstm model for the share price index futures forecasting. The North American Journal of Economics and Finance , 69:102022, 2024
work page 2024
-
[4]
Transformers in time series: A survey
Qingsong Wen, Tian Zhou, Chaoli Zhang, Weiqi Chen, Ziqing Ma, Junchi Yan, and Liang Sun. Transformers in time series: A survey. arXiv preprint arXiv:2202.07125 , 2022
arXiv 2022
-
[5]
Fj Vincent Atabay, Ryu Mendoza Pagkalinawan, Steven Dale Pajarillo, Alonica R Villanueva, and Jonathan V Taylar. Multivariate time series forecast- ing using arimax, sarimax, and rnn-based deep learning models on electricity consumption. In 2022 3rd Interna- 13 tional Informatics and Software Engineering Conference (IISEC), pages 1–6. IEEE, 2022
work page 2022
-
[6]
Transformers in time-series analysis: A tutorial
Sabeen Ahmed, Ian E Nielsen, Aakash Tripathi, Shamoon Siddiqui, Ravi P Ramachandran, and Ghulam Rasool. Transformers in time-series analysis: A tutorial. Circuits, Systems, and Signal Processing , 42(12):7433– 7466, 2023
work page 2023
-
[7]
A transformer-based framework for multivariate time series representation learning
George Zerveas, Srideepika Jayaraman, Dhaval Patel, Anuradha Bhamidipaty, and Carsten Eickhoff. A transformer-based framework for multivariate time series representation learning. In Proceedings of the 27th ACM SIGKDD conference on knowledge discovery & data mining, pages 2114–2124, 2021
2021
-
[8]
Multivariate time series forecasting by graph attention networks with theoretical guarantees
Zhi Zhang, Weijian Li, and Han Liu. Multivariate time series forecasting by graph attention networks with theoretical guarantees. In International Conference on Artificial Intelligence and Statistics , pages 2845–2853. PMLR, 2024
work page 2024
Show all 37 references
-
[9]
A time series is worth 64 words: Long-term forecasting with transformers
Yuqi Nie, Nam H Nguyen, Phanwadee Sinthong, and Jayant Kalagnanam. A time series is worth 64 words: Long-term forecasting with transformers. arXiv preprint arXiv:2211.14730, 2022
2022 arXiv
-
[10]
Are transformers effective for time series forecasting? In Proceedings of the AAAI conference on artificial intelligence, volume 37, pages 11121–11128, 2023
Ailing Zeng, Muxi Chen, Lei Zhang, and Qiang Xu. Are transformers effective for time series forecasting? In Proceedings of the AAAI conference on artificial intelligence, volume 37, pages 11121–11128, 2023
2023
-
[11]
Informer: Beyond efficient transformer for long sequence time- series forecasting
Haoyi Zhou, Shanghang Zhang, Jieqi Peng, Shuai Zhang, Jianxin Li, Hui Xiong, and Wancai Zhang. Informer: Beyond efficient transformer for long sequence time- series forecasting. In Proceedings of the AAAI conference on artificial intelligence, volume 35, pages 11106–11115, 2021
2021
-
[12]
Autoformer: Searching transformers for visual recognition
Minghao Chen, Houwen Peng, Jianlong Fu, and Haibin Ling. Autoformer: Searching transformers for visual recognition. In Proceedings of the IEEE/CVF inter- national conference on computer vision , pages 12270– 12280, 2021
2021
-
[13]
Pyraformer: Low-complexity pyramidal attention for long-range time series modeling and forecasting
Shizhan Liu, Hang Yu, Cong Liao, Jianguo Li, Weiyao Lin, Alex X Liu, and Schahram Dustdar. Pyraformer: Low-complexity pyramidal attention for long-range time series modeling and forecasting. In # PLACE- HOLDER PARENT METADATA VALUE#, 2022
2022
-
[14]
itransformer: Inverted transformers are effective for time series fore- casting
Yong Liu, Tengge Hu, Haoran Zhang, Haixu Wu, Shiyu Wang, Lintao Ma, and Mingsheng Long. itransformer: Inverted transformers are effective for time series fore- casting. arXiv preprint arXiv:2310.06625 , 2023
2023 arXiv
-
[15]
Reformer: The efficient transformer
Nikita Kitaev, Łukasz Kaiser, and Anselm Levskaya. Reformer: The efficient transformer. arXiv preprint arXiv:2001.04451, 2020
2001 arXiv
-
[16]
Fedformer: Frequency enhanced decomposed transformer for long-term series forecasting
Tian Zhou, Ziqing Ma, Qingsong Wen, Xue Wang, Liang Sun, and Rong Jin. Fedformer: Frequency enhanced decomposed transformer for long-term series forecasting. In International conference on machine learning , pages 27268–27286. PMLR, 2022
2022
-
[17]
Crossformer: Trans- former utilizing cross-dimension dependency for multi- variate time series forecasting
Yunhao Zhang and Junchi Yan. Crossformer: Trans- former utilizing cross-dimension dependency for multi- variate time series forecasting. In The eleventh interna- tional conference on learning representations , 2023
2023
-
[18]
Multi-resolution time-series transformer for long-term forecasting
Yitian Zhang, Liheng Ma, Soumyasundar Pal, Yingxue Zhang, and Mark Coates. Multi-resolution time-series transformer for long-term forecasting. In International Conference on Artificial Intelligence and Statistics, pages 4222–4230. PMLR, 2024
2024
-
[19]
Etsformer: Exponential smoothing transformers for time-series forecasting
Gerald Woo, Chenghao Liu, Doyen Sahoo, Akshat Ku- mar, and Steven Hoi. Etsformer: Exponential smoothing transformers for time-series forecasting. arXiv preprint arXiv:2202.01381, 2022
2022 arXiv
-
[20]
Stl: A seasonal-trend decomposition
Robert B Cleveland, William S Cleveland, Jean E McRae, Irma Terpenning, et al. Stl: A seasonal-trend decomposition. J. off. Stat , 6(1):3–73, 1990
1990
-
[21]
A spatio-temporal decomposition based deep neural network for time series forecasting
Reza Asadi and Amelia C Regan. A spatio-temporal decomposition based deep neural network for time series forecasting. Applied Soft Computing , 87:105963, 2020
2020
-
[22]
Forecasting at scale
JT Sean and J Taylor. Forecasting at scale. Am. Stat , 72(1):37–45, 2018
2018
-
[23]
N-beats: Neural basis expansion analysis for interpretable time series forecasting
Boris N Oreshkin, Dmitri Carpov, Nicolas Chapados, and Yoshua Bengio. N-beats: Neural basis expansion analysis for interpretable time series forecasting. arXiv preprint arXiv:1905.10437, 2019
1905 arXiv
-
[24]
Think globally, act locally: A deep neural network approach to high-dimensional time series forecasting
Rajat Sen, Hsiang-Fu Yu, and Inderjit S Dhillon. Think globally, act locally: A deep neural network approach to high-dimensional time series forecasting. Advances in neural information processing systems , 32, 2019
2019
-
[25]
Layer normalization
Jimmy Lei Ba. Layer normalization. arXiv preprint arXiv:1607.06450, 2016
2016 arXiv
-
[26]
Long-term forecasting with tide: Time-series dense encoder
Abhimanyu Das, Weihao Kong, Andrew Leach, Shaan Mathur, Rajat Sen, and Rose Yu. Long-term forecasting with tide: Time-series dense encoder. arXiv preprint arXiv:2304.08424, 2023
2023 arXiv
-
[27]
Pems dataset, 2024
El Mahy. Pems dataset, 2024. Last accessed: 15 Nov 2024
2024
-
[28]
Sa-timeseries: Self-attention time series models, 2024
UV A-MLSys. Sa-timeseries: Self-attention time series models, 2024. Last accessed: 15 Nov 2024
2024
-
[29]
Non-stationary transformers: Exploring the sta- tionarity in time series forecasting
Yong Liu, Haixu Wu, Jianmin Wang, and Mingsheng Long. Non-stationary transformers: Exploring the sta- tionarity in time series forecasting. Advances in Neural Information Processing Systems , 35:9881–9893, 2022
2022
-
[30]
Atfnet: Adaptive time-frequency ensembled network for long-term time series forecasting
Hengyu Ye, Jiadong Chen, Shijin Gong, Fuxin Jiang, Tieying Zhang, Jianjun Chen, and Xiaofeng Gao. Atfnet: Adaptive time-frequency ensembled network for long-term time series forecasting. arXiv preprint arXiv:2404.05192, 2024
2024 arXiv
-
[31]
Micn: Multi-scale local and global context modeling for long-term series forecasting
Huiqiang Wang, Jian Peng, Feihu Huang, Jince Wang, Junhui Chen, and Yifei Xiao. Micn: Multi-scale local and global context modeling for long-term series forecasting. In The eleventh international conference on learning representations, 2023
2023
-
[32]
A multivariate time series analysis of electrical load forecasting based on a hybrid feature selection approach and explainable deep learning
Fatma Yaprakdal and Merve Varol Arısoy. A multivariate time series analysis of electrical load forecasting based on a hybrid feature selection approach and explainable deep learning. Applied Sciences, 13(23):12946, 2023
2023
-
[33]
Benchmarking deep learn- ing interpretability in time series predictions
Aya Abdelsalam Ismail, Mohamed Gunady, Hector Cor- rada Bravo, and Soheil Feizi. Benchmarking deep learn- ing interpretability in time series predictions. Advances in neural information processing systems, 33:6441–6452, 2020. 14
2020
-
[34]
Gradient based feature attribution in explainable ai: A technical review
Yongjie Wang, Tong Zhang, Xu Guo, and Zhiqi Shen. Gradient based feature attribution in explainable ai: A technical review. arXiv preprint arXiv:2403.10415, 2024
2024 arXiv
-
[35]
Explaining anomalies in industrial multivariate time-series data with the help of explainable ai
Sarthak Manas Tripathy, Ashish Chouhan, Marcel Dix, Arzam Kotriwala, Benjamin Kl ¨opper, and Ajinkya Prab- hune. Explaining anomalies in industrial multivariate time-series data with the help of explainable ai. In 2022 IEEE International Conference on Big Data and Smart Comput...
2022
-
[36]
Towards a rigorous evalu- ation of explainability for multivariate time series
Rohit Saluja, Avleen Malhi, Samanta Knapi ˇc, Kary Fr¨amling, and Cicek Cavdar. Towards a rigorous evalu- ation of explainability for multivariate time series. arXiv preprint arXiv:2104.04075, 2021
2021 arXiv
-
[37]
Temporal dependencies in feature importance for time series predictions
Kin Kwan Leung, Clayton Rooke, Jonathan Smith, Saba Zuberi, and Maksims V olkovs. Temporal dependencies in feature importance for time series predictions. arXiv preprint arXiv:2107.14317, 2021
2021 arXiv
Reviewed August 11, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.