* recogition result as value
*
* @return image recognition result
*/
public HashMap<String, Double> getOutput() {
LabelsPlugin labelsPlugin = (LabelsPlugin) this.getParentNetwork()
.getPlugin(LabelsPlugin.class);
HashMap<String, Double> networkOutput = new HashMap<String, Double>();
for (Neuron neuron : this.getParentNetwork().getOutputNeurons()) {
String neuronLabel = labelsPlugin.getLabel(neuron);
networkOutput.put(neuronLabel, neuron.getOutput());
}
return networkOutput;
}