码迷,mamicode.com
首页 > 其他好文 > 详细

Deep Learning(1) —— Andrew Ng

时间:2020-04-03 12:13:34      阅读:66      评论:0      收藏:0      [点我收藏+]

标签:block   splay   oid   逻辑回归   判断   并行计算   binary   this   practice   

Binary Classification

把图像展平成一个列向量x,x作为输入得到输出y,y是一个判断是猫或不是猫的概率。
技术图片

Notation used in this course

技术图片
如果有m个训练样本,直观的做法可能是用for循环遍历所有的样本。但是在深度学习中应该像上图这样,把m个样本合成一个m列的向量(或矩阵),从而实现并行计算。

Logistic Regression

技术图片

Sigmoid函数:\(\displaystyle \sigma(z) = \frac{1}{1+e^{-z}}\)

practice:
技术图片

总结:

  • y是概率,通过y = wx + b这种线性回归的方法无法使y的值在0~1,于是我们引入Sigmoid函数,由线性回归变成逻辑回归。

Logistic Regression Cost Function

Deep Learning(1) —— Andrew Ng

标签:block   splay   oid   逻辑回归   判断   并行计算   binary   this   practice   

原文地址:https://www.cnblogs.com/pengweiblog/p/12625350.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!