Go语言实现遗传算法的实例代码
在没介绍正文之前先给大家补充点go语言基本知识及实例。
go 语言教程
go 是一个开源的编程语言,它能让构造简单、可靠且高效的软件变得容易。
go是从2007年末由robert griesemer, rob pike, ken thompson主持开发,后来还加入了ian lance taylor, russ cox等人,并最终于2009年11月开源,在2012年早些时候发布了go 1稳定版本。现在go的开发已经是完全开放的,并且拥有一个活跃的社区。
go 语言特色
简洁、快速、安全
并行、有趣、开源
内存管理、v数组安全、编译迅速
go 语言用途
go 语言被设计成一门应用于搭载 web 服务器,存储集群或类似用途的巨型*服务器的系统编程语言。
对于高性能分布式系统领域而言,go 语言无疑比大多数其它语言有着更高的开发效率。它提供了海量并行的支持,这对于游戏服务端的开发而言是再好不过了。
第一个 go 程序
接下来我们来编写第一个 go 程序 hello.go(go 语言源文件的扩展是 .go),代码如下:
实例
package main import "fmt" func main() { fmt.println("hello, world!") }
执行以上代码输出
$ go run hello.go hello, world!
好了,正文开始。
出于好玩的心态,我决定学习一下go语言。我认为学习新语言最好的方法就是深入学习,并且尽可能多犯错误。这样做虽然可能会很慢,但是可以确保在后面的过程中再也不会出现编译的错误。
go语言与我习惯的其他语言不同。go更喜欢自己单独实现,而其他像java这类语言更喜欢继承。其实在go语言里面根本没有继承这种概念,因为它压根就没有对象这一说法。比如说c语言,它有结构体,但是没有类。但是这样它还是可以有像“构造者”这样的常见思想和设计模式(一种在这种情况下有序地产生结构体的方式)。
go语言坚决拥护组合(composition),同时也很反对继承的做法,在网络上引起了强烈的讨论,同时也让人们重新思考了语言该往哪个方向发展。所以,从这个角度来看,go语言与其它语言的差别可能也没有那么大。
本文将重点介绍如何用go语言实现遗传算法。如果你还没有参加过golang tour,我还建议你快速看一下这门语言的介绍。
话不多说,让我们开始从代码说起吧!第一个例子与我以前做过的很类似:找到一个二次的最小值。
type geneticalgorithmsettings struct { populationsize int mutationrate int crossoverrate int numgenerations int keepbestacrosspopulation bool } type geneticalgorithmrunner interface { generateinitialpopulation(populationsize int) []interface{} performcrossover(individual1, individual2 interface{}, mutationrate int) interface{} performmutation(individual interface{}) interface{} sort([]interface{}) }
我立马定义了一组设置,以便在稍后启动的算法中用到。
第二部分的geneticalgorithmrunner这个看起来有点奇怪。geneticalgorithmrunner是一个接口,询问如何生成初始种群,执行corssovers和mutataions,并对答案进行排序,以便在population中保持最好的个体,这样下一代才会更加优秀。我认为这看起来很奇怪,因为“接口”通常用于面向对象的语言,通常会要求对象实现某些特性和方法。这里没有什么差别。这一小段代码实际上是在说,它正在请求一些东西来定义这些方法的细节。我是这样做的:
type quadraticga struct {} func (l quadraticga) generateinitialpopulation(populationsize int) []interface{}{ initialpopulation := make([]interface{}, 0, populationsize) for i:= 0; i < populationsize; i++ { initialpopulation = append(initialpopulation, makenewentry()) } return initialpopulation } func (l quadraticga) performcrossover(result1, result2 interface{}, _ int) interface{}{ return (result1.(float64) + result2.(float64)) / 2 } func (l quadraticga) performmutation(_ interface{}, _ int) interface{}{ return makenewentry() } func (l quadraticga) sort(population []interface{}){ sort.slice(population, func(i, j int) bool { return calculate(population[i].(float64)) > calculate(population[j].(float64)) }) }
更奇怪的是,我从来没有提到过这些方法的接口。请记住,因为没有对象,也没有继承。quadraticga结构体是一个空白对象,隐式地作为geneticalgorithmrunner。每个必需的方法都在括号中绑定到该结构体,就像java中的“@ override”。现在,结构体和设置需要传递给运行该算法的模块。
settings := ga.geneticalgorithmsettings{ populationsize: 5, mutationrate: 10, crossoverrate: 100, numgenerations: 20, keepbestacrosspopulation: true, } best, err := ga.run(quadraticga{}, settings) if err != nil { println(err) }else{ fmt.printf("best: x: %f y: %f\n", best, calculate(best.(float64))) }
很简单,对吧?“quadraticga {}”只是简单地创建了该结构的一个新实例,其余的则由run()方法完成。该方法返回搜索结果和发生的任何错误,因为go不相信try / catch——另一场战争作者采取了严格的设计立场。
现在来计算每个项的性能,以求二次函数求出的二次函数来求出一个新的x值的方法:
func makenewentry() float64 { return highrange * rand.float64() } func calculate(x float64) float64 { return math.pow(x, 2) - 6*x + 2 // minimum should be at x=3 }
既然已经为二次实现创建了接口,那么ga本身需要完成:
func run(geneticalgorunner geneticalgorithmrunner, settings geneticalgorithmsettings) (interface{}, error){ population := geneticalgorunner.generateinitialpopulation(settings.populationsize) geneticalgorunner.sort(population) bestsofar := population[len(population) - 1] for i:= 0; i < settings.numgenerations; i++ { newpopulation := make([]interface{}, 0, settings.populationsize) if settings.keepbestacrosspopulation { newpopulation = append(newpopulation, bestsofar) } // perform crossovers with random selection probabilisticlistofperformers := createstochasticprobablelistofindividuals(population) newpopindex := 0 if settings.keepbestacrosspopulation{ newpopindex = 1 } for ; newpopindex < settings.populationsize; newpopindex++ { indexselection1 := rand.int() % len(probabilisticlistofperformers) indexselection2 := rand.int() % len(probabilisticlistofperformers) // crossover newindividual := geneticalgorunner.performcrossover( probabilisticlistofperformers[indexselection1], probabilisticlistofperformers[indexselection2], settings.crossoverrate) // mutate if rand.intn(101) < settings.mutationrate { newindividual = geneticalgorunner.performmutation(newindividual) } newpopulation = append(newpopulation, newindividual) } population = newpopulation // sort by performance geneticalgorunner.sort(population) // keep the best so far bestsofar = population[len(population) - 1] } return bestsofar, nil } func createstochasticprobablelistofindividuals(population []interface{}) []interface{} { totalcount, populationlength:= 0, len(population) for j:= 0; j < populationlength; j++ { totalcount += j } probableindividuals := make([]interface{}, 0, totalcount) for index, individual := range population { for i:= 0; i < index; i++{ probableindividuals = append(probableindividuals, individual) } } return probableindividuals }
很像以前,一个新的人口被创造出来,人口的成员将会世代交配,而他们的后代可能携带突变。一个人的表现越好,就越有可能交配。随着时间的推移,算法收敛到最好的答案,或者至少是一个相当不错的答案。
那么当它运行时,它返回了什么呢?
best: x: 3.072833 y: -6.994695
不坏!由于人口规模只有5、20代,而且输入的范围被限制在[0 100],这一搜索就钉在了顶点上。
现在,您可能想知道为什么我定义了所有的接口方法来返回“接口{}”。这就像go和generics一样。没有对象,因此没有对象类型返回,但是没有描述的大小的数据仍然可以在堆栈上传递。这本质上也是这个返回类型的含义:它传递一些已知的和类似的类型的对象。有了这个“泛型”,我就可以将ga移动到它自己的包中,并将相同的代码移到多个不同类型的数据上。
我们有两个输入的3d二次方程,而不是一个二维二次方程的单个输入。接口方法只需要很小的改变:
type quad3d struct { x, y float64 } func makenewquadentry(newx, newy float64) quad3d { return quad3d{ x: newx, y: newy, } } func calculate3d(entry quad3d) float64 { return math.pow(entry.x, 2)- 6 * entry.x + math.pow(entry.y, 2)- 6 * entry.y + 2 } type quadratic3dga struct { } func (l quadratic3dga) generateinitialpopulation(populationsize int)[]interface{}{ initialpopulation := make([]interface{}, 0, populationsize) for i:= 0; i < populationsize; i++ { initialpopulation = append(initialpopulation, makenewquadentry(makenewentry(), makenewentry())) } return initialpopulation } func (l quadratic3dga) performcrossover(result1, result2 interface{}, mutationrate int) interface{}{ r1entry, r2entry := result1.(quad3d), result2.(quad3d) return makenewquadentry((r1entry.x + r2entry.x) / 2, (r1entry.y + r2entry.y) / 2,) } func (l quadratic3dga) performmutation(_ interface{}) interface{}{ return makenewquadentry(makenewentry(), makenewentry()) } func (l quadratic3dga) sort(population []interface{}){ sort.slice(population, func(i, j int) bool { return calculate3d(population[i].(quad3d)) > calculate3d(population[j].(quad3d)) }) } func quadratic3dmain(){ settings := ga.geneticalgorithmsettings{ populationsize: 25, mutationrate: 10, crossoverrate: 100, numgenerations: 20, keepbestacrosspopulation: true, } best, err := ga.run(quadratic3dga{}, settings) entry := best.(quad3d) if err != nil { println(err) }else{ fmt.printf("best: x: %f y: %f z: %f\n", entry.x, entry.y, calculate3d(entry)) } }
而不是到处都是float64s,任何地方都可以通过quad3d的条目;每一个都有一个x和一个y值。对于创建的每个条目,都使用contructor makenewquadentry创建。run()方法中的代码都没有更改。
当它运行时,我们得到这个输出:
best: x: 3.891671 y: 4.554884 z: -12.787259
很接近了!
哦,我忘了说走快了!在java中执行此操作时,即使使用相同的设置,也会有明显的等待时间。在一个相对较小的范围内求解二次方程并不是很复杂,但它对一个人来说是值得注意的。
go是本地编译的,比如c。当二进制执行时,它似乎马上就吐出一个答案。这里有一个简单的方法来度量每次运行的执行时间:
func main() { beforequadtime := time.now() quadraticmain() afterquadtime := time.since(beforequadtime) fmt.printf("%d\n", afterquadtime) before3dquadtime := time.now() quadratic3dmain() after3dquattime := time.since(before3dquadtime) fmt.printf("%d\n", after3dquattime) }
边注:我能说我很高兴我们是一个开发者社区,让他们从过去的错误中走出来,并把综合的时间模块和包构建成一种语言吗?java 8 +拥有它们,python拥有它们,并拥有它们。这使我开心。
现在的输出:
best: x: 3.072833 y: -6.994695 136,876 best: x: 3.891671 y: 4.554884 z: -12.787259 4,142,778
那“近乎瞬间”的感觉是我想要传达的,现在我们有了很难的数字。136,876看起来很大,但要在纳秒内报告时间。
重申一遍:纳秒。不是几毫秒,我们都习惯了在互联网时代或者其他像python和java这样的通用语言;纳秒。1/1,000,000毫秒。
这意味着我们在不到一毫秒的时间里找到了一个使用遗传算法来搜索答案的二次方程的答案。这句话,“该死的瞬间”似乎很合适,不是吗?这包括打印到终端。
那么,要计算更密集的东西呢?在我展示一种寻找好的梦幻足球lineups的方法之前,我在fanduel上使用。这包括从电子表格中读取数据,制作和过滤lineups,并进行更复杂的交叉和突变。强制寻找最佳解决方案可能需要超过75,000年(至少使用我当时使用的python)。
我不需要再检查所有的细节,你可以自己去看代码,但我会在这里显示输出:
best: 121.409960:, $58100 qb: aaron rodgers - 23.777778 rb: latavius murray - 15.228571 rb: demarco murray - 19.980000 wr: kelvin benjamin - 11.800000 wr: stefon diggs - 14.312500 wr: alshon jeffery - 9.888889 te: connor hamlett - 8.200000 d: philadelphia eagles - 10.777778 k: phil dawson - 7.444444 16,010,182
哦,是的!现在看来这是一个很好的阵容!它只需要16毫秒就能找到。
现在,这个遗传算法可以改进了。与c一样,当将对象传递给方法时,将在堆栈上复制对象(读取数据)。随着对象大小的增长,最好不要反复复制它们,而是要在堆中创建它们,并在周围传递指针。目前,我将把它作为未来的工作。
go也被用coroutines和信道的原生支持编写,利用多个内核来解决一个问题,比过去简单多了,相比于单核时代的其他语言来说,这是一个巨大的优势。我想要增强这个算法来使用这些工具,但这也必须留给以后的工作。
我很享受学习的过程。对于我来说,用组合而不是继承来考虑工程解决方案是很困难的,因为我已经习惯了8年以上的时间,也是我学会编程的方式。但是每种语言和方式都有各自的优点和缺点;每一种语言在我的工具中都是不同的工具。对于任何担心尝试的人,不要。有一个驼峰(更像是一个减速带),但你很快就会克服它,走上成功之路。
还有一些我喜欢的东西,我喜欢其他语言,主要是一组基本的函数方法来操作数据。我需要一个lambda函数和方法来映射、减少和筛选数据的数组或部分。设计人员反对功能实现的理由是,代码应该总是简单、易于阅读和编写,并且这与for循环是可实现的。我认为,映射、过滤和减少通常更容易读和写,但这是一场已经在肆虐的战争中的争论。
尽管我与一些开发人员的观点存在分歧,以及我必须考虑解决问题的不同方式,但go真的是一种很好的语言。我鼓励大家在学习一两门语言后再试一试。它很快就成为了最流行的语言之一,有很多原因可以解释为什么。我期待着在未来更多地使用它。
总结
以上所述是小编给大家介绍的go语言实现遗传算法的实例代码,希望对大家有所帮助
上一篇: Nginx为什么能实现高性能和高扩展