Views
No views yet
meta-llama/Llama-3.2-3B-Instruct,
from the paper
Bridging the Gap Between Latent and Explicit Reasoning with Looped Transformers.
Direct step-aligned supervision through the base LM head (no aux decoder, no CODI); the latent blocks are
supervised against natural-language reasoning steps rather than formatted math expressions.from_pretrained loads the weights only — the looped padded architecture needs the LOTUS code
(code repo).--c_thought 50 for this NL model:1python scripts/eval.py \
2 --model_id yingfanbot/gsm-lotus-llama3b-nl \
3 --datasets gsm8k --n_looped_iters 6 --c_thought 50 --bf161@article{fan2026bridging,
2 title={Bridging the Gap Between Latent and Explicit Reasoning with Looped Transformers},
3 author={Fan, Ying and Svete, Anej and Lee, Kangwook},
4 journal={arXiv preprint arXiv:2606.31779},
5 year={2026}
6}