Question : In which of the following scenario we can use naive Bayes theorem for classification 1. Classify whether a given person is a male or a female based on the measured features. The features include height, weight, and foot size. 2. To classify whether an email is spam or not spam 3. To identify whether a fruit is an orange or not based on features like diameter, color and shape 4. All 1,2 and 3 5. None of the above
Correct Answer : 4
Explanation: naive Bayes classifiers have worked quite well in many real-world situations, famously document classification and spam filtering. They requires a small amount of training data to estimate the necessary parameters
Question :
Select the choice where Regression algorithms are not best fit 1. When the dimension of the object given 2. Weight of the person is given 3. Temperature in the atmosphere 4. Employee status
Correct Answer : 4
Explanation: Regression algorithms are usually employed when the data points are inherently numerical variables (such as the dimensions of an object, the weight of a person, or the temperature in the atmosphere) but, unlike Bayesian algorithms, they're not very good for categorical data (such as employee status or credit score description).
Question : Logistic regression does not work well in case of binary classification
1. True 2. False
Correct Answer : 2
Explanation: : In logistic regression, the model (the logistic function) takes values between 0 and 1, which can be interpreted as the probability of class membership and works well in the case of binary classification.
1. Computationally inexpensive, easy to implement, knowledge representation easy to interpret 2. May have low accuracy 3. Works with Numeric values 4. Only 1 and 3 are correct 5. All 1,2 and 3 are correct