Summarize an adaptive state.
Value
A one-row tibble with columns n_items,
steps_attempted, committed_pairs, n_refits,
last_stop_decision, and last_stop_reason.
Details
Returns a compact run-level summary from canonical logs: attempted steps, committed comparisons, refit count, and last stop decision/reason. This is a pure view and does not recompute model quantities.
See also
adaptive_get_logs(), base::print()
Other adaptive ranking:
adaptive_rank(),
adaptive_rank_resume(),
adaptive_rank_run_live(),
adaptive_rank_start(),
make_adaptive_judge_llm()
Examples
state <- adaptive_rank_start(c("a", "b", "c"), seed = 1)
summarize_adaptive(state)
#> # A tibble: 1 × 6
#> n_items steps_attempted committed_pairs n_refits last_stop_decision
#> <int> <int> <int> <int> <lgl>
#> 1 3 0 0 0 FALSE
#> # ℹ 1 more variable: last_stop_reason <chr>