INTRODUCTION TO MACHINE LEARNING Week 2

Session: JAN-APR 2023

Course Name: Introduction to Machine Learning

Course Link: Click Here

These are Introduction to Machine Learning Week 2 Assignment 2 Answers


Q1. Given a training data set of 10,000 instances, with each input instance having 17 dimensions and each output instance having 2 dimensions, the dimensions of the design matrix used in applying linear regression to this data is
a. 10000 × 17
b. 10002 × 17
c. 10000 × 18
d. 10000 × 19

Answer: c. 10000 × 18


Q2. Suppose we want to add a regularizer to the linear regression loss function, to control the magnitudes of the weights β. We have a choice between Ω1(β)=Σpi=1|β| and Ω2(β)=Σpi=1β2. Which one is more likely to result in sparse weights?
a. Ω1
b. Ω2
c. Both Ω1 and Ω2 will result in sparse weights
d. Neither of Ω1 or Ω2 can result in sparse weights

Answer: a. Ω1


These are Introduction to Machine Learning Week 2 Assignment 2 Answers


Q3. The model obtained by applying linear regression on the identified subset of features may differ from the model obtained at the end of the process of identifying the subset during
a. Forward stepwise selection
b. Backward stepwise selection
c. Forward stagewise selection
d. All of the above

Answer: c. Forward stagewise selection


Q4. Consider forward selection, backward selection and best subset selection with respect to the same data set. Which of the following is true?
a. Best subset selection can be computationally more expensive than forward selection
b. Forward selection and backward selection always lead to the same result
c. Best subset selection can be computationally less expensive than backward selection
d. Best subset selection and forward selection are computationally equally expensive
e. Both (b) and (d)

Answer: a. Best subset selection can be computationally more expensive than forward selection


These are Introduction to Machine Learning Week 2 Assignment 2 Answers


Q5. In the lecture on Multivariate Regression, you learn about using orthogonalization iteratively to obtain regression co-effecients. This method is generally referred to as Multiple Regression using Successive Orthogonalization. In the formulation of the method, we observe that in iteration k, we regress the entire dataset on z0,z1,…zk−1. It seems like a waste of computation to recompute the coefficients for z0 a total of p times, z1 a total of p−1 times and so on. Can we re-use the coefficients computed in iteration j for iteration j+1 for zj−1?

a. No. Doing so will result in the wrong γ matrix. and hence, the wrong βi’s.
b. Yes. Since zj−1 is orthogonal to zj−l∀l≤j1, the multiple regression in each iteration is essentially a univariate regression on each of the previous residuals. Since the regression coefficients for the previous residuals don’t change over iterations, we can re-use the coefficients for further iterations.

Answer: b. Yes. Since zj−1 is orthogonal to zj−l∀l≤j1, the multiple regression in each iteration is essentially a univariate regression on each of the previous residuals. Since the regression coefficients for the previous residuals don’t change over iterations, we can re-use the coefficients for further iterations.


These are Introduction to Machine Learning Week 2 Assignment 2 Answers


Q6. Principal Component Regression (PCR) is an approach to find an orthogonal set of basis vectors which can then be used to reduce the dimension of the input. Which of the following matrices contains the principal component directions as its columns (follow notation from the lecture video)
a. X
b. S
c. Xc
d. V
e. U

Answer: d. V


These are Introduction to Machine Learning Week 2 Assignment 2 Answers


Q7. Consider the following five training examples

image 67

We want to learn a function f(x) of the form f(x)=ax+b which is parameterised by (a,b). Using squared error as the loss function, which of the following parameters would you use to model this function to get a solution with the minimum loss.
a. (4,3)
b. (1,4)
c. (4,1)
d. (3,4)

Answer: d. (3,4)


These are Introduction to Machine Learning Week 2 Assignment 2 Answers


Q8. Here is a data set of words in two languages.

image 68

Let us build a nearest neighbours classifier that will predict which language a word belongs to. Say we represent each word using the following features.
• Length of the word
• Number of consonants in the word
• Whether it ends with the letter ’o’ (1 if it does, 0 if it doesn’t)
For example, the representation of the word ‘waffle’ would be [6, 2, 0]. For a distance function, use the Manhattan distance.
d(a,b)=Σni=1|ai−bi| where a,b∈Rn
Take the input word ‘keto’. With k = 1, the predicted language for the word is?

a. English
b. Vinglish
c. None of the above

Answer: a. English


These are Introduction to Machine Learning Week 2 Assignment 2 Answers

More Weeks of Introduction to Machine Learning: Click Here

More Nptel courses: https://progiez.com/nptel


