This project demonstrates simple Genetic Algorithm (GA) through evolution of nnet, which is modelled using a directed graph.
- Outputs:
.ncolformat text and image of sample nnet graphs of each generation- A full video of all steps of each generation
- An image of last step of each generation
- Minimal dependencies: just OpenCV and CMake
- CMake as build system
- OpenMP for multithreading
install opencv cmake then
git clone https://github.com/shivendra02467/evolutionSimulator.git
cd evolutionSimulator
mkdir build
cd build
cmake ..
make
./evolutionSimulatorif using MinGW, OpenCV build with MinGW
git clone https://github.com/shivendra02467/evolutionSimulator.git
cd evolutionSimulator
mkdir build
cd build
cmake -G "MinGW Makefiles" ..
mingw32-make
./evolutionSimulator.exe