Skip to content

Latest commit

 

History

History
38 lines (33 loc) · 2.93 KB

File metadata and controls

38 lines (33 loc) · 2.93 KB

Recurrent Neural Networks (RNNs)

Recurrent neural networks(RNNs) are a powerful and robust type of neural network, and belong to the most promising algorithms in use because it is the only one with an internal memory.

Like many other deep learning algorithms, recurrent neural networks are relatively old. They were initially created in the 1980’s, but only in recent years have we seen their true potential. An increase in computational power along with the the massive amounts of data that we now have to work with, and the invention of long short-term memory (LSTM) in the 1990s, has really brought RNNs to the foreground.

Because of their internal memory, RNN’s can remember important things about the input they received, which allows them to be very precise in predicting what’s coming next. This is why they're the preferred algorithm for sequential data like time series, speech, text, financial data, audio, video, weather and much more. Recurrent neural networks can form a much deeper understanding of a sequence and its context compared to other algorithms.

Subsets of Recurrent Neural Networks:

best way is to learn is from TOP to BOTTOM.

Usefull Resources: