Views
No views yet
⚠️ This model has NOT been RLHF'd or abliterated. No refusal direction was trained — it has no alignment conditioning. Research use only.
| Parameter | Value |
|---|---|
| Layers | 30 |
| Hidden dim | 1024 |
| FFN dim | 2560 |
| Attention | GQA (8Q / 4KV heads) |
| Head dim | 128 |
| Vocab size | 49,152 (SmolLM2 tokenizer) |
| Max seq len | 2,048 |
| Activation | ReLU² |
| Normalization | RMSNorm + QK-norm |
| Position | RoPE (θ=10000) |
| Logit cap | 30.0 |
| Total params | ~352M |
1import torch
2from safetensors.torch import load_file
3
4state_dict = load_file("model.safetensors")
5# Custom Axon architecture required — see training script