In Genetic Algorithms with Java post I presented a "escape the maze" example. In this post, I will share with you a JavaFX application used to control the genetic algorithm execution and visualize the directions after running the evolution.
The JavaFX application can generate mazes with the number of blocks (walls), columns and rows you select. You can also change the evolution parameters, such as the population, the genes multiplier (it resolves to columns * rows * genes multiplier and it determines the number of genes - directions or steps) and you can also choose the number the generations before evolving. To be honest, I spent hours playing with it and you can play with it as well! You just need Java and Maven:
The JavaFX application can generate mazes with the number of blocks (walls), columns and rows you select. You can also change the evolution parameters, such as the population, the genes multiplier (it resolves to columns * rows * genes multiplier and it determines the number of genes - directions or steps) and you can also choose the number the generations before evolving. To be honest, I spent hours playing with it and you can play with it as well! You just need Java and Maven:
- First we must install DrawingFX: http://fxapps.blogspot.com.br/2017/01/quick-visual-effects-apps-development.html
- To install DrawingFX, clone: https://github.com/jesuino/drawing-fx
- then cd into it and run: mvn clean install
- Now let's clone genetics algorithms test from my github: https://github.com/jesuino/genetics-algorithm-tests
- Change to the cloned repository and finally, run the application:
See it in action:
Comentários
Postar um comentário