Skip to content

Spotkanie 2014.02.06

dmydlarz edited this page Feb 5, 2014 · 3 revisions

Zrobiono

  • zbudowany został własny, naiwny klasyfikator
positive = 0, negative = 0
for each word in sentence:
    positive += frequency(word).positives()
    negative += frequency(word).negatives()
return positive / (positive + negative)