Skip to content

Latest commit

 

History

History
3 lines (2 loc) · 746 Bytes

README.md

File metadata and controls

3 lines (2 loc) · 746 Bytes

NEAT

This is an implementation of NEAT (Neuroevolution of augmenting topologies) which is a genetic machine learning algorithm for my first project in Go. It works be creating really simple neural networks and then randomly mutating them and combining the most successful networks via mating to spread their mutations across a species. There are species that divide the population to make sure that no one type of network dominates. In my specific implementation networks are also trained using backpropagation to discover their true potential at the cost of time. However, this could easily be changed to strictly follow the pure form. This has limited multithreading, and needs to be tested further. This code is lesser than my c++ version.