Week3-Day2

Week3-Day2

Professional Development

9 Qs

quiz-placeholder

Similar activities

Abap Week1

Abap Week1

Professional Development

10 Qs

Google Forms

Google Forms

Professional Development

13 Qs

General sap

General sap

Professional Development

11 Qs

Quiz - DevSecOps

Quiz - DevSecOps

Professional Development

10 Qs

DevOps Quiz

DevOps Quiz

Professional Development

10 Qs

Linux+ LX0-103 Quiz A

Linux+ LX0-103 Quiz A

Professional Development

10 Qs

Excel Data Validation and Verification

Excel Data Validation and Verification

6th Grade - Professional Development

10 Qs

DECI - Week 11 - round

DECI - Week 11 - round

Professional Development

10 Qs

Week3-Day2

Week3-Day2

Assessment

Quiz

Computers

Professional Development

Hard

Created by

pranav nerurkar

Used 3+ times

FREE Resource

9 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

You are employed by a startup building self-driving cars. You are in charge of detecting road signs (stop sign, pedestrian crossing sign, construction ahead sign) and traffic signals (red and green lights) in images. The goal is to recognize which of these objects appear in each image. As an example, the above image contains a pedestrian crossing sign and red traffic lights

Your 100,000 labeled images are taken using the front-facing camera of your car. This is also the distribution of data you care most about doing well on. You think you might be able to get a much larger dataset off the internet, that could be helpful for training even if the distribution of internet data is not the same.

You are just getting started on this project. What is the first thing you do? Assume each of the steps below would take about an equal amount of time (a few days).

Spend a few days checking what is human-level performance for these tasks so that you can get an accurate estimate of Bayes error.

Spend a few days getting the internet data, so that you understand better what data is available.

Spend a few days collecting more data using the front-facing camera of your car, to better understand how much data per unit time you can collect.

Spend a few days training a basic model and see what mistakes it makes

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Your goal is to detect which road signs (stop sign, pedestrian crossing sign, construction ahead sign) appear in images. You plan to use a deep neural network with ReLU units in the hidden layers. For the output layer, a softmax activation would be a good choice for the output layer because this is a multi-task learning problem. True/False?

True

False

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

You are carrying out error analysis and counting up what errors the algorithm makes. Which of these datasets do you think you should manually go through and carefully examine, one image at a time?

500 randomly chosen images

10,000 randomly chosen images

10,000 images on which the algorithm made a mistake

500 images on which the algorithm made a mistake

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

After working on the data for several weeks, your team ends up with the following data: 100,000 labeled images taken using the front-facing camera of your car. 900,000 labeled images of roads downloaded from the internet. which data distribution is useful for us?

labeled images of roads downloaded from the internet

images taken using the front-facing camera of your car

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The distribution of data you care about contains images from your car’s front-facing camera; which comes from a different distribution than the images you were able to find and download off the internet. How should you split the dataset into train/dev/test sets?

Mix all the 100,000 images with the 900,000 images you found online. Shuffle everything. Split the 1,000,000 images dataset into 600,000 for the training set, 200,000 for the dev set and 200,000 for the test set.

Mix all the 100,000 images with the 900,000 images you found online. Shuffle everything. Split the 1,000,000 images dataset into 980,000 for the training set, 10,000 for the dev set and 10,000 for the test set.

Choose the training set to be the 900,000 images from the internet along with 20,000 images from your car’s front-facing camera. The 80,000 remaining images will be split equally in dev and test sets.

Choose the training set to be the 900,000 images from the internet along with 80,000 images from your car’s front-facing camera. The 20,000 remaining images will be split equally in dev and test sets.

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

You also know that human-level error on the road sign and traffic signals classification task is around 0.5%. Which of the following are True?

Your algorithm overfits the dev set because the error of the dev and test sets are very close.

You have a large avoidable-bias problem because your training error is quite a bit higher than the human-level error.

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

You also know that human-level error on the road sign and traffic signals classification task is around 0.5%. Which of the following are True?

Your algorithm overfits the dev set because the error of the dev and test sets are very close.

You have a large avoidable-bias problem because your training error is quite a bit higher than the human-level error.

8.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

You decide to focus on the dev set and check by hand what are the errors due to. Here is a table summarizing your discoveries. In this table, 4.1%, 8.0%, etc.are a fraction of the total dev set (not just examples your algorithm mislabeled). I.e. about 8.0/14.3 = 56% of your errors are due to foggy pictures. The results from this analysis implies that the team’s highest priority should be to bring more foggy pictures into the training set so as to address the 8.0% of errors in that category. True/False?

False because data augmentation (synthesizing foggy images by clean/non-foggy images) is more efficient.

False because this would depend on how easy it is to add this data and how much you think your team thinks it’ll help

9.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

You can buy a specially designed windshield wiper that help wipe off some of the raindrops on the front-facing camera. Based on the table from the previous question, which of the following statements do you agree with?

2.2% would be a reasonable estimate of the maximum amount this windshield wiper could improve performance.

2.2% would be a reasonable estimate of the minimum amount this windshield wiper could improve performance.