【学习笔记】吴恩达深度学习第一课第一周课后习题

Week 1 Quiz - Introduction to deep learning

1.What does the analogy “AI is the new electricity” refer to?

  • [ ]AI is powering personal devices in our homes and offices, similar to electricity.
  • [ ]Through the “smart grid”, AI is delivering a new wave of electricity.
  • [ ]AI runs on computers and is thus powered by electricity, but it is letting computers do things not possible before.
  • [x]Similar to electricity starting about 100 years ago, AI is transforming multiple industries.
  • Note: Andrew illustrated the same idea in the lecture.

2.Which of these are reasons for Deep Learning recently taking off? (Check the two options that apply.)

  • [x] We have access to a lot more computational power.
  • [ ]Neural Networks are a brand new field.
  • [x] We have access to a lot more data.
  • [ ]Deep learning has resulted in significant improvements in important applications such as online advertising, speech recognition, and image recognition.
  • 博主注:D选项为深度学习发展的结果而不是reason。

3.Recall this diagram of iterating over different ML ideas. Which of the statements below are true? (Check all that apply.)

  • [x] Being able to try out ideas quickly allows deep learning engineers to iterate more quickly.
  • [x] Faster computation can help speed up how long a team takes to iterate to a good idea.
  • [ ]It is faster to train on a big dataset than a small dataset.
  • [x] Recent progress in deep learning algorithms has allowed us to train good models faster (even without changing the CPU/GPU hardware).
  • Note: A bigger dataset generally requires more time to train on a same model.

4.When an experienced deep learning engineer works on a new problem, they can usually use insight from previous problems to train a good model on the first try, without needing to iterate multiple times through different models. True/False?

  • [ ]True
  • [x] False
  • Note: Maybe some experience may help, but nobody can always find the best model or hyperparameters without iterations.

5.Which one of these plots represents a ReLU activation function?

6.Images for cat recognition is an example of “structured” data, because it is represented as a structured array in a computer. True/False?

  • [ ]True
  • [x] False
  • 博主注:图片为非结构化数据,此外还有音频等。

7.A demographic dataset with statistics on different cities’ population, GDP per capita, economic growth is an example of “unstructured” data because it contains data coming from different sources. True/False?

  • [ ]True
  • [x] False
  • 博主注:这些单个非结构化数据被整合到数据集中,因此成为了结构化数据。

8.Why is an RNN (Recurrent Neural Network) used for machine translation, say translating English to French? (Check all that apply.)

  • [x] It can be trained as a supervised learning problem.
  • [ ]It is strictly more powerful than a Convolutional Neural Network (CNN).
  • [x] It is applicable when the input/output is a sequence (e.g., a sequence of words).
  • [ ]RNNs represent the recurrent process of Idea->Code->Experiment->Idea->….
  • 博主注:图像领域中,通常使用的是卷积神经网络(CNN),对于序列数据(如音频,英汉语等)通常使用RNN
  • 关于D选项,博主认为RNN所指的循环与该题所指的循环并不是同一个。

9.In this diagram which we hand-drew in lecture, what do the horizontal axis (x-axis) and vertical axis (y-axis) represent?

  • x-axis is the amount of data
  • y-axis (vertical axis) is the performance of the algorithm.

10.Assuming the trends described in the previous question’s figure are accurate (and hoping you got the axis labels right), which of the following are true? (Check all that apply.)

  • [x] Increasing the training set size generally does not hurt an algorithm performance, and it may help significantly.
  • [x] Increasing the size of a neural network generally does not hurt an algorithm performance, and it may help significantly.
  • [ ]Decreasing the training set size generally does not hurt an algorithm performance, and it may help significantly.
  • [ ]Decreasing the size of a neural network generally does not hurt an algorithm performance, and it may help significantly.
posted @ 2020-07-17 11:46  _Roki  阅读(386)  评论(0编辑  收藏  举报