Deep learning model architectures: Practice Questions — Core Machine Learning and AI Knowledge (NVIDIA-Certified Associate: Generative AI LLM)
Deep Learning Model Architectures: Practice Questions These multiple-choice questions are designed to help you prepare for the Core Machine Learning...
Deep Learning Model Architectures: Practice Questions
These multiple-choice questions are designed to help you prepare for the Core Machine Learning and AI Knowledge section of the NVIDIA-Certified Associate: Generative AI LLM exam, focusing specifically on deep learning model architectures.
Which of the following architectures is primarily designed to handle sequential data and capture temporal dependencies?
- A. Convolutional Neural Network (CNN)
- B. Recurrent Neural Network (RNN)
- C. Feedforward Neural Network (FNN)
- D. Autoencoder
Answer: B
Explanation: RNNs are specifically designed to process sequential data by maintaining hidden states that capture information from previous time steps, making them suitable for tasks like language modeling and time series prediction.
Which deep learning architecture is most effective for image recognition tasks due to its ability to capture spatial hierarchies?
- A. Transformer
- B. Convolutional Neural Network (CNN)
- C. Recurrent Neural Network (RNN)
- D. Generative Adversarial Network (GAN)
Answer: B
Explanation: CNNs use convolutional layers to detect spatial features such as edges and textures, making them highly effective for image-related tasks.
What is the primary innovation of Transformer architectures compared to traditional RNNs?
- A. Use of convolutional filters
- B. Attention mechanisms enabling parallel processing
- C. Recurrent connections for temporal memory
- D. Autoencoding for dimensionality reduction
Answer: B
Explanation: Transformers leverage self-attention mechanisms that allow the model to weigh the importance of different input tokens simultaneously, enabling efficient parallelization and improved handling of long-range dependencies.
Which architecture consists of two neural networks competing against each other to generate realistic data?
- A. Autoencoder
- B. Generative Adversarial Network (GAN)
- C. Transformer
- D. Feedforward Neural Network
Answer: B
Explanation: GANs consist of a generator network that creates data and a discriminator network that evaluates its authenticity, training together in an adversarial process to produce realistic outputs.
In a deep learning model, what is the main purpose of residual connections as used in ResNet architectures?
- A. To reduce the number of parameters
- B. To prevent vanishing gradients and enable training of very deep networks
- C. To increase the receptive field
- D. To perform dimensionality reduction
Answer: B
Explanation: Residual connections allow gradients to flow directly through skip connections, mitigating the vanishing gradient problem and facilitating the training of very deep networks.
Which architecture is best suited for tasks requiring understanding of both text and images simultaneously?
- A. CNN
- B. Multimodal Transformer
- C. RNN
- D. Autoencoder
Answer: B
Explanation: Multimodal Transformers are designed to process and integrate multiple data modalities, such as text and images, enabling tasks like image captioning and visual question answering.
What is the key characteristic of an autoencoder architecture?
- A. It generates adversarial examples
- B. It compresses input data into a lower-dimensional representation and reconstructs it
- C. It uses attention to weigh input tokens
- D. It processes sequential data with memory
Answer: B
Explanation: Autoencoders learn to encode input data into a compressed latent space and then decode it back, often used for dimensionality reduction or anomaly detection.
Which deep learning architecture introduced the concept of multi-head self-attention?
- A. CNN
- B. Transformer
- C. RNN
- D. GAN
Answer: B
Explanation: The Transformer architecture introduced multi-head self-attention, allowing the model to attend to information from different representation subspaces at multiple positions.
More in this topic
Ready to test your knowledge?
Put what you've learned into practice with a quick quiz and track your progress.
Test your knowledge →