GlistEngine component to implement artificial intelligence and neural network functionalities using OpenNN.
Fork & clone this project into ~/dev/glist/glistplugins
- Add gipOpenNN into plugins of your GlistApp/CMakeLists.txt
set(PLUGINS gipOpenNN)
- Include gipOpenNN.h in GameCanvas.h
#include "gipOpenNN.h"
- Define gipOpenNN object
gipOpenNN ai;
- Use AI funcitonality:
ai.setDataset(...); ai.createNeuralNetwork(...); ai.createTrainingStrategy(); ai.performTraining(); ai.createTestingAnalysis(); And get outputs.
Developers can run the sample GlistApp projects located under examples/ folder to see how to use the plugin functionality.
Apache 2