LECTOR is designed for Content-Conditional Introduction Generation (CCIG). Given the main body of a scientific paper, it first extracts a reasoning logic graph and then generates a logic-aware introduction guided by that graph and citation context.
1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3model_id = "Xiao-Youth/LECTOR-4B"
4
5tokenizer = AutoTokenizer.from_pretrained(model_id)
6model = AutoModelForCausalLM.from_pretrained(
7 model_id,
8 torch_dtype="auto",
9 device_map="auto",
10)
For the full LECTOR prompting, rollout, and evaluation pipeline, see the project repository.
This model is intended for research on scientific reasoning graph extraction, logic-aware scientific writing, and content-conditional introduction generation.
The model may produce incorrect reasoning graphs, unsupported claims, or citation errors. Generated text should be manually checked against the source paper content and references before use.
1@misc{xiao2026lector,
2 title={LECTOR: Joint Optimization of Scientific Reasoning Graphs and Introduction Generation},
3 author={Jiabei Xiao and Yizhou Wang and Chen Tang and Pengze Li and Wanli Ouyang and Shixiang Tang},
4 year={2026},
5 eprint={2605.25964},
6 archivePrefix={arXiv},
7 primaryClass={cs.AI},
8 url={https://arxiv.org/abs/2605.25964},
9}