‹ 首页

adaptive-pair-selection

@yogsoth-ai · 收录于 5 天前 · 上游提交 2 周前

Iteratively select maximally informative pairs, execute comparisons, update ratings, and check convergence until ranking stabilizes.

适合你,如果需要对多个选项进行排序但缺乏明确评分标准

/ 通过 npx 安装 校验哈希
npx oh-my-skill add yogsoth-ai/de-anthropocentric-research-engine/adaptive-pair-selection
/ 通过 bash 安装
curl -fsSL https://oh-my-skill.com/install.sh | bash -s -- yogsoth-ai/de-anthropocentric-research-engine/adaptive-pair-selection
/ 已经装过?验证本机副本,不用重装
npx oh-my-skill verify yogsoth-ai/de-anthropocentric-research-engine/adaptive-pair-selection
安装目标可用 --agent / --scope 或 --to 明确指定;省略时只会在唯一已存在的 agent 目录上自动选择,零命中或多命中会停止并提示。content_hash 缺失或不一致均拒装。
388GitHub stars
~483上下文体积 · 单文件
索引托管

怎么用

商店整理自技能原文 · 版本 59ace64 · 表述以原文为准
它做什么

该技能让Claude对一组项目进行迭代排序:每次选出最有价值的两个项目进行比较,根据结果更新评分,重复直到排名稳定或预算用尽。

什么时候触发

当你要求Claude对多个项目进行排序、排名或比较时触发。

装好后可以这样说
Claude会开始迭代比较所有论文。
触发自适应成对选择流程。
技能原文 SKILL.md作者撰写 · Apache-2.0 · 59ace64

Adaptive Pair Selection

Select the next comparison pair by information gain, execute the comparison, update ratings, and check for convergence. Repeats until the ranking stabilizes or the comparison budget is exhausted.

Stages
  1. Select — pair-selector identifies the pair whose comparison would most reduce uncertainty
  2. Compare — comparison-executor produces a judgment with confidence and reasoning
  3. Update — rating-update incorporates the new judgment into the rating model
  4. Check — convergence-check determines if ranking has stabilized

Loop stages 1-4 until convergence or budget exhaustion.

Available SOPs

| Stage | SOP | Input | Output | |-------|-----|-------|--------| | Select | pair-selector | current_ratings, comparison_history | next_pairs[] | | Compare | comparison-executor | pair, context | judgment | | Update | rating-update | judgment, current_ratings, method | updated_ratings | | Check | convergence-check | rating_history | converged, stability_score |

Execution Guidance
  • Start with high-uncertainty pairs (largest sigma or most uncertain boundary)
  • For small N: may complete all pairs in first pass, then focus on inconsistencies
  • For large N: prioritize pairs near rank boundaries (positions k and k+1)
  • Track comparison count against budget; exit gracefully if budget hit
  • Pass full rating_history to convergence-check (not just latest snapshot)
Minimum Yield
  • Global ranking + confidence intervals + convergence curve
  • Global ranking with confidence intervals for each position
  • Convergence curve showing stability score over iterations
  • Comparison log with all judgments made

<!-- BEGIN available-tables (generated) -->

Available SOPs

Optional, no fixed order; the final leaf is always a sop.

| SOP | When to use | | --- | --- | | comparison-executor | Execute a pairwise comparison between two candidates, producing a judgment with winner, confidence, and reasoning. | | convergence-check | Evaluate whether the ranking has stabilized by analyzing rating history and computing stability metrics. | | pair-selector | Select the next comparison pairs that maximize information gain given current ratings and comparison history. | | rating-update | Incorporate a new judgment into the rating model and return updated ratings for all candidates. |

<!-- END available-tables (generated) -->

按 Apache-2.0 许可原样转载,未经改动 · 在 GitHub 查看 →

评论

登录即可评论;带「已验证安装」的,是发布者名下有本店的安装或持有记录。