-
Notifications
You must be signed in to change notification settings - Fork 190
/
naive_bayes_classifier.py
200 lines (181 loc) · 6.86 KB
/
naive_bayes_classifier.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
import nltk.classify
import re, pickle, csv, os
import classifier_helper, html_helper
#start class
class NaiveBayesClassifier:
""" Naive Bayes Classifier """
#variables
#start __init__
def __init__(self, data, keyword, time, trainingDataFile, classifierDumpFile, trainingRequired = 0):
#Instantiate classifier helper
self.helper = classifier_helper.ClassifierHelper('data/feature_list.txt')
self.lenTweets = len(data)
self.origTweets = self.getUniqData(data)
self.tweets = self.getProcessedTweets(self.origTweets)
self.results = {}
self.neut_count = [0] * self.lenTweets
self.pos_count = [0] * self.lenTweets
self.neg_count = [0] * self.lenTweets
self.trainingDataFile = trainingDataFile
self.time = time
self.keyword = keyword
self.html = html_helper.HTMLHelper()
#call training model
if(trainingRequired):
self.classifier = self.getNBTrainedClassifer(trainingDataFile, classifierDumpFile)
else:
f1 = open(classifierDumpFile)
if(f1):
self.classifier = pickle.load(f1)
f1.close()
else:
self.classifier = self.getNBTrainedClassifer(trainingDataFile, classifierDumpFile)
#end
#start getUniqData
def getUniqData(self, data):
uniq_data = {}
for i in data:
d = data[i]
u = []
for element in d:
if element not in u:
u.append(element)
#end inner loop
uniq_data[i] = u
#end outer loop
return uniq_data
#end
#start getProcessedTweets
def getProcessedTweets(self, data):
tweets = {}
for i in data:
d = data[i]
tw = []
for t in d:
tw.append(self.helper.process_tweet(t))
tweets[i] = tw
#end loop
return tweets
#end
#start getNBTrainedClassifier
def getNBTrainedClassifer(self, trainingDataFile, classifierDumpFile):
# read all tweets and labels
tweetItems = self.getFilteredTrainingData(trainingDataFile)
tweets = []
for (words, sentiment) in tweetItems:
words_filtered = [e.lower() for e in words.split() if(self.helper.is_ascii(e))]
tweets.append((words_filtered, sentiment))
training_set = nltk.classify.apply_features(self.helper.extract_features, tweets)
# Write back classifier and word features to a file
classifier = nltk.NaiveBayesClassifier.train(training_set)
outfile = open(classifierDumpFile, 'wb')
pickle.dump(classifier, outfile)
outfile.close()
return classifier
#end
#start getFilteredTrainingData
def getFilteredTrainingData(self, trainingDataFile):
fp = open( trainingDataFile, 'rb' )
min_count = self.getMinCount(trainingDataFile)
min_count = 40000
neg_count, pos_count, neut_count = 0, 0, 0
reader = csv.reader( fp, delimiter=',', quotechar='"', escapechar='\\' )
tweetItems = []
count = 1
for row in reader:
processed_tweet = self.helper.process_tweet(row[1])
sentiment = row[0]
if(sentiment == 'neutral'):
if(neut_count == int(min_count)):
continue
neut_count += 1
elif(sentiment == 'positive'):
if(pos_count == min_count):
continue
pos_count += 1
elif(sentiment == 'negative'):
if(neg_count == min_count):
continue
neg_count += 1
tweet_item = processed_tweet, sentiment
tweetItems.append(tweet_item)
count +=1
#end loop
return tweetItems
#end
#start getMinCount
def getMinCount(self, trainingDataFile):
fp = open( trainingDataFile, 'rb' )
reader = csv.reader( fp, delimiter=',', quotechar='"', escapechar='\\' )
neg_count, pos_count, neut_count = 0, 0, 0
for row in reader:
sentiment = row[0]
if(sentiment == 'neutral'):
neut_count += 1
elif(sentiment == 'positive'):
pos_count += 1
elif(sentiment == 'negative'):
neg_count += 1
#end loop
return min(neg_count, pos_count, neut_count)
#end
#start classify
def classify(self):
for i in self.tweets:
tw = self.tweets[i]
count = 0
res = {}
for t in tw:
label = self.classifier.classify(self.helper.extract_features(t.split()))
if(label == 'positive'):
self.pos_count[i] += 1
elif(label == 'negative'):
self.neg_count[i] += 1
elif(label == 'neutral'):
self.neut_count[i] += 1
result = {'text': t, 'tweet': self.origTweets[i][count], 'label': label}
res[count] = result
count += 1
#end inner loop
self.results[i] = res
#end outer loop
#end
#start accuracy
def accuracy(self):
tweets = self.getFilteredTrainingData(self.trainingDataFile)
total = 0
correct = 0
wrong = 0
self.accuracy = 0.0
for (t, l) in tweets:
label = self.classifier.classify(self.helper.extract_features(t.split()))
if(label == l):
correct+= 1
else:
wrong+= 1
total += 1
#end loop
self.accuracy = (float(correct)/total)*100
print 'Total = %d, Correct = %d, Wrong = %d, Accuracy = %.2f' % \
(total, correct, wrong, self.accuracy)
#end
#start writeOutput
def writeOutput(self, filename, writeOption='w'):
fp = open(filename, writeOption)
for i in self.results:
res = self.results[i]
for j in res:
item = res[j]
text = item['text'].strip()
label = item['label']
writeStr = text+" | "+label+"\n"
fp.write(writeStr)
#end inner loop
#end outer loop
#end writeOutput
#start getHTML
def getHTML(self):
return self.html.getResultHTML(self.keyword, self.results, self.time, self.pos_count, \
self.neg_count, self.neut_count, 'naivebayes')
#end
#end class