
21. In a deep learning model with 8 hidden layers, each containing 200 neurons, a dropout rate of 0.25 is
applied during training. If the model is trained on a dataset consisting of 10, 000 samples, how many
neurons, on average, will be active (not dropped out) during the forward pass of each sample?
21.
1200
22. What should the bonuses be for the company’s employees, Alice and Bob, given the following profit
distribution scenarios? (v is the profit calculation function.)
- When there are no employees, resulting in no profit (v({}) = 0).
- When Alice alone generates 20 units of profit (v({Alice}) = 20).
- When Bob alone generates 10 units of profit (v({Bob}) = 10).
- When both Alice and Bob together generate 50 units of profit (v({Alice, Bob}) = 50).
Hint: Use the concept of Shapely values.
A. Alice Bonus: 20 ; Bob Bonus: 30;
B. Alice Bonus: 40 ; Bob Bonus: 10;
C. Alice Bonus: 30 ; Bob Bonus: 20;
D. None of the above.
23. Consider the 3 × 3 matrix A whose eigenvalues are 2, −2 and −1. Then Trace of (A
3
+ A
2
) is:
A. Not Defined. B. 8. C. 16. D. Invalid Question.
24. Euclidean distance based k-means clustering algorithm was run on a dataset of 100 points with k = 3.
If the points (1, 1) and (−1, 1) are both part of cluster 3, then which one of the following points is
necessarily also part of cluster 3?
A. (0, 0) B. (0, 2) C. (2, 0) D. (0, 1)
25. During WGAN training on a dataset of handwritten digits, you observe:
- Discriminator loss remains high and plateaus.
- Generator loss continues to decrease.
Assuming a fixed model architecture:
✓ The discriminator is too powerful. Reduce its learning rate.
The generator is learning artifacts. Increase its learning rate.
The models are stuck in a local minimum. Adjust the weight clipping range.
More data is needed to improve both losses.
26. Consider a Wasserstein GAN (WGAN) with a gradient penalty term (λ×∥∇D(x)∥
2
) in the discriminator
loss. Which of the following are true:
✓ The gradient penalty encourages the discriminator map to follow Lipschitz conti-
nuity with a constant of 1.
The gradient penalty encourages the discriminator to minimize the Jensen-Shannon divergence
between real and generated data distributions.
✓ A very large λ can lead to vanishing gradients in the discriminator, hindering
training progress.
An optimal λ value ensures the discriminator perfectly distinguishes real from generated sam-
ples.
27. What information does the score function (∇S(x
t
)) provide about the data point (x
t
)?
Points earned: out of a possible 7 points