Quiz Space

Machine Learning Practice · Quiz 2 · 6 Aug 2023 · May 2023 term

Question 6: Your task to design a model that can predict label of an …

Question 6

+2 marksOne correct option

Your task to design a model that can predict label of an article, in order to help an online news website. The labels could be “political”, “sports” and “international”.

Following is the label matrix for random 3 articles:

[100110001]\begin{bmatrix} 1 & 0 & 0 \\ 1 & 1 & 0 \\ 0 & 0 & 1 \end{bmatrix}

What type of classification problem is this?

  1. A

    Binary class, single label classification.

  2. B

    Binary class, multi label classification.

  3. C

    Multi class, multi label classification.

  4. D

    Multi class, single label classification.

Show answer

Correct answer

  • C

    Multi class, multi label classification.

Question 6 of 23 in the IIT Madras BS Machine Learning Practice (MLP) Quiz 2 paper sat on 6 Aug 2023, in the May 2023 term (IIT M DIPLOMA AN2 EXAM QPD2 06 Aug 2023). It carries 2 marks.

More questions from this paper

  1. Q1Consider the following code and its output: Code: Output: What will be the output of the following code? Enter your ans…
  2. Q2Figure question
  3. Q3What will be the output of the following code ?
  4. Q4What will be the output of the following code?
  5. Q5Figure question
  6. Q7How does strong correlation between features given the labels impact the classification performance in Naive Bayes?
  7. Q8When might the Precision-Recall curve be more informative than the ROC curve?
  8. Q9Figure question
  9. Q10Which of the following parameters learned by the KNN(KNeighborRegressor) model while training?
  10. Q11Figure question
  11. Q12Consider below code which of the following option is true for that Assume X_train and X_test are of type numpy.ndarray.
  12. Q13Which of these may NOT help in handling overfitting in decision trees?
  13. Q14Figure question
  14. Q15Figure question
  15. Q16Figure question
  16. Q17Which of the following is correct?
  17. Q18Which of the following option is true?
  18. Q19Figure question
  19. Q20What will be the output of the following code:
  20. Q21Consider the following code. How many different parameter combinations will be tried in GridSearchCV?
  21. Q22Which of the following is the most expected output for the code given below:
  22. Q23Consider the following block of code: In which of the following scenarios, the split will be done at a node N?