码迷,mamicode.com
首页 >  
搜索关键字:gradient    ( 1157个结果
界面渐变特效 -- CSS实现 -- 兼容IE8
特别注意:里面的RGB颜色值必须要全写,不能使用缩写。左右:background: -webkit-gradient(linear, 0 0, 0 100%, from(#80c1e7), to(#213c7c)); background: -webkit-linear-gradient(left,... ...
分类:Web程序   时间:2017-12-26 12:03:44    阅读次数:200
神经网络(七)梯度弥散(消散)和梯度爆炸
1.梯度消失(vanishing gradient problem): 原因:例如三个隐层、单神经元网络: 假设上面是一个三层hidden layer的神经网络,每一层只有一个neuron,我们下面的分析仅仅针对bias,w也是可以类比的。 C是损失函数。 每一层的输入为z,输出为a,其中有z = ...
分类:其他好文   时间:2017-12-24 18:53:40    阅读次数:315
机器学习基石笔记11——机器可以怎样学习(3)
Lecture 11: Linear Models for Classification 11.1 Linear Models for Binary Classification 11.2 Stochastic Gradient Descent 11.3 Multiclass via Logisti ...
分类:其他好文   时间:2017-12-22 18:35:21    阅读次数:93
课程二(Improving Deep Neural Networks: Hyperparameter tuning, Regularization and Optimization),第一周(Practical aspects of Deep Learning) —— 4.Programming assignments:Gradient Checking
Gradient Checking Welcome to this week's third programming assignment! You will be implementing gradient checking to make sure that your backpropagati ...
分类:Web程序   时间:2017-12-16 18:32:02    阅读次数:169
RNN
RNN(Recurrent Neural Networks)循环神经网络 广泛应用于自然语言处理(NLP,Natural Language Processing) Back Propagation Through Time Vanishing gradient problem LSTM 定向循环 参 ...
分类:其他好文   时间:2017-12-16 15:58:40    阅读次数:178
produce a gradient file using surface elevation data, and plot it using grdimage with topographic "shade"
http://web.mst.edu/~sgao/gmtexs/grd/ex05/plot.gmt#!/bin/csh /bin/rm tmp.ps tmp.cpt ## Make a basemap of western United States: psbasemap -R-126.000/-1... ...
分类:其他好文   时间:2017-12-14 19:21:20    阅读次数:166
【Spark MLlib速成宝典】模型篇07梯度提升树【Gradient-Boosted Trees】(Python版)
目录 梯度提升树原理 梯度提升树代码(Spark Python) 梯度提升树原理 待续... 返回目录 梯度提升树代码(Spark Python) 代码里数据:https://pan.baidu.com/s/1jHWKG4I 密码:acq1 返回目录 ...
分类:编程语言   时间:2017-12-12 17:46:25    阅读次数:228
PyTorch中的backward [转]
转自:https://sherlockliao.github.io/2017/07/10/backward/ backward只能被应用在一个标量上,也就是一个一维tensor,或者传入跟变量相关的梯度。 特别注意Variable里面默认的参数requires_grad=False,所以这里我们要重 ...
分类:其他好文   时间:2017-12-09 16:51:50    阅读次数:195
One-hot 编码/TF-IDF 值来提取特征,LAD/梯度下降法(Gradient Descent),Sigmoid
1. 多值无序类数据的特征提取: 多值无序类问题(One-hot 编码)把“耐克”编码为[0,1,0],其中“1”代表了“耐克”的中 间位置,而且是唯一标识。同理我们可以把“中国”标识为[1,0],把“蓝色”标识为[0,1]。 然后把所有的数据编码拼接起来,[“耐克”,“中国”,“蓝色”]的最终编码 ...
分类:其他好文   时间:2017-12-06 19:53:53    阅读次数:178
颜色渐变标准语句
/* 默认从上至下渐变*/ background: linear-gradient(red,blue); /* 从左到右渐变*/ background: linear-gradient(to right,red,blue); /* 从左上角到右下角渐变*/ background: linear-gr ...
分类:其他好文   时间:2017-12-01 19:38:39    阅读次数:198
1157条   上一页 1 ... 38 39 40 41 42 ... 116 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!