自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

大鹏的专栏

关注人工智能,自然语言处理,语音处理,图像识别,大数据,信息检索,语义网,知识图谱,编译原理,网络安全,软件架构,计算机语言的发展等等

  • 博客(10)
  • 资源 (11)
  • 收藏
  • 关注

原创 多线程:C++11 multithreading

环境配置: CONFIG += c++11 LIBS +=-lpthreadthread with a member functionWe’ll start with a simple example of a C++11 thread with a member function: #include #include #include using names

2016-04-22 10:35:22 569

原创 循环粉碎文件:Use the find command to execute shred recursively

find -depth -type f -exec shred -v -n 1 -z -u {} \;

2016-04-21 17:34:47 646

原创 C++数组声明的方式

指针数组:array of pointers,即用于存储指针的数组,也就是数组元素都是指针数组指针:a pointer to an array,即指向数组的指针还要注意的是他们用法的区别,下面举例说明。int* a[4] 指针数组 表示:数组a中的元素都为int型指针 元素表示:*a[i] *(a[i])是一样的,因为[]

2016-04-21 09:18:21 5699

原创 c++ sin,cos,tan,atan,atan2

sin(角度*M_PI/180);

2016-04-18 16:45:57 5265 1

原创 linux iconv字符编码批处理方式转换

查看编码:$ find ./ -type f -exec file -i {} \; > /tmp/a file命令查看文件编码 file -i filename查询是否存在已经是utf-8编码的文件:grep “charset=utf-8” /tmp/a递归转换(包括子文件夹) find default -type d -exec mkdir -p utf/{}

2016-04-12 15:15:33 1316

原创 ldconfig命令用法笔记

ldconfigldconfig是一个动态链接库管理命令,为了让动态链接库为系统所共享,还需运行动态链接库的管理命令–ldconfig。 ldconfig 命令的用途,主要是在默认搜寻目录(/lib和/usr/lib)以及动态库配置文件/etc/ld.so.conf内所列的目录下,搜索出可共享的动态 链接库(格式如前介绍,lib*.so*),进而创建出动态装入程序(ld.so)所需的连接和缓存文件.

2016-04-08 11:31:43 18297 1

原创 Hive使用笔记

Hive的存储是建立在Hadoop文件系统之上的。Hive本身没有专门的数据存储格式,也不能为数据建立索引,用户可以自由地组织Hive中的表,只需要在创建表的时候告诉Hive数据中的列分隔符和行分隔符就可以解析数据了。 Hive中主要包含四类数据模型:表(Table)、外部表(External Table)、分区(Partition)和桶(Bucket)。 Hive中每个分区都对应数据库中相应

2016-04-01 17:17:21 960

原创 经验风险最小化与结构风险最小化笔记

置信风险与两个量有关,一是样本数量,显然给定的样本数量越大,我们的学习结果越有可能正确,此时置信风险越小;二是分类函数的VC维,显然VC维越大,推广能力越差,置信风险会变大。VC置信范围(VC confidence):学习机器的VC维及训练样本数有关。 VC维反映了函数集的学习能力,VC维越大则学习机器越复杂(容量越大)泛化误差界的公式为:R(w)≤Remp(w)+ϕ(h/n)R(w)

2016-04-01 17:16:20 13188

原创 希腊字母读音笔记

希腊字母 汉字注音 汉语拼音 Αα 阿尔法 alfa Ββ 贝塔 bita Γγ 伽马 gama Δδ 德耳塔 dêlta Εε 伊普西龙 êpsilon Ζζ 截塔 zita Ηη 依塔 yita Θθ 西塔 sita Ιι 约塔 yota Κκ 卡帕 ka

2016-04-01 17:00:06 1459

原创 特征选择

http://www.cnblogs.com/heaad/archive/2011/01/02/1924088.htmlhttp://www.36dsj.com/archives/24225

2016-04-01 15:43:58 2080

HTK语音识别

HTK语音识别,包括在centos 7下编译通过的HTK-3.5.beta-2版本,并且改写makefile为cmake。还包括一个例子。地址;http://blog.csdn.net/philosophyatmath/article/details/64905670

2017-03-22

数理统计与数据分析 第3版

《数理统计与数据分析(原书第3版)》内容丰富,几乎涵盖了所有经典和前沿的概率论与数理统计理论和方法,主要包括概率、随机变量、联合分布、期望、极限定理、抽样调查、参数估计、假设检验、数据汇总、两样本比较、方差分析、分类数据分析和线性最小二乘等。

2015-11-24

基于C#的ribbon组件

基于C#的ribbon组件,office 2007的菜单样式,在网上看到这个,分享一下。

2014-11-23

神经网络原理

神经网络是计算智能和机器学习研究的最活跃的分支之一。本书全面系统地介绍神经网络的基本概念、系统理论和实际应用

2014-08-03

基于jersey v2.10的webservice核心框架

在这个框架中包含base认证,日志,rest,eclipselink jpa等等。但是有个问题就是我在利用@PersistenceUnit注解是总是无法成功,也只能自己亲自完成这块代码。

2014-07-24

Eclipse Rich Client Platform 2nd Edition with Source Code.zip

Eclipse Rich Client Platform 2nd Edition with Source Code

2014-05-12

模式分析的核方法,english 2th edition

Pattern Analysis is the process of finding general relations in a set of data, and forms the core of many disciplines, from neural networks to so-called syntactical pattern recognition, from statistical pattern recognition to machine learning and data mining. Applications of pattern analysis range from bioinformatics to document retrieval. The kernel methodology described here provides a powerful and unified framework for all of these disciplines, motivating algorithms that can act on general types of data (e.g. strings, vectors, text, etc.) and look for general types of relations (e.g. rankings, classifications, regressions, clusters, etc.). This book fulfils two major roles. Firstly it provides practitioners with a large toolkit of algorithms, kernels and solutions ready to be implemented, many given as Matlab code suitable for many pattern analysis tasks in fields such as bioinformatics, text analysis, and image analysis. Secondly it furnishes students and researchers with an easy introduction to the rapidly expanding field of kernel-based pattern analysis, demonstrating with examples how to handcraft an algorithm or a kernel for a new specific application, while covering the required conceptual and mathematical tools necessary to do so. The book is in three parts. The first provides the conceptual foundations of the field, both by giving an extended introductory example and by covering the main theoretical underpinnings of the approach. The second part contains a number of kernel-based algorithms, from the simplest to sophisticated systems such as kernel partial least squares, canonical correlation analysis, support vector machines, principal components analysis, etc. The final part describes a number of kernel functions, from basic examples to advanced recursive kernels, kernels derived from generative models such as HMMs and string matching kernels based on dynamic programming, as well as special kernels designed to handle text documents. All those involved in pattern recognition, machine learning, neural networks and their applications, from computational biology to text analysis will welcome this account.

2010-12-10

kpca 核主成分分析

We describe a new method for performing a nonlinear form of Principal Component Anal

2010-12-10

kpca 核主成分分析

kpca 核主成分分析,别人写的,据说很好用,跟大家分享一下

2010-12-10

jena-2.6.2

解析owl的java库

2010-12-05

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除