Files
iomgaa 043d4aa46f docs(plans): add Spec-3 question-gen-v2 implementation plan
9 tasks: type extension → postprocess → families → sampler_v2 →
generator_v2 → gates → run_store → pipeline_v2 → CLI integration.
Includes structured-logging schemas/metrics and Codex review revisions.
2026-07-11 22:57:47 -04:00

606 B

type, node_id, title, date
type node_id title date
metric metric:qgen-acceptance-rate 最终接受率 2026-07-12

最终接受率

定义

最终过门题数 / 目标题数(total_slots)。衡量管线整体产能。

判定方式

  • 类型: 硬性(下限约束)
  • 阈值: ≥ 85%(低于说明管线产能不足,需扩大候选池或降低门阈值)
  • 计算: accepted / total_slots
  • 数据源: question_gen_runs

基线

待首次运行后建立。

SQL

SELECT
    CAST(accepted AS REAL) / total_slots AS acceptance_rate
FROM question_gen_runs
WHERE run_id=?;