【吴恩达课后测验】Course 1 - 神经网络和深度学习 - 第一周测验【中英】


第一周测验 - 深度学习简介

  1. 和“AI是新电力”相类似的说法是什么?

    • 【  】AI为我们的家庭和办公室的个人设备供电,类似于电力。
    • 【  】通过“智能电网”,AI提供新的电能。
    • 【 】AI在计算机上运行,​​并由电力驱动,但是它正在让以前的计算机不能做的事情变为可能。
    • 】就像100年前产生电能一样,AI正在改变很多的行业。

    请注意: 吴恩达在视频中表达了同样的观点。

  2. 哪些是深度学习快速发展的原因? (两个选项)

    • 】 现在我们有了更好更快的计算能力。
    • 【  】神经网络是一个全新的领域。
    • 】 我们现在可以获得更多的数据。
    • 【  】深度学习已经取得了重大的进展,比如在在线广告、语音识别和图像识别方面有了很多的应用。
  3. 回想一下关于不同的机器学习思想的迭代图。下面哪(个/些)陈述是正确的?

    • 】能够让深度学习工程师快速地实现自己的想法。
    • 】在更好更快的计算机上能够帮助一个团队减少迭代(训练)的时间。
    • 【  】在数据量很多的数据集上训练上的时间要快于小数据集。
    • 】 使用更新的深度学习算法可以使我们能够更快地训练好模型(即使更换CPU / GPU硬件)。

    请注意: 同一模型在较大的数据集上通常需要花费更多时间。

  4. 当一个经验丰富的深度学习工程师在处理一个新的问题的时候,他们通常可以利用先前的经验来在第一次尝试中训练一个表现很好的模型,而不需要通过不同的模型迭代多次从而选择一个较好的模型,这个说法是正确的吗?

    • 【  】正确
    • 】 错误

    请注意:也许之前的一些经验可能会有所帮助,但没有人总是可以找到最佳模型或超参数而无需迭代多次。

  5. 这些图中的哪一个表示ReLU激活功能?

  6. 用于识别猫的图像是“结构化”数据的一个例子,因为它在计算机中被表示为结构化矩阵,是真的吗?

    • 【  】正确
    • 】 错误

    博主注:图片属于非结构化数据。

  7. 统计不同城市人口、人均GDP、经济增长的人口统计数据集是“非结构化”数据的一个例子,因为它包含来自不同来源的数据,是真的吗?

    • 【  】正确
    • 】 错误

    博主注:单纯的看以上数据的话就是非结构化数据,但是这些数据都被整合到了数据集里面,所以是结构化数据。

  8. 为什么在上RNN(循环神经网络)可以应用机器翻译将英语翻译成法语?

    • 】 因为它可以被用做监督学习。
    • 【  】严格意义上它比卷积神经网络(CNN)效果更好。
    • 】 它比较适合用于当输入/输出是一个序列的时候(例如:一个单词序列)
    • 【  】RNNs代表递归过程:想法->编码->实验->想法->…
  9. .在我们手绘的这张图中,横轴(x轴)和纵轴(y轴)代表什么?

    • x轴是数据量
    • y轴(垂直轴)是算法的性能
  10. 假设上一个问题图中描述的是准确的(并且希望您的轴标签正确),以下哪一项是正确的?

    • 】 增加训练集的大小通常不会影响算法的性能,这可能会有很大的帮助。
    • 】 增加神经网络的大小通常不会影响算法的性能,这可能会有很大的帮助。
    • 【 】减小训练集的大小通常不会影响算法的性能,这可能会有很大的帮助。
    • 【 】减小神经网络的大小通常不会影响算法的性能,这可能会有很大的帮助。

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.
  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->….
  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.

