TNNVSRNNWESLEY Flashcards
Which type of neural network (RNN or TNN) is the insurance company, RAKT, currently using for its chatbot?
RNN
What is a key advantage of Transformer Neural Networks (TNNs) over Recurrent Neural Networks (RNNs) in processing language?
TNNs use a self-attention mechanism to capture relationships between words, while RNNs process sequential data.
What is the purpose of the hidden layers in a Recurrent Neural Network (RNN)?
Maintaining the memory of the network.
What mechanism do Transformer Neural Networks (TNNs) use to capture the relationships between different words in the input sequence?
Self-attention mechanism
What is a potential problem when training RNNs (Recurrent Neural Networks) using backpropagation through time (BPTT)?
The vanishing gradient problem, which makes it difficult to learn long-term dependencies in data.
How do Long Short-Term Memory (LSTM) networks address the vanishing gradient problem in RNNs?
With a three-gate mechanism (input, forget, output gates) that controls the flow of information.
Give an example of a large language model that uses the self-attention mechanism found in Transformer Neural Networks (TNNs).
Generative Pre-trained Transformer 3 (GPT-3)
What type of data are RNNs designed to process?
Sequential data
In an RNN, what is the role of the input layer?
Processes the sequence of data, with each element in the sequence fed as an input to the network.
What is the full name of TNN, and what is its key innovation?
Transformer Neural Network, the key innovation being the application of a self-attention mechanism.