RNN Structure

RNN Structure

The image below shows the structure of a simple RNN.

An RNN maps every x<i>x^{\lt i\gt} to a y<i>y^{\lt i\gt}, and while doing so, it uses information learned at previous timestamps. However, it does not use information from future timestamps.

a<t>=g(Waaa<t1>+Wazx<t>+ba)a^{<t>} = g(W_{aa}a^{<t-1>}+W_{az}x^{<t>}+b_{a})

y^<t>=g(Wyaa<t>+by)\hat{y}^{<t>}=g(W_{ya}a^{<t>}+b_{y})

Last updated