4. Individual Inheriting from Set

Again for this example we will use a very simple problem, the 0-1 Knapsack. The purpose of this example is to show the simplicity of EAP and the ease to inherit from anyting else than a simple list or array.

Many evolutionary algorithm textbooks mention that that best way to have an efficient algorithm is having a representation close the problem. Here, what can be closer to a bag than a set? Lets make our individuals inherit from the set class then!

creator.create("Fitness", base.Fitness, weights=(-1.0, 1.0))
creator.create("Individual", set, fitness=creator.Fitness)
creator.create("Population", list)

That’s it. You now have individuals that are in fact sets, they have the usual attribute fitness that shall contain an individual. The fitness is a minimization of the first objective (the weight of the bag) and a maximization of the second objective (the value of the bag). Finally, the last line is simply to pretty print the Population‘s type whith function type(). We will now create a dictionary of 100 items to map the values and weights.

# The items' name is an integer, and value is a (weight, value) 2-uple
items = dict([(i, (random.randint(1, 10), random.uniform(0, 100))) for i in xrange(100)])

We now need to initialize a population and the individuals there in. For this we will need a Toolbox to register our generators since sets can also be created with an input iterable.

tools = toolbox.Toolbox()

# Attribute generator
tools.register("attr_item", random.choice, items.keys())

# Structure initializers
tools.register("individual", creator.Individual, content_init=tools.attr_item, size_init=30)
tools.register("population", creator.Population, content_init=tools.individual, size_init=100)

A population is now initialized with

pop = tools.population()

Voilà! The last thing to do is to define our evaluation function

def evalKnapSack(individual):
    weight = 0.0
    value = 0.0
    for item in individual:
        weight += items[item][0]
        value += items[item][1]
    if len(individual) > MAX_ITEM or weight > MAX_WEIGHT:
        return 10000, 0             # Ensure overweighted bags are dominated
    return weight, value

Everything is ready for evolution. Ho no wait, since EAP’s developpers are lazy, there is no crossover and mutation operators that can be applyed directly on sets available. Lets build some then. A crossover may be, for example, producing two child from two parents, the first child would be the intersection of the two sets and the second child their absolute difference.

def cxSet(ind1, ind2):
    """Apply a crossover operation on input sets. The first child is the
    intersection of the two sets, the second child is the difference of the
    two sets.
    """
    child1, child2 = copy.deepcopy(ind1), copy.deepcopy(ind2)
    child1 &= ind2                              # Intersection
    child2 ^= ind1                              # Symmetric Difference

    try:
        child1.fitness.valid = False            # It is important to
        child2.fitness.valid = False            # invalidate the fitnesses
    except AttributeError:
        pass

    return random.sample((child1, child2), 2)   # Algorithm always choose first child

And a mutation operator could randomly add or remove an element from the set input individual.

def mutSet(individual):
    """Mutation that pops or add an element."""
    mutant = copy.deepcopy(individual)

    if random.random() < 0.5:
        try:
            mutant.pop()
        except KeyError:                        # The set is empty
            pass
    else:
        mutant.add(random.choice(items.keys()))

    try:
        mutant.fitness.valid = False
    except AttributeError:
        pass

    return mutant

From here, everything else is just as usual, register the operators in the toolbox, and use or write an algorithm. Here we will use the Mu+Lambda algorithm and the SPEA-II selection sheme.

tools.register("evaluate", evalKnapSack)
tools.register("mate", cxSet)
tools.register("mutate", mutSet)
tools.register("select", toolbox.spea2)

algorithms.eaMuPlusLambda(tools, pop, 50, 100, 0.7, 0.2, 50)

Finally, a ParetoFront may be used to retreive the best individuals of the evolution. The complete Knapsack Genetic Algorithm code is available.

Previous topic

3. Short One Max Genetic Algorithm

This Page