资源简介
EM算法也就是期望最大化算法,是一种无指导的学习算法。This little software is the realization of EM algorithm in the application of tossiing the coin, which is described in the paper of Michael Collins in 1997.
下载包中包含:源代码、可执行程序、关于EM算法的paper
代码片段和文件信息
public class CountHT{
private int hCount=0;
private int tCount=0;
public CountHT(String str){
char[] temp=str.toCharArray();
for(int j=0;j if(temp[j]==‘H‘){
hCount++;
continue;
}
if(temp[j]==‘T‘){
tCount++;
continue;
}
System.out.println(“输入有问题“);
}
}
public int getH(){
return hCount;
}
public int getT(){
return tCount;
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 2097558 2010-03-09 10:11 机器学习之EM算法实现\runnable jar file\EM.jar
文件 426 2010-03-07 17:01 机器学习之EM算法实现\src\CountHT.java
文件 2835 2010-03-09 10:15 机器学习之EM算法实现\src\Display.java
文件 3050 2010-03-07 17:00 机器学习之EM算法实现\src\EmAlgorithm.java
文件 417 2010-03-09 10:10 机器学习之EM算法实现\src\EMGUI.java
文件 395 2010-03-07 17:02 机器学习之EM算法实现\src\Sub.java
文件 300193 2010-04-21 23:33 机器学习之EM算法实现\the paper of EM algorithm\The EM Algorithm.pdf
文件 84480 2009-10-30 08:51 机器学习之EM算法实现\the report of this program\课程报告.doc
目录 0 2010-04-21 23:35 机器学习之EM算法实现\runnable jar file
目录 0 2010-04-21 23:36 机器学习之EM算法实现\src
目录 0 2010-04-21 23:34 机器学习之EM算法实现\the paper of EM algorithm
目录 0 2010-04-21 23:35 机器学习之EM算法实现\the report of this program
目录 0 2010-04-21 23:37 机器学习之EM算法实现
----------- --------- ---------- ----- ----
2489354 13
评论
共有 条评论