Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update the
beta distribution
parameters in the `_select_variation_i…
…ndex` method (#647) Update the beta distribution parameters in the `_select_variation_index` method to avoid bias towards lower success probability. The current specification of the beta distribution: ``` theta = np.random.beta(conversions + 1, exposures + 1) ``` treats every exposure as a failure, that is overstates the failures thus undervalues the success probabilities of the variations. The effect is pronounced for variations with very high baseline conversion rates but less severe for variations with extremely low conversion rates. #643 Co-authored-by: James Jory <[email protected]>
- Loading branch information