ROOT 6.08/07 Reference Guide |
Class representing training batches consisting of a matrix of input data and a matrix of output data. The input and output data can be accessed using the GetInput() and GetOutput() member functions.
AArchitecture | The underlying architecture. |
Definition at line 49 of file DataLoader.h.
Public Member Functions | |
TBatch (Matrix_t &, Matrix_t &) | |
TBatch (const TBatch &)=default | |
TBatch (TBatch &&)=default | |
Matrix_t & | GetInput () |
Return the matrix representing the input data. More... | |
Matrix_t & | GetOutput () |
Return the matrix representing the output data. More... | |
TBatch & | operator= (const TBatch &)=default |
TBatch & | operator= (TBatch &&)=default |
Private Types | |
using | Matrix_t = typename AArchitecture::Matrix_t |
Private Attributes | |
Matrix_t | fInputMatrix |
Matrix_t | fOutputMatrix |
#include <TMVA/DNN/DataLoader.h>
|
private |
Definition at line 53 of file DataLoader.h.
TMVA::DNN::TBatch< AArchitecture >::TBatch | ( | Matrix_t & | inputMatrix, |
Matrix_t & | outputMatrix | ||
) |
Definition at line 182 of file DataLoader.h.
|
default |
|
default |
|
inline |
Return the matrix representing the input data.
Definition at line 67 of file DataLoader.h.
|
inline |
Return the matrix representing the output data.
Definition at line 69 of file DataLoader.h.
|
default |
|
default |
|
private |
Definition at line 55 of file DataLoader.h.
|
private |
Definition at line 56 of file DataLoader.h.