Quiz Space

Machine Learning Practice · Quiz 2 · 4 Aug 2024 · May 2024 term

Question 2: What is ‘naive’ assumption in classifiers based on Naive …

Question 2

+3 marksOne correct option

What is ‘naive’ assumption in classifiers based on Naive Bayes?

  1. A

    All the classes are conditionally independent of each other.

  2. B

    All the classes are conditionally dependent on each other.

  3. C

    All the features are conditionally dependent on each other.

  4. D

    All the features are conditionally independent of each other.

Show answer

Correct answer

  • D

    All the features are conditionally independent of each other.

Question 2 of 22 in the IIT Madras BS Machine Learning Practice (MLP) Quiz 2 paper sat on 4 Aug 2024, in the May 2024 term (IIT M DIPLOMA AN EXAM QDD2 4 Aug 2024). It carries 3 marks.

More questions from this paper

  1. Q1Given the following code for Polynomial Regression: What are the coefficients of the model?
  2. Q3Figure question
  3. Q4What is the effect of increasing the regularization parameter alpha in Ridge Regression?
  4. Q5Given the code below: What do the coefficients represents?
  5. Q6How can we use both Ridge and Lasso Regularization in a machine learning model?
  6. Q7Which of the following types of classification problems is being solved when a model predicts multiple labels(greater t…
  7. Q8Given the code snippet and assume if any necessary requirements: What does cv=5 signify in this context?
  8. Q9Consider the following code and assume all the imports being made: What does the score method compute in this context?
  9. Q10Given the following code snippet for a multi-label classification problem: What does MultiOutputClassifier do in this c…
  10. Q11What is the main advantage of using RandomizedSearchCV over GridSearchCV ?
  11. Q12Figure question
  12. Q13What type of classification problem is the Perceptron algorithm best suited for?
  13. Q14What will be the output of the following code? Given that output of iris.target_names is ['setosa', 'versicolor', 'virg…
  14. Q15What is the default loss value in SGDClassifier API and it gives which classifier?
  15. Q16You are working with a dataset containing 1000 samples, aiming to classify them using the KNeighborsClassifier from sci…
  16. Q17Figure question
  17. Q18What will be the output of the following code ?
  18. Q19Figure question
  19. Q20Figure question
  20. Q21Which of the following scikit-learn model supports incremental learning through partial_fit method ?
  21. Q22Which of the following options are true for regularization parameter C in sklearn.svm.SVC ?