圆月山庄资源网 Design By www.vgjia.com
废话不多说,大家直接看代码吧!
"""遗传算法实现求函数极大值—Zjh""" import numpy as np import random import matplotlib.pyplot as plt class Ga(): """求出二进制编码的长度""" def __init__(self): self.boundsbegin = -2 self.boundsend = 3 precision = 0.0001 # 运算精确度 self.Bitlength = int(np.log2((self.boundsend - self.boundsbegin)/precision))+1#%染色体长度 self.popsize = 50# 初始种群大小 self.Generationmax = 12# 最大进化代数 self.pcrossover = 0.90# 交叉概率 self.pmutation = 0.2# 变异概率 self.population=np.random.randint(0,2,size=(self.popsize,self.Bitlength)) """计算出适应度""" def fitness(self,population): Fitvalue=[] cumsump = [] for i in population: x=self.transform2to10(i)#二进制对应的十进制 xx=self.boundsbegin + x * (self.boundsend - self.boundsbegin) / (pow(2,self.Bitlength)-1) s=self.targetfun(xx) Fitvalue.append(s) fsum=sum(Fitvalue) everypopulation=[x/fsum for x in Fitvalue] cumsump.append(everypopulation[0]) everypopulation.remove(everypopulation[0]) for j in everypopulation: p=cumsump[-1]+j cumsump.append(p) return Fitvalue,cumsump """选择两个基因,准备交叉""" def select(self,cumsump): seln=[] for i in range(2): j = 1 r=np.random.uniform(0,1) prand =[x-r for x in cumsump] while prand[j] < 0: j = j + 1 seln.append(j) return seln """交叉""" def crossover(self, seln, pc): d=self.population[seln[1]].copy() f=self.population[seln[0]].copy() r=np.random.uniform() if r<pc: print('yes') c=np.random.randint(1,self.Bitlength-1) print(c) a=self.population[seln[1]][c:] b=self.population[seln[0]][c:] d[c:]=b f[c:]=a print(d) print(f) g=d h=f else: g=self.population[seln[1]] h=self.population[seln[0]] return g,h """变异操作""" def mutation(self,scnew,pmutation): r=np.random.uniform(0, 1) if r < pmutation: v=np.random.randint(0,self.Bitlength) scnew[v]=abs(scnew[v]-1) else: scnew=scnew return scnew """二进制转换为十进制""" def transform2to10(self,population): #x=population[-1] #最后一位的值 x=0 #n=len(population) n=self.Bitlength p=population.copy() p=p.tolist() p.reverse() for j in range(n): x=x+p[j]*pow(2,j) return x #返回十进制的数 """目标函数""" def targetfun(self,x): #y = x∗(np.sin(10∗(np.pi)∗x))+ 2 y=x*(np.sin(10*np.pi*x))+2 return y if __name__ == '__main__': Generationmax=12 gg=Ga() scnew=[] ymax=[] #print(gg.population) Fitvalue, cumsump=gg.fitness(gg.population) Generation = 1 while Generation < Generationmax +1: Fitvalue, cumsump = gg.fitness(gg.population) for j in range(0,gg.popsize,2): seln = gg.select( cumsump) #返回选中的2个个体的序号 scro = gg.crossover(seln, gg.pcrossover) #返回两条染色体 s1=gg.mutation(scro[0],gg.pmutation) s2=gg.mutation(scro[1],gg.pmutation) scnew.append(s1) scnew.append(s2) gg.population = scnew Fitvalue, cumsump = gg.fitness(gg.population) fmax=max(Fitvalue) d=Fitvalue.index(fmax) ymax.append(fmax) x = gg.transform2to10(gg.population[d]) xx = gg.boundsbegin + x * (gg.boundsend - gg.boundsbegin) / (pow(2, gg.Bitlength) - 1) Generation = Generation + 1 Bestpopulation = xx Targetmax = gg.targetfun(xx) print(xx) print(Targetmax) x=np.linspace(-2,3,30) y=x*(np.sin(10*np.pi*x))+2 plt.scatter(2.65,4.65,c='red') plt.xlim(0,5) plt.ylim(0,6) plt.plot(x,y) plt.annotate('local max', xy=(2.7,4.8), xytext=(3.6, 5.2),arrowprops=dict(facecolor='black', shrink=0.05)) plt.show()
一个函数求极值的仿真的作业,参考了别人的matlab代码,用python复现了一遍,加深印象!
以上这篇python 遗传算法求函数极值的实现代码就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
圆月山庄资源网 Design By www.vgjia.com
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
圆月山庄资源网 Design By www.vgjia.com
暂无评论...
RTX 5090要首发 性能要翻倍!三星展示GDDR7显存
三星在GTC上展示了专为下一代游戏GPU设计的GDDR7内存。
首次推出的GDDR7内存模块密度为16GB,每个模块容量为2GB。其速度预设为32 Gbps(PAM3),但也可以降至28 Gbps,以提高产量和初始阶段的整体性能和成本效益。
据三星表示,GDDR7内存的能效将提高20%,同时工作电压仅为1.1V,低于标准的1.2V。通过采用更新的封装材料和优化的电路设计,使得在高速运行时的发热量降低,GDDR7的热阻比GDDR6降低了70%。
更新日志
2024年11月02日
2024年11月02日
- 张韶涵2024 《不负韶华》开盘母带[低速原抓WAV+CUE][1.1G]
- lol全球总决赛lcs三号种子是谁 S14全球总决赛lcs三号种子队伍介绍
- lol全球总决赛lck三号种子是谁 S14全球总决赛lck三号种子队伍
- 群星.2005-三里屯音乐之男孩女孩的情人节【太合麦田】【WAV+CUE】
- 崔健.2005-给你一点颜色【东西音乐】【WAV+CUE】
- 南台湾小姑娘.1998-心爱,等一下【大旗】【WAV+CUE】
- 【新世纪】群星-美丽人生(CestLaVie)(6CD)[WAV+CUE]
- ProteanQuartet-Tempusomniavincit(2024)[24-WAV]
- SirEdwardElgarconductsElgar[FLAC+CUE]
- 田震《20世纪中华歌坛名人百集珍藏版》[WAV+CUE][1G]
- BEYOND《大地》24K金蝶限量编号[低速原抓WAV+CUE][986M]
- 陈奕迅《准备中 SACD》[日本限量版] [WAV+CUE][1.2G]
- TWINS.2004-SUCHABETTERDAY精美礼盒特别版2CD【英皇娱乐】【WAV+CUE】
- 音乐磁场.1991-1998-音乐磁场系列22CD【瑞星】【WAV+CUE】
- 韦绮姗.1993-LOVE.ME.ONCE.AGAIN【永高创意】【WAV+CUE】