Each edit hypothesis is modeled as a Beta(α, β) distribution updated by a Bernoulli win-loss trial based on whether the re-ranker moved the target URL up against its competitors.
flowchart TD
A["Prior Belief<br>Beta(α, β)"] --> B["Apply Content Edit"]
B --> C{"Ranker Evaluation<br>Rank Improved?"}
C -- "Yes" --> D["Success Reward<br>r = 1"]
C -- "No" --> E["Failure Reward<br>r = 0"]
D --> F["Updated Posterior<br>Beta(α + r, β + 1 - r)"]
E --> F
F -. "Next Iteration" .-> AReferenced by