-
Notifications
You must be signed in to change notification settings - Fork 12
/
hellogen.py
36 lines (31 loc) · 1.4 KB
/
hellogen.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
import random, string
GA_POPSIZE = 2048
GA_ELITRATE= 0.10 # elitism rate
GA_MUTATIONRATE = 0.25 # mutation rate
GA_TARGET = "Hello world!"
GA_CHARS = string.letters + string.digits + string.punctuation + string.whitespace
def randstr():
return "".join([random.choice(GA_CHARS) for i in xrange(len(GA_TARGET))])
def fitness(value):
return sum([abs(ord(value[j]) - ord(GA_TARGET[j])) for j in xrange(len(GA_TARGET))])
def mate(population, buffer):
esize = int(GA_POPSIZE * GA_ELITRATE)
for i in xrange(esize): # Elitism
buffer[i] = population[i]
for i in range(esize, GA_POPSIZE):
i1 = random.randint(0, GA_POPSIZE / 2)
i2 = random.randint(0, GA_POPSIZE / 2)
spos = random.randint(0, len(GA_TARGET))
buffer[i] = population[i1][:spos] + population[i2][spos:] # Mate
if random.random() < GA_MUTATIONRATE: # Mutate
pos = random.randint(0, len(GA_TARGET)-1)
buffer[i] = buffer[i][:pos] + random.choice(GA_CHARS) + buffer[i][pos+1:]
population = [randstr() for i in xrange(GA_POPSIZE)]
buffer = [randstr() for i in xrange(GA_POPSIZE)]
while True:
population = sorted(population, key=lambda c: fitness(c))
print "[%03d]\tBest (%04d)\t%s" % (i, fitness(population[0]), population[0])
if not fitness(population[0]): # We're done, best match found
break
mate(population, buffer)
population, buffer = buffer, population