Package ann4j

Interface NeuronBehaviour

All Known Implementing Classes:
HiddenLayerNeuronBehaviour, InputLayerNeuronBehaviour, OutputLayerNeuronBehaviour

public interface NeuronBehaviour
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    This function propagates the relevance from the output layer to the input layer
    double
    This function sets the delta value of the neuron
  • Method Details

    • setDelta

      double setDelta(Neuron i)
      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

      void relevancePropagate(Neuron neuron)
      This function propagates the relevance from the output layer to the input layer
      Parameters:
      neuron - The neuron that is being propagated.