Views
No views yet
trust_remote_code=True).dim = 256) with 4 parallel high-dimensional sparse expert blocks (dim = 384) routed via Expert Choice gating.1import torch
2from transformers import AutoModelForCausalLM, AutoTokenizer
3
4model = AutoModelForCausalLM.from_pretrained("Theskywalker07/seed_1234", revision="main", trust_remote_code=True).eval()
5tok = AutoTokenizer.from_pretrained("Theskywalker07/seed_1234", revision="main")
6ids = tok("The quick brown fox", return_tensors="pt").input_ids
7with torch.no_grad():
8 logits = model(ids).logitschck_<N>M for the BabyLM challenge fast-eval.CITATION.cff):1@misc{jain2026xpertgpt,
2 title = {XpertGPT: Mixture of Experts with Parallelized Multi-Scale Information Transmission for Data-Constrained Pretraining},
3 author = {Jain, Soham and Singh, Harsh and Dewan, Divija and Dev, Atul},
4 year = {2026},
5 howpublished = {Hugging Face Repository},
6 note = {XpertGPT MoE language model, BabyLM 2026}
7}PROVENANCE.md.