REVIEW 4 major objections 8 minor 51 references
AdaPTS: Adapting Univariate Foundation Models to Probabilistic Multivariate Time Series Forecasting
T0 review · 4 major / 8 minor · reviewed 2026-08-07 · deepseek-v4-flash
Pith's one-line read This paper argues that frozen univariate time-series foundation models can be extended to probabilistic multivariate forecasting by wrapping them in trainable feature-space adapters, and shows the recipe works on the Moment model…
desk verdict Useful adapter framework for multivariate forecasting with a frozen univariate FM, but the headline 5/8 result rests on best-of-many selection without a fixed rule, and the theory doesn't cover the actual nonlinear FM. 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 carrying object is the adapter, formally defined as an invertible feature-space transformation $\varphi: \mathbb{R}^D \to \mathbb{R}^{D'}$ applied before the foundation model and inverted after it, so that predictions are obtained as $\mathrm{dec}(f_{FM}(\mathrm{enc}(X)))$. The probabilistic extension makes the encoder stochastic: a VAE adapter maximizes the ELBO $\mathbb{E}_{q_\varphi(Z|X)}[\log p_\theta(Y|X, f_{FM}(Z))] - \mathrm{KL}(q_\varphi(Z|X) \| p(Z))$, and a dropout linear autoencoder treats dropout as approximate variational inference over adapter weights. The foundation model's parameters are frozen throughout; only the encoder and decoder are trained.
What would settle it
Run the synthetic linear experiment of Section 3.3 with a known linear foundation model and channel-dependent biases so that $B$ has full rank, compute $W^*_\varphi$ from Eq. (4), and verify it attains the global minimum of the loss and beats the identity adapter; if the pseudo-inverse stabilization changes the optimum, the claimed global optimality is not established. For the nonlinear setting, train AdaPTS with the encoder removed and only a linear decoder; if accuracy gains persist, the paper's feature-transformation explanation is not the operative mechanism.
Extended reading notes
Core claim
Under linearity assumptions—linear adapter and linear foundation model—the paper derives the closed-form optimal adapter $W^*_\varphi = (B^\top A)^+ B^\top B$, where $A = Y - W_{FM}^\top X$ and $B = b_{FM} 1^\top$, and proves that it beats the identity adapter on the forecasting objective. For the actual nonlinear case, AdaPTS instantiates adapters as linear and deep autoencoders and as probabilistic variants (VAE and dropout linear autoencoder) trained with an ELBO-style objective, and the experiments show MSE improvements on ETTh1 with $H=96$, Illness with $H=24$ and $H=60$, and Weather with $H=96$, matched performance on ETTh1 with $H=192$ and ExchangeRate with $H=96$, and degradation on ExchangeRate with $H=192$. The paper also claims that the learned latent representations overlap much better between training and test windows than the raw features, which it links to robustness against distribution shift, and that the probabilistic adapters are reasonably calibrated at short horizons.
Load-bearing premise
The load-bearing premise is that a linear model of the foundation model faithfully represents the setting where adapters help, but the actual foundation model in every experiment, Moment, is a deep nonlinear transformer, so the closed-form optimality proof does not directly cover the regime it motivates.
Editorial extensions
If this is right
- Any frozen univariate time-series foundation model can be lifted to multivariate forecasting by learning an adapter at its input and output, without retraining the backbone.
- Reducing the latent dimension below the number of observed channels can preserve or improve accuracy while lowering inference cost; on Illness the VAE adapter reaches its best MSE with only two latent components.
- Deterministic foundation models can return predictive distributions by using a stochastic adapter, with calibration that the paper shows is reasonable at short horizons.
- The decoder is the main source of accuracy gain in the deterministic linear adapter, so learning to invert the forecast back into the original feature space matters more than the encoder's compression.
- The benefit is not universal: on ExchangeRate with $H=192$ every adapter variant degrades relative to the no-adapter baseline, so gains depend on dataset and horizon.
Reading between the lines
- The paper's theory covers linear foundation models only; the proof of adapter optimality does not transfer unchanged to nonlinear Moment, so the explanation for the empirical gains in the real experiments remains an open question.
- If the decoder is the main source of gain, then adapters might be replaceable by a lightweight learned mapping on the FM's output alone, which would be cheaper still; the paper does not test this.
- Because calibration degrades as the horizon grows, a deployment of AdaPTS would likely need horizon-dependent likelihoods or post-hoc recalibration to avoid overconfident long-range forecasts.
- The latent-space overlap result suggests a testable extension: adapters should help most on multivariate tasks with strong train/test distribution shift, and could be evaluated on cross-domain forecasting benchmarks.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper introduces AdaPTS, a framework of feature-space adapters that map multivariate time series into a latent space, apply a frozen univariate foundation model (Moment) per channel, and map predictions back to the original space. Several adapter families are proposed (linear autoencoder, dropout linear autoencoder, linear VAE, VAE, plus PCA as a baseline), together with a theoretical analysis for the linear-adapter/linear-FM case and experiments on four multivariate benchmarks (ETTh1, Illness, Weather, ExchangeRate). The main empirical claim is that AdaPTS improves Moment's MSE in 5 of 8 tasks, matches it in 2, and degrades in 1, while providing probabilistic outputs and reduced-dimensional representations.
Significance. If the claims are correct, AdaPTS would be a simple, modular way to extend univariate time-series foundation models to multivariate probabilistic forecasting without fine-tuning the FM, with potential computational savings from dimensionality reduction. The paper is clearly written, the problem is well motivated, and the idea of using invertible or encoder-decoder feature transformations is interesting. The strengths are the breadth of adapter variants and the effort to provide both theory and experiments. However, the theoretical result in Proposition 3.4 contains a serious mathematical flaw (the claimed closed-form solution is singular), and the empirical '5/8' headline rests on an oracle-selection protocol rather than a single reproducible decision procedure. As presented, the evidence does not yet support the central claims; the concept may be salvageable with substantive corrections.
major comments (4)
- [§3.2 / Proposition 3.4 and Appendix A.1] The closed-form solution W* = (B^T A)^+ B^T B is singular for D > 1 whenever B = b_FM 1^T, because B^T B has rank one and therefore rank(W*) <= 1. This violates Assumption 3.2, which requires W_phi to be in GL(D), and contradicts the invertibility requirement in Definition 3.1. The proposition therefore does not solve the constrained optimization problem over invertible adapters. The lambda-regularized form in Remark 3.5 solves a different objective, so it does not repair the theoretical claim.
- [Appendix A.1] The proof's assertion that L(W_phi) is convex in W_phi is incorrect: the map W -> W^{-1} is not affine, and the squared Frobenius norm of A - B W^{-1} is not convex in W over GL(D). For example, in the scalar case f(w) = (a - b/w)^2 the second derivative is (6b^2 - 4abw)/w^4, which can be negative. Consequently, the stationary-point condition derived in the proof does not establish global optimality, and the 'global solution' wording of Proposition 3.4 is unsupported.
- [§5.1 / Table 1] The summary 'AdaPTS improves the forecasting accuracy of Moment in 5 out of the 8 considered tasks' is an oracle-selection count: for each task the best-performing adapter among PCA, LinearAE, dropoutLinearAE, LinearVAE, and VAE is chosen post hoc, with no pre-specified rule for selecting the adapter family from the validation set alone. Because each family has its own tuned hyperparameters, the probability that at least one variant beats the baseline on a task by chance is high, so the 5/8 count does not describe the behavior of a single reproducible AdaPTS procedure. Please report the test performance of a validation-selected adapter (with the selection rule stated), or fix the adapter family across all tasks, and also correct the '8% improvement' claim for ETTh1 H=96, since Table 1 shows a change from 0.411 to 0.395, about 4%.
- [Assumption 3.3] The theory assumes a linear foundation model f_FM(X) = W_FM^T X + b_FM 1^T, but all experiments use Moment, a deep nonlinear transformer. The paper labels the assumption 'for ease of derivation' but does not provide a nonlinear analogue or an argument that the linear result transfers to the actual experimental setting. Appendix D.1 replaces the closed form with gradient-based optimization for Moment, but this is an empirical observation, not a theoretical guarantee. If the theory is meant only as intuition, that should be stated clearly; if it is claimed as a foundation, a nonlinear analysis or an explicit scope limitation is needed.
minor comments (8)
- [§3.1 / Eq. (1)] The notation f_FM(X) is used both for the channel-wise application of a univariate model to a multivariate input and for the matrix form in Assumption 3.3; the dimensions of X, Y, and the adapter outputs should be stated more carefully.
- [§5.1] The '8% improvement' for ETTh1 H=96 is inconsistent with Table 1: the MSE changes from 0.411 to 0.395, which is approximately a 4% improvement. Please correct this number.
- [Fig. 5] The reliability diagram's caption does not explain the color or shading used for different prediction horizons, and the figure reports only the first feature of one dataset, which is a limited basis for the general calibration claim.
- [Reproducibility statement] The abstract states 'We release the code', while the reproducibility statement says the code 'will be released' after acceptance; these statements should be made consistent.
- [Appendix C.2] There is a typo: 'mean squred error' should be 'mean squared error'.
- [Appendix A.1] The chain rule expression for the gradient with respect to W_phi has a sign error: the correct expression is +2 W^{-T}(B^T A - B^T B W^{-1}) W^{-T}, not the negative. The stationary condition is unaffected, but the error should be fixed.
- [Table 3 / Fig. 6] The main experiments use beta=0.5 and sigma=1.0 according to Table 3, while the ablation in Fig. 6 explores beta up to 4.0 and log sigma^2 up to 3.0; it would be helpful to state explicitly which hyperparameter values were used for each row of Table 1.
- [§3.3] The synthetic experiment appears to compute the loss on the same data used to derive W*; please specify whether the reported MSE is in-sample or on a held-out test set.
Circularity Check
Supporting 'optimal adapter' demonstrations fit the reported MSE, so their improvement over identity is by construction; the central held-out benchmark claim is not circular, though the 5/8 summary is a best-per-task selection.
-
fitted input called prediction
[Section 3.3 (Working example, Fig. 2); Eqs. (3)-(4)]
"We then compute the closed-form solution W∗φ (Eq. (4)) on raw data X, and compare the resulting loss value with the baseline (using the identity matrix I as adapter) and the PCA-only adapter."
W∗φ is defined by Eq. (4) as the minimizer of L(Wφ)=||Y−(W⊤FMXWφ+bFM1⊤)W−1φ||2F in Eq. (3), i.e. the very MSE in which Y is the target. The identity adapter I is feasible in GLD(R), so L(W∗)≤L(I) is guaranteed by the optimization. The paper uses the same (X,Y) for both computing W∗ and reporting the MSE, with no held-out split described, so Fig. 2's 'optimality' is a restatement of the minimization rather than a predictive validation of adapters.
-
fitted input called prediction
[Appendix D.1 (Moment applied to synthetic data, Eqs. (14)-(15), Fig. 8)]
"To approximately solve this optimization problem, we instantiate Wφ as a single-linear-layer encoder denoted encθ, and respectively the inverse transformation W−1φ as a single-linear-layer decoder denoted decθ. We then use gradient-based optimization of the parameters θ using the Adam optimizer, aiming at solving the following optimization problem: θ∗ = arg minθ ||Y − decθ(fMoment(encθ(X)))||2F (15). Fig. 8 shows the performance gain obtained by optimizing a linear adapter on Moment-small foundation model."
Here θ∗ minimizes exactly the MSE ||Y−decθ(fMoment(encθ(X)))||2F that is then plotted in Fig. 8, and the identity encoder/decoder is a feasible solution, so the optimized adapter is guaranteed to match or beat the baseline on the same synthetic data. The appendix presents this as validating the 'adapter optimality condition' for a nonlinear FM, but no held-out split is described; the reported performance gain is a training-fit artifact, not a predictive result.
full rationale
The main benchmark comparison in Table 1 is not circular: adapters are trained on training splits, hyperparameters are selected on validation data, and test MSE is reported on held-out test sets. The 5/8 summary, however, is an oracle-style best-over-variants count, since different adapter families win on different tasks and no fixed selection rule is specified; this is a selection/statistical concern rather than an input-output tautology. The self-citations to Feofanov et al. (2024) and Benechehab et al. (2025) are background context and not load-bearing, and the linear-FM assumption (3.3) limits the theory's applicability to the nonlinear Moment model without being circular. The actual circularity is confined to the supporting 'optimal adapter' demonstrations in Sections 3.3 and D.1, where the adapter parameters are fit by minimizing the same MSE that is later reported, with identity in the feasible class, so the claimed improvement is forced by construction. Section 5.1's '8% improvement' for ETTh1 H=96 also does not match Table 1 (0.411 to 0.395 is about 4%), but that is a numerical-consistency issue rather than circularity. Because the central empirical claim has independent held-out content, the overall circularity score is moderate rather than high.
Assumptions & free parameters
free parameters (5)
- beta (beta-VAE KL weight) =
0.5
- sigma (likelihood noise) =
1.0 (fixed)
- dropout probability =
0.1
- latent dimensionality D' =
varies (2 to 14)
- lambda (regularization in Eq. 4) =
not specified
assumptions (4)
- ad hoc to paper The foundation model is linear: f_FM(X) = W_FM^T X + b_FM 1^T (Assumption 3.3).
- domain assumption W_phi has full rank (Assumption 3.2).
- domain assumption Partially stochastic BNNs give universal conditional density estimation (Sharma et al., 2023) if stochasticity is early enough and stochastic units match or exceed output dimension.
- standard math The VAE posterior is approximated by a Gaussian variational family q_phi(Z|X) and prior p(Z)=N(0,I).
Cite this review
Pith. "Pith review of AdaPTS: Adapting Univariate Foundation Models to Probabilistic Multivariate Time Series Forecasting." pith.science (2026). https://pith.science/paper/AKVZYJEB
@misc{pith2026250210235,
author = {Pith},
title = {Pith review of: AdaPTS: Adapting Univariate Foundation Models to Probabilistic Multivariate Time Series Forecasting},
year = {2026},
howpublished = {\url{https://pith.science/paper/AKVZYJEB}},
note = {Machine review of arXiv:2502.10235}
}
read the original abstract
Pre-trained foundation models (FMs) have shown exceptional performance in univariate time series forecasting tasks. However, several practical challenges persist, including managing intricate dependencies among features and quantifying uncertainty in predictions. This study aims to tackle these critical limitations by introducing adapters; feature-space transformations that facilitate the effective use of pre-trained univariate time series FMs for multivariate tasks. Adapters operate by projecting multivariate inputs into a suitable latent space and applying the FM independently to each dimension. Inspired by the literature on representation learning and partially stochastic Bayesian neural networks, we present a range of adapters and optimization/inference strategies. Experiments conducted on both synthetic and real-world datasets confirm the efficacy of adapters, demonstrating substantial enhancements in forecasting accuracy and uncertainty quantification compared to baseline methods. Our framework, AdaPTS, positions adapters as a modular, scalable, and effective solution for leveraging time series FMs in multivariate contexts, thereby promoting their wider adoption in real-world applications. We release the code at https://github.com/abenechehab/AdaPTS.
Figures
Figures from the paper (5 more)
Reference graph
Works this paper leans on
-
[1]
F., Stella, L., Turkmen, C., Zhang, X., Mercado, P., Shen, H., Shchur, O., Rangapuram, S
Ansari, A. F., Stella, L., Turkmen, C., Zhang, X., Mercado, P., Shen, H., Shchur, O., Rangapuram, S. S., Arango, S. P., Kapoor, S., et al. Chronos: Learning the language of time series. arXiv preprint arXiv:2403.07815, 2024
arXiv 2024
-
[2]
Benechehab, A., Hili, Y. A. E., Odonnat, A., Zekri, O., Thomas, A., Paolo, G., Filippone, M., Redko, I., and Kégl, B. Zero-shot model-based reinforcement learning using large language models. In The Thirteenth International Conference on Learning Representations, 2025. URL https://openreview.net/forum?id=uZFXpPrwSh
work page 2025
-
[3]
Accurate medium-range global weather forecasting with 3d neural networks
Bi, K., Xie, L., Zhang, H., Chen, X., Gu, X., and Tian, Q. Accurate medium-range global weather forecasting with 3d neural networks. Nature, 619 0 (7970): 0 533--538, 2023
2023
-
[4]
O., Yoder, N
Chen, S.-A., Li, C.-L., Arik, S. O., Yoder, N. C., and Pfister, T. TSM ixer: An all- MLP architecture for time series forecast-ing. Transactions on Machine Learning Research, 2023. ISSN 2835-8856. URL https://openreview.net/forum?id=wbpxTuXgm0
2023
-
[5]
S tochastic G radient H amiltonian M onte C arlo
Chen, T., Fox, E., and Guestrin, C. S tochastic G radient H amiltonian M onte C arlo. In Xing, E. P. and Jebara, T. (eds.), Proceedings of the 31st International Conference on Machine Learning, volume 32 of Proceedings of Machine Learning Research, pp.\ 1683--1691, Bejing, China, 22--24 Jun 2014. PMLR. URL https://proceedings.mlr.press/v32/cheni14.html
work page 2014
-
[6]
Hebo: Pushing the limits of sample-efficient hyperparameter optimisation
Cowen-Rivers, A., Lyu, W., Tutunov, R., Wang, Z., Grosnit, A., Griffiths, R.-R., Maravel, A., Hao, J., Wang, J., Peters, J., and Bou Ammar, H. Hebo: Pushing the limits of sample-efficient hyperparameter optimisation. Journal of Artificial Intelligence Research, 74, 07 2022
work page 2022
-
[7]
A decoder-only foundation model for time-series forecasting
Das, A., Kong, W., Sen, R., and Zhou, Y. A decoder-only foundation model for time-series forecasting. In Forty-first International Conference on Machine Learning, 2024. URL https://openreview.net/forum?id=jn2iTJas6h
2024
-
[8]
Density estimation using real nvp, 2017
Dinh, L., Sohl-Dickstein, J., and Bengio, S. Density estimation using real nvp, 2017. URL https://arxiv.org/abs/1605.08803
arXiv 2017
Show all 51 references
-
[9]
User-friendly foundation model adapters for multivariate time series classification
Feofanov, V., Ilbert, R., Tiomoko, M., Palpanas, T., and Redko, I. User-friendly foundation model adapters for multivariate time series classification. arXiv preprint arXiv:2409.12264, 2024
2024 arXiv
-
[10]
and Prevention
for Disease Control, C. and Prevention. In Fluview: Flu activity & surveillance, 2024. URL https://gis.cdc.gov/grasp/fluview/fluportaldashboard.html
2024
-
[11]
and Ghahramani, Z
Gal, Y. and Ghahramani, Z. Dropout As a Bayesian Approximation: Representing Model Uncertainty in Deep Learning . In Proceedings of the 33rd International Conference on International Conference on Machine Learning - Volume 48, ICML'16, pp.\ 1050--1059. JMLR.org, 2016. URL http...
2016
-
[12]
Bayesian Data Analysis
Gelman, A., Carlin, J., Stern, H., Dunson, D., Vehtari, A., and Rubin, D. Bayesian Data Analysis. Chapman and Hall/CRC, United States, 3rd ed edition, 2013. ISBN 9781439840955
2013
-
[13]
and Katzfuss, M
Gneiting, T. and Katzfuss, M. Probabilistic forecasting. Annual Review of Statistics and Its Application, 1 0 (1): 0 125--151, 2014
2014
-
[14]
Moment: A family of open time-series foundation models
Goswami, M., Szafer, K., Choudhry, A., Cai, Y., Li, S., and Dubrawski, A. Moment: A family of open time-series foundation models. In International Conference on Machine Learning, 2024
2024
-
[15]
Practical variational inference for neural networks
Graves, A. Practical variational inference for neural networks. In Shawe-Taylor, J., Zemel, R., Bartlett, P., Pereira, F., and Weinberger, K. (eds.), Advances in Neural Information Processing Systems, volume 24. Curran Associates, Inc., 2011. URL https://proceedings.neurips.cc...
2011
-
[16]
J., Paap, R., and Ravazzolo, F
Groen, J. J., Paap, R., and Ravazzolo, F. Real-time inflation forecasting in a changing world. Journal of Business & Economic Statistics, 31 0 (1): 0 29--44, 2013
2013
-
[17]
beta- VAE : Learning basic visual concepts with a constrained variational framework
Higgins, I., Matthey, L., Pal, A., Burgess, C., Glorot, X., Botvinick, M., Mohamed, S., and Lerchner, A. beta- VAE : Learning basic visual concepts with a constrained variational framework. In International Conference on Learning Representations, 2017. URL https://openreview.n...
2017
-
[18]
Samformer: Unlocking the potential of transformers in time series forecasting with sharpness-aware minimization and channel-wise attention
Ilbert, R., Odonnat, A., Feofanov, V., Virmaux, A., Paolo, G., Palpanas, T., and Redko, I. Samformer: Unlocking the potential of transformers in time series forecasting with sharpness-aware minimization and channel-wise attention. In Proceedings of the 41st International Confe...
2024
-
[19]
Institute, M. P. In Weather dataset, 2021. URL https://www.bgc-jena.mpg.de/wetter/
2021
-
[20]
Y., Shi, X., Chen, P.-Y., Liang, Y., Li, Y.-F., Pan, S., and Wen, Q
Jin, M., Wang, S., Ma, L., Chu, Z., Zhang, J. Y., Shi, X., Chen, P.-Y., Liang, Y., Li, Y.-F., Pan, S., and Wen, Q. Time-LLM : Time series forecasting by reprogramming large language models. In International Conference on Learning Representations (ICLR), 2024
2024
-
[21]
Jones, H. E. and Spiegelhalter, D. J. Improved probabilistic prediction of healthcare performance indicators using bidirectional smoothing models. Journal of the Royal Statistical Society Series A: Statistics in Society, 175 0 (3): 0 729--747, 2012
2012
-
[22]
Reversible instance normalization for accurate time-series forecasting against distribution shift
Kim, T., Kim, J., Tae, Y., Park, C., Choi, J.-H., and Choo, J. Reversible instance normalization for accurate time-series forecasting against distribution shift. In International Conference on Learning Representations, 2022. URL https://openreview.net/forum?id=cGDAkQo1C0p
2022
-
[23]
Kingma, D. P. and Ba, J. Adam: A method for stochastic optimization, 2017. URL https://arxiv.org/abs/1412.6980
2017 arXiv
-
[24]
Kingma, D. P. and Welling, M. Auto-encoding variational bayes. CoRR, abs/1312.6114, 2013. URL https://api.semanticscholar.org/CorpusID:216078090
2013 arXiv
-
[25]
J., and Brubaker, M
Kobyzev, I., Prince, S. J., and Brubaker, M. A. Normalizing flows: An introduction and review of current methods. IEEE Transactions on Pattern Analysis and Machine Intelligence, 43 0 (11): 0 3964–3979, November 2021. ISSN 1939-3539. doi:10.1109/tpami.2020.2992934. URL http://d...
2021
-
[26]
Modeling long- and short-term temporal patterns with deep neural networks, 2018
Lai, G., Chang, W.-C., Yang, Y., and Liu, H. Modeling long- and short-term temporal patterns with deep neural networks, 2018. URL https://arxiv.org/abs/1703.07015
2018 arXiv
-
[27]
Li, S. C.-X. and Marlin, B. M. A scalable end-to-end gaussian process adapter for irregularly sampled time series classification. In Lee, D., Sugiyama, M., Luxburg, U., Guyon, I., and Garnett, R. (eds.), Advances in Neural Information Processing Systems, volume 29. Curran Asso...
2016
-
[28]
Padapter: Adapter combined with prompt for image and video classification
Li, Y., Ye, J., Wen, X., Xu, G., Wang, J., and Liu, X. Padapter: Adapter combined with prompt for image and video classification. Image and Vision Computing, 154: 0 105395, 2025. ISSN 0262-8856. doi:https://doi.org/10.1016/j.imavis.2024.105395. URL https://www.sciencedirect.co...
2025
-
[29]
E., and Stoica, I
Liaw, R., Liang, E., Nishihara, R., Moritz, P., Gonzalez, J. E., and Stoica, I. Tune: A research platform for distributed model selection and training, 2018. URL https://arxiv.org/abs/1807.05118
2018 arXiv
-
[30]
Moirai-moe: Empowering time series foundation models with sparse mixture of experts
Liu, X., Liu, J., Woo, G., Aksu, T., Liang, Y., Zimmermann, R., Liu, C., Savarese, S., Xiong, C., and Sahoo, D. Moirai-moe: Empowering time series foundation models with sparse mixture of experts. arXiv preprint arXiv:2410.10469, 2024
-
[31]
C., Golestan, K., Yu, G., Volkovs, M., and Caterini, A
Ma, J., Thomas, V., Hosseinzadeh, R., Kamkari, H., Labach, A., Cresswell, J. C., Golestan, K., Yu, G., Volkovs, M., and Caterini, A. L. Tabdpt: Scaling tabular foundation models, 2024. URL https://arxiv.org/abs/2410.18164
2024
-
[32]
H., Sinthong, P., and Kalagnanam, J
Nie, Y., Nguyen, N. H., Sinthong, P., and Kalagnanam, J. A time series is worth 64 words: Long-term forecasting with transformers. In The Eleventh International Conference on Learning Representations, 2023. URL https://openreview.net/forum?id=Jbdc0vTOcol
2023
-
[33]
and Weron, R
Nowotarski, J. and Weron, R. Recent advances in electricity price forecasting: A review of probabilistic forecasting. Renewable and Sustainable Energy Reviews, 81: 0 1548--1568, 2018
2018
-
[34]
Towards the probabilistic earth-system simulator: A vision for the future of climate and weather prediction
Palmer, T. Towards the probabilistic earth-system simulator: A vision for the future of climate and weather prediction. Quarterly Journal of the Royal Meteorological Society, 138 0 (665): 0 841--861, 2012
2012
-
[35]
St-adapter: Parameter-efficient image-to-video transfer learning
Pan, J., Lin, Z., Zhu, X., Shao, J., and Li, H. St-adapter: Parameter-efficient image-to-video transfer learning. In Koyejo, S., Mohamed, S., Agarwal, A., Belgrave, D., Cho, K., and Oh, A. (eds.), Advances in Neural Information Processing Systems, volume 35, pp.\ 26462--26477....
2022
-
[36]
M., Hubin, A., Immer, A., Karaletsos, T., Khan, M
Papamarkou, T., Skoularidou, M., Palla, K., Aitchison, L., Arbel, J., Dunson, D., Filippone, M., Fortuin, V., Hennig, P., Hern\' a ndez-Lobato, J. M., Hubin, A., Immer, A., Karaletsos, T., Khan, M. E., Kristiadi, A., Li, Y., Mandt, S., Nemeth, C., Osborne, M. A., Rudner, T. G....
2024
-
[37]
R., Ghonia, H., Bhagwatkar, R., Khorasani, A., Bayazi, M
Rasul, K., Ashok, A., Williams, A. R., Ghonia, H., Bhagwatkar, R., Khorasani, A., Bayazi, M. J. D., Adamopoulos, G., Riachi, R., Hassen, N., Biloš, M., Garg, S., Schneider, A., Chapados, N., Drouin, A., Zantedeschi, V., Nevmyvaka, Y., and Rish, I. Lag-llama: Towards foundation...
2024
-
[38]
Do B ayesian neural networks need to be fully stochastic? In Ruiz, F., Dy, J., and van de Meent, J.-W
Sharma, M., Farquhar, S., Nalisnick, E., and Rainforth, T. Do B ayesian neural networks need to be fully stochastic? In Ruiz, F., Dy, J., and van de Meent, J.-W. (eds.), Proceedings of The 26th International Conference on Artificial Intelligence and Statistics, volume 206 of P...
2023
-
[39]
Dropout: A simple way to prevent neural networks from overfitting
Srivastava, N., Hinton, G., Krizhevsky, A., Sutskever, I., and Salakhutdinov, R. Dropout: A simple way to prevent neural networks from overfitting. Journal of Machine Learning Research, 15 0 (56): 0 1929--1958, 2014. URL http://jmlr.org/papers/v15/srivastava14a.html
1929
-
[40]
One Fits All : Power general time series analysis by pretrained lm
Tian, Z., Peisong, N., Xue, W., Liang, S., and Rong, J. One Fits All : Power general time series analysis by pretrained lm. In NeurIPS, 2023
2023
-
[41]
All you need is a good functional prior for B ayesian deep learning
Tran, B.-H., Rossi, S., Milios, D., and Filippone, M. All you need is a good functional prior for B ayesian deep learning. 23 0 (1), 2022. ISSN 1532-4435
2022
-
[42]
Wei, W. W. Multivariate time series analysis and applications. John Wiley & Sons, 2019
2019
-
[43]
Autoformer: Decomposition transformers with auto-correlation for long-term series forecasting
Wu, H., Xu, J., Wang, J., and Long, M. Autoformer: Decomposition transformers with auto-correlation for long-term series forecasting. In Beygelzimer, A., Dauphin, Y., Liang, P., and Vaughan, J. W. (eds.), Advances in Neural Information Processing Systems, 2021. URL https://ope...
2021
-
[44]
X., Robeyns, M., Wang, X., and Aitchison, L
Yang, A. X., Robeyns, M., Wang, X., and Aitchison, L. Bayesian low-rank adaptation for large language models. In The Twelfth International Conference on Learning Representations, 2024. URL https://openreview.net/forum?id=FJiUyzOF1m
2024
-
[45]
Adapter is all you need for tuning visual tasks, 2023
Yin, D., Hu, L., Li, B., and Zhang, Y. Adapter is all you need for tuning visual tasks, 2023. URL https://arxiv.org/abs/2311.15010
2023 arXiv
-
[46]
Are transformers effective for time series forecasting? 2023
Zeng, A., Chen, M., Zhang, L., and Xu, Q. Are transformers effective for time series forecasting? 2023
2023
-
[47]
Dualtime: A dual-adapter multimodal language model for time series representation, 2024
Zhang, W., Ye, J., Li, Z., Li, J., and Tsung, F. Dualtime: A dual-adapter multimodal language model for time series representation, 2024. URL https://arxiv.org/abs/2406.06620
2024 arXiv
-
[48]
and Yan, J
Zhang, Y. and Yan, J. Crossformer: Transformer utilizing cross-dimension dependency for multivariate time series forecasting. In The eleventh international conference on learning representations, 2023
2023
-
[49]
Review on probabilistic forecasting of wind power generation
Zhang, Y., Wang, J., and Wang, X. Review on probabilistic forecasting of wind power generation. Renewable and Sustainable Energy Reviews, 32: 0 255--270, 2014
2014
-
[50]
Informer: Beyond efficient transformer for long sequence time-series forecasting
Zhou, H., Zhang, S., Peng, J., Zhang, S., Li, J., Xiong, H., and Zhang, W. Informer: Beyond efficient transformer for long sequence time-series forecasting. In The Thirty-Fifth AAAI Conference on Artificial Intelligence, AAAI 2021, Virtual Conference , volume 35, pp.\ 11106--1...
2021
-
[51]
write newline
" write newline "" before.all 'output.state := FUNCTION n.dashify 't := "" t empty not t #1 #1 substring "-" = t #1 #2 substring "--" = not "--" * t #2 global.max substring 't := t #1 #1 substring "-" = "-" * t #2 global.max substring 't := while if t #1 #1 substring * t #2 gl...
Reviewed August 7, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.