Class ListNeuron
- java.lang.Object
-
- ciir.umass.edu.learning.neuralnet.Neuron
-
- ciir.umass.edu.learning.neuralnet.ListNeuron
-
public class ListNeuron extends Neuron
-
-
Constructor Summary
Constructors Constructor Description ListNeuron()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidcomputeDelta(PropParameter param)Compute delta for neurons in the output layer.voidupdateWeight(PropParameter param)Update weights of incoming links.-
Methods inherited from class ciir.umass.edu.learning.neuralnet.Neuron
addOutput, clearOutputs, computeOutput, computeOutput, getInLinks, getOutLinks, getOutput, getOutput, setOutput, updateDelta
-
-
-
-
Method Detail
-
computeDelta
public void computeDelta(PropParameter param)
Description copied from class:NeuronCompute delta for neurons in the output layer. ONLY for neurons in the output layer.- Overrides:
computeDeltain classNeuron
-
updateWeight
public void updateWeight(PropParameter param)
Description copied from class:NeuronUpdate weights of incoming links.- Overrides:
updateWeightin classNeuron
-
-