The Encog Project

org.encog.neural.networks
Interface Network

All Known Implementing Classes:
BasicNetwork

public interface Network

Interface that defines a neural network.

Author:
jheaton

Method Summary
 NeuralData compute(NeuralData pattern)
          Compute the output from the neural network.
 

Method Detail

compute

NeuralData compute(NeuralData pattern)
Compute the output from the neural network.

Parameters:
pattern - The input pattern.
Returns:
The output.

The Encog Project