我是 java 新手,通过创建一个简单的 NaiveBayes 分类器来练习。我还是对象实例化的新手,想知道如何初始化 HashMap 的 HashMap。在向分类器中插入新的观察结果时,我可以为给定类中未见的特征名称创建一个新的 HashMap,但我需要初始化吗?
import java.util.HashMap;
public class NaiveBayes {
private HashMap<String, Integer> class_counts;
private HashMap<String, HashMap<String, Integer>> class_feature_counts;
public NaiveBayes() {
class_counts = new HashMap<String, Integer>();
// do I need to initialize class_feature_counts?
}
public void insert() {
// todo
// I think I can create new hashmaps on the fly here for class_feature_counts
}
public String classify() {
// stub
return "";
}
// Naive Scoring:
// p( c | f_1, ... f_n) =~ p(c) * p(f_1|c) ... * p(f_n|c)
private double get_score(String category, HashMap features) {
// stub
return 0.0;
}
public static void main(String[] args) {
NaiveBayes bayes = new NaiveBayes();
// todo
}
}
请注意,此问题并非特定于朴素贝叶斯分类器,只是想我会提供一些上下文。