Uses of Class
org.joone.engine.Pattern

Packages that use Pattern
org.joone.engine   
org.joone.engine.learning   
org.joone.io   
org.joone.net   
org.joone.structure   
org.joone.util   
 

Uses of Pattern in org.joone.engine
 

Fields in org.joone.engine declared as Pattern
protected  Pattern Synapse.b_pattern
           
protected  Pattern Synapse.m_pattern
           
 

Methods in org.joone.engine that return Pattern
 Pattern Synapse.fwdGet()
           
 Pattern InputPatternListener.fwdGet()
          Returns the pattern coming from the previous layer during the recall phase
 Pattern BufferedSynapse.fwdGet()
          Return the first element of the FIFO structure, if exists.
 Pattern Synapse.revGet()
           
 Pattern OutputSwitchSynapse.revGet()
          Returns the error pattern coming from the next layer during the training phase
 Pattern OutputPatternListener.revGet()
          Returns the error pattern coming from the next layer during the training phase
 Pattern DirectSynapse.revGet()
           
 Pattern BufferedSynapse.revGet()
          Not used
 

Methods in org.joone.engine with parameters of type Pattern
protected  void Layer.fireFwdPut(Pattern pattern)
          Calls all the fwdPut methods on the output synapses to pass them the calculated patterns
protected  void Layer.fireRevPut(Pattern pattern)
          Calls all the revPut methods on the input synapses to get the input patterns and pass them the resulting calculated gradients
 void Synapse.fwdPut(Pattern pattern)
           
 void OutputSwitchSynapse.fwdPut(Pattern pattern)
          Method to put a pattern forward to the next layer
 void OutputPatternListener.fwdPut(Pattern pattern)
          Method to put a pattern forward to the next layer
 void BufferedSynapse.fwdPut(Pattern pattern)
          Writes the input pattern into the FIFO structure.
 void Layer.fwdRun(Pattern pattIn)
          Implementation code for the single-thread version of Joone /********************************************************* /** This method serves to a single forward step when the Layer is called from an external thread
 void Synapse.revPut(Pattern pattern)
           
 void InputPatternListener.revPut(Pattern pattern)
          Method to put an error pattern backward to the previous layer
 void DirectSynapse.revPut(Pattern pattern)
           
 void BufferedSynapse.revPut(Pattern pattern)
          Not used
 void Layer.revRun(Pattern pattIn)
          This method serves to a single backward step when the Layer is called from an external thread
 

Uses of Pattern in org.joone.engine.learning
 

Methods in org.joone.engine.learning that return Pattern
 Pattern AbstractTeacherSynapse.fwdGet()
          Here, it forwards (returns) the pushed error (in FIFO order).
 Pattern ComparisonSynapse.fwdGet()
           
 Pattern AbstractTeacherSynapse.revGet()
           
 Pattern ComparingSynapse.revGet()
           
 Pattern ComparisonSynapse.revGet()
           
 Pattern TeachingSynapse.revGet()
           
 

Methods in org.joone.engine.learning with parameters of type Pattern
 void AbstractTeacherSynapse.fwdPut(Pattern pattern)
           
 void ComparingSynapse.fwdPut(Pattern pattern)
           
 void ComparisonSynapse.fwdPut(Pattern pattern)
           
 void TeachingSynapse.fwdPut(Pattern pattern)
           
 void TeacherSynapse.fwdPut(Pattern pattern)
           
 void AbstractTeacherSynapse.revPut(Pattern pattern)
           
 void ComparisonSynapse.revPut(Pattern pattern)
           
 

Uses of Pattern in org.joone.io
 

Methods in org.joone.io that return Pattern
 Pattern MultipleInputSynapse.fwdGet()
           
 Pattern StreamInputSynapse.fwdGet()
           
 Pattern InputSwitchSynapse.fwdGet()
          Returns the pattern coming from the previous layer during the recall phase
 Pattern MultipleInputSynapse.fwdGet(InputConnector conn)
           
 Pattern StreamInputSynapse.fwdGet(InputConnector conn)
          This method is called by the InputConnector in order to get the next input pattern available for that connector
 Pattern InputSwitchSynapse.fwdGet(InputConnector conn)
          Returns the pattern coming from the previous layer during the recall phase.
protected  Pattern InputConnector.getStream()
           
protected  Pattern StreamInputSynapse.getStream()
           
 Pattern StreamOutputSynapse.revGet()
           
protected  Pattern StreamInputSynapse.zeroPattern()
           
 

Methods in org.joone.io with parameters of type Pattern
 void StreamOutputSynapse.fwdPut(Pattern pattern)
          The standard fwdPut method.
 void StreamInputSynapse.revPut(Pattern array)
           
 void InputSwitchSynapse.revPut(Pattern pattern)
          Method to put an error pattern backward to the previous layer
 void ImageOutputSynapse.write(Pattern pattern)
          Writes the Neural Network pattern to an Image file, the Image type is specified by the ImageFileType property.
 void JDBCOutputSynapse.write(Pattern pattern)
          Writes the pattern data to the database specified in the dbURL.
 void XLSOutputSynapse.write(Pattern pattern)
          Writes a Pattern to the XLS file.
abstract  void StreamOutputSynapse.write(Pattern pattern)
          Custom xxxOutputSynapses need to implement at least this method.
 void MemoryOutputSynapse.write(Pattern pattern)
          Custom Synapses need to implement at least this method.
 void FileOutputSynapse.write(Pattern pattern)
          Writes to the printer object.
 

Uses of Pattern in org.joone.net
 

Methods in org.joone.net with parameters of type Pattern
 void NestedNeuralLayer.fwdRun(Pattern pattIn)
           
 void NestedNeuralLayer.revRun(Pattern pattIn)
           
protected  void NeuralNet.singleStepBackward(Pattern error)
           
protected  void NeuralNet.singleStepForward(Pattern pattern)
           
protected  void NeuralNet.stepBackward(Pattern error)
           
protected  void NeuralNet.stepForward(Pattern pattern)
           
 

Uses of Pattern in org.joone.structure
 

Methods in org.joone.structure with parameters of type Pattern
 void PatternForwardedSynapse.fwdPut(Pattern pattern)
           
 

Uses of Pattern in org.joone.util
 

Methods in org.joone.util that return Pattern
 Pattern LearningSwitch.fwdGet()
          Connects the right input synapse depending on the Monitor's 'validation' parameter
 Pattern LearningSwitch.fwdGet(InputConnector conn)
          Connects the right input synapse depending on the Monitor's 'validation' parameter.
protected  Pattern OutputConverterPlugIn.getPattern()
          Gets the pattern that will be converted.
 

Methods in org.joone.util with parameters of type Pattern
protected  double RbfRandomCenterSelector.getDistance(Pattern aCenter1, Pattern aCenter2)
          Gets the distance between two centers.
 void OutputConverterPlugIn.setPattern(Pattern newPattern)
          Sets the current pattern to convert.
 



Submit Feedback to pmarrone@users.sourceforge.net