Task Sample · Pretrain

Allocate Decoder Width Across Depth

Redistribute a fixed decoder's capacity across its layers to reduce late-training loss without changing the model's overall parameter or compute budget.

Teaser figure from Variable-Width Transformers (><former)
Source project · Variable-Width Transformers · source ↗

The task

Test where decoder capacity is most useful across depth. A candidate redistributes width while staying inside the same overall model and training budgets, and aims to lower loss.

Environment

Reference baseline

The official variable-width allocation is the reference design. Its loss is reported by the source paper rather than rerun beside each candidate; every candidate receives its own fresh training run.

Research loop

  1. Inspect the current allocation and the aggregate feedback from earlier submissions.
  2. Change one aspect of how capacity is distributed and validate the architecture.
  3. Train and score the candidate, then keep, revise, or reject the allocation hypothesis.

What the agent may change

What stays fixed

Evaluation

The Judge reconstructs the submitted architecture and trains it with the fixed trajectory. The reward is negative late-training loss, so a higher score means a lower loss. Only aggregate loss and budget accounting are returned.

Links