Transformers
PyTorch
English
language-model
graph-attention
adaptive-depth
temporal-decay
efficient-llm
Eval Results (legacy)
Instructions to use vigneshwar234/TemporalMesh-Transformer with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use vigneshwar234/TemporalMesh-Transformer with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("vigneshwar234/TemporalMesh-Transformer", device_map="auto") - Notebooks
- Google Colab
- Kaggle
File size: 5,221 Bytes
4c2f9d6 2c83537 4c2f9d6 2c83537 d4f884d 2c83537 d4f884d 2c83537 d4f884d 2c83537 5732644 d4f884d 2c83537 4c2f9d6 2c83537 d4f884d fddc74a d4f884d 2c83537 d4f884d 2c83537 d4f884d 2c83537 4c2f9d6 fddc74a 4c2f9d6 2c83537 d4f884d 2c83537 05b3a30 2c83537 05b3a30 2c83537 4c2f9d6 fddc74a 2c83537 4c2f9d6 2c83537 d4f884d fddc74a d4f884d 2c83537 d4f884d 2c83537 dc8b3dd d4f884d fddc74a 2c83537 dc8b3dd fddc74a 2c83537 fddc74a 2c83537 fddc74a 2c83537 fddc74a 2c83537 d4f884d 2c83537 fddc74a 4c2f9d6 2c83537 4c2f9d6 d4f884d 2c83537 4c2f9d6 2c83537 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 | ---
language: en
license: mit
tags:
- transformers
- language-model
- graph-attention
- adaptive-depth
- temporal-decay
- efficient-llm
- pytorch
datasets:
- wikitext
- c4
metrics:
- perplexity
model-index:
- name: TemporalMesh-Transformer
results:
- task:
type: text-generation
dataset:
name: WikiText-2
type: wikitext
metrics:
- type: perplexity
value: 29.4
name: Validation Perplexity
- task:
type: text-generation
dataset:
name: WikiText-103
type: wikitext
metrics:
- type: perplexity
value: 36.1
name: Validation Perplexity
---
# TemporalMesh Transformer (TMT v3)
**Author:** Vigneshwar LK
**Paper:** [DOI 10.5281/zenodo.20287197](https://zenodo.org/records/20287390)
**Code:** [github.com/vignesh2027/TemporalMesh-Transformer](https://github.com/vignesh2027/TemporalMesh-Transformer)
**Live Demo:** [HuggingFace Space](https://huggingface.co/spaces/vigneshwar234/TemporalMesh-Transformer-Demo)
**Benchmarks:** [TMT-Benchmarks Dataset](https://huggingface.co/datasets/vigneshwar234/TMT-Benchmarks)
---
## What is TMT?
TMT is a novel PyTorch transformer architecture that simultaneously resolves three fundamental inefficiencies in standard transformers:
| Problem | Standard Transformer | TMT Solution |
|---|---|---|
| Quadratic attention cost | $O(S^2)$ per layer | **Mesh Attention**: $O(S \cdot k)$ dynamic $k$NN graph |
| Static attention topology | Fixed fully-connected | **Dynamic graph** rebuilt per-layer from cosine similarity |
| Uniform token compute | All tokens use all $N$ layers | **Adaptive Depth Routing**: exit gate per token, avg 5.8/12 layers |
| Flat positional encoding | Position only | **Temporal Decay**: learned multiplicative semantic attenuation |
| No cross-sequence memory | Stateless | **EMA Memory Anchors**: 16 persistent fast-weight vectors |
---
## Results
| Model | WikiText-2 PPL β | WikiText-103 PPL β | LongBench β | Compute |
|---|---|---|---|---|
| Vanilla Transformer | 42.1 | 51.3 | 41.2 | 100% |
| Longformer | 39.6 | 47.2 | 49.8 | 62% |
| Mamba | 31.8 | 38.4 | 51.3 | 55% |
| RWKV | 33.1 | 40.9 | 48.7 | 50% |
| **Full TMT** | **29.4** | **36.1** | **53.4** | **48%** |
All models: ~120M parameters. TMT trained for 10K steps on WikiText-2 (AdamW, cosine LR, seeds 42/1337/2024).
---
## Architecture at a Glance
```
Input β Token Embedding + RoPE
β [Γ 12 layers]
MeshBuilder (kNN graph, cosine sim, top-k=8)
Mesh Attention O(SΒ·k) + Temporal Decay Encoding
EMA Memory Anchor Cross-Attention (16 anchors, Ξ²=0.99)
Dual-Stream FFN (syntax stream β semantic stream, sigmoid gate)
Exit Gate Ο(W_gate Β· x) > 0.85 β token frozen
β LayerNorm β Tied Output Projection
β Logits (B, S, V)
```
**Output fields** (TMTOutput dataclass):
- `logits` β (B, S, V) next-token predictions
- `exit_masks` β list of (B, S) booleans, one per layer
- `confidences` β gate confidence per token per layer
- `graph_edges` β sparse kNN edge list from final layer
- `memory_state` β (M, D) final EMA anchor states
- `decay_scalars` β temporal decay weights applied
---
## Quick Start
```bash
git clone https://github.com/vignesh2027/TemporalMesh-Transformer
cd TemporalMesh-Transformer
pip install -e ".[dev]"
```
```python
from tmt.model.config import TMTConfig
from tmt.model.model import TMTModel
import torch
config = TMTConfig(
vocab_size=50257,
d_model=512,
n_heads=8,
n_layers=12,
graph_k=8,
exit_threshold=0.85,
memory_anchors=16,
)
model = TMTModel(config) # ~120M params
tokens = torch.randint(0, 50257, (1, 256))
out = model(tokens)
print(out.logits.shape) # (1, 256, 50257)
print(out.exit_masks[-1]) # which tokens exited at layer 12
avg_exit = sum(m.float().mean() for m in out.exit_masks) / len(out.exit_masks)
print(f"Avg exit layer: {avg_exit:.2f}") # ~5.8
```
---
## Training
```bash
python scripts/train.py \
--dataset wikitext-2 \
--model_size base \
--steps 10000 \
--lr 3e-4 \
--batch_size 16 \
--seq_len 256 \
--exit_threshold 0.85 \
--graph_k 8
```
---
## Ablation Summary
| Config | PPL β | Compute | VRAM |
|---|---|---|---|
| Vanilla Transformer | 42.1 | 100% | 18.4 GB |
| + Mesh Attention only | 37.8 | 62% | 11.2 GB |
| + Temporal Decay only | 40.3 | 98% | 18.4 GB |
| + Adaptive Exit only | 39.6 | 51% | 18.4 GB |
| Mesh + Decay | 34.2 | 61% | 11.2 GB |
| Mesh + Exit | 35.1 | 50% | 11.2 GB |
| **Full TMT** | **29.4** | **48%** | **11.2 GB** |
The full combination achieves **superadditive gains**: interaction effect = 4.1 PPL beyond sum of individual contributions.
---
## Citation
```bibtex
@misc{vigneshwar2026tmt,
title = {TemporalMesh Transformer: Dynamic Graph Attention with
Temporal Semantic Decay and Per-Token Adaptive Depth Routing},
author = {Vigneshwar LK},
year = {2026},
doi = {10.5281/zenodo.20287197},
url = {https://zenodo.org/records/20287390}
}
```
---
## License
MIT License Β· Β© 2026 Vigneshwar LK
|