人工智能
koryako
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
对导数(梯度)传播的理解(下)
向前传播的是值,反向传播的是梯度 // every Unit corresponds to a wire in the diagrams var Unit = function(value, grad) { // value computed in the forward pass this.value = value; // the derivative翻译 2017-01-13 15:12:03 · 829 阅读 · 0 评论 -
对导数(梯度)传播的理解(上)
导数的链式法则的理解 var x = -2, y = 5,z=-4,h = 0.1;// whenever value of notation h was changeed, but the following derivateive value was not changed. var i=1; while (i<=10) {翻译 2017-01-13 15:11:05 · 814 阅读 · 0 评论 -
对正向传播、反向传播和精度检查的理解
1. 首先是概念, // 格式化节点,每个节点中包含的计算值和梯度值 function Unit(value, grad) { // 这个值是正向传播的值 this.value = value; // 这个值是反向传播的值, this.grad = grad; } function multiplyGate(){ };//乘法门 multipl转载 2017-01-18 11:51:33 · 1114 阅读 · 0 评论 -
DenseCap:一种对于密集抓图的全卷积定位神经网络
以下是对这边paper的翻译,仅当练手 DenseCap: Fully Convolutional Localization Networks for Dense Captioning We introduce the dense captioning task, which requires a computer vision system to b翻译 2017-01-21 13:32:50 · 1927 阅读 · 0 评论
分享