vote up 3 vote down star

Recently I needed to do weighted random selection of elements from a list, both with and without replacement. While there are well known and good algorithms for unweighted selection, and some for weighted selection without replacement (such as modifications of the resevoir algorithm), I couldn't find any good algorithms for weighted selection with replacement. I also wanted to avoid the resevoir method, as I was selecting a significant fraction of the list, which is small enough to hold in memory.

Does anyone have any suggestions on the best approach in this situation? I have my own solutions, but I'm hoping to find something more efficient, simpler, or both.

flag

80% accept rate
It's hard to agree with a posting like this. It's slightly better to ask the question, then post your answer so we can upvote your answer or provide a better/different answer. – S.Lott Dec 9 '08 at 13:56
Your m in the description is n in the code, correct? – ShreevatsaR Dec 9 '08 at 15:20
Refactored as S.Lott suggested – Nick Johnson Dec 9 '08 at 17:06
ShreevatsaR: Yes, you're right. Fixed. – Nick Johnson Dec 9 '08 at 17:07
I've improved my answer, I hope that helps. – John the Statistician Dec 10 '08 at 1:03

4 Answers

vote up 2 vote down check

One of the fastest ways to make many with replacement samples from an unchanging list is the alias method. The core intuition is that we can create a set of equal-sized bins for the weighted list that can be indexed very efficiently through bit operations, to avoid a binary search. It will turn out that, done correctly, we will need to only store two items from the original list per bin, and thus can represent the split with a single percentage.

Let's us take the example of five equally weighted choices, (a:1, b:1, c:1, d:1, e:1)

To create the alias lookup:

  1. Normalize the weights such that they sum to 1. (a:0.2 b:0.2 c:0.2 d:0.2 e:0.2) This is the probability of choosing each weight.

  2. Find the smallest power of 2 greater than or equal to the number of variables, and create this number of partitions, |p|. Each partition represents a probability mass of 1/|p|. In this case, we create 8 partitions, each able to contain 0.125.

  3. Take the variable with the least remaining weight, and place as much of it's mass as possible in an empty partition. In this example, we see that 'a' fills the first partition. (p1{a|null,1.0},p2,p3,p4,p5,p6,p7,p8) with (a:0.075, b:0.2 c:0.2 d:0.2 e:0.2)

  4. If the partition is not filled, take the variable with the most weight, and fill the partition with that variable.

Repeat steps 3 and 4, until none of the weight from the original partition need be assigned to the list.

For example, if we run another iteration of 3 and 4, we see

(p1{a|null,1.0},p2{a|b,0.6},p3,p4,p5,p6,p7,p8) with (a:0, b:0.15 c:0.2 d:0.2 e:0.2) left to be assigned

At runtime:

  1. Get a U(0,1) random number, say binary 0.001100000

  2. bitshift it lg2(p), finding the index partition. Thus, we shift it three, yielding 001.1, or position 1, and thus partition 2.

  3. If the partition is split, use the decimal portion of the shifted random number to decide the split. In this case, the value is 0.5, and 0.5<0.6, so return a.

Here is some code and another explanation, but unfortunately it doesn't use the bitshifting technique, nor have I actually verified it.

link|flag
Sorry to say your explanation here is a bit unclear, but the linked page describes it in more detail - thanks! It certainly is a rather cool algorithm, and seems like it fits the bill. :) – Nick Johnson Dec 9 '08 at 22:53
Yes, I was at work, and I wanted to hammer it out. I'll expand on this in the near future. Glad you found it helpful, even so. :) – John the Statistician Dec 9 '08 at 23:39
Much better, thanks! – Nick Johnson Dec 10 '08 at 10:32
@John, after running another iteration of 3 and 4, isn't 0 left in a, since you assigned it all to p2? – Eli Bendersky Jan 23 at 13:53
@Eli, right you are, now hopefully fixed. – John the Statistician Jan 25 at 18:46
vote up 1 vote down

I'd recommend you start by looking at section 3.4.2 of Donald Knuth's Seminumerical Algorithms.

If your arrays are large, there are more efficient algorithms in chapter 3 of Principles of Random Variate Generation by John Dagpunar. If your arrays are not terribly large or you're not concerned with squeezing out as much efficiency as possible, the simpler algorithms in Knuth are probably fine.

link|flag
I just took a look at section 3.4.2, and it covers only unbiased selection with and without replacement - there's no mention made of weighted selection. – Nick Johnson Dec 9 '08 at 16:25
vote up 1 vote down

Here's what I came up with for weighted selection without replacement:

def WeightedSelectionWithoutReplacement(l, n):
  """Selects without replacement n random elements from a list of (weight, item) tuples."""
  l = sorted((random.random() * x[0], x[1]) for x in l)
  return l[-n:]

This is O(m log m) on the number of items in the list to be selected from. I'm fairly certain this will weight items correctly, though I haven't verified it in any formal sense.

Here's what I came up with for weighted selection with replacement:

