NanoResearch nanoresearch-experiment
Generate a Python code skeleton from an experiment blueprint
install
source · Clone the upstream repo
git clone https://github.com/OpenRaiser/NanoResearch
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/OpenRaiser/NanoResearch "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/nanoresearch-experiment" ~/.claude/skills/openraiser-nanoresearch-nanoresearch-experiment && rm -rf "$T"
manifest:
skills/nanoresearch-experiment/SKILL.mdsource content
Experiment Skill
Purpose
Take the experiment blueprint and produce a runnable Python code skeleton that implements the proposed method, baselines, training loops, evaluation harness, and ablation configurations.
Tools Required
None. This skill operates entirely through LLM code generation based on the experiment blueprint.
Input
: Path toexperiment_blueprint
produced by the planning skillpapers/experiment_blueprint.json
Process
- Parse the experiment blueprint for datasets, baselines, metrics, and ablation groups
- Generate the project directory structure (data loaders, models, training, evaluation, configs)
- Produce data loading and preprocessing code for each specified dataset
- Implement model architecture stubs for the proposed method and each baseline
- Generate training loop with logging, checkpointing, and early stopping
- Implement the evaluation harness computing all specified metrics
- Create configuration files for each ablation group
- Add a main entry point that accepts a config and runs the full train-evaluate pipeline
Output
Produces
experiments/ directory containing:
: Data loading and preprocessing modulesdata/
: Model architecture implementations (proposed method and baselines)models/
: Training loop and optimization utilitiestraining/
: Metric computation and result aggregationevaluation/
: YAML configuration files for each experiment and ablation variantconfigs/
: Main entry point for launching experimentsrun.py
: Python dependenciesrequirements.txt