Following are the types of supervised learning
A. classification
B. regression
C. subgroup discovery
D. all of the above
Select an option to see the answer and solution.
overlearning causes due to an excessive . . . . . . . .
A. Capacity
B. Regression
C. Reinforcement
D. Accuracy
Select an option to see the answer and solution.
You trained a binary classifier model which gives very high accuracy on the training data, but much lower accuracy on validation data. Which is false.
A. this is an instance of overfitting
B. this is an instance of underfitting
C. the training was not well regularized
D. the training and testing examples are sampled from different distributions
Select an option to see the answer and solution.
For the given weather data, Calculate probability of playing
Select an option to see the answer and solution.
Which of the following is an example of a deterministic algorithm?
A. pca
B. k-means
C. Both A and B
D. None of these
Select an option to see the answer and solution.
Gaussian Nave Bayes Classifier is . . . . . . . . distribution
A. Continuous
B. Discrete
C. Binary
D. none of these
Select an option to see the answer and solution.
In which of the following each categorical label is first turned into a positive integer and then transformed into a vector where only one feature is 1 while all the others are 0.
A. labelencoder class
B. dictvectorizer
C. labelbinarizer class
D. featurehasher
Select an option to see the answer and solution.
Simple regression assumes a . . . . . . . . relationship between the input attribute and output attribute.
A. quadratic
B. inverse
C. linear
D. reciprocal
Select an option to see the answer and solution.
The . . . . . . . . step eliminates the extensions of (k-1)-itemsets which are not found to be frequent,from being considered for counting support
A. partitioning
B. candidate generation
C. itemset eliminations
D. pruning
Select an option to see the answer and solution.
Which of the following is true about weighted majority votes? 1. We want to give higher weights to better performing models 2. Inferior models can overrule the best model if collective weighted votes for inferior models is higher than best model 3. Voting is special case of weighted voting
A. 1 and 3
B. 2 and 3
C. 1 and 2
D. 1, 2 and 3
Select an option to see the answer and solution.
This clustering algorithm merges and splits nodes to help modify nonoptimal partitions.
A. agglomerative clustering
B. expectation maximization
C. conceptual clustering
D. k-means clustering
Select an option to see the answer and solution.
Following is powerful distance metrics used by Geometric model
A. euclidean distance
B. manhattan distance
C. both a and b
D. square distance
Select an option to see the answer and solution.
If I am using all features of my dataset and I achieve 100% accuracy on my training set, but ~70% on validation set, what should I look out for?
A. underfitting
B. nothing, the model is perfect
C. overfitting
D. None of these
Select an option to see the answer and solution.
How does number of observations influence overfitting? Choose the correct answer(s).Note: Rest all parameters are same 1. In case of fewer observations, it is easy to overfit the data. 2. In case of fewer observations, it is hard to overfit the data. 3. In case of more observations, it is easy to overfit the data. 4. In case of more observations, it is hard to overfit the data.
A. 1 and 4
B. 2 and 3
C. 1 and 3
D. none of theses
Select an option to see the answer and solution.
The . . . . . . . . parameter can assume different values which determine how the data matrix is initially processed.
Select an option to see the answer and solution.
Suppose you have trained an SVM with linear decision boundary after training SVM, you correctly infer that your SVM model is under fitting. Which of the following is best option would you more likely to consider iterating SVM next time?
A. you want to increase your data points
B. you want to decrease your data points
C. you will try to calculate more variables
D. you will try to reduce the features
Select an option to see the answer and solution.
How many coefficients do you need to estimate in a simple linear regression model (One independent variable)?
Select an option to see the answer and solution.
A regression model in which more than one independent variable is used to predict the dependent variable is called
A. a simple linear regression model
B. a multiple regression models
C. an independent model
D. none of the above
Select an option to see the answer and solution.
If you use an ensemble of different base models, is it necessary to tune the hyper parameters of all base models to improve the ensemble performance?
Select an option to see the answer and solution.
SVM algorithms use a set of mathematical functions that are defined as the kernel.
Select an option to see the answer and solution.