def WeightedSelectionWithReplacement(l, n):
  """Selects with replacement n random elements from a list of (weight, item) tuples."""
  cuml = []
  total_weight = 0.0
  for weight, item in l:
    total_weight += weight
    cuml.append((total_weight, item))
  return [cuml[bisect.bisect(cuml, random.random()*total_weight)] for x in range(n)]

This is O(m + n log m), where m is the number of items in the input list, and n is the number of items to be selected.

link|flag
That first function is brilliant, but alas it doesn't weight the items correctly. Consider WeightedSelectionWithoutReplacement([(1, 'A'), (2, 'B')], 1). It will choose A with probability 1/4, not 1/3. Hard to fix. – Jason Orendorff Jan 28 at 14:27
Btw, faster but more complex algorithms are in my answer here: stackoverflow.com/questions/2140787/… – Jason Orendorff Jan 28 at 14:43
vote up 0 vote down

Here is a version that generates a random index that allows for changing the weights on the fly. It chooses a random object and then generates a random number between 0 and 100 then does a test of this value against the weight to determine if to choose the random element or to try again. After 100 tries if nothing is found just pick a random index and call it a day. The two interesting methods are GetRdnObject which returns a random object and RemoveRndObject which removes and returns a random object. There is also an iterator so you can loop over the objects with the most probable coming out first.

My method uses a probability tree that would have the exact same probability distribution if you were to make it infinitely large. However the terms fall off at a fairly fast rate so I capped my tree at 100 levels and then just pick a item to give it an end condition. To accomplish this I needed a standard max weight which I choose to be 100.

import random

class RandomObject:
    """
    The objects are in a list
    ex [o1,o2,o3,o4]
    The weight list should contain values between 0 and 100.
    ex [0.1,1,10,100]
    it is up to the caller to make sure object list and weight list are same size
    """

    def __init__(self,olist, wlist,n=0,remove=False):
        self._odata = olist[:]
        self._wdata = wlist[:]
        self._len=len(wlist)
        if n==0:
            self._n=self._len
        else:
            self._n=n
        self._remove=remove


    def __iter__(self):
        return self.next()

    def next(self):
        while (self._len > 0) and (self._n>0):
            self._n -= 1
            i=self.i()
            if i < self._len:
                if self._remove:
                    self._len -=1
                    self._wdata.pop(i)
                    yield self._odata.pop(i)
                else:
                    yield self._odata[i]


    def GetObject(self,i):
        if i < self._len:
            return self._odata[i]
        else:
            return None

    def GetWeight(self,i):
        if i < self._len:
            return self._wdata[i]
        else:
            return 0

    def SetWeight(self,i,w):
        if i < self._len:
            self._wdata[i]=w

    def RemoveObject(self,i):
        if i < self._len:
            self._len -=1
            self._wdata.pop(i)
            return self._odata.pop(i)
        else:
            return None

    def Remove(self,i):
        if (self._len >0 ) and (i < self._len):
            self._len -=1
            self._wdata.pop(i)

    def Append(self,o,w):
        self._len +=1
        self._wdata.append(w)
        self._odata.append(o)

    def Insert(self,i,o,w):
        if i < self._len:
            self._len +=1
            self._wdata.insert(i,w)
            self._odata.insert(i,o)
        else:
            self._len +=1
            self._wdata.append(w)
            self._odata.append(o)

    def GetRdnObject(self):
        i=self.i()
        if (self._len >0 ) and (i < self._len):
            return [self._odata[i],i]
        else:
            return None

    def RemoveRndObject(self):
        i=self.i()
        if (self._len >0 ) and (i < self._len):
            self._len -=1
            self._wdata.pop(i)
            return [self._odata.pop(i),i]
        else:
            return None

    def i(self):
        for i in range(100):
            ri=random.randint(0,self._len-1) #choose a random object
            rx=random.uniform(0,100)
            if rx <= self._wdata[ri]: # test to see if that is the value we want
                return ri
        # if you do not find one after 100 tries then just get a random one
        return random.randint(0,self._len-1)             



#test code
o=[1,2,3,4]
wx=[0.1,1,10,100] #weight list
ro=RandomObject(o,wx)

l=[]
for i in range(100):
    o=ro.GetRdnObject()
    l.append(o[0])

print("random list=",l)


#modify the weights
ro.SetWeight(0,100) 
ro.SetWeight(1,50)
ro.SetWeight(2,0)
ro.SetWeight(3,0)

l=[]
for i in range(100):
    o=ro.GetRdnObject()
    l.append(o[0])

print("random list=",l)

arsize=2500
lpsz=100
wx=[x*100/arsize for x in range(arsize)] #weight list
o=[x for x in range(arsize)]

ro=RandomObject(o,wx)

l=[]

print("loop size=",lpsz)
for j in range(lpsz):
    o=ro.RemoveRndObject()
    l.append(o[0])

print("random list=",l)

arsize=100
wx=[x*100/arsize for x in range(arsize)] #weight list
o=[x for x in range(arsize)]

#iterate over the objects
l=[]
for x in RandomObject(o,wx,50):
    l.append(x)

print("random list=",l)
link|flag

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.