-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnews_classifier_random_forest_classifier.py
189 lines (130 loc) · 5.52 KB
/
news_classifier_random_forest_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
from sklearn.model_selection import train_test_split
from sklearn.metrics import mean_squared_error
from sklearn.feature_extraction.text import HashingVectorizer
from sklearn.ensemble import RandomForestRegressor, RandomForestClassifier
from sklearn.experimental import enable_halving_search_cv
from sklearn.model_selection import HalvingGridSearchCV
from sklearn.feature_extraction import text
from nltk.stem.snowball import SnowballStemmer
from sklearn.model_selection import RandomizedSearchCV
import re
import nltk
import numpy as np
from nltk.tokenize import word_tokenize
from nltk.probability import FreqDist
from nltk.corpus import stopwords
from sklearn.feature_extraction.text import TfidfVectorizer
from sklearn import metrics
from nltk.stem import WordNetLemmatizer
from pprint import pprint
import pandas as pd
class LemmaTokenizer:
def __init__(self):
self.wnl = WordNetLemmatizer()
def __call__(self, doc):
return [self.wnl.lemmatize(t) for t in word_tokenize(doc)]
def stemmed_words(doc):
return (stemmer.stem(w) for w in analyzer(doc))
def summarize_classification(y_test, y_pred):
rmse = mean_squared_error(y_test, y_pred, squared=False)
mse = mean_squared_error(y_test, y_pred, squared=True)
print("Length of testing data: ", len(y_test))
print("root mean squared error: ", rmse)
print("mean squared error: ", mse)
# alternative error computation
errors = abs(y_pred - y_test)
mape = 100 * np.mean(errors / y_test)
accuracy = 100 - mape
print("Model Performance")
print("Average Error: {:0.4f} degrees.".format(np.mean(errors)))
print('Accuracy = {:0.2f}%'.format(accuracy))
nltk.download('wordnet')
stemmer = SnowballStemmer('english')
analyzer = HashingVectorizer().build_analyzer()
df = pd.read_csv('./archive/modified.csv', encoding="ISO-8859-1")
df.dropna(subset = ['abstract','headline'], inplace=True)
X = df['abstract']
X_headline = df['headline']
X_section = df['section']
Y = df['clickbait_category_4']
documents = []
# text preprocessing
Y_modified = pd.DataFrame()
for sen in range(0, len(X)):
# Remove all the special characters
headline = X_headline.get(sen)
abstract = X.get(sen)
section = X_section.get(sen)
"""if headline is None:
headline = ""
if abstract is None:
abstract = "" """
#doc = headline + " : " + X.get(sen)
if not(headline is None) and not(abstract is None) and not(section is None):
doc = section + " : " + headline + " : " + abstract
document = re.sub(r'\W', ' ', str(doc))
# remove all single characters
document = re.sub(r'\s+[a-zA-Z]\s+', ' ', document)
# Remove single characters from the start
document = re.sub(r'\^[a-zA-Z]\s+', ' ', document)
# Substituting multiple spaces with single space
document = re.sub(r'\s+', ' ', document, flags=re.I)
# Removing prefixed 'b'
document = re.sub(r'^b\s+', '', document)
# Converting to Lowercase
document = document.lower()
# Lemmatization
document = document.split()
# document = [stemmer.lemmatize(word) for word in document]
document = ' '.join(document)
documents.append(document)
#print("document: " + document)
Y_modified = Y_modified.append({'clickbait_category_4': Y[sen]}, ignore_index=True)
# frequency filtering
tokens = word_tokenize("\n".join(X.values))
freq = FreqDist(tokens)
frequent_words = []
for key, value in freq.items():
if value >= 200:
frequent_words.append(key.lower())
stop_words = text.ENGLISH_STOP_WORDS
#max_df=0.8
vectorizer = TfidfVectorizer(tokenizer=LemmaTokenizer(), max_features=2500, analyzer=stemmed_words , stop_words=stop_words)
# create the parameter grid:
# Number of trees in random forest
n_estimators = [int(x) for x in np.linspace(start = 200, stop = 2000, num = 10)]
# Number of features to consider at every split
max_features = ['auto', 'sqrt']
# Maximum number of levels in tree
max_depth = [int(x) for x in np.linspace(10, 110, num = 11)]
max_depth.append(None)
# Minimum number of samples required to split a node
min_samples_split = [2, 5, 10]
# Minimum number of samples required at each leaf node
min_samples_leaf = [1, 2, 4]
# Method of selecting samples for training each tree
bootstrap = [True, False]
# Create the random grid
# 'n_estimators': n_estimators,
random_grid = {
'max_features': max_features,
'max_depth': max_depth,
'min_samples_split': min_samples_split,
'min_samples_leaf': min_samples_leaf,
'bootstrap': bootstrap}
pprint(random_grid)
processed_features = vectorizer.fit_transform(documents)
processed_features.shape
X_dense = processed_features.todense()
X_dense.shape
x_train, x_test, y_train, y_test = train_test_split(X_dense, Y_modified['clickbait_category_4'], test_size = 0.2)
x_train.shape, x_test.shape
y_train.shape, y_test.shape
clf = RandomForestClassifier(n_estimators = 100)
"""clf_random_search = RandomizedSearchCV(estimator=clf, param_distributions = random_grid, n_iter=5,
cv=3, verbose=2, random_state=42, n_jobs = -1).fit(x_train, y_train) """
clf_random_search = HalvingGridSearchCV(estimator=clf, param_grid = random_grid, cv=3, factor=2,
resource='n_estimators',max_resources=30).fit(x_train, y_train)
#clf_random_search.fit(x_train, y_train)
y_pred = clf_random_search.predict(x_test)
print("ACCURACY OF THE MODEL : ", metrics.accuracy_score(y_test, y_pred))