Auto Research Agent

A reference framework for understanding autonomous AI research pipelines. Learn how AI can optimize ML training with fixed time budgets and metric-driven iteration.

Audits

Pending

Install

openclaw skills install gpu-research

AutoResearch Framework

A reference guide for understanding how autonomous AI research works. This skill documents the methodology from karpathy/autoresearch for educational purposes.

What This Is

This skill does NOT run any code. It serves as a reference for understanding:

  • Fixed time budget experiments (5 minutes)
  • Metric-driven iteration (val_bpb)
  • Single-file training scope
  • Self-contained ML training setup

Key Concepts

ConceptDescription
val_bpbValidation bits per byte — lower is better
Fixed BudgetExperiments run for exactly 5 minutes
Single ScopeOne file to modify per experiment

Architecture Overview

The framework consists of three files:

FilePurpose
prepare.pyData preparation (do not modify)
train.pyModel training loop reference
program.mdResearch strategy template

Design Patterns

  • Fixed time budget: Makes experiments directly comparable
  • Single file scope: Keeps changes manageable
  • Metric-driven: Uses val_bpb to compare results

For Educational Use

This skill is a reference implementation based on karpathy/autoresearch by Andrej Karpathy. It demonstrates autonomous research methodologies used in modern AI development.

Inspiration

Based on karpathy/autoresearch by Andrej Karpathy.