JavaScript is disabled. Some features may not work.
ablation-planner — ★ 12.5K GitHub Stars — Install Guide | SkillsNav
🇺🇸 English🇨🇳 中文
SkillsNav
Home

ablation-planner

★ 12K repomlN/AIntermediateClaude
🤖 AI Summary

This agent skill automatically designs ablation studies by simulating a reviewer’s perspective to identify missing controls, then validates feasibility and implements them using local execution.

How to Install

Claude Code:
git clone --depth 1 https://github.com/wanshuiyin/Auto-claude-code-research-in-sleep.git && cp Auto-claude-code-research-in-sleep/skills/ablation-planner ~/.claude/skills/ablation-planner -r
# Ablation Planner Systematically design ablation studies that answer the questions reviewers will ask. The reviewer agent leads the design; the local executor reviews feasibility and implements. ## Context: $ARGUMENTS ## When to Use - Main results pass `/result-to-claim` with `claim_supported = yes` or `partial` - The user explicitly requests ablation planning - `/auto-review-loop` identifies missing ablations ## Workflow ### Step 1: Prepare Context Read available project files to build the full picture: - Method description and components (from `docs/research_contract.md`, project notes, or method docs) - Current experiment results (from `EXPERIMENT_LOG.md`, `EXPERIMENT_TRACKER.md`, or W&B) - Confirmed and intended claims (from `/result-to-claim` output or project notes) - Available compute resources (from server notes, run configs, or user-provided budget) ### Step 2: Codex Designs Ablations ```text spawn_agent: model: gpt-5.5 reasoning_effort: xhigh message: | You are a rigorous ML reviewer planning ablation studies. Given this method and results, design ablations that: 1. Isolate the contribution of each novel component 2. Answer questions reviewers will definitely ask 3. Test sensitivity to key hyperparameters 4. Compare against natural alternative design choices Method: [description from project files] Components: [list of removable or replaceable components] Current results: [key metrics from experiments] Claims: [what we claim and current evidence] For each ablation, specify: - name: what to change (for example, "remove module X", "replace Y with Z") - what_it_tests: the specific question this answers - expected_if_component_matters: what we predict if the component is important - priority: 1 (must-run) to 5 (nice-to-have) Also provide: - coverage_assessment: what reviewer questions these ablations answer - unnecessary_ablations: experiments that seem useful but will not add insight - suggested_order: run order optimized for maximum early information - estimated_compute: total GPU-hours estimate ``` If delegation is unavailable, generate the same plan locally and mark it `[pending external review]`. ### Step 3: Parse Ablation Plan Normalize the response into a structured format: ```markdown ## Ablation Plan ### Component Ablations (highest priority) | # | Name | What It Tests | Expected If Matters | Priority | |---|------|---------------|---------------------|----------| | 1 | remove module X | contribution of X | performance drops on metric Y | 1 | | 2 | replace X with simpler Z | value of learned vs fixed | drops, especially on dataset A | 2 | ### Hyperparameter Sensitivity | # | Parameter | Values to Test | What It Tests | Priority | |---|-----------|----------------|---------------|----------| | 3 | lambda | [0.01, 0.1, 1.0] | sensitivity to regularization | 3 | ### Design Choice Comparisons | # | Name | What It Tests | Priority

Details

Category AI/ML → ml
Sourcewanshuiyin/Auto-claude-code-research-in-sleep
SKILL.mdView on GitHub →
Repo Stars★ 12.5K
Est. per SkillN/A (shared across 74 skills from this repo)
DifficultyIntermediate
Risk LevelN/A

Related Skills

Works Well With

Skills from the same repository — often designed to work together