Views
No views yet
Under review at ICLR 2026
1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3model_name = "KaisenYang/Explore-Execute-Chain"
4model_type = "8B-Final" # change to the subfolder you want to use
5
6tokenizer = AutoTokenizer.from_pretrained(model_name, subfolder=model_type)
7model = AutoModelForCausalLM.from_pretrained(model_name, subfolder=model_type)
8
9# Test example: Fibonacci sequence
10inputs = tokenizer("What is the 10th number in the Fibonacci sequence?", return_tensors="pt")
11outputs = model.generate(**inputs)
12print(tokenizer.decode(outputs[0]))1@inproceedings{yang2026explore,
2 title={Explore-Execute Chain: Towards an Efficient Structured Reasoning Paradigm},
3 author={Yang, Kaisen and He, Lixuan and Shah, Rushi and Yang, Kaicheng and Ma, Qinwei and Liu, Dianbo and Lamb, Alex},
4 booktitle={International Conference on Learning Representations (ICLR)},
5 year={2026},
6 note={under review}
7}