Views
No views yet
| Parameter | Value |
|---|---|
| Layers | 30 |
| Hidden dim | 1024 |
| FFN dim | 2560 |
| Attention heads | 8Q / 4KV (GQA) |
| Head dim | 128 |
| Vocab size | 49,152 (SmolLM tokenizer) |
| Max seq length | 2,048 |
| Activation | ReLU² |
| Normalization | RMSNorm + QK-norm |
| Position encoding | RoPE (θ=10000) |
| Logit cap | 30.0 |
| Total params | ~352M |
AutoModel. To load:1import torch
2from safetensors.torch import load_file
3
4# Load state dict
5state_dict = load_file("model.safetensors")
6
7# Architecture must be defined from training script
8# See train_axon_300m.py for the full model class