TL;DR
Time series forecasting often struggles to effectively incorporate covariates, which are external factors influencing predictions. CITRAS, a decoder-only Transformer model, was developed to flexibly integrate multiple target variables and covariates while maintaining strong autoregressive capabilities.
✦ Why It Matters
Engineers can leverage CITRAS to enhance forecasting models by effectively integrating covariates for improved accuracy.
Key Takeaways
Full Summary
In time series forecasting, covariates are external factors that can enhance prediction accuracy but are often underutilized due to modeling challenges. CITRAS, or Covariate-Informed Transformer, is a novel model designed to address these issues by integrating observed covariates (like past weather data) and known covariates (like future events) into the forecasting process.
It employs two innovative mechanisms: Key-Value (KV) Shift, which aligns future known covariates with target variables based on their dependencies, and Attention Score Smoothing, which refines local dependencies into a global context. Through extensive experiments on diverse datasets, CITRAS demonstrated superior performance in both covariate-informed and multivariate settings, achieving improved accuracy metrics.
These findings suggest that CITRAS can effectively capture complex relationships in time series data, making it a valuable tool for engineers and researchers in predictive modeling.
Related