Agent skill

transformer-architecture-guide

Guide to Transformer architectures for NLP and computer vision

brycew6m4,252★ · +31/wk · 3 repos on radarProfile →
claude-codeNOASSERTION
Install
npx skills add brycewang-stanford/Auto-Empirical-Research-Skills --skill transformer-architecture-guide --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 8 KB
Bundled scripts: none
Path: skills/43-wentorai-research-plugins/skills/domains/ai-ml/transformer-architecture-guide/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 3,244
Language: Stata
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Transformer Architecture Guide Understand, implement, and adapt Transformer architectures for NLP, computer vision, and multimodal research, from the original attention mechanism to modern variants. ## The Original Transformer The Transformer (Vaswani et al., 2017, "Attention Is All You Need") replaced recurrence and convolution with self-attention as the primary sequence modeling mechanism. ### Core Components | Component | Function | Key Parameters | |-----------|----------|---------------| | Multi-Head Self-Attention | Computes attention weights across all positions | d_model, n_heads, d_k, d_v | | Feed-Forward Network | Position-wise nonlinear transformation | d_model, d_ff | | Positional Encoding | Injects sequence order information | Sinusoidal or learned | | Layer Normalization | Stabilizes training | Pre-norm or post-norm | | Residual Connections | Enables gradient flow in deep networks | Add before or after norm | ### Self-Attention Mechanism ```python import torch import torch.nn as nn import torch.nn.functional as F import math class MultiHeadAttention(nn.Module): def __init__(self, d_model=512, n_heads=8): super().__init__() self.d_model = d_model self.n_heads = n_hea

What's inside
Steps it walks through
  1. The Original Transformer
  2. Core Components
  3. Self-Attention Mechanism
  4. Complete Transformer Block
  5. Major Transformer Variants
  6. Architecture Taxonomy
  7. Encoder-Only (BERT Family)
  8. Decoder-Only (GPT Family)
  9. Vision Transformers (ViT)
  10. Efficient Transformer Variants
  11. Model Scaling Laws
  12. Research Resources
More from Auto-Empirical-Research-Skills
All skills →
About this skill
What does the transformer-architecture-guide skill do?

Guide to Transformer architectures for NLP and computer vision

How do I install it?

Run `npx skills add brycewang-stanford/Auto-Empirical-Research-Skills --skill transformer-architecture-guide --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From brycewang-stanford/Auto-Empirical-Research-Skills, a repository with 3,244 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going