wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

Season 3 #Spaic Machine learning Weekly Quiz

Total questions: 20

Worksheet time: 15mins

Name
Class
Date
1.

The key challenge (s) to successfully training a machine learning Model :

a)

Selecting features

b)

Choosing the right algorithm

c)

Tuning the hyper-parameter

d)

Evaluating the metric

e)

All of the above

2.

Automated ML test multiple algorithm and hyper-parameter in sequence and return the best one :

a)

True

b)

False

3.

The result Model Of Automated ML can be customized :

a)

True

b)

False

4.

What are the user Input to Automated ML process ?

a)

Dataset

b)

Target metric

c)

Constraint (cost / time)

d)

Algorithm

5.

To create an Automated ML run :

a)

We need to select the algorithm first

b)

We need to select the dataset first

c)

We need to select the compute target first

6.

There is no need to define the target column in Automated ML run

a)

True

b)

False

7.

What are the additional configuration for the regression task in Automated ML :

a)

Primary metric

b)

Blocked algorithms

c)

Target columns

d)

Training job time (hours)

e)

Metric score threshold

8.

You had this result after the execution of Automated ML with a regression task (What that's it mean)

a)

Max Abs Scaler . DecisionTree is the best model

b)

Max Abs Scaler .RandomForest is the best model

c)

The metric used is Normalized root mean square

d)

The metric value of the best model is 0.0533

9.

What is the resulted evaluation chart after the execution of Automated ML with a regression task

a)

ROC curve

b)

Confusion matrix

c)

Predict vs True

d)

Residual Histogram

10.

Which of the following is a widely used and effective ML algorithm based on the idea of bagging?

a)

Decision Tree

b)

Regression

c)

Classification

d)

Random Forest

11.

The most widely used metric(s) and tool(s) to assess a classification model is/are :

a)

Confusion Matrix

b)

Cost-sensitive accuracy

c)

Area under the ROC curve

d)

All of the above

12.

Which of the following is a good dataset characteristic?

a)

Large enough to yield meaningful results

b)

Is representative of the dataset as a whole

c)

Large enough to yield meaningful results and Is representative of the dataset as a whole

d)

None of the above

13.

Which of the following is a disadvantage of decision trees?

a)

Factor analysis

b)

Decision trees are robust to outliers

c)

Decision trees are prone to be overfit

d)

None of the above

14.

How do you handle missing or corrupted data in a data set?

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

15.

What is the purpose of performing cross-validation?

a)

To assess the predictive performance of models

b)

To judge how the trained model performs outside the sample on test data

c)

All of the above

16.

When performing regression or classification,which of the following is a 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

d)

None of the above

17.

Which of the following is an example of feature extraction?

a)

Constructing bag of words vector from an email

b)

Applying PCA projects to a large high-dimensional data

c)

Removing stopwords in a sentence

d)

All of the above

18.

Which of the following is true about Naive Bayes?

a)

Assumes that all the features in a dataset are equally important

b)

Assumes that all the features in a dataset are independent

c)

None of the above options

19.

Which of the following statements about regularization is not correct?

a)

Using too large a value of lambda can cause your hypothesis to underfit the data

b)

Using too large a value of lambda can cause your hypothesis to overfit the data

c)

Using a very large value of lambda cannot hurt the performance of your hypothesis

d)

None of the above

20.

How can you prevent a clustering algorithm from getting stuck in bad local optima?

a)

Set the same seed value for each run

b)

Use multiple random initializations

c)

None of the above