The Batch class encapsulates one mini-batch.
Holds a const_iterator to the beginning and the end of one batch in a vector of Pattern
Definition at line 234 of file NeuralNet.h.
Public Types | |
typedef std::vector< Pattern >::const_iterator | const_iterator |
Public Member Functions | |
Batch (typename std::vector< Pattern >::const_iterator itBegin, typename std::vector< Pattern >::const_iterator itEnd) | |
const_iterator | begin () const |
const_iterator | end () const |
size_t | size () const |
Private Attributes | |
const_iterator | m_itBegin |
iterator denoting the beginning of the batch | |
const_iterator | m_itEnd |
iterator denoting the end of the batch | |
#include <TMVA/NeuralNet.h>
typedef std::vector<Pattern>::const_iterator TMVA::DNN::Batch::const_iterator |
Definition at line 237 of file NeuralNet.h.
|
inline |
Definition at line 239 of file NeuralNet.h.
|
inline |
Definition at line 244 of file NeuralNet.h.
|
inline |
Definition at line 245 of file NeuralNet.h.
|
inline |
Definition at line 247 of file NeuralNet.h.
|
private |
iterator denoting the beginning of the batch
Definition at line 250 of file NeuralNet.h.
|
private |
iterator denoting the end of the batch
Definition at line 251 of file NeuralNet.h.