Uses of Interface
org.encog.engine.data.EngineData

Packages that use EngineData
org.encog.engine.data   
org.encog.neural.data   
org.encog.neural.data.basic   
org.encog.neural.data.buffer   
org.encog.neural.data.folded   
 

Uses of EngineData in org.encog.engine.data
 

Classes in org.encog.engine.data that implement EngineData
 class BasicEngineData
          A basic implementation of the EngineData interface.
 

Methods in org.encog.engine.data that return EngineData
static EngineData BasicEngineData.createPair(int inputSize, int idealSize)
          Create a new neural data pair object of the correct size for the neural network that is being trained.
 

Methods in org.encog.engine.data that return types with arguments of type EngineData
 List<EngineData> BasicEngineDataSet.getData()
          Get the data held by this container.
 

Methods in org.encog.engine.data with parameters of type EngineData
 void BasicEngineDataSet.add(EngineData inputData)
          Add a neural data pair to the list.
 void EngineIndexableSet.getRecord(long index, EngineData pair)
          Read an individual record, specified by index, in random order.
 void BasicEngineDataSet.getRecord(long index, EngineData pair)
          Get a record by index into the specified pair.
 

Method parameters in org.encog.engine.data with type arguments of type EngineData
 void BasicEngineDataSet.setData(List<EngineData> data)
           
 

Constructor parameters in org.encog.engine.data with type arguments of type EngineData
BasicEngineDataSet(List<EngineData> data)
          Construct a data set from an already created list.
 

Uses of EngineData in org.encog.neural.data
 

Subinterfaces of EngineData in org.encog.neural.data
 interface NeuralDataPair
          Training data is stored in two ways, depending on if the data is for supervised, or unsupervised training.
 

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

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

Methods in org.encog.neural.data.basic with parameters of type EngineData
 void BasicNeuralDataSet.getRecord(long index, EngineData pair)
          Get a record by index into the specified pair.
 

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

Methods in org.encog.neural.data.buffer with parameters of type EngineData
 void BufferedNeuralDataSet.getRecord(long index, EngineData pair)
          Read an individual record.
 

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

Methods in org.encog.neural.data.folded with parameters of type EngineData
 void FoldedDataSet.getRecord(long index, EngineData pair)
          Read an individual record, specified by index, in random order.
 



Copyright © 2011. All Rights Reserved.