资源简介
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
相关资源
- EM算法java实现
- Joone源码和jar包
- 可训练的中文分词和词性标注系统
- 通用复杂图片验证码识别程序深度机
- 数据挖掘机器学习课程报告及weka源码
- weka 稳定版3-6-13 (包括32位和64位)
- 机器学习工具weka
- 人工智能大作业.zip
- 机器学习
- Android-TensorFlow超时所需资源
- Machine Learning in Java.PDF+代码
- 代价敏感决策树代码
- java实现KMeans算法代码
- 基于Spark的机器学习-智能客户系统项
- KNN人工智能机器学习算法JAVA实现
- 决策树ID3算法Java实现
- pytorch性别识别.pt模型
- Java实现kNN算法
评论
共有 条评论