🏗️How to Model
Last updated
Last updated
In order to find a solution for your problem, the framework will need you to provide a fitting model for it.
It's advisable to not overengineer your model though. Really think about what details your model needs, and don't implement any properties that will not be used later on anyway.
The whole training process is based on the function that provides the fitness values of the models to the framework. This function is basically the heart of the model. The interface specifying the structure of this function looks like this:
So whatever you want the framework to solve, you will need to be able to tell the framework how good a given model is based on the wanted outcome. The basic rule here is: The higher the Fitness Value, the closer is the model to the required result.
An example Fitness Function that is used to train the framework to solve the function
May look like this:
On the Github Repository you will find a complete implementation for this Example in the directory "Example"