These models are trained using the
Time-Bench dataset.
We provide several checkpoints representing different stages of the Time-R1 training process:
These models are trained to develop foundational temporal understanding.
This model builds upon Stage 1 capabilities to predict future event timings.
Please refer to the
main paper for detailed discussions on the architecture, training methodology, and comprehensive evaluations.
For loading and using these models, please refer to the example scripts and documentation provided in our
GitHub repository.
1from transformers import AutoModelForCausalLM, AutoTokenizer
2# Example for one of the models (replace with the specific model name)
3model_name = "ulab-ai/Time-R1-S1P2" # Or your specific Hugging Face model path
4tokenizer = AutoTokenizer.from_pretrained(model_name)
5model = AutoModelForCausalLM.from_pretrained(model_name)
6# Further usage instructions would go here or in the repository
1@article{liu2025time,
2 title={Time-R1: Towards Comprehensive Temporal Reasoning in LLMs},
3 author={Liu, Zijia and Han, Peixuan and Yu, Haofei and Li, Haoru and You, Jiaxuan},
4 journal={arXiv preprint arXiv:2505.13508},
5 year={2025}
6}