docs(program): add hypothesis column to results.tsv format#336
Open
morozow wants to merge 1 commit intokarpathy:masterfrom
Open
docs(program): add hypothesis column to results.tsv format#336morozow wants to merge 1 commit intokarpathy:masterfrom
morozow wants to merge 1 commit intokarpathy:masterfrom
Conversation
- Expand results.tsv from 5 to 6 columns, adding new "hypothesis" column - Update TSV header and column descriptions to include hypothesis field - Define hypothesis as non-obvious ideas to explore based on results - Add guidance to use "-" for baseline runs without hypotheses - Update example table with sample hypothesis values for each experiment - Clarify autonomous researcher guidance to gather hypotheses from results.tsv when generating new experiment ideas - Helps structure iterative research by capturing insights and unexplored combinations for future testing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add hypothesis column to results.tsv for learning
This PR introduces a lightweight mechanism for the agent to accumulate non-obvious research directions during experimentation.
Changes:
hypothesiscolumn toresults.tsvformatprogram.md: column spec and examples for agentWhat is a hypothesis here:
Not a restatement of what was tried (that's
description), but a non-obvious combination, condition, or connection worth exploring later. Example: experiment fails with GeLU → hypothesis is "GeLU might unlock with RMSNorm instead of LayerNorm", not "GeLU didn't work".Why this matters:
When the agent exhausts obvious directions after 50+ experiments, it can revisit its own accumulated hypotheses — ideas it generated in context but never tested. This creates a passive memory that survives context window limits.
Open question – needs A/B testing:
The hypothesis gathering instruction is currently placed at the beginning of the "out of ideas" list. Unclear if it should be first (prioritize own insights) or last (use as final fallback). Requires empirical testing.