|
|
|
|
|
by erickerr
4474 days ago
|
|
Thanks a lot for the feedback. This is a first pass implementation, but I agree that more thought should be put into the cutoff threshold, specifically for when there are only initially 2 (or maybe 3) variations. We considered a weighted decision approach but 1) were turned off by posts like http://visualwebsiteoptimizer.com/split-testing-blog/multi-a... and 2) wanted to keep moving parts to a minimum for V1. Any thoughts? |
|
It's a good v1 for sure, congrats!
I would ignore any non-baysian MAB posts out there. The formulation used by other approaches is one that considers an infinite number of repeated trials, which is basically an insane assumption. Epsilon greedy and UCB1 aren't optimal except with that assumption.
You should check out:
+1 that VWO's blog post is dumb :pFWIW you are doing a weighted decision approach, it's just that you've constrained your weights to be either 0 or 1...
Cheers,
David