一、 1.counter-reset:F44;计数器重置,默认值为0 2.counter-increment:F44;计数器自增,每次+1 3.content:counter(F44);输出当前计数器的值 二、 1.background:linear-gradient(角度或方向,起始颜色,结束颜色 ...
分类:
其他好文 时间:
2017-10-22 21:11:21
阅读次数:
143
一、background-size: 规定背景图像的大小; 值:像素值、百分比、auto、cover、contain 二、HSLA: 新增颜色属性; H:色调 S:饱和度 L:亮度 A:透明度 三、新增渐变颜色: radial-gradient:(*position(deg),color perce ...
分类:
其他好文 时间:
2017-10-22 17:04:45
阅读次数:
196
(1)梯度不稳定问题: 什么是梯度不稳定问题:深度神经网络中的梯度不稳定性,前面层中的梯度或会消失,或会爆炸。 原因:前面层上的梯度是来自于后面层上梯度的乘乘积。当存在过多的层次时,就出现了内在本质上的不稳定场景,如梯度消失和梯度爆炸。 (2)梯度消失(vanishing gradient prob ...
分类:
其他好文 时间:
2017-10-20 16:04:01
阅读次数:
134
方法一:命令行跑程序 参考http://blog.csdn.net/zhuiqiuk/article/details/52993544 (我用的python3,注意print的语法) 方法二:用IDE跑 将下好的mnist数据集拷贝到pycharm中,文件夹命名为MNIST_data 再创建一个py ...
分类:
其他好文 时间:
2017-10-17 21:43:05
阅读次数:
241
http://www.cnblogs.com/lhb25/archive/2013/01/30/css3-linear-gradient.html background: -moz-linear-gradient(top, #ace, #f96); background: -webkit-linea ...
分类:
Web程序 时间:
2017-10-17 15:47:45
阅读次数:
195
background-color: rgba(0, 0, 0, .6);filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000);startcolorstr=# ...
分类:
其他好文 时间:
2017-10-16 16:36:25
阅读次数:
144
需要区分的是这里的top,bottom,ascent,descent,baseline是指字内容的属性,通过getPaint().getFontMetricsInt()来获取得到。和字体内容的外部容器的属性要区分开来。 一个小测试 我自定义了一个MyTextView: 结果是: 可以总结: 字内容的 ...
分类:
其他好文 时间:
2017-10-16 11:02:35
阅读次数:
164
1. 原理 Cost function Theta 2. Python 3. C++ ...
分类:
其他好文 时间:
2017-10-12 23:10:42
阅读次数:
170
没空读论文的悲剧,看了各种帖子感觉还是很难理解到这种方法背后思维的本质,虽然一两句话说思想简单,但是能透彻地理解感觉还是比较困难,看了半天帖子说得比较清晰的估计得结合这两个: https://en.wikipedia.org/wiki/Gradient_boosting http://www.jia ...
分类:
其他好文 时间:
2017-10-11 12:44:59
阅读次数:
102
参考吴恩达<机器学习>, 进行 Octave, Python(Numpy), C++(Eigen) 的简单实现. 1. 原理 cost function gradient descent 2. 简易实现 octave cost function Linear regression using gra ...
分类:
其他好文 时间:
2017-10-11 00:36:25
阅读次数:
235