Linear Regression F23

Linear Regression F23

12th Grade

8 Qs

quiz-placeholder

Similar activities

Python: Functions and Parameters

Python: Functions and Parameters

9th - 12th Grade

10 Qs

Lesson 1- Concepts of Information technology

Lesson 1- Concepts of Information technology

7th - 12th Grade

10 Qs

IT Introduction

IT Introduction

9th - 12th Grade

10 Qs

IDT S1 Final Review Part 2

IDT S1 Final Review Part 2

8th - 12th Grade

10 Qs

Problem Solving and Computing

Problem Solving and Computing

7th Grade - University

13 Qs

1.1 - Computer System

1.1 - Computer System

KG - University

11 Qs

Sistem Komputer (Bab 4)

Sistem Komputer (Bab 4)

12th Grade

10 Qs

Processing Methods

Processing Methods

12th Grade - University

11 Qs

Linear Regression F23

Linear Regression F23

Assessment

Quiz

Computers

12th Grade

Medium

Created by

ACM UCLA

Used 2+ times

FREE Resource

8 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Media Image

Supervised learning maps or relates...

input data --> labeled output data

input data --> unlabeled output data

output data --> labeled input data

output data --> unlabeled input data

Answer explanation

This is the definition! In supervised learning, we give our model lots of examples of labeled inputs --> labeled outputs. Our final goal is to be able to map an unlabeled input to a labeled output!

In unsupervised learning, our model is given inputs, and the model then has to figure out how to group those inputs on its own.

2.

MULTIPLE SELECT QUESTION

30 sec • 1 pt

Media Image

How can we avoid overfitting?

Use a LESS diverse dataset

Use more data

Use a MORE diverse dataset

Use less data

Answer explanation

Overfitting happens when our model keeps seeing the same pattern again and again -- and memorizes the pattern instead of generalizing it! More data means that we have more examples to generalize off of, and more diverse data means that our model sees different patterns and won't only memorize the same thing.

3.

MULTIPLE SELECT QUESTION

30 sec • 1 pt

Media Image

How can we avoid underfitting?

Use a model that guesses more randomly

Use more data

Use less data

Make our model more powerful/expressive

Answer explanation

Underfitting is caused by our model not having enough information, or when our model is not complex enough to capture relationships between the inputs and outputs.

4.

MULTIPLE CHOICE QUESTION

10 sec • 1 pt

Regression refers to the relationship between two or more variables.

True

False

Answer explanation

Yes! this is the definition of regression

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

Is this an example of linear regression?

Yes

No

Answer explanation

Media Image

Yes, this is linear regression! We get a straight line that is approximating the relationship between inputs and outputs of a scatterplot

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

Is this an example of linear regression?

Yes

No

Answer explanation

Media Image

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

Is this an example of linear regression?

Yes

No

Answer explanation

Media Image

This is a "straight line"! This is linear regression in multiple dimensions. Imagine the axis going up is our housing price, the axis going to the right is the number of rooms, and the axis going into the page is square feet.

8.

MULTIPLE SELECT QUESTION

45 sec • 1 pt

x: house location, y: house size

x: house size, y: house location

x: house location, y: house price

x: house size, y: house price

Answer explanation

Remember, y represents the OUTPUT, which is house price!

x represents the INPUTS, which could be a VECTOR of house size, house location, and other factors