Move 37 ↔ Move42 · complete seven-act mirror

One coordinate. One complete algorithm.

The analogy is structural, not equivalence: state, legal action, external consequence, and preserved experience. The decisive difference is the action space—one point in a fixed game versus an executable procedure for a new requirement.

Same mechanism.
Different object.

Each act keeps AlphaGo’s 2016 system on the left, the shared mechanic in the center, and InnovationZero on the right. Open the technical details when you want the machinery. Use J and K to move act by act.

Act 01 / paired mirror

The surprising move

Shared mechanic

An unconventional output earns meaning through what happens after it is chosen, not through surprise alone.

Move 37

Move 37: an unexpected coordinateA hand-drawn Go board marks one unexpected shoulder-line coordinate as Move 37, with a consequence arrow leading to the completed game.MOVE 37PLAY → CONSEQUENCE

In game two against Lee Sedol in March 2016, AlphaGo placed the now-famous Move 37 and went on to win the game.

Technical detail

Move 37 was played by AlphaGo, the system described in the 2016 lineage of policy networks, value networks, and tree search. DeepMind’s official history calls it pivotal and unusually unlikely. AlphaGo Zero was a later self-play-only system, published in 2017; it did not play Move 37.

References

Same

In both stories, the output first looks improbable and becomes significant only because an external consequence vindicates it.

Different

Move 37 selected one board coordinate. Move42 changes the move type to a complete solver: structured code that must fit and predict.

Move 42

Move42: a complete executable solverA hand-drawn program card unfolds into a complete fit-and-predict solver, crosses execution gates, and ends in an independently checkable receipt.COMPLETE ARTIFACTFITPREDICTCOMPLETE SOLVER

Move42 proposes an executable artifact as the move for a technical requirement; the current historical study does not establish prospective one-proposal performance.

Technical detail

The artifact is not a suggestion or score prediction: it is a solver whose code must survive the evaluator’s parse, fit, predict, resource, and output-shape contract. The active paper separates that output thesis from a future frozen one-proposal evaluation.

References

Act 02 / paired mirror

What the system sees

Shared mechanic

The observed state conditions the next action: neither system chooses in a vacuum.

Move 37

AlphaGo board state and recent-position featuresA sketched 19-by-19 Go state with recent black and white stones feeds a compact stack of board-history feature planes.RECENTSTONESHISTORYTO MOVESTABLE SEMANTICS

AlphaGo receives a 19×19 position and recent-position features whose meaning remains stable from game to game.

Technical detail

The 2016 system represents the current Go position and move history for its neural networks. Stones, liberties, legality, side to move, and the terminal objective all live inside one enduring game specification.

References

Same

Both systems turn a visible situation into a representation used to condition what can be proposed next.

Different

A Go board has fixed rules and stable semantics. Each dataset—together with its target and evaluator—defines a new learning problem.

Move 42

Dataset state, target summary, and evaluation contractA sketched data table flows into dataset and target summaries beside a sealed evaluation contract with metric, split, and resource labels.TABLEDATASETREPRESENTATIONTARGETSUMMARYEVALUATION CONTRACT

Move42 receives a table, a dataset representation, a target summary, and the evaluation contract that will judge the result.

Technical detail

Rows, columns, missingness, feature types, target geometry, split rules, metric, resource limits, and failure rules together define the task state. The same token sequence can be useful on one dataset and invalid or weak on another.

References

Act 03 / paired mirror

Policy and value

Shared mechanic

A learned policy proposes promising actions while learned value concentrates attention on choices likely to matter.

Move 37

AlphaGo policy and value networksA board state splits into policy probabilities over legal points and a value estimate, then rejoins at one selected Go move.BOARDSTATEPOLICYP(MOVE)VALUEP(WIN)MOVE

AlphaGo’s policy network supplies move probabilities while its value network estimates the likely winner from a position.

Technical detail

The 2016 paper combines policy and value networks with tree search. Policy priors guide which legal continuations deserve attention; value estimates help evaluate leaf positions without playing every continuation to the end.

References

Same

Both architectures use learned experience to narrow a vast action space before consequence supplies the final judgment.

Different

AlphaGo chooses among legal points. Move42 emits variable-length structured program tokens whose dependencies must compose into code.

Move 42

Move42 dataset encoder, grammar decoder, and reward ensembleA dataset encoder feeds a causal grammar decoder, while a reward ensemble guides a variable-length stream of executable program tokens.DATASETENCODERCAUSALGRAMMARDECODERREWARDENSEMBLEPIPESCALERIDGEEND

The reported Move42 architecture pairs a dataset encoder with a causal grammar decoder and a reward ensemble over program tokens.

Technical detail

The dataset representation conditions a decoder over structured algorithm grammar. A reward ensemble guides which variable-length sequences are promising, but the emitted tokens still have to form a complete executable pipeline under the external referee.

References

Act 04 / paired mirror

Search and the first move

Shared mechanic

Learned experience concentrates effort on promising actions, but the timing of search changes the claim being tested.

Move 37

Monte Carlo tree search before a Go moveA hand-drawn Monte Carlo tree branches from the current Go position, backs up values, and narrows to one selected first branch.ROOTSELECTMOVEEXPAND · EVALUATE · BACK UP

Monte Carlo tree search expands and evaluates possible continuations, then selects a move from the improved search distribution.

Technical detail

At each turn, AlphaGo uses policy priors, simulated continuations, and value estimates inside tree search. Move 37 therefore emerged from task-time search over the current game position, not from a no-search policy sample.

References

Same

Both systems can spend evaluation on promising continuations instead of treating every possible action equally.

Different

AlphaGo searches during every move. Move42 asks whether experience across prior requirements can improve a later executable proposal before a new task-time loop.

Move 42

