Question 1
80%
60%
20%
15%
The IIT Madras BS Machine Learning Techniques (MLT) End Term paper sat on 1 Sept 2024, in the May 2024 term, set QDF1: 30 questions for 50 marks in 180 minutes. Every question is below with its answer. Take it as a timed mock test to be marked, or read it through first.
80%
60%
20%
15%
Correct answer
80%
Correct answer
Match the characteristics given below with the appropriate ensemble technique.
1. Decision stumps
2. Deep decision trees
3. Parallel execution
4. Sequential execution
Bagging → (2), (3); Boosting → (1), (4)
Bagging → (1), (4); Boosting → (2), (3)
Bagging → (1), (3); Boosting → (2), (4)
Bagging → (2), (4); Boosting → (1), (3)
Correct answer
Bagging → (2), (3); Boosting → (1), (4)
The predicted labels for x1 and x2 are 1 and −1 respectively.
The predicted labels for x1 and x2 are −1 and 1 respectively.
The predicted label for both data-points is 1.
The predicted label for both data-points is −1.
Correct answer
The predicted labels for x1 and x2 are 1 and −1 respectively.
Correct answer
2x1 + x2 = 0
x1 − 2x2 = 0
x1 + x2 = 0
x1 + 2x2 = 0
Correct answer
2x1 + x2 = 0
Correct answer: 0.4
Correct answer: 30
Correct answer: 0.315 (accepted within ±0.055)
2
4
3
5
Correct answers
2
4
The dataset is linearly separable with a positive margin.
The perceptron algorithm will terminate after a finite number of iterations when trained on this dataset.
The dataset is linearly separable, but the margin may be zero.
The dataset is not linearly separable.
Correct answers
The dataset is linearly separable with a positive margin.
The perceptron algorithm will terminate after a finite number of iterations when trained on this dataset.
Correct answers
Based on the above data, answer the given subquestions.
The weight vector output by the perceptron algorithm on this dataset can be expressed as a linear combination of the data-points where the coefficients of the linear combination are integers.
TRUE
FALSE
Correct answer
TRUE
Based on the above data, answer the given subquestions.
TRUE
FALSE
Correct answer
FALSE
Based on the above data, answer the given subquestions.
If a soft-margin SVM is trained on this dataset, the optimal weight vector it returns will be the same as the one returned by a hard-margin SVM, irrespective of the value of the hyperparameter C.
TRUE
FALSE
Correct answer
FALSE
Based on the above data, answer the given subquestions.
Correct answer: 2
Based on the above data, answer the given subquestions.
Correct answer: 1
Based on the above data, answer the given subquestions.
Correct answer: 0
Based on the above data, answer the given subquestions.
Correct answer: 3
Based on the above data, answer the given subquestions.
Correct answer: 0
Based on the above data, answer the given subquestions.
Correct answer: -1
Based on the above data, answer the given subquestions.
Correct answer: 3
Based on the above data, answer the given subquestions.
Correct answer: 2
Based on the above data, answer the given subquestions.
Correct answer: 4
Based on the above data, answer the given subquestions.
Enter the number corresponding to the squared loss._______________
Correct answer: 1
Based on the above data, answer the given subquestions.
Correct answer
Consider the following architecture of a neural network for a binary classification problem:
| Layer type | Number of neurons |
|---|---|
| Input | 5 |
| Hidden layer-1 | 10 |
| Hidden layer-2 | 10 |
| Output | 1 |
Based on the above data, answer the given subquestions.
How many learnable parameters does this network have? Ignore the biases in the computation.
Correct answer: 160
Consider the following architecture of a neural network for a binary classification problem:
| Layer type | Number of neurons |
|---|---|
| Input | 5 |
| Hidden layer-1 | 10 |
| Hidden layer-2 | 10 |
| Output | 1 |
Based on the above data, answer the given subquestions.
What is the most appropriate choice of activation function for the output layer if the binary cross- entropy loss is used?
Sigmoid
Linear
ReLU
Correct answer
Sigmoid
Consider the following architecture of a neural network for a binary classification problem:
| Layer type | Number of neurons |
|---|---|
| Input | 5 |
| Hidden layer-1 | 10 |
| Hidden layer-2 | 10 |
| Output | 1 |
Based on the above data, answer the given subquestions.
For a particular data-point, the activations after the first hidden layer in the forward pass is given to be .
What is the activation function used in the first hidden layer?
ReLU
Sigmoid
Correct answer
ReLU
Correct answer