isnowfy / snownlp

Python library for processing Chinese text
MIT License
6.45k stars 1.37k forks source link

情感分析的NB用的是词袋模型吗 #86

Open Co2Link opened 6 years ago

Co2Link commented 6 years ago
class AddOneProb(BaseProb):

    def __init__(self):
        self.d = {}
        self.total = 0.0
        self.none = 1

    def add(self, key, value):
        self.total += value
        if not self.exists(key):
            self.d[key] = 1
            self.total += 1
        self.d[key] += value

看了下源码,这里的NB使用的是词袋模型(考虑词在文档中出现的次数),而非词集模型(不考虑词在文档中出现的次数)?