org.encog.engine
Interface EngineMachineLearning

All Known Subinterfaces:
EngineNeuralNetwork, Network
All Known Implementing Classes:
BasicNetwork, FlatNetwork, FlatNetworkRBF, SVMNetwork

public interface EngineMachineLearning

Generic interface to a Machine Learning class, such as a neural network or SVM.


Method Summary
 void compute(double[] input, double[] output)
          Compute output for the given input.
 int getInputCount()
           
 int getOutputCount()
           
 

Method Detail

compute

void compute(double[] input,
             double[] output)
Compute output for the given input.

Parameters:
input - An array of doubles for the input.
output - An array of doubles for the output.

getInputCount

int getInputCount()
Returns:
The input count.

getOutputCount

int getOutputCount()
Returns:
The output size.


Copyright © 2011. All Rights Reserved.