Deep Learning and GenAI Quiz 2 23 Nov 2025 — Question 19
Show answer
Correct answer
Video solution
The video solution to this question is being recorded and will play here. Until then, the answer key is above.
Question 19 of 25 in the IIT Madras BS Introduction to Deep Learning and Generative AI (Deep Learning and GenAI) Quiz 2 paper sat on 23 Nov 2025, in the September 2025 term (IIT M DIPLOMA AN EXAM QDD2 23 Nov 2025 NEW). It carries 2 marks.
More questions from this paper
- You have a tensor x = torch.tensor([1, 2, 3, 4]). You perform And What will be the shapes of stacked_x_dim0 and stacked…
- You have a PyTorch tensor residing on the GPU. You then attempt to convert it directly to a NumPy array using What will…
- The Huber Loss function is introduced as a robust alternative to Mean Squared Error (MSE) and Mean Absolute Error (MAE)…
- A deep learning model contains a stack of three consecutive 3x3 convolutional layers, each with a stride of 1and suffic…
- Figure question
- The Momentum optimizer helps overcome which limitation of vanilla Gradient Descent?
- Consider the RMSProp optimizer update rule: v_t = \beta v_{t-1} + (1 - \beta)(\nabla w_t)^2 The algorithm runs for 10 i…
- You are given two loss functions. Your task is to identify their nature using the second derivative test. Function A: A…
- What happens if the latent space in a GAN has too few dimensions for the task complexity?
- At Nash Equilibrium in a perfectly trained GAN, what is the expected output of the discriminator D(G(z)) for a generate…
- A student is trying to write the Generator training loop and is confused about the order of operations. Their code is: …
- You've been training your GAN for 100 epochs. You notice two things: The Generator loss (g_loss) is very low and stable…
- Figure question
- Figure question
- Figure question
- Consider that the following paragraph is used as the input to train a sequence language model: "this is a great sunny d…
- Figure question
- You are performing Beam Search with K=2 to generate a sequence. Step 1: The model predicts probabilities for the first …
- Figure question
- Given the update rule for Adagrad \begin{aligned} v_t &= v_{t-1} + (\nabla w_t)^2 \ w_{t+1} &= w_t - \frac{\eta}{\sqrt{…
- In an LSTM (Long Short-Term Memory) network, which pair of components correctly represents the short-term and long-term…
- The LSTM (Long Short-Term Memory) network uses several gates to control information flow. Here are the key equations wi…
- You are training an RNN-based text classification model with the following three sequences: Under which training scenar…
- Consider the following modified implementation of an RNN. What will be the percentage reduction in the rnn parameters d…