openai/gsm8k
Benchmark β’ Updated β’ 17.6k β’ 944k β’ 1.55k
PallasLM 110M SFT is a high-efficiency Language Model trained on ClimbMix and fine-tuned on SmolTalk, MMLU, and GSM8K. It features state-of-the-art DeepSeek-V3 architectural innovations:
| Parameter | Value |
|---|---|
| Total Parameters | 110,732,160 |
| Active Parameters per Token | 39,953,280 |
| Number of Layers | 14 |
| Embedding Dimension | 384 |
| FFN Hidden Dimension | 1,536 |
| MoE Routing | 8 experts total, Top-2 active per token (Layers 4..13) |
| Attention Mechanism | Gated MLA (Compressed KV Rank: 64, Q Rank: 64) |
| Vocabulary Size | 32,768 (Rust BPE / Tiktoken) |
| Context Length | 4,096 tokens |
chat_eval.py)
Across 17,590 test questions, PallasLM SFT outperforms random chance baseline across all tasks:
| Task Benchmark | Total Test Questions | Model Accuracy | Random Baseline | Accuracy Above Random |
|---|---|---|---|---|
| π’ ARC-Easy | 2,376 | 30.09% (715/2376) | 25.00% | +5.09% |
| π ARC-Challenge | 1,172 | 27.99% (328/1172) | 25.00% | +2.99% |
| π΅ MMLU (All 57 Subjects) | 14,042 | 28.77% (4040/14042) | 25.00% | +3.77% |
| π ChatCORE Metric | 17,590 Total | 0.0527 | 0.0000 | +5.27% Centered Score |
1.2894 (peak low: 1.2567)0.4308 (Bits-Per-Byte)| Decode Batch Size | TTFT (ms) | TPOT (ms) | Generation Speed | MBU % | VRAM Consumption |
|---|---|---|---|---|---|
| Batch 1 | ~29.7 ms | ~27.2 ms | 36.6 tok/s | 82% | 0.48 GiB |
| Batch 16 | ~30.0 ms | ~27.4 ms | 580 tok/s | 89% | 0.56 GiB |
| Batch 64 | ~29.6 ms | ~31.9 ms | 2,011 tok/s | 99% | 0.96 GiB |
| Batch 128 | ~36.3 ms | ~37.3 ms | π 3,441 tok/s | π₯ 110% (L2 SRAM Cache Hit) | 1.49 GiB |
import torch
# 1. Load model weights
state_dict = torch.load("model.pt", map_location="cpu")
# State dict keys format:
# - "wte.weight": (32768, 384)
# - "blocks.0..13.mixer...": Gated MLA attention parameters
# - "blocks.4..13.ffn.router.weight": MoE router (8, 384)
# - "blocks.4..13.ffn.experts.0..7...": MoE expert weights
During fine-tuning, the model was trained on ChatML conversation tags:
<|bos|><|user_start|>What is the capital of France?<|user_end|><|assistant_start|>
Special Token IDs:
<|bos|>: Beginning of sequence<|user_start|>: Start of user turn<|user_end|>: End of user turn<|assistant_start|>: Start of assistant turn<|assistant_end|>: End of assistant turn (EOS)This model repository contains model weight parameters released under the MIT License.