Package ann4j
Interface NeuronBehaviour
- All Known Implementing Classes:
HiddenLayerNeuronBehaviour
,InputLayerNeuronBehaviour
,OutputLayerNeuronBehaviour
public interface NeuronBehaviour
-
Method Summary
Modifier and TypeMethodDescriptionvoid
relevancePropagate
(Neuron neuron) This function propagates the relevance from the output layer to the input layerdouble
This function sets the delta value of the neuron
-
Method Details
-
setDelta
This function sets the delta value of the neuron- Parameters:
i
- The neuron that we are calculating the delta for.- Returns:
- The delta value of the neuron.
-
relevancePropagate
This function propagates the relevance from the output layer to the input layer- Parameters:
neuron
- The neuron that is being propagated.
-