Task-time search and learning across requirementsOne path loops through task-time proposal and inspection while a second carries receipts across prior requirements toward a later frozen proposal study.POLICYSTATELATER PROPOSALFROZEN STUDYTASK-TIME LOOPSEPARATE QUESTIONS

Task-time search and across-requirement learning answer different questions; a future frozen one-proposal study must evaluate the latter directly.

Technical detail

AutoResearch-style loops can evaluate and revise proposals after a requirement arrives. Move42 aims to change the distribution that produces a later executable proposal across requirements. Hybrids can use both, but the current historical top-one record does not establish the prospective one-proposal result.

References

Act 05 / paired mirror

The referee

Shared mechanic

Self-assessment is not enough: an external consequence determines whether the chosen action had value.

Move 37

Go legality and terminal result refereeA legal Go move enters a completed-game track and reaches a win-or-loss seal, while an illegal move exits immediately.MOVELEGAL?COMPLETEDGAMEILLEGALEXITW/L

A legal move changes the board; the completed game eventually supplies the unambiguous win-or-loss consequence.

Technical detail

Go rules reject illegal placement and define how play terminates and is scored. Intermediate value estimates help search, but the played game—not AlphaGo’s confidence in itself—settles the competitive result.

References

Same

A proposal earns credit only when the environment completes the test and returns an outcome outside the proposing model.

Different

Go has compact legality and a terminal win or loss. Program legality and utility require a much richer, failure-aware referee.

Move 42

Program execution referee and failure exitsSix hand-drawn gates—parse, compile, fit, predict, score, and receipt—form a pipeline with a labeled failure exit below each gate.PARSECOMPILEFITPREDICTSCORERECEIPTFAILURE EXITS ARE OUTCOMESHASH-BOUND

The program referee must parse, compile, fit, predict, score, and emit a hash-bound receipt, with failure exits at every gate.

Technical detail

Syntax failure, compile failure, resource breach, fit failure, malformed prediction, and scoring failure all receive explicit treatment. Artifact, dataset, split, evaluator, and outcome remain bound so apparent elegance cannot substitute for reproducible utility.

References

Act 06 / paired mirror

How experience becomes training

Shared mechanic

Measured outcomes become later training signals, allowing successful experience to reshape future proposals.

Move 37

AlphaGo expert and self-play training lineageExpert games feed a supervised policy, which enters self-play and then reinforcement and value training before later Go proposals.EXPERTGAMESSUPERVISEDPOLICYSELF-PLAYREINFORCEMENTVALUETRAINING+ POLICY

The 2016 AlphaGo lineage moved from expert games to a supervised policy, then self-play reinforcement and value training.

Technical detail

Human expert moves first train a policy; self-play strengthens the policy and supplies outcomes for value learning. AlphaGo Zero was a later system trained without human game data and belongs to the lineage—not to the 2016 Move 37 event.

References

Same

Both lineages convert played experience into updated parameters that influence later policy and value judgments.

Different

Move42 cannot backpropagate through arbitrary executed code. Measurements return as stored labels and rankings, then train later proposals.

Move 42

Move42 stored-measurement training loopExecuted programs send stored score, ranking, runtime, and stability labels around a broken-gradient boundary into update, validation, and promotion.SCOREDPROGRAMSSTORED LABELSSCORE · RANKRUNTIME · STABILITYNO GRADIENTTHROUGH CODEGRADIENTUPDATEVALIDATE → PROMOTE → LATER PROPOSALS

A scored algorithm corpus supplies sequence, ranking, runtime, and stability objectives for gradient updates and later proposals.

Technical detail

Programs execute outside the differentiable model. Gradients do not pass through executed code; measurements return as stored labels and rankings. Updates face validation and promotion before shaping later proposals. The reported campaign records 36 generations, 7 promotions, 375,522 processed rows, and 36.42 generation-hours; the raw trajectory is not monotonic.

References

Act 07 / paired mirror

One coordinate versus one program

Shared mechanic

State becomes policy, policy becomes action, consequence becomes experience, and experience conditions what happens later.

Move 37

A Go probability surface collapses to one coordinateA probability surface over a sketched 19-by-19 board narrows through a funnel and lands on one highlighted coordinate.POLICY SURFACEONE POINTACTION

A probability surface over the 19×19 board collapses to one legal coordinate, where one stone changes the position.

Technical detail

The action vocabulary is fixed by Go: at a turn, choose a legal point or pass. Even a historically surprising choice such as Move 37 remains one coordinate interpreted by the same rules as every other move.

References

Same

Both stories close the loop: state → policy → action → consequence → experience.

Different

Move42 predicts a task-specific inductive bias and executable procedure—not merely an answer inside one fixed game.

Move 42

Dataset-conditioned tokens compile into a fit-predict programDataset-conditioned tokens assemble into transformations and a model, compile, and then branch into fit and predict outputs under a receipt.DATASETSTATEPIPESCALEMODELPARAMSCOMPILEREXECUTABLEFITPREDICTTASK-SPECIFIC INDUCTIVE BIAS

A dataset-conditioned token sequence compiles into an executable fit-and-predict pipeline: a task-specific procedure, not one answer.

Technical detail

The sequence chooses transformations, model family, hyperparameters, and composition—an inductive bias expressed as executable procedure. Reported strict, bounded, frontier, campaign, atlas, and historical evidence remain separate; the evidence does not establish universality, causal mechanism, or safety beyond the tested record.

References

Evidence and limits

The analogy is a thesis, not a score transfer.

The atlas is historical and outcome-ranked, not a prospective win-rate study. The active paper states that historical top-one results did not establish a frozen one-proposal result. Legacy protocol scores remain accessible only as audit receipts on the evidence route.

Inspect audit receipts and provenance