⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 statistic.java

📁 朴素贝叶斯分类器(Naive Bayes Classifier)
💻 JAVA
字号:
package BNC;
import java.util.*;

class Statistic {
	public String target;
	public Vector<Integer> count;
	public int targetCount;
	private int instnum;
	private double tarprob;
	
	Statistic(String target, int attrnum, int instnum) {
		count = new Vector<Integer>();
		for (int i = 0; i < attrnum; i++) count.addElement(new Integer(0));
		this.target = target;
		targetCount = 1;   //if the target doesn't emerge, the class will not be instantiated, 
						   //otherwise, count from 1
		this.instnum = instnum;
	}
	
	public void increment(int index) {
		int orig = count.elementAt(index);
		count.setElementAt(new Integer(orig + 1), index);
	}
	
	public double getProbability() {
		tarprob = 1.0;
		for (int i = 0; i < count.size(); i++) {
			System.out.print(count.elementAt(i) + " ");
			tarprob = tarprob * ((double)count.elementAt(i) / (double) targetCount);
		}
		System.out.print("targetCount: " + targetCount);
		return tarprob * ((double)targetCount / (double) instnum);
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -