Views
No views yet
<FACT>
annotations stripped out to plain text.1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3model_id = "lil-lab/CoLMLM-Standard-LM-Baseline-360M-FW"
4tokenizer = AutoTokenizer.from_pretrained(model_id)
5model = AutoModelForCausalLM.from_pretrained(model_id)
6
7inputs = tokenizer("The Eiffel Tower is located in", return_tensors="pt")
8print(tokenizer.decode(model.generate(**inputs, max_new_tokens=32)[0]))1@misc{feldman2026colmlmcontinuousquerylimitedmemory,
2 title={Co-LMLM: Continuous-Query Limited Memory Language Models},
3 author={Yair Feldman and Linxi Zhao and Nathan Godey and Dongyoung Go and Yilun Hua and Kilian Q. Weinberger and Jennifer J. Sun and Yoav Artzi},
4 year={2026},
5 eprint={2607.07707},
6 archivePrefix={arXiv},
7 primaryClass={cs.CL},
8 url={https://arxiv.org/abs/2607.07707},
9}