wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

Season 6 #Spaic ML 2 Weekly Quiz

Total questions: 20

Worksheet time: 12mins

Name
Class
Date
1.

What is not a RNN in Machine Learning?

a)

one output to many inputs

b)

many inputs to a single output

c)

RNNs for non-sequential input

d)

many inputs to many outputs

2.

What is bootstrapping?

a)

Combining a candidate and randomly selecting a set of subsamples

b)

Splitting a candidate and randomly selecting a set of subsamples

c)

Dividing true positives by true positives plus false negatives

d)

Dividing false positives by true positives plus true negatives

3.

What explains an autoassociative network in machine learning?

a)

a neural network that contains no loops

b)

a neural network that contains feedback

c)

a neural network that has only one loop

d)

none of the above

4.

What does MSE calculate?

a)

Classifications

b)

Bias

c)

Entropy

d)

Error

5.

What is represented by elements per dimension in TensorFlow?

a)

Tensorshape

b)

Variables

c)

N-dimensional arrays

d)

Tensors

6.

What characterizes unlabeled examples in machine learning?

a)

There is prior knowledge

b)

There is plenty of confusing knowledge

c)

There is no confusing knowledge

d)

There is no prior knowledge

7.

What does the K-nearest neighbor model do?

a)

Classifies data for a base algorithm

b)

Classifies data for regression analysis

c)

Losing the k-nearest neighbors in training data

d)

Classifies data to the least frequent category

8.

What is the output of a regression model?

a)

Malleability

b)

Uncertainty

c)

Probability

d)

Reliability

9.

Below are three scatter plots for two features (Image 1, 2 & 3 from left to right). which of the following is/are examples of multi-collinear features?

a)

Features in Image 1

b)

Features in Image 2

c)

Features in Image 2 & 3

d)

Features in Image 1 & 2

10.

Suppose you have identified multi-collinear

features. Which of the following action(s) would you perform next?

1.Remove both collinear variables.

2.Instead of removing both variables, we can remove only one variable.

3.Removing correlated variables might lead to loss of information. In order to retain those variables, we can use penalized regression models like ridge or lasso regression

a)

Only 1

b)

Only 2

c)

Either 2 or 3

11.

Imagine, you are solving a classification problems with highly imbalanced class. The majority class is observed 99% of times in the training data. Your model has 99% accuracy after taking the predictions on test data. Which of the following is true in such a case?

a)

Accuracy metric is not a good idea for imbalanced class problems.

b)

Accuracy metric is a good idea for imbalanced class problems.

c)

Precision and recall metrics are good for imbalanced class problems.

d)

Precision and recall metrics aren’t good for imbalanced class problems.

12.

In ensemble learning, you aggregate the predictions for weak learners, so that an ensemble of these models will give a better prediction than prediction of individual models. Which of the following statements is / are true for weak learners used in ensemble model?

a)

They don’t usually overfit.

b)

They have high bias, so they cannot solve complex learning problems

c)

They usually overfit.

13.

You can evaluate the performance of a binary class classification problem using different metrics such as accuracy, log-loss, F-Score. Let’s say, you are using the log-loss function as evaluation metric.Which of the following option is / are true for interpretation of log-loss as an evaluation metric?

a)

If a classifier is confident about an incorrect classification, then log-loss will penalise it heavily.

b)

For a particular observation, the classifier assigns a very small probability for the correct class then the corresponding contribution to the log-loss will be very large.

c)

Lower the log-loss, the better is the model.

14.

The most widely used metrics and tools to assess a classification model are:

a)

Confusion matrix

b)

Cost-sensitive accuracy

c)

Area under the ROC curve

15.

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

16.

When performing regression or classification, which of the following is the correct way to preprocess the data?

a)

Normalize the data → PCA →training

b)

PCA → normalize PCA output → training

c)

Normalize the data → PCA → normalize PCA output → training

17.

Which of the following is an example of feature extraction?

a)

Constructing a bag of words vector from an email

b)

Applying PCA projects to a large high-dimensional data

c)

Removing stopwords in a sentence

18.

Which of the following techniques can be used for normalization in text mining?

a)

Stemming

b)

Lemmatization

c)

Stop Word Removal

19.

The effectiveness of an SVM depends upon

a)

selection of kernel

b)

kernel parameters

c)

Soft Margin Parameter C

d)

All of these

20.

Adding a non-important feature to a linear regression model may result in

a)

Increase in R square

b)

Decrease in R square

c)

No effect

d)

None of the above