Please enable JavaScript.
Coggle requires JavaScript to display documents.
Deep
Learning (Introduction (A machine learning subfield
of learning…
Deep
Learning
-
-
Recurrent
Neural Network
Introduction
-
-
Achitecture
Hidden state at time step t
\(h_t = f(Ux_t + Wh_{t-1}) \)
where,
U & W = weight
\(x_t \) = input at time t
\(h_{t-1} \) = previous hidden state
f can be ReLU/softmax
Output at time t
\(o_t = softmax(V s_t) \)
where,
V = weight
\(s_t \) = hidden state at time t
-