ATLAS Offline Software
Public Member Functions | Public Attributes | List of all members
lwtDev::LSTMState Struct Reference
Collaboration diagram for lwtDev::LSTMState:

Public Member Functions

 LSTMState (size_t n_input, size_t n_outputs)
 

Public Attributes

MatrixXd C_t
 
MatrixXd h_t
 
int time
 

Detailed Description

Definition at line 503 of file Stack.cxx.

Constructor & Destructor Documentation

◆ LSTMState()

lwtDev::LSTMState::LSTMState ( size_t  n_input,
size_t  n_outputs 
)

Definition at line 509 of file Stack.cxx.

509  :
510  C_t(MatrixXd::Zero(n_output, n_input)),
511  h_t(MatrixXd::Zero(n_output, n_input)),
512  time(0)
513  {
514  }

Member Data Documentation

◆ C_t

MatrixXd lwtDev::LSTMState::C_t

Definition at line 505 of file Stack.cxx.

◆ h_t

MatrixXd lwtDev::LSTMState::h_t

Definition at line 506 of file Stack.cxx.

◆ time

int lwtDev::LSTMState::time

Definition at line 507 of file Stack.cxx.


The documentation for this struct was generated from the following file:
lwtDev::LSTMState::C_t
MatrixXd C_t
Definition: Stack.cxx:505
lwtDev::LSTMState::time
int time
Definition: Stack.cxx:507
lwtDev::LSTMState::h_t
MatrixXd h_t
Definition: Stack.cxx:506
generate::Zero
void Zero(TH1D *hin)
Definition: generate.cxx:32