Chapter 2, Getting Started with the Architecture of the Transformer Model
- NLP transduction can encode and decode text representations. (True/False)
True. NLP is a form of transduction that converts sequences (written or oral) into numerical representations, processes them, and decodes the results back into text.
- Natural Language Understanding (NLU) is a subset of Natural Language Processing (NLP). (True/False)
True.
- Language modeling algorithms generate probable sequences of words based on input sequences. (True/False)
True.
- A transformer is a customized LSTM with a CNN layer. (True/False)
True and false. A transformer does not contain an LSTM. However, some transformers can contain a convolution layer (CNN) to process images, for example.
- A transformer does not contain LSTM or CNN layers. (True/False)
True and false. Transformers do not contain LSTM layers but some contain convolutional...