LayerNorm_GRU
LayerNorm_GRU copied to clipboard
Implement layer normalization GRU in pytorch
Results
1
LayerNorm_GRU issues
Sort by
recently updated
recently updated
newest added
the output h_t in original GRU is: (1 - z_t) * n_t + z_t * h_t-1 Where n_t in this code is h_hat and h_t-1 is hidden state