Genetic Algorithm
    遗传算法(Genetic Algorithm, GA)是Holland在20世纪60年代末提出的,是受遗传学中自然选择和遗传机制启发发展起来的一种搜索算法。它的基本思想是使用模拟生物和人类进化的方法求解复杂的优化问题,因而也称为模拟进化优化算法。模拟进化优化算法在计算原理上是自适应的,结构上是并行的,而且模仿了人的智能处理特征,因而成为人工智能的一个重要研究领域。

    导言
    在TSPLIB中选一个大于100个城市数的TSP问题,使用遗传算法求解TSP问题
    实验环境 Win 10 + Python 3
    image.png
    GA算法流程

    1. # 初始化种群
    2. population = initPopulation(cities, numOfCity)
    3. # 演化
    4. curGen = 0
    5. while curGen < MAXGENS:
    6. random.shuffle(population)
    7. # 选择
    8. population = select(population, numOfCity)
    9. # 交叉
    10. population = crosscover(population, numOfCity)
    11. # 变异
    12. population = mutate(population, numOfCity)
    13. # 引入局部搜索,加强进化
    14. population = localSearch(population, numOfCity)

    初始化种群
    关于种群初始化,其实默认是比较容易的,即随机生成种群即可。但是实验起来发现随机生成初始种群,其收敛效果很差并且效率很低。因此在初始化种群的时候加入部分贪心生成的个体,加快种群成熟速度,也保证了种群中个体的多样性。对于贪心个体的生成,直接使用贪心算法生成,每个结点都选择下一个未被加入路径的最近结点,但是经过测试,发现加入贪心个体的数目不宜过多,否则将导致过于早熟。

    1. # Initial population
    2. def initPopulation(cities, numOfCity):
    3. population = []
    4. individual = [i for i in range(numOfCity)]
    5. for _ in range(int(POPSIZE * 2 / 10)):
    6. random.shuffle(individual)
    7. population.append(individual[:])
    8. for _ in range(int(POPSIZE - len(population))):
    9. start = random.randint(0, numOfCity-1)
    10. gIndividual = []
    11. gIndividual.append(start)
    12. j = 1
    13. while j < numOfCity:
    14. mixDis = float_info.max
    15. i, bestId = 0, 0
    16. while i < numOfCity:
    17. if (i not in gIndividual) and i != gIndividual[-1] and distance[gIndividual[-1]][i] < mixDis:
    18. bestId = i
    19. mixDis = distance[gIndividual[-1]][i]
    20. i += 1
    21. j = j + 1
    22. gIndividual.append(bestId)
    23. population.append(gIndividual[:])
    24. random.shuffle(population)
    25. return population

    个体适应度计算
    关于适应度评估,其适应度等于该路径的的倒数,即1 / totalDistance

    1. # calculate indibidual fitness
    2. def evaluate(individual):
    3. fitness = 0.0
    4. for i in range(len(individual) - 1):
    5. fitness += distance[individual[i]][individual[i+1]]
    6. # back to starting point
    7. fitness += distance[individual[len(individual)-1]][individual[0]]
    8. return fitness

    选择
    使用比较通用的轮盘赌,同时选择其他的选择策略的效果也是不错的

    1. # selection operation
    2. def select(population, numOfCity):
    3. newPopulation = []
    4. best = float_info.max
    5. bestId = 0
    6. fitness = []
    7. sumOfFitness = 0.0
    8. # evalute
    9. for i in range(POPSIZE):
    10. fit = evaluate(population[i])
    11. fitness.append(1 / fit)
    12. sumOfFitness += 1 / fit
    13. if (best > fit) :
    14. best = fit
    15. bestId = i
    16. # choosing the best individual to directly inherit to the next generation
    17. newPopulation.append(population[bestId])
    18. # cumulative probability
    19. cumPro = []
    20. for i in range(POPSIZE):
    21. if i == 0:
    22. cumPro.append(fitness[i] / sumOfFitness)
    23. else:
    24. cumPro.append(fitness[i] / sumOfFitness + cumPro[i-1])
    25. # roulette selection of offspring
    26. for i in range(POPSIZE-1):
    27. pro = random.random()
    28. for j in range(POPSIZE):
    29. if cumPro[j] >= pro:
    30. newPopulation.append(population[j])
    31. break
    32. return newPopulation

    交叉
    关于交叉操作,取随机的两条染色体i,j,有一定的概率进行交叉。这部分使用次序交叉法(Order Crossover)

    1. # order crossover
    2. subPopulation = []
    3. for i in range(POPSIZE):
    4. if random.random() <= PXOVER:
    5. chromosomeFir = random.randint(0, POPSIZE - 1)
    6. chromosomeSec = random.randint(0, POPSIZE - 1)
    7. while chromosomeFir == chromosomeSec:
    8. chromosomeSec = random.randint(0, POPSIZE - 1)
    9. start = random.randint(0, numOfCity - 2)
    10. end = random.randint(start + 1, numOfCity - 1)
    11. newIndividual_i = []
    12. newIndividual_j = []
    13. k = 0
    14. for j in range(numOfCity):
    15. if j >= start and j < end:
    16. newIndividual_i.append(population[chromosomeFir][j])
    17. j = end
    18. else:
    19. while k < numOfCity:
    20. if population[chromosomeSec][k] not in population[chromosomeFir][start:end]:
    21. newIndividual_i.append(population[chromosomeSec][k])
    22. k += 1
    23. break
    24. k += 1
    25. k = 0
    26. for j in range(numOfCity):
    27. if population[chromosomeSec][j] in population[chromosomeFir][start:end]:
    28. newIndividual_j.append(population[chromosomeSec][j])
    29. else:
    30. if k == start:
    31. k = end
    32. newIndividual_j.append(population[chromosomeFir][k])
    33. k += 1
    34. subPopulation.append(newIndividual_i[:])
    35. subPopulation.append(newIndividual_j[:])

    但是对于结果生成的子代,并非都直接将其替换父代加入,而是再将生成的子代与父代进行一定的竞争,如果不进行筛选的话,算法的收敛速度太慢

    1. # competition
    2. subPopulation.sort(key = lambda x: evaluate(x))
    3. for i in range(len(subPopulation)):
    4. for j in range(POPSIZE):
    5. if evaluate(subPopulation[i]) < evaluate(population[j]):
    6. population[j] = subPopulation[i]
    7. break

    变异
    关于变异,使用两种变异操作。种群中每个个体的每个结点看作一个基因,第一种变异操作为将两个基因之间的基因片段反转,第二种变异操作则只是将两个基因的位置对换

    1. # mutation operation
    2. def mutate(population, numOfCity):
    3. for i in range(len(population)):
    4. if random.random() <= PMUTATION:
    5. geneFir = random.randint(1,numOfCity-2)
    6. geneSec = random.randint(geneFir+1, numOfCity-1)
    7. population[i][geneFir:geneSec] = population[i][geneSec-1:geneFir-1:-1]
    8. if random.random() <= PMUTATION:
    9. geneFir = random.randint(0,numOfCity-1)
    10. geneSec = random.randint(0, numOfCity-1)
    11. while geneFir == geneSec:
    12. geneSec = random.randint(0, numOfCity-1)
    13. population[i][geneFir], population[i][geneSec] = population[i][geneSec], population[i][geneFir]
    14. return population

    效果
    测试 TSP - ch130
    Optimal solutions for symmetric TSPs - ch130: 6110
    设置
    种群大小 50
    遗传代数 1000
    交叉概率 0.9
    变异概率 0.2
    运行结果
    image.png
    算法本次测试结果为 6637(8.63%) ,参考最佳结果为 6110 。大多数情况下,算法与最优参考解的平均差值为9%,最优的结果为6627.0,误差为8.5%。

    总结
    遗传算法的优化思路
    控制参数的选取方面。对于种群规模的设置上,一般情况为20~200,对于问题规模比较大的情况,其含有比较多的模式,我们需要提供足够的模式采样容量,这样也可以防止在成熟期前就收敛。交叉概率的选择上,一般取0.6~1.0,交叉率越高,群体中新结构的引入越快,已获得的优良的基因结果的丢失速度也相应升高,而交叉概率太低则可能导致搜索效率阻塞。变异概率一般取0.005~0.2。
    在初始化种群的时候可以加入部分贪心算法生成的个体,这样可以使得种群的收敛比较好。但是贪心生成的个体的比列不宜过高,否则可能导致提前收敛,陷入局部最优,此时得到的最优解近似贪心生成的最优个体的解。
    合理有效的交叉操作。一个合理有效的交叉操作对于遗传算法的效率有着比较大的影响。初始本来使用单点交叉、两点交叉以及多点交叉,但是效果都相当的差,现在使用的是顺序交叉,效果可以达到与问题最优解差值10%以内,但是效率仍然不是很理想。
    引入局部搜索,增强进化的方向。

    GA与SA的比较

    所设计的遗传算法(GA)与模拟退火算法(SA)相比,GA的效率比SA低,个人认为主要是目前所设计的交叉操作仍然不够理想,使得其在后期导致搜索阻滞,未能够得到一个更优解。但是GA的改进空间比SA应该是更大的,在解决问题上,GA提供了更多的可选模式,可以多个模式进行一系列操作进行改进,SA则是在当前模式上进行操作,GA更容易跳出局部最优。