Please note that when you are working on the programming exercise you will find comments that say "# GRADED FUNCTION: functionName". Do not edit that comment. The function in that code block will be graded.

1) What is a Jupyter notebook?

A Jupyter notebook is a document that allows you to have executable code and text in the same web-page. With Jupyter notebooks you do not have to download anything on your computer to do the programming exercises. Everything is provided for you online. You will be completing the exercise as you scroll down the webpage without having to jump between different files.

2) What is the coursera hub?

The coursera hub is the workspace which contains the notebook, helper files, data sets, and images. To go to the hub, you should first be in the notebook:

Click on File ==> Open as shown below:

This will lead you to an environment that has all your programming exercises and datasets. You should go there to check out any helper functions that we have provided for you.

3) How do I submit my assignment?

To submit the assignment, click on the blue button in the above image labelled "Submit Assignment."

4) How do I run a cell?

To run a cell, click on the cell and press Shift & Enter. You could also run the cell (or cells) by going to Cell and selecting one of the options:

5) What is a kernel?

You could think of the kernel as the core of the Jupyter notebook's operating system. Sometimes if the notebook blocks or if you want to clear all the variables and start all over again, rather than quitting the notebook and opening it again, you could:

Restart the kernel and clear the output if you accidentally end up in some sort of infinite loop.

6) Why do I get different results every time I run the same cell?

When you run a cell that updates some variable (e.g x: x+1), you will get different results for x as it keeps incrementing. Make sure you are not modifying your existing variables.

7) I got stuck on an assignment; what do I do?

In the Discussion Forums, there is a dedicated forum for each week of the course. You can post questions and get answers to them there. Please be sure to abide by the course Honor Code.

8) How do I save my progress?

Click on File ==> Save and Checkpoint

9) What should I do if my jupyter notebook froze?

Just restart the kernel by clicking on Kernel ==> Restart.

---------------------------------------------------中文翻译--------------------------------------

请注意, 当你正在进行的编程练习, 你会发现评论说, "# GRADED FUNCTION: functionName"。不要编辑该注释。该代码块中的函数将被分级。
1) 什么是 Jupyter 笔记本?
Jupyter 笔记本是一个文档, 它允许您在同一网页中具有可执行代码和文本。使用 Jupyter 笔记本, 您不必在计算机上下载任何内容来进行编程练习。一切都是为您提供在线。当您向下滚动网页而不需要在不同的文件之间跳转时, 您将完成该练习。
 
2) 什么是 coursera  hub?
coursera hub是包含笔记本、助手文件、数据集和图像的工作区。要转到hub, 您应该首先在笔记本中:
Click on File ==> Open as shown below:
这将引导您到一个具有所有编程练习和数据集的环境。你应该去那里看看我们为你提供的任何帮助函数。
 
3) 如何提交我的作业?

若要提交作业, 请单击上面的 "Submit Assignment" 图标上的蓝色按钮。

4) 如何运行cell?

若要运行cell, 请单击该cell并按 Shift +Enter。您还可以通过进入cell并选择其中一个选项来运行cell (或cells):

5) 什么是kernel?

你可以把kernel看成是 Jupyter 笔记本操作系统的核心。有时, 如果笔记本阻塞, 或者您想清除所有变量并重新开始, 而不是退出笔记本并再次打开它, 您可以:

如果您意外地在某种无限循环中结束, 请重新启动内核并清除输出。

6) 为什么每次运行同一单元格(cell)时都得到不同的结果?

在运行更新某些变量的单元格 (eg x:x+1) 时, x 的结果会不同, 因为它不断递增。请确保您没有修改现有变量。

7) 我被一个任务难住了。我该怎么办?

在讨论论坛中, 每个星期都有一个专门的论坛。你可以张贴问题, 并得到答案, 他们在那里。请务必遵守课程荣誉代码。

8) 如何保存我的进度?

Click on File ==> Save and Checkpoint

9) 如果我的jupyter notebook本死机了, 我该怎么办?

只需单击Kernel ==> Restart,l就能重新启动内核。

----------------------------------------------------------------------------------------------------------------------

注:部分图片原网页不能不能显示。

