Planar data classification with one hidden layer 1 – Packages Let’s first import all the packages that you will ne…
分类:Study-notes
吴恩达深度学习课程 DeepLearning.ai 编程作业(1-2)Part.2
3 – General Architecture of the learning algorithm It’s time to design a simple algorithm to distinguish cat image…
吴恩达深度学习课程 DeepLearning.ai 编程作业(1-2)Part.1
Part 1:Python Basics with Numpy (optional assignment) 1 – Building basic functions with numpy Numpy is the main pa…
Python第四周内置函数等学习笔记
Python常用内置函数 all(iterable)如果可迭代对象里面所有元素都是真值,则返回True any(iterable)如果可迭代对象里面任意一个元素为真值,则返回True。若全为空(0)则返回False。 ascii(objec…
Python内置函数
Built-in Functions abs() dict() help() min() setattr() all() dir() hex() next() slice() any() divmod() id() object() sor…
Andrew Ng深度学习作业1:线性回归
%% Machine Learning Online Class - Exercise 1: Linear Regression % &nb…
训练神经网络的基本步骤
训练神经网络: 参数的随机初始化(吴恩达课程9.6节内容) 利用正向传播算法计算所有的h(x)(即隐藏层等) 编写计算代价函数J的代码(9.1节) 利用反向传播算法计算所有的偏导数(9.2节,9.3节) 利用数值检验方法检验这些偏导数(例如…