Genetic Algorithm building a little car
wreck.devisland.net
Genetic Algorithm building a little car
1–10 of 59 posts
Re: Genetic Algorithm building a little car
#2Re: Genetic Algorithm building a little car
#3Cool-looking, but I'm not quite sure what's going on. Explanations?
http://www.reddit.com/r/programming/comments/7i22c/genetic_p...
Re: Genetic Algorithm building a little car
#4Cool-looking, but I'm not quite sure what's going on. Explanations?
A car is defined as being a quadrilateral with two wheels and two counterweights (I think that's what they are). It starts off by randomly creating 20 cars with variable car shapes, wheel sizes, and counterweight sizes.
It determines how well each car does on the course and uses this information to mate the cars together in order to get a more successful car. The way this is traditionally done is by evaluating a "fitness" function on each individual in the population and giving the higher scoring individuals a better chance of mating.
This process keeps on going on until some criteria is reached. On average, the higher the generation count the better the offspring should be.
Re: Genetic Algorithm building a little car
#5Re: Genetic Algorithm building a little car
#6Re: Genetic Algorithm building a little car
#7Re: Genetic Algorithm building a little car
#8Re: Genetic Algorithm building a little car
#9Ok this is the second evolutionary computing post of today that does something cool with little or no explanation of what's going on. Stop teasing.