This page is an
index for the model checkpoints released alongside
EMO: Pretraining Mixture of Experts for Emergent Modularity. The repository at
allenai/EMO does not host model weights — pick the checkpoint you want from the table below.
These share architecture and data with the EMO models above; only the training objective differs (no document-level expert pool constraint).
Smaller models trained from scratch at fixed memory budgets, used as comparison points for EMO expert subsets.
All checkpoints require
trust_remote_code=True since they use custom modeling code from the
ryanyxw/transformers fork. Replace
model_id with the checkpoint you want from the table above.
1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3model_id = "allenai/Emo_1b14b_1T" # main EMO release
4model = AutoModelForCausalLM.from_pretrained(model_id, trust_remote_code=True)
5tokenizer = AutoTokenizer.from_pretrained(model_id, trust_remote_code=True)
6
7inputs = tokenizer(["Language modeling is "], return_tensors="pt", return_token_type_ids=False)
8out = model.generate(**inputs, max_new_tokens=100, do_sample=True, temperature=1.0, top_p=0.7)
9print(tokenizer.batch_decode(out, skip_special_tokens=True)[0])
1@article{wang2026emo,
2 title = {EMO: Pretraining Mixture of Experts for Emergent Modularity},
3 author = {Wang, Ryan and Bhagia, Akshita and Min, Sewon},
4 year = {2026},
5 url = {https://arxiv.org/abs/2605.06663}
6}