课程一(Neural Networks and Deep Learning),第二周(Basics of Neural Network programming)—— 2、编程作业常见问题与答案(Programming Assignment FAQ)的更多相关文章

  1. 吴恩达《深度学习》-第一门课 (Neural Networks and Deep Learning)-第二周:(Basics of Neural Network programming)-课程笔记

    第二周:神经网络的编程基础 (Basics of Neural Network programming) 2.1.二分类(Binary Classification) 二分类问题的目标就是习得一个分类 ...

  2. 【DeepLearning学习笔记】Coursera课程《Neural Networks and Deep Learning》——Week2 Neural Networks Basics课堂笔记

    Coursera课程<Neural Networks and Deep Learning> deeplearning.ai Week2 Neural Networks Basics 2.1 ...

  3. 【DeepLearning学习笔记】Coursera课程《Neural Networks and Deep Learning》——Week1 Introduction to deep learning课堂笔记

    Coursera课程<Neural Networks and Deep Learning> deeplearning.ai Week1 Introduction to deep learn ...

  4. 第四节,Neural Networks and Deep Learning 一书小节(上)

    最近花了半个多月把Mchiael Nielsen所写的Neural Networks and Deep Learning这本书看了一遍,受益匪浅. 该书英文原版地址地址:http://neuralne ...

  5. Neural Networks and Deep Learning学习笔记ch1 - 神经网络

    近期開始看一些深度学习的资料.想学习一下深度学习的基础知识.找到了一个比較好的tutorial,Neural Networks and Deep Learning,认真看完了之后觉得收获还是非常多的. ...

  6. Neural Networks and Deep Learning

    Neural Networks and Deep Learning This is the first course of the deep learning specialization at Co ...

  7. [C3] Andrew Ng - Neural Networks and Deep Learning

    About this Course If you want to break into cutting-edge AI, this course will help you do so. Deep l ...

  8. 《Neural Networks and Deep Learning》课程笔记

    Lesson 1 Neural Network and Deep Learning 这篇文章其实是 Coursera 上吴恩达老师的深度学习专业课程的第一门课程的课程笔记. 参考了其他人的笔记继续归纳 ...

  9. 课程一(Neural Networks and Deep Learning),第二周(Basics of Neural Network programming)—— 4、Logistic Regression with a Neural Network mindset

    Logistic Regression with a Neural Network mindset Welcome to the first (required) programming exerci ...

  10. Neural Networks and Deep Learning 课程笔记(第四周)深层神经网络(Deep Neural Networks)

    1. 深层神经网络(Deep L-layer neural network ) 2. 前向传播和反向传播(Forward and backward propagation) 3. 总结 4. 深层网络 ...

随机推荐

  1. Codeforces Round #517 (Div. 2, based on Technocup 2019 Elimination Round 2) D. Minimum path(字典序)

    https://codeforces.com/contest/1072/problem/D 题意 给你一个n*n充满小写字母的矩阵,你可以更改任意k个格子的字符,然后输出字典序最小的从[1,1]到[n ...

  2. Latex插图操作

    1.竖排插入两张图 \begin{figure}[h] //放在当前位置 \centering \subfigure[A given traffic flow set]{ \includegraphi ...

  3. MPA(Macro Prudential Assessment)即宏观审慎评估体系

    MPA(Macro Prudential Assessment)即宏观审慎评估体系.2015年12月29日,央行发布公告称,为进一步完善宏观审慎政策框架,更加有效地防范系统性风险,发挥逆周期调节作用, ...

  4. DocumentType类型

    并不常用 nodeType 10 nodeName doctype的名称 NodeValue 值为null parentNode Document 不支持子节点 DocumentType不能动态创建, ...

  5. Effective C++ 随笔(1)

    条款一 c++ 为一个语言联邦 1.四个层次 C:blocks,语句,预处理器,内置数据类型,数组,指针 面向对象的C++:封装,多态,继承 Template C++ STL 条款二 尽量以const ...

  6. Gitolite 权限控制

    官网 http://gitolite.com/gitolite/index.html 安装配置 http://gitolite.com/gitolite/install/ 傻瓜安装教程 http:// ...

  7. 深入浅出javascript(二)函数和this对象

    一.函数对象的属性和方法 函数是一种数据类型,也是对象,这一点很明确.因此,函数对象也可以添加属性和方法,但是这里的属性和方法是静态的,之所以这样说,就是为了区别构造函数. 示例如下: ①创建一个空的 ...

  8. 卷积神经网络(CNN)之一维卷积、二维卷积、三维卷积详解

    作者:szx_spark 由于计算机视觉的大红大紫,二维卷积的用处范围最广.因此本文首先介绍二维卷积,之后再介绍一维卷积与三维卷积的具体流程,并描述其各自的具体应用. 1. 二维卷积 图中的输入的数据 ...

  9. POJ 2007 Scrambled Polygon 凸包点排序逆时针输出

    题意:如题 用Graham,直接就能得到逆时针的凸包,找到原点输出就行了,赤果果的水题- 代码: /* * Author: illuz <iilluzen[at]gmail.com> * ...

  10. Effective C++ 第二版 31)局部对象引用和函数内new的指针 32)推迟变量定义

    条款31 千万不要返回局部对象的引用, 不要返回函数内部用new初始化的指针的引用 第一种情况: 返回局部对象的引用; 局部对象--仅仅是局部的, 在定义时创建, 在离开生命空间时被销毁; 所谓生命空 ...