Text Generation
PyTorch
Transformers
English
language-model
graph-neural-network
sparse-attention
adaptive-depth
temporal-decay
mesh-attention
efficient-transformer
novel-architecture
causal-lm
research
preprint
mesh-transformer
dynamic-graph
early-exit
per-token-routing
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:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="vigneshwar234/TemporalMesh-Transformer")# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("vigneshwar234/TemporalMesh-Transformer", dtype="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps
- vLLM
How to use vigneshwar234/TemporalMesh-Transformer with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "vigneshwar234/TemporalMesh-Transformer" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "vigneshwar234/TemporalMesh-Transformer", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/vigneshwar234/TemporalMesh-Transformer
- SGLang
How to use vigneshwar234/TemporalMesh-Transformer with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "vigneshwar234/TemporalMesh-Transformer" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "vigneshwar234/TemporalMesh-Transformer", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "vigneshwar234/TemporalMesh-Transformer" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "vigneshwar234/TemporalMesh-Transformer", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use vigneshwar234/TemporalMesh-Transformer with Docker Model Runner:
docker model run hf.co/vigneshwar234/TemporalMesh-Transformer
| """ | |
| embedding.py β TokenEmbedding and TemporalPositionEncoder. | |
| Novel vs standard: RoPE positional encoding is extended with per-token learned | |
| decay scalars so that semantically distant tokens are attenuated before they | |
| reach the attention layer β no recurrence needed. | |
| """ | |
| from __future__ import annotations | |
| import math | |
| from typing import Tuple | |
| import torch | |
| import torch.nn as nn | |
| from einops import rearrange | |
| from torch import Tensor | |
| from .config import TMTConfig | |
| class TokenEmbedding(nn.Module): | |
| """Standard learned token embedding with output projection scale.""" | |
| def __init__(self, cfg: TMTConfig) -> None: | |
| super().__init__() | |
| self.embed = nn.Embedding(cfg.vocab_size, cfg.d_model) | |
| self.scale = math.sqrt(cfg.d_model) | |
| nn.init.normal_(self.embed.weight, std=0.02) | |
| def forward(self, token_ids: Tensor) -> Tensor: | |
| # token_ids: (B, S) β (B, S, D) | |
| return self.embed(token_ids) * self.scale | |
| def __repr__(self) -> str: | |
| p = sum(p.numel() for p in self.parameters()) | |
| return f"TokenEmbedding(params={p:,})" | |
| class TemporalPositionEncoder(nn.Module): | |
| """ | |
| RoPE base + learned temporal decay scalars per position. | |
| Decay scalar: sigmoid(w_decay Β· t) where t is the absolute position index | |
| normalised to [0, 1] over max_seq_len. The scalar multiplies the embedding | |
| before it reaches MeshAttention so semantically distant tokens fade. | |
| """ | |
| def __init__(self, cfg: TMTConfig) -> None: | |
| super().__init__() | |
| self.d_model = cfg.d_model | |
| self.max_seq_len = cfg.max_seq_len | |
| self.decay_rate = cfg.decay_rate | |
| # Learned decay weights β one per position dimension pair | |
| self.w_decay = nn.Parameter( | |
| torch.full((cfg.d_model,), cfg.decay_rate) | |
| ) | |
| # RoPE cos/sin cache (not a parameter β regenerated on device change) | |
| self._build_rope_cache(cfg.max_seq_len, cfg.d_model) | |
| def _build_rope_cache(self, max_len: int, d: int) -> None: | |
| half = d // 2 | |
| theta = 1.0 / (10000 ** (torch.arange(0, half, dtype=torch.float32) / half)) | |
| pos = torch.arange(max_len, dtype=torch.float32) | |
| freqs = torch.outer(pos, theta) # (max_len, half) | |
| emb = torch.cat([freqs, freqs], dim=-1) # (max_len, d) | |
| self.register_buffer("rope_cos", emb.cos(), persistent=False) | |
| self.register_buffer("rope_sin", emb.sin(), persistent=False) | |
| def _rotate_half(x: Tensor) -> Tensor: | |
| half = x.shape[-1] // 2 | |
| x1, x2 = x[..., :half], x[..., half:] | |
| return torch.cat([-x2, x1], dim=-1) | |
| def apply_rope(self, x: Tensor, seq_len: int) -> Tensor: | |
| cos = self.rope_cos[:seq_len].unsqueeze(0) # (1, S, D) | |
| sin = self.rope_sin[:seq_len].unsqueeze(0) | |
| return x * cos + self._rotate_half(x) * sin | |
| def forward(self, x: Tensor) -> Tuple[Tensor, Tensor]: | |
| """ | |
| Args: | |
| x: (B, S, D) token embeddings | |
| Returns: | |
| encoded: (B, S, D) with RoPE applied | |
| decay_scalars: (B, S, D) sigmoid decay weights per token-dim | |
| """ | |
| B, S, D = x.shape | |
| # RoPE | |
| x = self.apply_rope(x, S) | |
| # Temporal decay: t β [0, 1] normalised position | |
| t = torch.arange(S, device=x.device, dtype=x.dtype) / max(S - 1, 1) | |
| # w_decay broadcast: (S, D) β decay per token dimension | |
| decay_scalars = torch.sigmoid( | |
| -rearrange(t, "s -> s 1") * rearrange(self.w_decay, "d -> 1 d") | |
| ) # (S, D) | |
| decay_scalars = decay_scalars.unsqueeze(0).expand(B, -1, -1) # (B, S, D) | |
| return x * decay_scalars, decay_scalars | |
| def __repr__(self) -> str: | |
| p = sum(p.numel() for p in self.parameters()) | |
| return f"TemporalPositionEncoder(d={self.d_model}, params={p:,})" | |