Views
No views yet

transformers library:1from transformers import AutoModelForCausalLM, AutoTokenizer
2# Example for one of the models (replace with the specific model name)
3model_name = "ulab-ai/Time-R1-Theta1_prime" # 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 repository1@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}