Views
No views yet
Attention Is All You Need paper has created a huge wave of AI development in recent years. The scaled dot-product attention allows for information to be processed with higher efficiency and quality, which the previous RNN-based models lacked. However Transformer-based models comes with their own set of challenges, particularly with parameter efficiency for tiny scale models. At such tiny scale a Transformer model essentially uses more parameter than it really should. This regime is very under-explored and for good reasons however exploring it might allow us to discover interesting insights about the Transformer. So here-in this paper I am introducing Silia, a novel neural network architecture designed for efficient modelling & classification tasks under severe parameter budget. Training on Fineweb-edu dataset shows very competitive performance on HellaSwag, PIQA and LAMBADA benchmarks, validation loss and generation quality to other models with equal or more parameters.uv syncuv run inference.py --model bin/model.bin --encoder bin/o512.bin --length 1024 --temperature 0.7 --top_k 50 --text_prompt "Steve Jobs built the soul of Apple"


| Model | Parameters | Vocab Size | Context Length | Layers | $d_{ff}$ | $d_{model}$ | $d_{head}$ | $h_Q$, $h_{KV}$ |
|---|---|---|---|---|---|---|---|---|
| Silia (mine) | 524,672 | 512 | 1024 | 3 | 256 | 64 | 64 | 2, 2 |
| Quark-v2 | 465,504 | 500 | 256 | 4 | 192 | 96 | 24 | 4, 4 |
| Spark-v4 | 4,980,736 | 4096 | 512 | 6 | 512 | 256 | 32 | 8, 8 |
| Supra-Mini-v6 | 1,410,688 | 4096 | 1024 | 6 | 256 | 128 | 32 | 4, 2 |
| Benchmark | Silia (mine) | Quark-v2 | Spark-v4 | Supra-Mini-v6 |
|---|---|---|---|---|
| HellaSwag (acc) | 0.2804 | 0.2615 | 0.2695 | 0.2674 |
| PIQA (acc) | 0.5419 | 0.5283 | 0.5593 | 0.5403 |
| LAMBADA (ppl) | 1704 | 3500 | 588 | 2089 |
| Final validation loss | 2.393 | 2.556 | 3.108 | 3.79 |
@software{Silia,
author={Srijan Srivastava},
title={Silia},
url={https://github.com/SrijanSriv211/Silia},
version={0.2.0},
year = {2026}
}