Introduction to Machine Learning (Gradient Descendent)

Introduction to Machine Learning (Gradient Descendent)

University

8 Qs

quiz-placeholder

Similar activities

Logistic Regression

Logistic Regression

University - Professional Development

10 Qs

DP-100 Day 2

DP-100 Day 2

University - Professional Development

10 Qs

Intro to ML: Decision Trees

Intro to ML: Decision Trees

University

7 Qs

Neural Networks Quiz

Neural Networks Quiz

University

10 Qs

Intro to ML: K-Nearest Neighbours

Intro to ML: K-Nearest Neighbours

University

9 Qs

Machine Learning Basics

Machine Learning Basics

University

10 Qs

Linear Regression with One Variable

Linear Regression with One Variable

University

6 Qs

Regression in Machine Learning

Regression in Machine Learning

University

10 Qs

Introduction to Machine Learning (Gradient Descendent)

Introduction to Machine Learning (Gradient Descendent)

Assessment

Quiz

Computers

University

Medium

Created by

Suresh Raikwar

Used 118+ times

FREE Resource

8 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

As the number of training examples goes to infinity, your model trained on that data will have:

Lower variance

Higher variance

Same variance

None of the above

2.

MULTIPLE CHOICE QUESTION

5 mins • 1 pt

Consider the following training set of m=4 training examples: (x,y)={ (1, 0.5), ( 2, 1) , (4, 2), ( 0,0)}. Consider the linear regression model hθ(x)=θ01x. What are the values of θ0 and θ1 that you would expect?

θ0=0.5,θ1=0

θ0=0.5,θ1=0.5

θ0=1,θ1=0.5

θ0=0,θ1=0.5

3.

MULTIPLE CHOICE QUESTION

3 mins • 1 pt

Suppose we set θ0=−1,θ1=0.5. What is hθ(4)?

0.5

-1

1

0

4.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Predicting the amount of rainfall in a region based on various cues is a ______ problem.

Supervised learning

Unsupervised learning

Clustering

None of the above

5.

MULTIPLE SELECT QUESTION

2 mins • 1 pt

You trained a binary classifier model which gives very high accuracy on the training data, but much lower accuracy on validation data. Which of the following may be true?

This is an instance of overfitting.

This is an instance of underfitting.

The training was not well regularized.

The training and testing examples are sampled from different distributions.

6.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

How many coefficients do you need to estimate in a simple linear regression model (One independent variable)?

One

Two

Three

Four

7.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

________ is a simple approach to supervised learning. It assumes that the dependence of Y on X1, X2, . . . Xp is linear.

Linear regression

Logistic regression

Gradient Descent

All of these

8.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Every ________ function has a probability distribution function.

Continuous

Discrete

Categorical

Random