Views
No views yet
| ARC-Easy | HellaSwag | PIQA | LAMBADA |
|---|---|---|---|
| 52.2 | 31.9 | 62.2 | 25.5 |
| File | Use |
|---|---|
model.safetensors | bf16 weights — load with the bundled model.py, config PRESETS["micro_125m"] |
base_training_state.pt | full checkpoint (weights + Muon/AdamW state + iter) — resume pretraining |
sft_training_state.pt | the SmolTalk chat-SFT checkpoint (intermediate, resumable) |
1import torch, importlib.util
2from huggingface_hub import hf_hub_download
3from safetensors.torch import load_file
4
5d = hf_hub_download("Ankitgdes/microme-125m-base", "model.py").rsplit("/", 1)[0]
6spec = importlib.util.spec_from_file_location("mm", f"{d}/model.py")
7mm = importlib.util.module_from_spec(spec); spec.loader.exec_module(mm)
8model = mm.GPT(mm.PRESETS["micro_125m"]).eval()
9model.load_state_dict(load_file(hf_hub_download("Ankitgdes/microme-125m-base", "model.safetensors")))