Viva Questions For DS Lab
Viva Questions For DS Lab
2. How can cognitive computing benefit smarter cities and government operations?
Cognitive computing in government can improve data analysis and decision-making. It
enables cities to optimize resources, enhance citizen services, and respond to issues in real-
time.
10. What are common metrics for evaluating deep learning models in these applications?
Metrics like accuracy, precision, recall, and F1-score assess model performance. In image
captioning, BLEU scores are often used to evaluate the quality of generated captions.
CHP5: Implementation of supervised learning algorithm like a. Ada-Boosting b. Random forests
11.Evaluation of Classification Algorithms.
1. What is the goal of recognizing handwritten digits using an Artificial Neural Network
(ANN)?
To accurately classify images of handwritten digits (0-9) into their corresponding labels.
2. Which dataset is commonly used for training ANNs for digit recognition?
The MNIST dataset is the standard dataset for this task, containing 70,000 labeled images.
5. What activation function is often used in the output layer for digit classification?
The softmax activation function is commonly used to convert logits into probabilities for each
class.
6. What loss function is typically used for training digit recognition models?
The categorical cross-entropy loss function is used to measure the difference between
predicted and actual labels.
10. What techniques can be used to improve ANN performance on digit recognition tasks?
Techniques like dropout, batch normalization, and data augmentation can help improve
model accuracy and prevent overfitting.
EXP6: Implementation of Convolution Neural Network for Image Classification in python
1. What is the purpose of using a Convolutional Neural Network (CNN) for image
classification?
To automatically learn features from images for accurate classification.
10. What are some common datasets used for CNN image classification tasks?
Common datasets include CIFAR-10, MNIST, and ImageNet.
EXP7: Classification of Dataset using Random Forest Algorithm in Python
5. What libraries are commonly used for implementing Random Forest in Python?
Scikit-learn is the most commonly used library for this purpose.