allocating-effort

仓库创建 2026年7月26日最近提交 10 小时前SkillHot 收录 2 小时前
这个 Skill 做什么
▸ 展开 SKILL.md 英文原文

Splits scarce time, budget or traffic across competing products, channels, campaigns or variants by treating them as a multi-armed bandit - Thompson sampling over beta posteriors, with optimism for anything not yet tried enough to judge. Use when deciding what to work on next, how to divide a marketing budget, which product to prioritise, whether to kill something that is underperforming, or when picking a winner among test variants.

1
Stars
0
Forks
8
仓库内 Skill
积累中
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/romainsimon/skills-for-decision-making/master/allocating-effort/SKILL.md
或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/romainsimon/skills-for-decision-making/master/allocating-effort/SKILL.md"
SKILL.MD 节选查看完整文件 ↗
# Allocating effort

Deciding what to work on next is a bandit problem: several options, each with an
unknown payoff rate, and every unit of effort spent on one is a unit not spent
learning about the others. The two failure modes are symmetric and both are common -
committing everything to the current leader before you know it is the leader, and
spreading effort evenly long after you do.

Thompson sampling resolves both without tuning, and its allocation has a plain-English
meaning: **each option gets the share of effort equal to the probability it is the
best one.**

## Workflow

```
- [ ] 1. Define the arms and what counts as a win
- [ ] 2. Count wins and losses honestly, including the zer
via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有