Deep Learning Viva Questions Simple Answers
Deep Learning Viva Questions Simple Answers
8. What is the difference between Batch Gradient Descent and Stochastic Gradient Descent
(SGD)?
Answer: Batch uses all data; SGD uses one sample; Mini-batch uses a few samples.
21. What are RNNs and how are they different from CNNs?
Answer: RNNs work on sequences, CNNs on images.
22. Explain the problem of vanishing gradient in RNNs and how LSTM solves it.
Answer: RNNs forget long-term info. LSTM remembers using gates.
23. What are LSTM and GRU? How are they different?
Answer: Both remember sequences. GRU is simpler than LSTM.
29. How do you choose the number of layers and neurons in a deep network?
Answer: Trial and error based on problem and tuning.
30. How do you evaluate the performance of a deep learning model?
Answer: Use accuracy, precision, recall for classification; MSE for regression.
34. What are some common metrics used for classification and regression in DL?
Answer: Classification: Accuracy, F1. Regression: MSE, MAE.