org.encog.neural.networks
Class NeuralOutputHolder
java.lang.Object
org.encog.neural.networks.NeuralOutputHolder
public class NeuralOutputHolder
- extends Object
Holds the output from each layer of the neural network. This is very useful
for the propagation algorithms that need to examine the output of each
individual layer.
- Author:
- jheaton
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
NeuralOutputHolder
public NeuralOutputHolder()
- Construct an empty holder.
getOutput
public NeuralData getOutput()
- Returns:
- The output from the neural network.
getResult
public Map<Synapse,NeuralData> getResult()
- Returns:
- The result from the synapses in a map.
setOutput
public void setOutput(NeuralData output)
- Set the output.
- Parameters:
output - The new output.
Copyright © 2011. All Rights Reserved.