org.encog.neural.freeform
Interface TempTrainingData

All Known Subinterfaces:
FreeformConnection, FreeformNeuron
All Known Implementing Classes:
BasicFreeformConnection, BasicFreeformNeuron, FreeformContextNeuron

public interface TempTrainingData

Some training methods require that temp data be stored during the training process.


Method Summary
 void addTempTraining(int i, double value)
          Add to the specified temp value.
 void allocateTempTraining(int l)
          Allocate the specified length of temp training.
 void clearTempTraining()
          Clear the temp training.
 double getTempTraining(int index)
          Get the specified temp training.
 void setTempTraining(int index, double value)
          Set a temp training value.
 

Method Detail

addTempTraining

void addTempTraining(int i,
                     double value)
Add to the specified temp value.

Parameters:
i - The index.
value - The value to add.

allocateTempTraining

void allocateTempTraining(int l)
Allocate the specified length of temp training.

Parameters:
l - The length.

clearTempTraining

void clearTempTraining()
Clear the temp training.


getTempTraining

double getTempTraining(int index)
Get the specified temp training.

Parameters:
index - The indfex.
Returns:
The temp training value.

setTempTraining

void setTempTraining(int index,
                     double value)
Set a temp training value.

Parameters:
index - The index.
value - The value.


Copyright © 2014. All Rights Reserved.