Agent skill

deep-learning

Build and train neural networks with PyTorch - MLPs, CNNs, and training best practices

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill deep-learning --agent claude-code

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

Facts
Files in the skill folder: 2
SKILL.md size: 6 KB
Bundled scripts: none
Version: 1.4.0
Path: skills/ai-ml/deep-learning/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

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

From the SKILL.md

# Deep Learning Skill > Build and train neural networks using PyTorch. ## Quick Start ```python import torch import torch.nn as nn from torch.utils.data import DataLoader, TensorDataset # Define model class SimpleNN(nn.Module): def __init__(self, input_dim, hidden_dim, output_dim): super().__init__() self.layers = nn.Sequential( nn.Linear(input_dim, hidden_dim), nn.ReLU(), nn.Dropout(0.3), nn.Linear(hidden_dim, output_dim) ) def forward(self, x): return self.layers(x) # Train model = SimpleNN(10, 64, 2) optimizer = torch.optim.AdamW(model.parameters(), lr=1e-3) criterion = nn.CrossEntropyLoss() for epoch in range(10): model.train() for batch_x, batch_y in train_loader: optimizer.zero_grad() output = model(batch_x) loss = criterion(output, batch_y) loss.backward() optimizer.step() ``` ## Key Topics ### 1. Neural Network Architectures | Architecture | Use Case | Key Layers | |-------------|----------|------------| | **MLP** | Tabular data | Linear, ReLU, Dropout | | **CNN** | Images | Conv2d, MaxPool2d, BatchNorm | | **RNN/LSTM** | Sequences | LSTM, GRU | | **Transformer** | NLP, Vision | MultiheadAttention | ```python class MLP(nn.Module): def __init__(self, dims, dropout=0.3): supe

What's inside
Steps it walks through
  1. Quick Start
  2. Key Topics
  3. 1. Neural Network Architectures
  4. 2. Training Loop Template
  5. 3. Learning Rate Scheduling
  6. 4. Regularization
  7. 5. Model Checkpointing
  8. Best Practices
  9. DO
  10. DON'T
  11. Exercises
  12. Exercise 1: Basic MLP
  13. Exercise 2: Training with AMP
  14. Unit Test Template
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
What does the deep-learning skill do?

Build and train neural networks with PyTorch - MLPs, CNNs, and training best practices

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill deep-learning --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 majiayu000/claude-skill-registry, a repository with 534 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