We focus this website on the main DAPO-Math-17K experiments with Qwen3-8B-Base,
which provide the clearest view of the curriculum tradeoffs studied in the paper. The full paper additionally
reports other model sizes, policy optimization algorithms, ablations, and appendix experiments in additional
domains. Here, we organize the main evidence around three interacting axes of curriculum design:
productivity, diversity, and utility.
Productivity measures whether sampled prompts produce useful RLVR updates.
The most productive problems often lie in a “Goldilocks zone” of difficulty:
not so easy that the model always succeeds, and not so hard that it always fails.
These problems create variation across attempts, giving the policy a learning signal for improvement.
We track this in two ways. Effective Ratio measures how many
sampled prompts produce nonzero learning signal, measured by rollout reward variance.
Learning Speed measures how quickly the policy improves on the
training set. Dynamic Sampling finds productive prompts by repeatedly searching for
batches with reward variation, but this extra search increases wall-clock cost.
BMC instead uses the Latent Task Tree to predict and target productive problems directly.
Takeaway: On Qwen3-8B-Base, BMC matches
Dynamic Sampling's learning speed without its wall-clock overhead. More broadly,
BMC provides a structured middle ground between cheap uniform sampling and
expensive resampling-based curricula.
Productivity is only the first axis: the next sections ask whether productive sampling
also preserves coverage and aligns with downstream evaluation goals.
Diversity measures how well a sampling method preserves coverage of problem types
on the latent task manifold. Since training datasets are often imbalanced, a flat,
difficulty-driven sampler can focus narrowly on a small set of productive problem
types. A diversity-only sampler (the “Tree Only” ablation of BMC) instead emphasizes
broad type exposure. BMC is designed to jointly balance these objectives.
Utility asks whether a sampling method improves the capabilities or evaluations we
actually care about. Productive prompts are not always evaluation-relevant prompts:
a sampler can find high learning signal while under-sampling regions that matter for
downstream tests. Likewise, broad diversity is not helpful if the additional
coverage falls into evaluation deadzones: regions of the latent task
manifold that are productive, but weakly related to the target evaluations.
Utility is evaluation-dependent: methods that improve one benchmark family can
underperform on another. Full method-by-method breakdowns are provided in the paper.
The evaluation deadzone interpretation raises a natural question: can we intentionally
target problem types that are not only productive and diverse, but also relevant to
a desired capability? To investigate this, we introduce a targeting extension of BMC,
denoted BMC-T.
BMC-T builds a shared Latent Task Tree over both training prompts and
target examples, such as held-out evaluation problems or a collection of
tasks representing a desired capability. The target examples are never used for
training. Instead, they help identify which training problem types overlap with,
or lie near, the target capability on the tree.
Intuitively, BMC-T treats proximity on the Latent Task Tree as a coarse form of
conceptual similarity: training on problem types near a target should be more likely
to transfer than training on unrelated types. We evaluate two variants on
DAPO-Math-17K: BMC-T (T = All), which uses the full
evaluation mixture as the target distribution, and
BMC-T (T = AIME2024), which uses only AIME2024 as the target
distribution.
The key question is whether utility can be treated as an independent axis of
curriculum design. If BMC-T variants maintain similar productivity but produce
different downstream evaluation profiles, then utility is not reducible to
productivity alone.