1.概述 线性判别式分析(Linear Discriminant Analysis),简称为LDA。也称为Fisher线性判别(Fisher Linear Discriminant,FLD),是模式识别的经典算法,在1996年由Belhumeur引入模式识别和人工智能领域。 基本思想是将高维的模式样 ...
分类:
其他好文 时间:
2017-06-13 16:52:55
阅读次数:
255
css3定义了两种类型的渐变,即线性渐变和径向渐变。这里我要说的是线性渐变。 为了创建一个线性渐变,你必须至少定义两种颜色结点。颜色结点即你想要呈现平稳过渡的颜色。同时,你也可以设置一个起点和一个方向(或一个角度)。 语法:background: linear-gradient(direction, ...
分类:
Web程序 时间:
2017-06-12 18:54:10
阅读次数:
227
function v = piecelin(x,y,u) %PIECELIN Piecewise linear interpolation. % v = piecelin(x,y,u) finds the piecewise linear L(x) % with L(x(j)) = y(j) and ...
分类:
其他好文 时间:
2017-06-12 14:50:23
阅读次数:
183
转载源:http://www.cnblogs.com/dibaosong/p/4572274.html ajax在前后端的交互中应用非常广泛,通过请求后台接口接收处理json格式数据展现在前端页面。 下面我们来简单用 ajax在本地做一个接收并处理json的小例子 首先我们要新建一个叫做data的j ...
分类:
Web程序 时间:
2017-06-12 13:01:48
阅读次数:
118
在a.less中导入base.lessa.less中的代码 base.less中的代码 @value的值为[ripple, .5s, linear]"@{value}"成为字符串"[ripple, .5s, linear]",避免js解析错误。~避免编译,不加则输出为"ripple"Tips: 少一 ...
分类:
其他好文 时间:
2017-06-11 10:22:40
阅读次数:
141
Given an array of numbers nums, in which exactly two elements appear only once and all the other elements appear exactly twice. Find the two elements ...
分类:
其他好文 时间:
2017-06-09 23:40:30
阅读次数:
209
产品环境模型部署,创建简单Web APP,用户上传图像,运行Inception模型,实现图像自动分类。 搭建TensorFlow服务开发环境。安装Docker,https://docs.docker.com/engine/installation/ 。用配置文件在本地创建Docker镜像,docke ...
分类:
其他好文 时间:
2017-06-09 12:32:33
阅读次数:
409
三角碎片以很缓慢的速度旋转移动。假设使用JS实现会出现一像素一像素移动的卡顿 使用CSS3会获得很理想的效果 transform: translate3d(80px, 150px, 0px) rotate(1220deg); transition: transform 30s linear 0s; ...
分类:
移动开发 时间:
2017-06-08 19:37:17
阅读次数:
249
Given an integer array of size n, find all elements that appear more than ? n/3 ? times. The algorithm should run in linear time and in O(1) space. 第一 ...
分类:
其他好文 时间:
2017-06-08 17:48:08
阅读次数:
160
iOS开发 本地通知(UILocalNotification) iOS开发 本地通知(UILocalNotification) 标签: ios本地通知 2016-07-12 10:28 1437人阅读 评论(0) 收藏 举报 标签: ios本地通知 2016-07-12 10:28 1437人阅读 ...
分类:
移动开发 时间:
2017-06-07 14:20:24
阅读次数:
194