Actions

Recurrent Neural Network (RNN)

Revision as of 01:56, 3 December 2021 by User (talk | contribs) (Created page with "A '''Recurrent Neural Network (RNN)''' is a type of artificial neural network which uses sequential data or time series data. These Deep...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

A Recurrent Neural Network (RNN) is a type of artificial neural network which uses sequential data or time series data. These deep learning algorithms are commonly used for ordinal or temporal problems, such as language translation, natural language processing (nlp), speech recognition, and image captioning; they are incorporated into popular applications such as Siri, voice search, and Google Translate. Like feedforward and convolutional neural networks (CNNs), recurrent neural networks utilize training data to learn. They are distinguished by their “memory” as they take information from prior inputs to influence the current input and output. While traditional deep neural networks assume that inputs and outputs are independent of each other, the output of recurrent neural networks depend on the prior elements within the sequence. While future events would also be helpful in determining the output of a given sequence, unidirectional recurrent neural networks cannot account for these events in their predictions.[1]

  1. Definition - What Does Recurrent Neural Network (RNN) Mean? IBM