用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/brycewang-stanford/Auto-Empirical-Research-Skills --skill pytorch-guide命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Route empirical-research requests through the Auto-Empirical Research Skills catalog when this whole repository is installed as one skill in Codex, CodeBuddy, Claude Code, or another IDE. Use to choose and load the right vendored AERS skill for causal inference, econometrics, replication, data acquisition, manuscript writing, peer review and referee responses, citation checking, de-AIGC editing, or full empirical-paper workflows without reading the entire repository at once.
中英双语学术降 AIGC / bilingual academic de-AIGC skill. Removes AI-generated writing signatures from empirical papers in economics, management, and the social sciences — in both English and Chinese. Covers Turnitin AI, GPTZero, Originality.ai on the English side and 知网 AMLC, 万方, 维普 on the Chinese side. Uses a six-step loop (intake → audit → claim-evidence check → differentiated rewrite → five-dimension self-score → cold-reader recheck) with two pattern libraries (22 English + 17 Chinese patterns), section-by-section strategies for empirical papers, and hard protections that keep every number, coefficient, and citation intact.
Use when a research task needs reproducible Kaggle discovery, metadata inspection, bounded public-data downloads, competition or kernel discovery, model discovery, or an explicitly approved Kaggle write/delete operation through the official CLI.
正在显示 SKILL.md
基于 SOC 职业分类
| name | pytorch-guide |
| description | Avoid common PyTorch mistakes and apply robust training patterns |
| metadata | {"openclaw":{"emoji":"🔥","category":"domains","subcategory":"ai-ml","keywords":["PyTorch","deep learning","training loop","GPU","debugging","autograd"],"source":"https://github.com/pytorch/pytorch"}} |
PyTorch is the dominant deep learning framework in academic research, used in the majority of papers at NeurIPS, ICML, and ICLR. Its eager execution model, Pythonic API, and seamless integration with the Python scientific stack make it the default choice for prototyping and publishing research code.
However, PyTorch's flexibility is a double-edged sword. Subtle bugs -- forgetting model.eval(), accumulating gradients across batches, incorrect device placement, memory leaks from detached tensors -- can silently corrupt results without raising errors. These issues are especially dangerous in research settings where ground truth is unknown.
This guide catalogs the most common PyTorch mistakes, provides battle-tested training patterns, and covers performance optimization techniques that every researcher should know. The patterns here are drawn from top-tier ML research codebases and the PyTorch team's own best practice recommendations.
# MISTAKE 1: Forgetting model.eval() and torch.no_grad()
# This causes dropout and batch norm to behave incorrectly during evaluation
# and wastes memory by tracking gradients
# WRONG
def evaluate(model, dataloader):
total_correct = 0
for x, y in dataloader:
output = model(x) # Dropout still active! BN using batch stats!
total_correct += (output.argmax(1) == y).sum().item()
# RIGHT
@torch.no_grad()
def evaluate(model, dataloader):
model.eval()
total_correct = 0
for x, y in dataloader:
output = model(x)
total_correct += (output.argmax(1) == y).sum().item()
model.train() # Restore training mode
return total_correct
# MISTAKE 2: Not zeroing gradients (they accumulate by default!)
# WRONG - gradients from previous batch add to current batch
for x, y in dataloader:
loss = criterion(model(x), y)
loss.backward()
optimizer.step()
# RIGHT
for x, y in dataloader:
optimizer.zero_grad() # Clear previous gradients
loss = criterion(model(x), y)
loss.backward()
optimizer.step()
# BETTER (slightly faster, avoids memset)
for x, y in dataloader:
optimizer.zero_grad(set_to_none=True)
loss = criterion(model(x), y)
loss.backward()
optimizer.step()
# MISTAKE 3: Memory leaks from tensor operations in metrics
# WRONG - keeps entire computation graph in memory
losses = []
for x, y in dataloader:
loss = criterion(model(x), y)
losses.append(loss) # Retains computation graph!
# RIGHT - detach from graph and move to CPU
losses = []
for x, y in dataloader:
loss = criterion(model(x), y)
losses.append(loss.item()) # .item() extracts Python scalar
# MISTAKE 4: Incorrect device placement
# WRONG - model on GPU, data on CPU
model = model.cuda()
for x, y in dataloader:
output = model(x) # RuntimeError: tensors on different devices
# RIGHT
device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
model = model.to(device)
for x, y in dataloader:
x, y = x.to(device), y.to(device)
output = model(x)
# MISTAKE 5: Mutable default arguments in dataset transforms
# WRONG
class MyDataset(Dataset):
def __init__(self, data, transforms=[]): # Shared mutable list!
self.transforms = transforms
# RIGHT
class MyDataset(Dataset):
def __init__(self, data, transforms=None):
self.transforms = transforms or []
import torch
import torch.nn as nn
from torch.utils.data import DataLoader
from torch.cuda.amp import autocast, GradScaler
import time
def train(
model: nn.Module,
train_loader: DataLoader,
val_loader: DataLoader,
optimizer: torch.optim.Optimizer,
scheduler,
num_epochs: int,
device: torch.device,
use_amp: bool = True,
):
"""Production-quality training loop with mixed precision and checkpointing."""
criterion = nn.CrossEntropyLoss()
scaler = GradScaler(enabled=use_amp)
best_val_loss = float("inf")
for epoch in range(num_epochs):
# --- Training ---
model.train()
train_loss = 0.0
t0 = time.time()
for batch_idx, (x, y) in enumerate(train_loader):
x, y = x.to(device, non_blocking=True), y.to(device, non_blocking=True)
optimizer.zero_grad(set_to_none=True)
with autocast(enabled=use_amp):
output = model(x)
loss = criterion(output, y)
scaler.scale(loss).backward()
scaler.unscale_(optimizer)
torch.nn.utils.clip_grad_norm_(model.parameters(), max_norm=1.0)
scaler.step(optimizer)
scaler.update()
train_loss += loss.item()
scheduler.step()
avg_train_loss = train_loss / len(train_loader)
# --- Validation ---
model.eval()
val_loss = 0.0
correct = 0
total = 0
torch.no_grad():
x, y val_loader:
x, y = x.to(device, non_blocking=), y.to(device, non_blocking=)
autocast(enabled=use_amp):
output = model(x)
loss = criterion(output, y)
val_loss += loss.item()
correct += (output.argmax() == y).().item()
total += y.size()
avg_val_loss = val_loss / (val_loader)
val_acc = correct / total
avg_val_loss < best_val_loss:
best_val_loss = avg_val_loss
torch.save({
: epoch,
: model.state_dict(),
: optimizer.state_dict(),
: avg_val_loss,
}, )
elapsed = time.time() - t0
(
)
| Technique | Speedup | Effort | When to Use |
|---|---|---|---|
| Mixed precision (AMP) | 1.5-3x | Low | Always on modern GPUs |
torch.compile() | 1.2-2x | Low | PyTorch 2.0+, stable models |
pin_memory=True in DataLoader | 1.1-1.3x | Trivial | Always with GPU training |
non_blocking=True in .to() | 1.05-1.1x | Trivial | Always with pinned memory |
| Gradient accumulation | N/A | Low | When batch size limited by memory |
torch.backends.cudnn.benchmark = True | 1.1-1.5x | Trivial | Fixed input sizes |
| Distributed Data Parallel | Near-linear | Medium | Multi-GPU training |
# Check GPU memory usage
print(f"Allocated: {torch.cuda.memory_allocated() / 1e9:.2f} GB")
print(f"Cached: {torch.cuda.memory_reserved() / 1e9:.2f} GB")
# Force garbage collection when debugging OOM
torch.cuda.empty_cache()
import gc; gc.collect()
# Gradient accumulation for effective large batch sizes
accumulation_steps = 4
for i, (x, y) in enumerate(dataloader):
loss = criterion(model(x.to(device)), y.to(device)) / accumulation_steps
loss.backward()
if (i + 1) % accumulation_steps == 0:
optimizer.step()
optimizer.zero_grad(set_to_none=True)
import torch
import numpy as np
import random
def seed_everything(seed=42):
random.seed(seed)
np.random.seed(seed)
torch.manual_seed(seed)
torch.cuda.manual_seed_all(seed)
torch.backends.cudnn.deterministic = True
torch.backends.cudnn.benchmark = False
# For DataLoader workers
def seed_worker(worker_id):
worker_seed = seed + worker_id
np.random.seed(worker_seed)
random.seed(worker_seed)
return seed_worker
seed_worker = seed_everything(42)
dataloader = DataLoader(
dataset, batch_size=32, shuffle=True,
worker_init_fn=seed_worker,
generator=torch.Generator().manual_seed(42),
)
torch.no_grad() for inference. It reduces memory usage by ~50%.model.to(device) over .cuda(). It is device-agnostic and works on CPU, CUDA, and MPS.torch.compile(model) on PyTorch 2.0+ for free speedups on stable architectures.torch.profiler to find actual bottlenecks.requirements.txt. Different versions can produce different numerical results.torchinfo for model summary instead of printing the model object.