org.encog.neural.networks.training
Interface BatchSize

All Known Implementing Classes:
Backpropagation, ManhattanPropagation, Propagation, QuickPropagation, ResilientPropagation, ScaledConjugateGradient

public interface BatchSize

The batch size. Specify 1 for pure online training. Specify 0 for pure batch training (complete training set in one batch). Otherwise specify the batch size for batch training.


Method Summary
 int getBatchSize()
          The batch size.
 void setBatchSize(int theBatchSize)
          Set the batch size.
 

Method Detail

getBatchSize

int getBatchSize()
The batch size. Specify 1 for pure online training. Specify 0 for pure batch training (complete training set in one batch). Otherwise specify the batch size for batch training.

Returns:
The batch size.

setBatchSize

void setBatchSize(int theBatchSize)
Set the batch size. Specify 1 for pure online training. Specify 0 for pure batch training (complete training set in one batch). Otherwise specify the batch size for batch training.

Parameters:
theBatchSize - The batch size.


Copyright © 2014. All Rights Reserved.