A small Mixtral-style Mixture-of-Experts causal language model (~432M total / ~176M active parameters), trained from scratch on a single consumer GPU (RTX A5000 24GB).
1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3model = AutoModelForCausalLM.from_pretrained(
4 "mikecovlee/tinymixtral", trust_remote_code=True
5)
6tokenizer = AutoTokenizer.from_pretrained("mikecovlee/tinymixtral")
TinyMixtral is a research-oriented small MoE language model exploring how far data quality and training recipe can push a model at the ~432M parameter scale. It uses a Mixtral-style sparse MoE architecture with 6 experts and top-2 routing, achieving ~176M active parameters per forward pass.
The v1 model (C4 pretrain) is available at
mikecovlee/tinymixtral-v1.0.
1@software{tinymixtral2026,
2 author = {Michael Lee},
3 title = {TinyMixtral: A Small Mixtral-Style MoE Language Model},
4 year = {2026},
5 url = {https://github.com/mikecovlee/tinymixtral}
6}
MIT License. Copyright (C) 2026 Michael Lee (李登淳).