-
Notifications
You must be signed in to change notification settings - Fork 76
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add a problem about LSTM #81
base: main
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
good work, I had some issues with the rendering of the learn section, but the solution looks good and the overall learn section is nice!
<p>First time step ((t = 1)):</p> | ||
<p>[ | ||
\begin{aligned} | ||
f_1 &= \sigma(0.5 \times 1.0 + 0.1) = 0.6487 \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should end each line with \ so it goes to the next line
<ul> | ||
<li>(W_f, W_i, W_c, W_o) are weight matrices for the forget gate, input gate, cell state, and output gate respectively.</li> | ||
<li>(b_f, b_i, b_c, b_o) are bias vectors.</li> | ||
<li>(\sigma) is the sigmoid activation function.</li> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should be (\sigma) so it renders correctly
<li>(W_f, W_i, W_c, W_o) are weight matrices for the forget gate, input gate, cell state, and output gate respectively.</li> | ||
<li>(b_f, b_i, b_c, b_o) are bias vectors.</li> | ||
<li>(\sigma) is the sigmoid activation function.</li> | ||
<li>(\circ) denotes element-wise multiplication.</li> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should be (\circ) so it renders correctly
It is a regular LSTM layer, should be medium or hard diffcult