forked from h2oai/driverlessai-recipes
-
Notifications
You must be signed in to change notification settings - Fork 1
/
text_binary_count_logistic.py
111 lines (98 loc) · 4.29 KB
/
text_binary_count_logistic.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
"""Text classification model using binary count of words"""
"""
User inputs can be provided through recipe_dict in config.
To enable the actual count of words instead of binary variable on count, use
recipe_dict = "{'binary_count':False}"
To enable TfidfVectorizer on words instead of CountVectorizer, use
recipe_dict = "{'use_tfidf':True}"
"""
import random
import numpy as np
import scipy as sp
import datatable as dt
from sklearn.preprocessing import LabelEncoder
from sklearn.feature_extraction.text import CountVectorizer, TfidfVectorizer
from sklearn.linear_model import LogisticRegression
from h2oaicore.systemutils import config
from h2oaicore.models import CustomModel
from h2oaicore.transformer_utils import CustomTransformer
class TextBinaryCountLogisticModel(CustomModel):
"""Text classification model using binary count of words"""
_regression = False
_binary = True
_multiclass = True
_can_handle_non_numeric = True
_can_handle_text = True
_testing_can_skip_failure = False # ensure tested as if shouldn't fail
_included_transformers = ["TextOriginalTransformer"]
def __init__(self, **kwargs):
super().__init__(**kwargs)
self.binary_count = config.recipe_dict['binary_count'] if "binary_count" in config.recipe_dict else True
self.use_tfidf = config.recipe_dict['use_tfidf'] if "use_tfidf" in config.recipe_dict else False
def set_default_params(self, accuracy=None, time_tolerance=None,
interpretability=None, **kwargs):
self.params = dict(max_features=kwargs.get("max_features", None),
C=kwargs.get("C", 1.0),
max_iter=kwargs.get("max_iter", 100))
def mutate_params(self, accuracy=None, time_tolerance=None, interpretability=None, **kwargs):
self.params["max_features"] = np.random.choice([20000, 50000, 100000, None])
self.params["C"] = np.random.choice([0.1, 0.3, 1.0, 3.0, 10.0])
self.params["max_iter"] = np.random.choice([100, 200])
def fit(self, X, y, sample_weight=None, eval_set=None, sample_weight_eval_set=None, **kwargs):
orig_cols = list(X.names)
text_names = X[:, [str]].names
lb = LabelEncoder()
lb.fit(self.labels)
y = lb.transform(y)
model = LogisticRegression(C=self.params["C"],
max_iter=self.params["max_iter"],
fit_intercept=False,
random_state=520)
count_objs = {}
new_X = None
for col in text_names:
XX = X[:, col].to_pandas()
XX = XX[col].astype(str).values.tolist()
if not self.use_tfidf:
count_vec = CountVectorizer(max_features=self.params["max_features"],
binary=self.binary_count)
else:
count_vec = TfidfVectorizer(max_features=self.params["max_features"])
try:
XX = count_vec.fit_transform(XX)
except ValueError as e:
if 'vocab' in str(e):
# skip non-text-like column
continue
else:
raise
count_objs[col] = count_vec
if new_X is None:
new_X = XX
else:
new_X = sp.sparse.hstack([new_X, XX])
model.fit(new_X, y)
model = (model, count_objs)
importances = [1] * len(orig_cols)
self.set_model_properties(model=model,
features=orig_cols,
importances=importances,
iterations=0)
def predict(self, X, **kwargs):
(model, count_objs), _, _, _ = self.get_model_properties()
X = dt.Frame(X)
text_names = X[:, [str]].names
new_X = None
for col in text_names:
if col not in count_objs:
continue
XX = X[:, col].to_pandas()
XX = XX[col].astype(str).values.tolist()
count_vec = count_objs[col]
XX = count_vec.transform(XX)
if new_X is None:
new_X = XX
else:
new_X = sp.sparse.hstack([new_X, XX])
preds = model.predict_proba(new_X)
return preds