【吴恩达课后测验】Course 1 - 神经网络和深度学习 - 第一周测验【中英】的更多相关文章

  1. 【吴恩达课后测验】Course 1 - 神经网络和深度学习 - 第二周测验【中英】

    [中英][吴恩达课后测验]Course 1 - 神经网络和深度学习 - 第二周测验 第2周测验 - 神经网络基础 神经元节点计算什么? [ ]神经元节点先计算激活函数,再计算线性函数(z = Wx + ...

  2. 【中文】【deplearning.ai】【吴恩达课后作业目录】

    [目录][吴恩达课后作业目录] 吴恩达深度学习相关资源下载地址(蓝奏云) 课程 周数 名称 类型 语言 地址 课程1 - 神经网络和深度学习 第1周 深度学习简介 测验 中英 传送门 无编程作业 编程 ...

  3. 吴恩达课后作业学习1-week4-homework-two-hidden-layer -1

    参考:https://blog.csdn.net/u013733326/article/details/79767169 希望大家直接到上面的网址去查看代码,下面是本人的笔记 两层神经网络,和吴恩达课 ...

  4. 吴恩达课后作业学习1-week4-homework-multi-hidden-layer -2

    参考:https://blog.csdn.net/u013733326/article/details/79767169 希望大家直接到上面的网址去查看代码,下面是本人的笔记 实现多层神经网络 1.准 ...

  5. 吴恩达课后作业学习2-week1-1 初始化

    参考:https://blog.csdn.net/u013733326/article/details/79847918 希望大家直接到上面的网址去查看代码,下面是本人的笔记 初始化.正则化.梯度校验 ...

  6. 吴恩达课后作业学习2-week1-2正则化

    参考:https://blog.csdn.net/u013733326/article/details/79847918 希望大家直接到上面的网址去查看代码,下面是本人的笔记 4.正则化 1)加载数据 ...

  7. 【吴恩达课后编程作业】第二周作业 - Logistic回归-识别猫的图片

    1.问题描述 有209张图片作为训练集,50张图片作为测试集,图片中有的是猫的图片,有的不是.每张图片的像素大小为64*64 吴恩达并没有把原始的图片提供给我们 而是把这两个图片集转换成两个.h5文件 ...

  8. 吴恩达课后作业学习2-week3-tensorflow learning-1-基本概念

    参考:https://blog.csdn.net/u013733326/article/details/79971488 希望大家直接到上面的网址去查看代码,下面是本人的笔记  到目前为止,我们一直在 ...

  9. 【神经网络与深度学习】Caffe部署中的几个train-test-solver-prototxt-deploy等说明

    1:神经网络中,我们通过最小化神经网络来训练网络,所以在训练时最后一层是损失函数层(LOSS), 在测试时我们通过准确率来评价该网络的优劣,因此最后一层是准确率层(ACCURACY). 但是当我们真正 ...

随机推荐

  1. 问题解决java.lang.IllegalArgumentException at org.springframework.asm.ClassReader

    手上拿到一个老的项目,使用的是spring3.2,启动的时候报错了: 查了一下,发现spring3.2不兼容jdk8,只能使用jdk8以下的版本,使用jdk6可以启动,但是maven构建的时候又提示不 ...

  2. 添加JavaDoc

    使用javadoc比较容易生成文档,命令如下: javadoc -d doc -sourcepath src/main/java/ -subpackages com -encoding UTF-8 - ...

  3. SpringCloud Stream生产者配置RabbitMq的动态路由键

    在写这个文章前不得不吐槽目前国内一些blog的文章,尽是些复制粘贴的文章,提到点上但没任何的深入和例子.......... 经过测试下来总结一下RabbitMQ的Exchange的特性: 1.dire ...

  4. 阿里云的免费型DV SSL证书

    阿里云提供的免费型DV SSL. 证书的说明: [公告]免费新根证书,切入DigiCert PKI体系,兼容性如下操作系统版本IOS 5.0+.Android 2.3.3+.JRE 1.6.5+.WI ...

  5. 关于redis中SDS简单动态字符串

    1.SDS 定义 在C语言中,字符串是以’\0’字符结尾(NULL结束符)的字符数组来存储的,通常表达为字符指针的形式(char *).它不允许字节0出现在字符串中间,因此,它不能用来存储任意的二进制 ...

  6. ASP.NET Web API(MVC API)

    ASP.NET Web API是​​一个框架,可以很容易构建达成了广泛的HTTP服务客户端,包括浏览器和移动设备.是构建RESTful应用程序的理想平台的.NET框架. 上面是微软对Web API给出 ...

  7. Windows 7 设置允许多用户同时远程桌面连接

    有时候我们服务器安装的是Win7系统,远程登录桌面时,即使登录的是不同的管理账号,还是会提示把远程登录的人给踢下来.即系统只允许存在一个远程会话窗,不管是不是相同的用户. 下面讲解如何设置Win7让多 ...

  8. react-无状态组件

    import React, { Component } from "react"; //import PostItem from "./PostItem"; / ...

  9. 转发-基于ASP.NET MVC 4/5 Razor的模块化/插件式架构实现

    基于ASP.NET MVC 4/5 Razor的模块化/插件式架构实现   概述 在日常开发中, 我们经常谈起模块化/插件化架构,这样可既可以提高开效率,又可以实现良好的扩展性,尤其对于产品化的系统有 ...

  10. 如何让vue文件中的代码在Sublime Text 3中高亮和智能提示

    大家写在Sublime Text 3中编写vue文件时,会发现没有代码智能提示,清一色的黑底白字,不会像html.js一样变成彩色,给我们带来了很大的不便.所以需要安装一款叫作Vue Syntax H ...