/*背景渐变*/.linear{ width:100%; height:600px; background-color:#fff;/*若浏览器不支持渐变,则显示这个背景色*/background: -ms-linear-gradient(left,#dbecf6 0%,#C0D9ED 100%);/...
分类:
其他好文 时间:
2015-10-30 18:22:40
阅读次数:
250
本栏目(Algorithms)下MIT算法导论专题是个人对网易公开课MIT算法导论的学习心得与笔记。所有内容均来自MIT公开课Introduction to Algorithms中Charles E. Leiserson和Erik Demaine老师的讲解。(http://v.163.com/spe...
分类:
编程语言 时间:
2015-10-30 16:48:05
阅读次数:
790
Given an integer array of sizen, find all elements that appear more than? n/3 ?times. The algorithm should run in linear time and in O(1) space.求主元素,这...
分类:
其他好文 时间:
2015-10-30 12:14:58
阅读次数:
181
前言: 本节来练习下logistic regression相关内容,参考的资料为网页:http://openclassroom.stanford.edu/MainFolder/DocumentPage.php?course=DeepLearning&doc=exercises/ex4/ex4.html。这里给出的训练...
分类:
其他好文 时间:
2015-10-29 18:38:57
阅读次数:
304
Question:Given an array of integers, every element appearstwiceexcept for one. Find that single one.Note:Your algorithm should have a linear runtime c...
分类:
其他好文 时间:
2015-10-28 23:05:07
阅读次数:
373
background:linear-gradient(to top left, blue,orange);//从右下角往左上角渐变background:radial-gradient(to top left, blue,orange);//径向渐变
分类:
Web程序 时间:
2015-10-28 01:25:16
阅读次数:
248
原文地址:http://blog.csdn.net/abcjennifer/article/details/7716281本栏目(Machine learning)包括单参数的线性回归、多参数的线性回归、Octave Tutorial、Logistic Regression、Regularizati...
分类:
其他好文 时间:
2015-10-24 21:58:24
阅读次数:
793
渐变色彩CSS3Gradient分为线性渐变(linear)和径向渐变(radial)。由于不同的渲染引擎实现渐变的语法不同,这里我们只针对线性渐变的 W3C 标准语法来分析其用法,其余大家可以查阅相关资料。W3C 语法已经得到了 IE10+、Firefox19.0+、Chrome26.0+ 和 O...
分类:
其他好文 时间:
2015-10-22 17:23:02
阅读次数:
135
线性回归
用线性回归找到最佳拟合直线回归的目的是预测数值型数据,根据输入写出一个目标值的计算公式,这个公式就是回归方程(regression equation),变量前的系数(比如一元一次方程)称为回归系数(regression weights)。求这些回归系数的过程就是回归。假设输入数据存放在矩阵X X中,回归系数存放在向量w w中,那么对于数据X 1 X_1的预测结果可以用Y 1 =X T...
分类:
其他好文 时间:
2015-10-18 10:04:10
阅读次数:
836
code:#div1{ width: 200px; height: 200px; border: 1px solid #333; background: -moz-linear-gradient(top, red, yellow); background: -webkit-linear-...
分类:
其他好文 时间:
2015-10-17 23:35:23
阅读次数:
134