Agent skill

deep-learning-papers-guide

Annotated deep learning paper implementations with code walkthroughs

brycew6m4,252★ · +31/wk · 3 repos on radarProfile →
claude-codeNOASSERTION
Install
npx skills add brycewang-stanford/Auto-Empirical-Research-Skills --skill deep-learning-papers-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/deep-learning-papers-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

# Deep Learning Papers Guide ## Overview Understanding deep learning architectures requires more than reading papers -- it requires reading and writing code. The annotated_deep_learning_paper_implementations repository (65,800+ stars) provides line-by-line annotated implementations of seminal deep learning papers in PyTorch, making it one of the most valuable learning resources in the field. This guide organizes the key architectures by category, provides implementation patterns for the most important building blocks, and offers strategies for going from paper to working code. Whether you are implementing a Transformer variant for your research, understanding a GAN architecture for your experiments, or teaching a deep learning course, these patterns accelerate the process. The focus is on practical understanding: what each component does, why it is designed that way, and how to implement it correctly in PyTorch. ## Core Architecture Families ### Transformer Architectures The Transformer (Vaswani et al., 2017) is the foundation of modern NLP and increasingly of computer vision. #### Multi-Head Self-Attention ```python import torch import torch.nn as nn import math class MultiHeadAtt

What's inside
Steps it walks through
  1. Overview
  2. Core Architecture Families
  3. Transformer Architectures
  4. Convolutional Neural Networks
  5. Key Architecture Comparison
  6. Training Patterns
  7. Standard Training Loop
  8. Learning Rate Scheduling
  9. From Paper to Code: A Methodology
  10. Best Practices
  11. References
More from Auto-Empirical-Research-Skills
All skills →
About this skill
What does the deep-learning-papers-guide skill do?

Annotated deep learning paper implementations with code walkthroughs

How do I install it?

Run `npx skills add brycewang-stanford/Auto-Empirical-Research-Skills --skill deep-learning-papers-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