javax.datamining.algorithm.feedforwardneuralnet
Interface NeuralLayerFactory

All Superinterfaces:
Factory

public interface NeuralLayerFactory
extends Factory

A factory class that creates instances of NeuralLayer.

Author:
JSR-73 Java Data Mining Expert Group
See Also:
Factory

Method Summary
 NeuralLayer create(int numberOfNodes)
          Creates an instance of NeuralLayer with the specified number of nodes and initialized to vendor-specified default values.
 int getMaxNumberOfNodes()
          Returns the maximum number of nodes that can be supported by DME.
 

Method Detail

create

public NeuralLayer create(int numberOfNodes)
                   throws JDMException
Creates an instance of NeuralLayer with the specified number of nodes and initialized to vendor-specified default values. If not provided, the number of nodes is set to the default value.

Parameters:
numberOfNodes - The number of nodes in the layer to be created.
Returns:
NeuralLayer
Throws:
JDMException

getMaxNumberOfNodes

public int getMaxNumberOfNodes()
Returns the maximum number of nodes that can be supported by DME.

Returns:
int