I've been messing around with HyperNEAT and ran into a slight issue. From what I understand, the substrate is the initial layout of nodes which are subsequently used to query a CPPN to provide connection weights. I understand that the CPPN activation functions are just the set of activation functions that can appear in each node in the CPPN, but what do the substrate activation functions refer to? I was under the impression that the substrate is not necessarily a network but just a layout used to incorporate the geometry of the problem into the CPPN's pattern producing abilities. So where do substrate activation functions come in?
EDIT: I'm using UnityNEAT which is a port of SharpNEAT to Unity.
Thanks
From what I understand, the substrate is the network directly applied to the task. The CPPN is used to compute the weights of the connections among neurons in the substrate. So when you feed the substrate with your input, each node of the substrate computes an output depending of its activation function (as in traditional networks).
So, the output layer of the substrate (that is the output of your task) will be a function of the value of each neuron in the substrate and each connection in the substrate (which weight is provided by the CPPN).