吴恩达深度学习课程练习题汇总(第一周)

在这里插入图片描述
1、What does the analogy “AI is the new electricity” refer to?(和“AI 是新电力”相类似的说法是什么?)
Similar to electricity starting about 100 years ago, AI is transforming multiple industries.(就 像 100 年前产生电能一样,AI 正在改变很多的行业。)
2、Which of these are reasons for Deep Learning recently taking off? (Check the two options that apply.)(哪些是深度学习快速发展的原因? (两个选项))
We have access to a lot more computational power.(现在我们有了更好更快的计算能力。)
We have access to a lot more data.(我们现在可以获得更多的数据。)

3、Recall this diagram of iterating over different ML ideas. Which of the statements below are true? (Check all that apply.)(回想一下关于不同的机器学习思想的迭代图。下面哪(个/些)陈述是正确的?)
吴恩达深度学习课程练习题汇总(第一周)_第1张图片
Being able to try out ideas quickly allows deep learning engineers to iterate more
quickly.(能够让深度学习工程师快速地实现自己的想法。)
Faster computation can help speed up how long a team takes to iterate to a good idea.(在更好更快的计算机上能够帮助一个团队减少迭代(训练)的时间。)
Recent progress in deep learning algorithms has allowed us to train good models faster
(even without changing the CPU/GPU hardware).(使用更新的深度学习算法可以使我们能够更快地训练好模型(即使更换 CPU / GPU 硬件)。)

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?( 当一个经验丰富的深度学习工程师在处理一个新的问题的时候,他们通常可以利用先前的经验来在第一次尝试中训练一个表现很好的模型,而不需要通过不同的模型迭代多次从而选择一个较好的模型,这个说法是正确的吗?)
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? (这些图中的哪一个表示ReLU 激活功能?)
吴恩达深度学习课程练习题汇总(第一周)_第2张图片
吴恩达深度学习课程练习题汇总(第一周)_第3张图片
图三
6、Images for cat recognition is an example of “structured” data, because it is represented as a structured array in a computer. True/False?(用于识别猫的图像是“结构化”数据的一个例子,因为它在计算机中被表示为结构化矩阵,是真的吗?)
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? (统计不同城市人口、人均 GDP、经济增长的人口统计数据集是“非结构化”数据的一个例子,因为它包含来自不同来源的数据,是真的吗?)
False(错误)
8. Why is an RNN (Recurrent Neural Network) used for machine translation, say translating English to French? (Check all that apply.)(为什么在上 RNN(循环神经网络)可以应用机器翻译将英语翻译成法语?)
It can be trained as a supervised learning problem. (因为它可以被用做监督学习。)
It is applicable when the input/output is a sequence (e.g., a sequence of words). (它比较适合用于当输入/输出是一个序列的时候(例如:一个单词序列))
9. In this diagram which we hand-drew in lecture, what do the horizontal axis (x-axis) and vertical axis (y-axis) represent?(在我们手绘的这张图中,横轴(x 轴)和纵轴(y 轴)代表什么? )
吴恩达深度学习课程练习题汇总(第一周)_第4张图片
x-axis is the amount of data(x 轴是数据量) y-axis (vertical axis) is the performance of the algorithm.(y 轴(垂直轴)是算法的性能)
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.) (假设上一个问题图中描述的是准确的(并且希望您的轴标签正确),以下哪一项是正确的?
Increasing the training set size generally does not hurt an algorithm performance, and it may help significantly. (增加训练集的大小通常不会影响算法的性能,这可能会有很大的帮助。)
Increasing the size of a neural network generally does not hurt an algorithm performance, and it may help significantly.(增加神经网络的大小通常不会影响算法的性能,这可能会有很大的帮助。)

你可能感兴趣的:(深度学习)