원클릭으로
vr-ablation-study
Analyzes existing experiment results and designs/executes ablation experiments to verify the contribution of each component.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Analyzes existing experiment results and designs/executes ablation experiments to verify the contribution of each component.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Skill for writing English text that reads as naturally human-authored, and for reviewing existing English text to detect and fix AI writing tells. Use this skill whenever the user asks to "write naturally", "remove AI tone", "make it sound human", "avoid AI tells", "de-AI", "humanize", "anti-AI writing", "sound less like ChatGPT", or any variation implying they want text free of detectable AI patterns. Also trigger when the user asks to review or edit text for AI-sounding patterns, or when they paste text and ask "does this sound like AI?" Even if the user simply says "write me a blog post" or "write an essay" without explicitly mentioning AI — if this skill is available, apply its principles by default to produce more natural prose.
Brainstorm research ideas and formulate research hypotheses. When a user presents a research topic or area of interest, explore related ideas.
Create a detailed experiment plan for a selected research idea. Define experiment variables, metrics, baselines, and datasets.
Deep literature review with multi-stage search, citation graph traversal, and full-text analysis. Uses Semantic Scholar API, arXiv HTML reading, and snowball search to produce comprehensive research landscape analysis.
Analyzes experiment results and generates publication-quality figures for papers using matplotlib.
Critically reviews a written paper from the perspective of a top-venue reviewer, providing strengths/weaknesses analysis and improvement suggestions.
| name | vr-ablation-study |
| description | Analyzes existing experiment results and designs/executes ablation experiments to verify the contribution of each component. |
| user-invocable | true |
| argument-hint | ["experiment-directory"] |
Performs ablation experiments to systematically verify the contribution of each component in an existing experiment.
$ARGUMENTS - Experiment directory path (e.g., "experiments/experiment_20260305_llm_reasoning")
Optionally, a list of components to ablate can be specified.
config.yaml to identify the experiment's componentsrun.py to understand each component's roleresults/ to determine baseline performanceAutomatically identify components that can be ablated:
If the user specifies components, those components are prioritized.
Design ablation conditions for each component:
Generate config.yaml variants for each condition.
run.py to write the ablation experiment codeablation/ directory# ablation_run.py structure
ablation_conditions = [
{"name": "full_model", "config": {...}},
{"name": "without_component_a", "config": {...}},
{"name": "without_component_b", "config": {...}},
]
for condition in ablation_conditions:
results = run_experiment(condition["config"])
save_results(f"ablation/{condition['name']}.json", results)
Visualize the ablation experiment results:
scripts/plot_style.pySave results under the ablation/ subdirectory of the experiment directory.
experiments/<experiment-dir>/
└── ablation/
├── ablation_config.yaml # Ablation condition definitions
├── ablation_run.py # Ablation experiment execution script
├── results/ # Results per condition
│ ├── full_model.json
│ ├── without_component_a.json
│ └── without_component_b.json
├── ablation_summary.md # Results summary
└── figures/
├── ablation_comparison.pdf
└── ablation_comparison.png
# Ablation Study: [Experiment Name]
Date: [YYYY-MM-DD]
## Ablation Conditions
| Condition | Description | Changes |
|-----------|-------------|---------|
| Full Model | Original model | - |
| -Component A | A removed | [Specific changes] |
| -Component B | B removed | [Specific changes] |
## Results
| Condition | Metric 1 | Metric 2 | Δ from Full |
|-----------|----------|----------|-------------|
| Full Model | X.XX | X.XX | - |
| -Component A | X.XX | X.XX | -X.XX |
| -Component B | X.XX | X.XX | -X.XX |
## Analysis
- Contribution of Component A: [Analysis]
- Contribution of Component B: [Analysis]
- Key findings: [Summary]
## Figures
- `figures/ablation_comparison.pdf`: [Description]
run.py code as much as possible/vr-make-figures to generate additional figures or /vr-write-paper to incorporate into the paper