Uses of Interface
org.encog.neural.data.NeuralDataPair

Packages that use NeuralDataPair
org.encog.neural.data   
org.encog.neural.data.basic   
org.encog.neural.data.buffer   
org.encog.neural.data.csv   
org.encog.neural.data.folded   
org.encog.neural.data.image   
org.encog.neural.data.sql   
org.encog.neural.data.temporal   
org.encog.neural.data.union   
org.encog.neural.data.xml   
org.encog.normalize.input   
 

Uses of NeuralDataPair in org.encog.neural.data
 

Methods in org.encog.neural.data with parameters of type NeuralDataPair
 void NeuralDataSet.add(NeuralDataPair inputData)
          Add a NeuralData object to the dataset.
 

Uses of NeuralDataPair in org.encog.neural.data.basic
 

Classes in org.encog.neural.data.basic that implement NeuralDataPair
 class BasicNeuralDataPair
          A basic implementation of the NeuralDataPair interface.
 

Methods in org.encog.neural.data.basic that return NeuralDataPair
static NeuralDataPair BasicNeuralDataPair.createPair(int inputSize, int idealSize)
          Create a new neural data pair object of the correct size for the neural network that is being trained.
 NeuralDataPair BasicNeuralDataSet.BasicNeuralIterator.next()
          Read the next item.
 

Methods in org.encog.neural.data.basic that return types with arguments of type NeuralDataPair
 List<NeuralDataPair> BasicNeuralDataSet.getData()
          Get the data held by this container.
 Iterator<NeuralDataPair> BasicNeuralDataSet.iterator()
          Create an iterator for this collection.
 

Methods in org.encog.neural.data.basic with parameters of type NeuralDataPair
 void BasicNeuralDataSet.add(NeuralDataPair inputData)
          Add a neural data pair to the list.
 

Method parameters in org.encog.neural.data.basic with type arguments of type NeuralDataPair
 void BasicNeuralDataSet.setData(List<NeuralDataPair> data)
           
 

Constructor parameters in org.encog.neural.data.basic with type arguments of type NeuralDataPair
BasicNeuralDataSet(List<NeuralDataPair> data)
          Construct a data set from an already created list.
 

Uses of NeuralDataPair in org.encog.neural.data.buffer
 

Methods in org.encog.neural.data.buffer that return NeuralDataPair
 NeuralDataPair BufferedDataSetIterator.next()
          
 

Methods in org.encog.neural.data.buffer that return types with arguments of type NeuralDataPair
 Iterator<NeuralDataPair> BufferedNeuralDataSet.iterator()
           
 

Methods in org.encog.neural.data.buffer with parameters of type NeuralDataPair
 void BufferedNeuralDataSet.add(NeuralDataPair pair)
          Add a data pair of both input and ideal data.
 

Uses of NeuralDataPair in org.encog.neural.data.csv
 

Methods in org.encog.neural.data.csv that return NeuralDataPair
 NeuralDataPair CSVNeuralDataSet.CSVNeuralIterator.next()
          Read the next record from the CSV file.
 

Methods in org.encog.neural.data.csv that return types with arguments of type NeuralDataPair
 Iterator<NeuralDataPair> CSVNeuralDataSet.iterator()
          Get an iterator to use with the CSV data.
 

Methods in org.encog.neural.data.csv with parameters of type NeuralDataPair
 void CSVNeuralDataSet.add(NeuralDataPair inputData)
          Adds are not supported.
 

Uses of NeuralDataPair in org.encog.neural.data.folded
 

Methods in org.encog.neural.data.folded that return NeuralDataPair
 NeuralDataPair FoldedIterator.next()
          
 

Methods in org.encog.neural.data.folded that return types with arguments of type NeuralDataPair
 Iterator<NeuralDataPair> FoldedDataSet.iterator()
          
 

Methods in org.encog.neural.data.folded with parameters of type NeuralDataPair
 void FoldedDataSet.add(NeuralDataPair inputData)
          Not supported.
 

Uses of NeuralDataPair in org.encog.neural.data.image
 

Methods in org.encog.neural.data.image with parameters of type NeuralDataPair
 void ImageNeuralDataSet.add(NeuralDataPair inputData)
          Add input and expected output.
 

Uses of NeuralDataPair in org.encog.neural.data.sql
 

Methods in org.encog.neural.data.sql that return NeuralDataPair
 NeuralDataPair SQLNeuralDataSet.SQLNeuralIterator.next()
          Read the next row from the database.
 

Methods in org.encog.neural.data.sql that return types with arguments of type NeuralDataPair
 Iterator<NeuralDataPair> SQLNeuralDataSet.iterator()
          Get an iterator for this collection.
 

Methods in org.encog.neural.data.sql with parameters of type NeuralDataPair
 void SQLNeuralDataSet.add(NeuralDataPair inputData)
          Adds are not supported.
 

Uses of NeuralDataPair in org.encog.neural.data.temporal
 

Methods in org.encog.neural.data.temporal with parameters of type NeuralDataPair
 void TemporalNeuralDataSet.add(NeuralDataPair inputData)
          Adding directly is not supported.
 

Uses of NeuralDataPair in org.encog.neural.data.union
 

Methods in org.encog.neural.data.union that return NeuralDataPair
 NeuralDataPair UnionNeuralDataSet.UnionIterator.next()
          Obtain the next piece of data.
 

Methods in org.encog.neural.data.union that return types with arguments of type NeuralDataPair
 Iterator<NeuralDataPair> UnionNeuralDataSet.iterator()
          Obtain an iterator to access the collection of data.
 

Methods in org.encog.neural.data.union with parameters of type NeuralDataPair
 void UnionNeuralDataSet.add(NeuralDataPair inputData)
          Not supported.
 

Uses of NeuralDataPair in org.encog.neural.data.xml
 

Methods in org.encog.neural.data.xml that return NeuralDataPair
 NeuralDataPair XMLNeuralDataSet.XMLNeuralIterator.next()
          Read the next training set item.
 

Methods in org.encog.neural.data.xml that return types with arguments of type NeuralDataPair
 Iterator<NeuralDataPair> XMLNeuralDataSet.iterator()
           
 

Methods in org.encog.neural.data.xml with parameters of type NeuralDataPair
 void XMLNeuralDataSet.add(NeuralDataPair inputData)
          Adds are not supported, this is a read only data set.
 

Uses of NeuralDataPair in org.encog.normalize.input
 

Methods in org.encog.normalize.input that return NeuralDataPair
 NeuralDataPair NeuralDataFieldHolder.getPair()
           
 

Methods in org.encog.normalize.input that return types with arguments of type NeuralDataPair
 Iterator<NeuralDataPair> NeuralDataFieldHolder.getIterator()
           
 

Methods in org.encog.normalize.input with parameters of type NeuralDataPair
 void NeuralDataFieldHolder.setPair(NeuralDataPair pair)
          Set the pair.
 

Constructor parameters in org.encog.normalize.input with type arguments of type NeuralDataPair
NeuralDataFieldHolder(Iterator<NeuralDataPair> iterator, InputFieldNeuralDataSet field)
          Construct the class.
 



Copyright © 2011. All Rights Reserved.