(no title)
erickerr | 12 years ago
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?
erickerr | 12 years ago
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?
dlss|12 years ago
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
Homunculiheaded|12 years ago
andrewryno|12 years ago
Homunculiheaded|12 years ago
If you're going the classical statistics route the entire point is that you need to determine your sample size before you peek at the data. In that post you would need to replace E with a threshold of difference that you care about, then calculate n before you start the test and not look at the results until you had reached n observations.
erickerr|12 years ago
idunning|12 years ago