.claude/skills/final-exp/SKILL.md
WF9 ablation experiment plan. Design ablation experiments, hyperparameter searches, robustness tests, and cross-dataset evaluations meeting top-venue standards, estimate computation budget, and output Final_Experiment_Matrix.md. Use when main experiments are complete and ablation studies need to be designed.
npx skillsauth add linzhe001/Harness-Research final-expInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
First, read PROJECT_STATE.json to get target_venue and experiment context. For the output format, see templates/experiment-matrix.md. For language behavior, see ../../shared/language-policy.md. </context>
<instructions> 1. **Read prerequisite materials**Read Stage_Report.md, extracting:
Design ablation experiments
Design ON/OFF experiments for each novel component:
| Experiment ID | Component A | Component B | Component C | Expected Result | |---------------|-------------|-------------|-------------|-----------------| | Baseline | OFF | OFF | OFF | Baseline performance | | Exp-1 | ON | OFF | OFF | Validate A's contribution | | Exp-2 | OFF | ON | OFF | Validate B's contribution | | Exp-3 | OFF | OFF | ON | Validate C's contribution | | Exp-AB | ON | ON | OFF | Validate A+B synergy | | Full | ON | ON | ON | Full method |
Principle: Each experiment changes only one variable to ensure individual component contributions can be isolated.
Hyperparameter search space
Define hyperparameters to search and their ranges:
search_space:
learning_rate: [1e-4, 5e-4, 1e-3]
weight_decay: [0, 1e-4, 1e-3]
# ... other key hyperparameters
Recommended search strategy: Grid Search (small space) or Random Search (large space).
Robustness tests
Design edge case tests:
Cross-dataset evaluation
List datasets on which generalization should be validated:
Computation budget
Estimate total GPU hours:
| Experiment Type | Count | Duration Each | GPU Type | Total | |-----------------|-------|---------------|----------|-------| | Ablation experiments | N | Xh | ... | NXh | | Hyperparameter search | M | Yh | ... | MYh | | Robustness tests | K | Zh | ... | KZh | | Cross-dataset | J | Wh | ... | JWh | | Total | | | | XXh |
Output experiment matrix
Write to docs/Final_Experiment_Matrix.md, including:
Preserve the template structure, but localize headings and narrative text according to ../../shared/language-policy.md unless a field is explicitly marked English-only.
Update project state
Update PROJECT_STATE.json:
current_stage.status → "completed"artifacts.experiment_matrix → file pathhistory
</instructions>
development
WF7.5 training pipeline validation. Before entering WF8 iteration, first use Codex to review code for baseline equivalence, then run a 100-step smoke test to verify end-to-end pipeline functionality.
business
WF1 Inspiration survey and gap analysis. Takes the user's research idea, performs literature search, gap analysis, competitor analysis, and feasibility scoring, then outputs Feasibility_Report.md. Use when the user has a new CV research idea that needs a feasibility assessment.
tools
WF10 Submission/Release Tool. Multi-scene training, result packaging, filename validation, dry-run submission checks. Used after ablation experiments are complete and before competition submission.
development
WF2 Architecture refinement and MVP design. Reads the feasibility report, analyzes the base codebase architecture, designs plug-and-play new modules, defines the MVP, provides A/B/C alternative plans, and outputs Technical_Spec.md. Use when a research idea needs to be translated into a concrete technical architecture design.