摘要: Contents What's HMM Three Central Issues Evaluation problem Learning problem Decoding problem Words in the end Reference What's HMM? In problems that 阅读全文
posted @ 2017-02-20 16:23 JonLi 阅读(662) 评论(0) 推荐(0) 编辑
摘要: 1.\[P(A|BC) = \frac{P(AB|C)}{P(B|C)}\] 2. In EM algorithm, the usual expectation function can be written as follows:\[\begin{split}Q(\theta,\theta^0) 阅读全文
posted @ 2017-02-16 16:32 JonLi 阅读(158) 评论(0) 推荐(0) 编辑
摘要: In EM and GMM(Theory), I have introduced the theory of em algorithm for gmm. Now lets practice it in matlab! 1. Generate 1000 pieces of random 2-dimen 阅读全文
posted @ 2017-01-25 16:12 JonLi 阅读(356) 评论(0) 推荐(0) 编辑
摘要: Part 1: Theory 目录: What's GMM? How to solve GMM? What's EM? Explanation of the result What's GMM? GMM is short for Guassian Mixture Model, which can b 阅读全文
posted @ 2017-01-21 08:44 JonLi 阅读(284) 评论(0) 推荐(0) 编辑
摘要: 今天在安装Sphere v2.7 的时候,提示错误: /home/lgj/nist/lib/libsphereCombinedLibs.a(shorten.o): In function `shorten':/home/lgj/Documents/Speech/nist/src/lib/sp/sho 阅读全文
posted @ 2017-01-20 17:45 JonLi 阅读(223) 评论(0) 推荐(0) 编辑
摘要: 1. 增加 import sys 2. 将 Ui_MainWindow(object) 中的 object 修改成修改成 QtGui.QMainWindow 3. 在 Ui_MainWindow 类中加入: 4. 在末尾加入代码: 然后就可以run了。 阅读全文
posted @ 2016-08-09 16:54 JonLi 阅读(903) 评论(0) 推荐(0) 编辑
摘要: 近来,了解了一下SVM(支持向量机 support vector machine)的原理。顺便把自己理解的内容整理一下。 不讲背景啦,直接切入主题。 一、什么是支持向量机 好比说,我们现在在一个平面上有许多的圈圈和叉叉,如图1.1所示。 图1.1 现在需要一条直线将圈圈和叉叉分开,可以想象,会有很多 阅读全文
posted @ 2016-06-25 08:57 JonLi 阅读(863) 评论(0) 推荐(0) 编辑
摘要: 最近读论文的时候,总碰到范数的概念。于是立马回头复习了一下数学知识。 P范数的表达式为:(其中x为一个矩阵) So, 1范数: 2范数: 注:0范数是指矩阵x中非零的个数 阅读全文
posted @ 2015-10-25 22:04 JonLi 阅读(598) 评论(0) 推荐(0) 编辑
摘要: #include int qSort(int a[],int i,int j){ int h = i; int r = j; int x = a[h]; int f = 0; while (h =x;r--) { if(h==r) ... 阅读全文
posted @ 2015-08-30 19:02 JonLi 阅读(175) 评论(0) 推荐(0) 编辑
摘要: 使用QT需要QT的库以及QT creator,在QT5以后的版本中,两者已经集成,不需要单独下载了,只需要下载一个文件即可。配置步骤如下:1、下载qt-opensource-windows-x86-mingw492-5.5.0(下载地址:http://pan.baidu.com/s/1t1h74)2... 阅读全文
posted @ 2015-08-27 19:52 JonLi 阅读(196) 评论(0) 推荐(0) 编辑