bodhidharma.classifiers.feedforward_neural_networks
Class InputNode

java.lang.Object
  extended by bodhidharma.classifiers.feedforward_neural_networks.InputNode

public class InputNode
extends java.lang.Object

Objects of this class represent the inputs to a neural network. Although these objects are not strictly necessary, they are present for the sake of completeness of the metaphor.

Author:
Cory McKay

Constructor Summary
InputNode(double initial_value)
          Instantiate the InputNode with the given parameter.
 
Method Summary
 double get_current_value()
          Get the current value of the iput
 java.lang.String output_values()
          Returns a string containing the current inputs ot the node.
 void set_input(double input)
          Set the current value of the input
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

InputNode

public InputNode(double initial_value)
Instantiate the InputNode with the given parameter.

Method Detail

set_input

public void set_input(double input)
Set the current value of the input


get_current_value

public double get_current_value()
Get the current value of the iput


output_values

public java.lang.String output_values()
Returns a string containing the current inputs ot the node. Used for debugging purposes.