ATLAS Offline Software
Loading...
Searching...
No Matches
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: