com.marmoush.jann.neuralgraph
Interface INeuralDirectedGraphable

All Known Implementing Classes:
NeuralDirectedGraph

public interface INeuralDirectedGraphable

The Interface INeuralDirectedGraphable.


Method Summary
 List<Integer> getAllLayersNumOfNeurons()
          Gets the all layers num of neurons.
 int getInputLength(int layerIndex)
          Gets the input length.
 int getLayerNumOfNeurons(int layerIndex)
          Gets the layer num of neurons.
 List<Integer> getPredecessorsOf(int layerIndex)
          Gets the predecessors of.
 List<Integer> getSuccessorsOf(int layerIndex)
          Gets the successors of.
 void setAllLayersNumOfNeurons(List<Integer> nNeuronsPerLayer)
          Sets the all layers num of neurons.
 

Method Detail

getAllLayersNumOfNeurons

List<Integer> getAllLayersNumOfNeurons()
Gets the all layers num of neurons.

Returns:
the all layers num of neurons

getInputLength

int getInputLength(int layerIndex)
Gets the input length.

Parameters:
layerIndex - the layer index
Returns:
the input length

getLayerNumOfNeurons

int getLayerNumOfNeurons(int layerIndex)
Gets the layer num of neurons.

Parameters:
layerIndex - the layer index
Returns:
the layer num of neurons

getPredecessorsOf

List<Integer> getPredecessorsOf(int layerIndex)
Gets the predecessors of.

Parameters:
layerIndex - the layer index
Returns:
the predecessors of

getSuccessorsOf

List<Integer> getSuccessorsOf(int layerIndex)
Gets the successors of.

Parameters:
layerIndex - the layer index
Returns:
the successors of

setAllLayersNumOfNeurons

void setAllLayersNumOfNeurons(List<Integer> nNeuronsPerLayer)
Sets the all layers num of neurons.

Parameters:
nNeuronsPerLayer - the new all layers num of neurons


Copyright © 2011-2012 Marmoush.com. All Rights Reserved.