Kairos: Towards Adaptive and Generalizable Time Series Foundation Models
Paper
โข
2509.25826
โข
Published
โข
3
Kairos-23M is a 23-million parameter time series foundation model designed for zero-shot forecasting across diverse domains. It features adaptive tokenization and instance-specific positional encodings to handle heterogeneous time series data with varying information density.
import torch
from tsfm.model.kairos import AutoModel
# load model
model = AutoModel.from_pretrained(
"mldi-lab/Kairos_23m", trust_remote_code=True
)
# forecasting configurations
batch_size, context_length, prediction_length = 1, 2048, 96
seqs = torch.randn(batch_size, context_length)
prediction_length = 96
forecast = model(
past_target=seqs.clone().detach().float(),
prediction_length=prediction_length,
generation=True,
preserve_positivity=True,
average_with_flipped_input=True
)
# extract the prediction results
forecast = forecast["prediction_outputs"]
print(forecast.shape)
For detailed usage examples, please refer to the main repository.
If you use this model, please cite:
@article{feng2025kairos,
title={Kairos: Towards Adaptive and Generalizable Time Series Foundation Models},
author={Feng, Kun and Lan, Shaocheng and Fang, Yuchen and He, Wenchao and Ma, Lintao and Lu, Xingyu and Ren, Kan},
journal={arXiv preprint arXiv:2509.25826},
year={2025}
}
Apache License 2.0