DRMacIver's Notebook

Updating Random Samplers

Updating Random Samplers

I often struggle to refind the references for this, so this is mostly a note to self for future reference.

If you want to randomly sample from \(N\) items with probability of picking \(i\) proportional to \(w_i > 0\) you can use the Alias method for this and it works very well.

Suppose now you want to be able to update the weights. It turns out this is possible in morally-\(O(1)\) time (one of the algorithms linked is \(O(\log(n^*))\), which is the smallest \(k\) such that \(\log^k(n) < 1\). This isn’t quite Inverse Ackermann levels of morally-\(O(1)\) but it’s pretty close).

The key observation that makes the above two papers work is that if you can guarantee that the ratio of the largest to smallest weight is bounded then the naive method of sampling by picking uniformly at random and accepting with probability \(\frac{w_i}{\max w_j}\) runs in \(O(1)\) time. When you can’t guarantee this, you can instead bucket together all values with similar weights, then pick a bucket with probability proportional to its total weight using some other method, then sample from within that bucket.