This repository contains the IMU-1 Base model, a sample-efficient 430M parameter language model introduced in the paper
IMU-1: Sample-Efficient Pre-training of Small Language Models.
IMU-1 is trained on 72B tokens and approaches the benchmark performance of models trained on 56× more data.
1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3model = AutoModelForCausalLM.from_pretrained(
4 "thepowerfuldeez/imu1_base",
5 trust_remote_code=True
6)
7tokenizer = AutoTokenizer.from_pretrained("thepowerfuldeez/imu1_base")
8
9text = "The quick brown fox"
10inputs = tokenizer(text, return_tensors="pt")
11outputs = model.generate(**inputs, max_new_tokens=50)
12print(tokenizer.decode(outputs[0]))
1@misc{grigorev2026imu1sampleefficientpretrainingsmall,
2 title={IMU-1: Sample-Efficient Pre-training of Small Language Models},
3 author={George Grigorev},
4 year={2026},
5 eprint={2602.02522},
6 archivePrefix={arXiv},
7 primaryClass={cs.LG},
8 url={https://arxiv.org/abs/2602.02522},
9}