The methods of the ILayer interface are listed below. For a complete list of ILayer interface members, see the ILayer Members topic.
AddNext | Overloaded. Add a layer to this layer. The "next" layer being added will receive input from this layer. You can also add a layer to itself, this will create a self-connected layer. This method will create a weighted synapse connection between this layer and the next. |
AddSynapse | This method adds a synapse to the neural network. Usually you will want to use the addNext method rather than directly adding synapses. |
Compute | Compute the output for this layer. |
IsConnectedTo | Determine if this layer is connected to another. |
Process | Process the data before it is modified by this layer. This method is useful for the context layer to remember the pattern it was presented with. |
Recur | Called on recurrent layers to provide recurrent output. This is where the context layer will return the patter that it previously remembered. |