博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
deeplearning.ai - 深层神经网络(Deep Neural Networks)
阅读量:4091 次
发布时间:2019-05-25

本文共 1310 字,大约阅读时间需要 4 分钟。

吴恩达 Andrew Ng

深层神经网络(Deep Neural Networks)

Deep L-layer Neural Networks

  • 有一个隐藏层的神经网络,就是一个两层神经网络
  • 算神经网络的层数时,只算隐藏层和输出层,输入层看作第0层
  • 有一些函数浅层的网络学习不了

Forward propagation in a deep network

这里写图片描述

Getting your matrix dimensions right

  • W[l]:(n[l],n[l])b[l]:(n[l],1) W [ l ] : ( n [ l ] , n [ l − ] ) b [ l ] : ( n [ l ] , 1 )
  • A[l]:(n[l],m)Z[l]:(n[l],m) A [ l ] : ( n [ l ] , m ) Z [ l ] : ( n [ l ] , m )
  • 确保前后矩阵一致

Why deep representations?

  • 登堂入室
  • 边缘探测器针对小区域
  • put together simpler things that has detected in order to detect more complex things
  • Circuit theory (电路理论)
  • There are some functions that you can compute with a L-layer deep neural network while shallower networks require exponentially more hidden units to compute.
  • 对于有些函数深层网络更合适

Forward and backward functions

  • 这里写图片描述

  • backward propagation

    这里写图片描述

  • summary

    这里写图片描述

  • lots of complexity of your learning algorithm comes from the data rather than your code

Parameters and Hyper parameters

  • parameters(参数): W, b
  • hyper parameters(超参数) (determines the parameters)
    • learning rate
    • the number of iterations of gradient descent
    • the number of hidden layers
    • choice of activation function
  • 不断实验,找到合适的超参数 cycle of (Idea, Code, Experiment)
  • just try a few values for the hyper parameters and double check

Deep learning and the human brain

  • Today even neuroscientists have almost no idea what even a single neuron is doing.
  • 这里写图片描述
你可能感兴趣的文章
SecurityError Error 2148 SWF 不能访问本地资源
查看>>
Qt 静态编译后的exe太大, 可以这样压缩.
查看>>
3D游戏常用技巧Normal Mapping (法线贴图)原理解析——基础篇
查看>>
乘法逆元
查看>>
Objective-C 基础入门(一)
查看>>
Objective-C 基础入门(三) 读写文件与回调
查看>>
C++ STL标准库与泛型编程(一)概述
查看>>
C++ STL标准库与泛型编程(四)Deque、Queue、Stack 深度探索
查看>>
C++ STL标准库 算法
查看>>
JVM内存模型_Minor GC笔记
查看>>
SpringCloud学习之PassCloud——(一)PassCloud源代码下载
查看>>
Linux下安装Python环境并部署NLP项目
查看>>
Nginx篇-springCloud配置Gateway+Nginx进行反向代理和负载均衡
查看>>
缓存篇-Redis缓存失效以及解决方案
查看>>
缓存篇-使用Redis进行分布式锁应用
查看>>
缓存篇-Redisson的使用
查看>>
phpquery抓取网站内容简单介绍
查看>>
找工作准备的方向(4月22日写的)
查看>>
关于fwrite写入文件后打开查看是乱码的问题
查看>>
用结构体指针前必须要用malloc,不然会出现段错误
查看>>