deep-learning-expert

deep-learning-expert is a skill for Claude Code from Miaoge-Ge/coding-agent-skills. It costs 100 tokens per session (3,286 once invoked), scanned A, original, MIT.

A guide to deep learning, a form of machine learning that trains neural networks on large amounts of data. It covers model design, training, debugging, research papers, and PyTorch or TensorFlow.

In plain words
What is it for?
Use it to design or train models, reproduce research, compare architectures, prepare data, fine-tune existing models, and improve deployment or inference.
Why use it?
It helps diagnose problems such as overfitting, underfitting, unstable gradients, failed training, or slow learning. It also helps choose and improve model designs.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the deep-learning-expert plugin — 1 skill shipped together

Good fit Use it to design or train models, reproduce research, compare architectures, prepare data, fine-tune existing models, and improve deployment or inference.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/miaoge-ge/coding-agent-skills/deep-learning-expert
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add Miaoge-Ge/coding-agent-skills --skill deep-learning-expert
Clone the repo
git clone --depth 1 https://github.com/Miaoge-Ge/coding-agent-skills

Made for: Claude Code.

Or install deep-learning-expert, the plugin that ships this one along with the rest of its 1 skill.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for deep-learning-expert

README.md
[![agentmods](https://agentmods.dev/badge/skills/miaoge-ge/coding-agent-skills/deep-learning-expert.svg)](https://agentmods.dev/skills/miaoge-ge/coding-agent-skills/deep-learning-expert)
Your own site
<a href="https://agentmods.dev/skills/miaoge-ge/coding-agent-skills/deep-learning-expert"><img src="https://agentmods.dev/badge/skills/miaoge-ge/coding-agent-skills/deep-learning-expert.svg" alt="Measured on agentmods" height="20"></a>
Per session 100 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,286 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00100 $0.03286
Opus 5 $0.00050 $0.01643
Sonnet 5 $0.00020 $0.00657
Haiku 4.5 $0.00010 $0.00329

Measured 8d ago against content hash f7c2af674230, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

deep-learning-expert scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/deep-learning-expert/skills/deep-learning-expert/SKILL.md · 292 lines

How it starts

The opening of the file, as written. The whole thing — 292 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Deep Learning Modeling and Optimization

Description

Provide deep learning model design, training optimization, problem diagnosis, and engineering practice guidance to ensure models meet requirements for accuracy, efficiency, and deployability.

When to Use

  • User requests "design a deep learning model" or "how to train XX task"
  • User asks about training issues (overfitting, underfitting, gradient vanishing/explosion, NaN, slow convergence)
  • User needs paper reproduction or cutting-edge technology analysis (Transformer, Diffusion, ViT, etc.)
  • User seeks framework usage recommendations (PyTorch, TensorFlow, JAX) or code implementation
  • User asks about best practices in CV, NLP, reinforcement learning domains
  • User needs model compression, quantization, deployment, or inference optimization solutions
  • User requests data processing, data augmentation, or sampling strategy recommendations
  • User compares different model architectures or training strategies

When NOT to Use

  • User only needs traditional machine learning methods (e.g., decision trees, SVM, linear regression) without deep learning
  • User's problem is pure data analysis or statistics without model training
  • User only needs data preprocessing or feature engineering without model design
  • User's problem is algorithm competition or pure programming without deep learning modeling
  • User needs MLOps platform setup or team management rather than specific technical solutions

Input

{
  task: {
    type: string                  // Task type (classification/detection/segmentation/generation/sequence-modeling/RL)
    domain: string                // Application domain (CV/NLP/audio/multimodal/time-series)
    specificTask?: string         // Specific task (e.g., image-classification → CIFAR-10)
  }
  data: {
    size?: string                 // Dataset size (e.g., "10k samples")
    quality?: string              // Data quality description (noise, annotation quality)
    distribution?: string         // Class distribution (balanced/long-tail)
    labelAvailability?: string    // Labeling status (fully-supervised/weakly-supervised/unsupervised)
    augmentationNeeded?: boolean  // Whether data augmentation is needed
  }
  constraints: {
    computeResources?: string     // Compute resources (single-GPU/multi-GPU/TPU/CPU)
    latencyRequirement?: string   // Latency requirement (e.g., "inference <50ms")
    accuracyTarget?: string       // Accuracy target (e.g., "top-1 acc >90%")
    modelSizeLimit?: string       // Model size limit (e.g., "<100MB")
    budget?: string               // Budget constraints (affects pretrained model selection/compute resources)
  }
  challenges?: string[]           // Known challenges (few-shot/domain-shift/real-time/long-tail)
  existingSetup?: {
    framework?: string            // Existing framework (PyTorch/TensorFlow/JAX)
    baseModel?: string            // Existing base model
    trainingIssues?: string[]     // Current training issues
  }
}

Read the full file on GitHub · 292 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 292 lines · 100 tokens per session scan A f7c2af674230

Subscribe to this mod's changes

deep-learning-expert is a skill published in the GitHub repository Miaoge-Ge/coding-agent-skills (5 stars, last pushed 3mo ago), licensed MIT. It adds 100 tokens to every session and 3,286 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

yolo-training

This skill should be used when user asks to "improve my mAP", "why is my model overfitting", "my training is diverging", "read my results.csv", "interpret my training curves", "my AP50 is good but AP50-95 is bad", "my recall is low", "how do I pick learning rate", "which augmentations should I use", "should I use a…

fcakyon/claude-codex-settings · 124 tokens

alterlab-pyhealth

Develops, tests, and deploys clinical machine learning models with the PyHealth healthcare AI toolkit. Use when working with electronic health records (EHR), clinical prediction tasks (mortality, readmission, drug recommendation), medical coding systems (ICD, NDC, ATC), physiological signals (EEG, ECG), healthcare…

AlterLab-IEU/AlterLab-Academic-Skills · 117 tokens

alterlab-esm

Run ESM protein language models — ESM3 for generative multimodal protein design across sequence, structure, and function, and ESM C for efficient embeddings and representations — locally or via the cloud Forge API. Use when working with protein sequences, structures, or function prediction, designing novel proteins…

AlterLab-IEU/AlterLab-Academic-Skills · 89 tokens

alterlab-deepchem

Runs molecular machine learning with DeepChem — diverse featurizers, pre-built MoleculeNet benchmark datasets, and pre-trained models (ChemBERTa, GROVER) for property prediction (ADMET, toxicity, solubility) via traditional ML or graph neural networks. Use when running end-to-end molecular ML experiments that need…

AlterLab-IEU/AlterLab-Academic-Skills · 126 tokens

alterlab-molfeat

Featurizes molecules for machine learning with molfeat (100+ featurizers) — ECFP/MACCS/MAP4 fingerprints, RDKit and Mordred physicochemical descriptors, and pretrained embeddings (ChemBERTa, ChemGPT, GIN) exposed as scikit-learn transformers that convert SMILES into feature vectors. Use when turning molecules into…

AlterLab-IEU/AlterLab-Academic-Skills · 143 tokens

alterlab-geniml

Machine learning on genomic interval data (BED files) with the geniml Python package — region embeddings (Region2Vec), joint region+metadata embeddings (BEDspace/StarSpace), single-cell ATAC-seq embeddings (scEmbed), consensus peak sets / universes (build-universe), tokenization, BEDshift randomization, and…

AlterLab-IEU/AlterLab-Academic-Skills · 152 tokens