. . . . . . . . provides some built-in datasets that can be used for testing purposes.
A. scikit-learn
B. classification
C. regression
D. none of the above
Select an option to see the answer and solution.
The leaf nodes of a model tree are
A. averages of numeric output attribute values.
B. nonlinear regression equations.
C. linear regression equations.
D. sums of numeric output attribute values.
Select an option to see the answer and solution.
The parameter . . . . . . . . allows specifying the percentage of elements to put into the test/training set
A. test_size
B. training_size
C. All above
D. None of these
Select an option to see the answer and solution.
How do you handle missing or corrupted data in a dataset?
A. Drop missing rows or columns
B. Replace missing values with mean/median/mode
C. Assign a unique category to missing values
D. All of the above
Select an option to see the answer and solution.
What is the naive assumption in a Naive Bayes Classifier.
A. all the classes are independent of each other
B. all the features of a class are independent of each other
C. the most probable feature for a class is the most important feature to be cinsidered for classification
D. all the features of a class are conditionally dependent on each other
Select an option to see the answer and solution.
Data used to optimize the parameter settings of a supervised learner model.
A. training
B. test
C. verification
D. validation
Select an option to see the answer and solution.
In a real problem, you should check to see if the SVM is separable and then include slack variables if it is not separable.
Select an option to see the answer and solution.
We usually use feature normalization before using the Gaussian kernel in SVM. What is true about feature normalization? 1. We do feature normalization so that new feature will dominate other 2. Some times, feature normalization is not feasible in case of categorical variables 3. Feature normalization always helps when we use Gaussian kernel in SVM
A. 1
B. 1 and 2
C. 1 and 3
D. 2 and 3
Select an option to see the answer and solution.
The minimum time complexity for training an SVM is O(n2). According to this fact, what sizes of datasets are not best suited for SVM's?
A. Large datasets
B. Small datasets
C. Medium sized datasets
D. Size does not matter
Select an option to see the answer and solution.
This clustering algorithm initially assumes that each data instance represents a single cluster.
A. agglomerative clustering
B. conceptual clustering
C. k-means clustering
D. expectation maximization
Select an option to see the answer and solution.
How to select best hyperparameters in tree based models?
A. measure performance over training data
B. measure performance over validation data
C. both of these
D. random selection of hyper parameters
Select an option to see the answer and solution.
If TP=9 FP=6 FN=26 TN=70 then Error rate will be
A. 45 percentage
B. 99 percentage
C. 28 percentage
D. 20 perentage
Select an option to see the answer and solution.
scikit-learn also provides a class for per-sample normalization, Normalizer. It can apply . . . . . . . . to each element of a dataset
A. max, l0 and l1 norms
B. max, l1 and l2 norms
C. max, l2 and l3 norms
D. max, l3 and l4 norms
Select an option to see the answer and solution.
This supervised learning technique can process both numeric and categorical input attributes.
A. linear regression
B. bayes classifier
C. logistic regression
D. backpropagation learning
Select an option to see the answer and solution.
Choose the correct statement with respect to 'confidence' metric in association rules
A. it is the conditional probability that a randomly selected transaction will include all the items in the consequent given that the transaction includes all the items in the antecedent.
B. a high value of confidence suggests a weak association rule
C. it is the probability that a randomly selected transaction will include all the items in the consequent as well as all the items in the antecedent.
D. confidence is not measured in terms of (estimated) conditional probability.
Select an option to see the answer and solution.
Common deep learning applications / problems can also be solved using . . . . . . . .
A. Real-time visual object identification
B. Classic approaches
C. Automatic labeling
D. Bio-inspired adaptive systems
Select an option to see the answer and solution.
Of the Following Examples, Which would you address using an supervised learning Algorithm?
A. given email labeled as spam or not spam, learn a spam filter
B. given a set of news articles found on the web, group them into set of articles about the same story.
C. given a database of customer data, automatically discover market segments and group customers into different market segments.
D. find the patterns in market basket analysis
Select an option to see the answer and solution.
Given a frequent itemset L, If |L| = k, then there are
A. 2k - 1 candidate association rules
B. 2k candidate association rules
C. 2k - 2 candidate association rules
D. 2k -2 candidate association rules
Select an option to see the answer and solution.
100 people are at party. Given data gives information about how many wear pink or not, and if a man or not. Imagine a pink wearing guest leaves, was it a man?
Select an option to see the answer and solution.
Suppose, you got a situation where you find that your linear regression model is under fitting the data. In such situation which of the following options would you consider? 1. I will add more variables 2. I will start introducing polynomial degree variables 3. I will remove some variables
A. 1 and 2
B. 2 and 3
C. 1 and 3
D. 1, 2 and 3
Select an option to see the answer and solution.