Session: JUL-DEC 2022

1. The parameters obtained in linear regression
a. can take any value in the real space
b. are strictly integers
c. always lie in the range [0,1]
d. can take only non-zero values

Answer: d. can take only non-zero values


These are Introduction to Machine Learning Week 2 Assignment 2 Answers


2. Suppose that we have N independent variables (X1,X2,…Xn) and the dependent variable is Y . Now imagine that you are applying linear regression by fitting the best fit line using the least square error on this data. You found that the correlation coefficient for one of its variables (Say X1) with Y is -0.005.
a. Regressing Y on X1 mostly does not explain away Y .
b. Regressing Y on X1 explains away Y .
c. The given data is insufficient to determine if regressing Y on X1 explains away Y or not.

Answer: c. The given data is insufficient to determine if regressing Y on X1 explains away Y or not.


These are Introduction to Machine Learning Week 2 Assignment 2 Answers


3. Consider the following five training examples

We want to learn a function f(x) of the form f(x)=ax+b which is parameterised by (a,b).Using mean squared error as the loss function, which of the following parameters would you use to model this function to get a solution with the minimum loss?

a. (4, 3)
b. (1, 4)
c. (4, 1)
d. (3, 4)

Answer: d. (3, 4)


These are Introduction to Machine Learning Week 2 Assignment 2 Answers


4. The relation between studying time (in hours) and grade on the final examination (0-100) in a random sample of students in the Introduction to Machine Learning Class was found to be: Grade = 30.5 + 15.2 (h)

How will a student’s grade be affected if she studies for four hours?


a. It will go down by 30.4 points.
b. It will go down by 30.4 points.
c. It will go up by 60.8 points.
d. The grade will remain unchanged.

e.It cannot be determined from the information given

Answer: a. It will go down by 30.4 points.


These are Introduction to Machine Learning Week 2 Assignment 2 Answers


5. Which of the statements is/are True?

a. Ridge has sparsity constraint, and it will drive coefficients with low values to 0.
b. Lasso has a closed form solution for the optimization problem, but this is not the case for Ridge.
c. Ridge regression does not reduce the number of variables since it never leads a coefficient to zero but only minimizes it.
d. If there are two or more highly collinear variables, Lasso will select one of them randomly.

Answer: c. Ridge regression does not reduce the number of variables since it never leads a coefficient to zero but only minimizes it.


These are Introduction to Machine Learning Week 2 Assignment 2 Answers


6. Consider the following statements:

Assertion(A): Orthogonalization is applied to the dimensions in linear regression.
Reason(R): Orthogonalization makes univariate regression possible in each orthogonal dimension separately to produce the coefficients.

a. Both A and R are true, and R is the correct explanation of A.
b. Both A and R are true, but R is not the correct explanation of A.
c. A is true, but R is false.
d. A is false, but R is true

e.Both A and R are false.

Answer: d. A is false, but R is true


These are Introduction to Machine Learning Week 2 Assignment 2 Answers


7. Consider the following statements:

Statement A: In Forward stepwise selection, in each step, that variable is chosen which has the maximum correlation with the residual, then the residual is regressed on that variable, and it is added to the predictor.

Statement B: In Forward stagewise selection, the variables are added one by one to the previously selected variables to produce the best fit till then

a. Both the statements are True.
b. Statement A is True, and Statement B is False
c. Statement A if False and Statement B is True
d. Both the statements are False.

Answer: a. Both the statements are True.


These are Introduction to Machine Learning Week 2 Assignment 2 Answers


8. The linear regression model y=a0+a1x1+a2x2+…+apxp is to be fitted to a set of N training data points having p attributes each. Let X be N×(p+1) vectors of input values (augmented by 1‘s), Y be N×1 vector of target values, and θ be (p+1)×1 vector of parameter values (a0,a1,a2,…,ap). If the sum squared error is minimized for obtaining the optimal regression model, which of the following equation holds?

Answer:- b


These are Introduction to Machine Learning Week 2 Assignment 2 Answers


* The material and content uploaded on this website are for general information and reference purposes only. Please do it by your own first. COPYING MATERIALS IS STRICTLY PROHIBITED.

* The material and content uploaded on this website are for general information and reference purposes only. Please do it by your own first. COPYING MATERIALS IS STRICTLY PROHIBITED.


More from PROGIEZ

These are Introduction to Machine Learning Week 2 Assignment 2 Answers


More from PROGIEZ

These are Introduction to Machine Learning Week 2 Assignment 2 Answers
Introduction to Machine Learning Week 2 Assignment 2 Answers