forked from cgpotts/cs224u
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sst.py
494 lines (414 loc) · 15.4 KB
/
sst.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
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
from collections import Counter, namedtuple
from nltk.tree import Tree
import numpy as np
import os
import pandas as pd
import random
from sklearn.model_selection import train_test_split
from sklearn.feature_extraction import DictVectorizer
from sklearn.linear_model import LogisticRegression
from sklearn.metrics import classification_report, f1_score
import scipy.stats
import utils
__author__ = "Christopher Potts"
__version__ = "CS224u, Stanford, Fall 2020"
def sentiment_treebank_reader(src_filename, class_func=None):
"""
Iterator for the Penn-style distribution of the Stanford
Sentiment Treebank. The iterator yields (tree, label) pairs.
The labels are strings. They do not make sense as a linear order
because negative ('0', '1'), neutral ('2'), and positive ('3','4')
do not form a linear order conceptually, and because '0' is
stronger than '1' but '4' is stronger than '3'.
Parameters
----------
src_filename : str
Full path to the file to be read.
class_func : None, or function mapping labels to labels or None
If this is None, then the original 5-way labels are returned.
Other options: `binary_class_func` and `ternary_class_func`
(or you could write your own).
Yields
------
(tree, label)
nltk.Tree, str in {'0','1','2','3','4'}
"""
if class_func is None:
class_func = lambda x: x
with open(src_filename, encoding='utf8') as f:
for line in f:
tree = Tree.fromstring(line)
label = class_func(tree.label())
# As in the paper, if the root node doesn't fall into any
# of the classes for this version of the problem, then
# we drop the example:
if label:
for subtree in tree.subtrees():
subtree.set_label(class_func(subtree.label()))
yield (tree, label)
def binary_class_func(y):
"""
Define a binary SST task.
Parameters
----------
y : str
Assumed to be one of the SST labels.
Returns
-------
str or None
None values are ignored by `build_dataset` and thus left out of
the experiments.
"""
if y in ("0", "1"):
return "negative"
elif y in ("3", "4"):
return "positive"
else:
return None
def ternary_class_func(y):
"""
Define a binary SST task. Just like `binary_class_func` except
input '2' returns 'neutral'.
"""
if y in ("0", "1"):
return "negative"
elif y in ("3", "4"):
return "positive"
else:
return "neutral"
def train_reader(sst_home, **kwargs):
"""
Convenience function for reading the train file, full-trees only.
"""
src = os.path.join(sst_home, 'train.txt')
return sentiment_treebank_reader(src, **kwargs)
def dev_reader(sst_home, **kwargs):
"""
Convenience function for reading the dev file, full-trees only.
"""
src = os.path.join(sst_home, 'dev.txt')
return sentiment_treebank_reader(src, **kwargs)
def test_reader(sst_home, **kwargs):
"""
Convenience function for reading the test file, full-trees only.
This function should be used only for the final stages of a project,
to obtain final results.
"""
src = os.path.join(sst_home, 'test.txt')
return sentiment_treebank_reader(src, **kwargs)
def build_dataset(sst_home, reader, phi, class_func, vectorizer=None, vectorize=True):
"""
Core general function for building experimental datasets.
Parameters
----------
sst_home : str
Full path to the 'trees' directory for SST.
reader : iterator or iterable of iterators
Should be `train_reader`, `dev_reader`, or another function
defined in those terms, or a list/tuple of such functions.
This is the dataset we'll be featurizing.
phi : feature function
Any function that takes an `nltk.Tree` instance as input
and returns a bool/int/float-valued dict as output.
class_func : function on the SST labels
Any function like `binary_class_func` or `ternary_class_func`.
This modifies the SST labels based on the experimental
design. If `class_func` returns None for a label, then that
item is ignored.
vectorizer : sklearn.feature_extraction.DictVectorizer
If this is None, then a new `DictVectorizer` is created and
used to turn the list of dicts created by `phi` into a
feature matrix. This happens when we are training.
If this is not None, then it's assumed to be a `DictVectorizer`
and used to transform the list of dicts. This happens in
assessment, when we take in new instances and need to
featurize them as we did in training.
vectorize : bool
Whether to use a DictVectorizer. Set this to False for
deep learning models that process their own input.
Returns
-------
dict
A dict with keys 'X' (the feature matrix), 'y' (the list of
labels), 'vectorizer' (the `DictVectorizer`), and
'raw_examples' (the `nltk.Tree` objects, for error analysis).
"""
labels = []
feat_dicts = []
raw_examples = []
if isinstance(reader, (list, tuple)):
readers = reader
else:
readers = [reader]
for reader in readers:
for tree, label in reader(sst_home, class_func=class_func):
labels.append(label)
feat_dicts.append(phi(tree))
raw_examples.append(tree)
feat_matrix = None
if vectorize:
# In training, we want a new vectorizer:
if vectorizer == None:
vectorizer = DictVectorizer(sparse=False)
feat_matrix = vectorizer.fit_transform(feat_dicts)
# In assessment, we featurize using the existing vectorizer:
else:
feat_matrix = vectorizer.transform(feat_dicts)
else:
feat_matrix = feat_dicts
return {'X': feat_matrix,
'y': labels,
'vectorizer': vectorizer,
'raw_examples': raw_examples}
def experiment(
sst_home,
phi,
train_func,
train_reader=train_reader,
assess_reader=None,
train_size=0.7,
class_func=binary_class_func,
score_func=utils.safe_macro_f1,
vectorize=True,
verbose=True,
random_state=None):
"""
Generic experimental framework for SST. Either assesses with a
random train/test split of `train_reader` or with `assess_reader` if
it is given.
Parameters
----------
sst_home : str
Full path to the 'trees' directory for SST.
phi : feature function
Any function that takes an `nltk.Tree` instance as input
and returns a bool/int/float-valued dict as output.
train_func : model wrapper
Any function that takes a feature matrix and a label list
as its values and returns a fitted model with a `predict`
function that operates on feature matrices.
train_reader : SST iterator (default: `train_reader`)
Iterator for training data.
assess_reader : iterator or None (default: None)
If None, then the data from `train_reader` are split into
a random train/test split, with the the train percentage
determined by `train_size`. If not None, then this should
be an iterator for assessment data (e.g., `dev_reader`).
train_size : float (default: 0.7)
If `assess_reader` is None, then this is the percentage of
`train_reader` devoted to training. If `assess_reader` is
not None, then this value is ignored.
class_func : function on the SST labels
Any function like `binary_class_func` or `ternary_class_func`.
This modifies the SST labels based on the experimental
design. If `class_func` returns None for a label, then that
item is ignored.
score_metric : function name (default: `utils.safe_macro_f1`)
This should be an `sklearn.metrics` scoring function. The
default is weighted average F1 (macro-averaged F1). For
comparison with the SST literature, `accuracy_score` might
be used instead. For micro-averaged F1, use
(lambda y, y_pred : f1_score(y, y_pred, average='micro', pos_label=None))
For other metrics that can be used here, see
see http://scikit-learn.org/stable/modules/classes.html#module-sklearn.metrics
vectorize : bool
Whether to use a DictVectorizer. Set this to False for
deep learning models that process their own input.
verbose : bool (default: True)
Whether to print out the model assessment to standard output.
Set to False for statistical testing via repeated runs.
random_state : int or None
Optionally set the random seed for consistent sampling.
Prints
-------
To standard output, if `verbose=True`
Model precision/recall/F1 report. Accuracy is micro-F1 and is
reported because many SST papers report that figure, but macro
precision/recall/F1 is better given the class imbalances and the
fact that performance across the classes can be highly variable.
Returns
-------
dict with keys
'model': trained model
'phi': the function used for featurization
'train_dataset': a dataset as returned by `build_dataset`
'assess_dataset': a dataset as returned by `build_dataset`
'predictions': predictions on the assessment data
'metric': `score_func.__name__`
'score': the `score_func` score on the assessment data
"""
# Train dataset:
train = build_dataset(
sst_home,
train_reader,
phi,
class_func,
vectorizer=None,
vectorize=vectorize)
# Manage the assessment set-up:
X_train = train['X']
y_train = train['y']
raw_train = train['raw_examples']
if assess_reader == None:
X_train, X_assess, y_train, y_assess, raw_train, raw_assess = train_test_split(
X_train, y_train, raw_train,
train_size=train_size, test_size=None, random_state=random_state)
assess = {
'X': X_assess,
'y': y_assess,
'vectorizer': train['vectorizer'],
'raw_examples': raw_assess}
else:
# Assessment dataset using the training vectorizer:
assess = build_dataset(
sst_home,
assess_reader,
phi,
class_func,
vectorizer=train['vectorizer'],
vectorize=vectorize)
X_assess, y_assess = assess['X'], assess['y']
# Train:
mod = train_func(X_train, y_train)
# Predictions:
predictions = mod.predict(X_assess)
# Report:
if verbose:
print(classification_report(y_assess, predictions, digits=3))
# Return the overall score and experimental info:
return {
'model': mod,
'phi': phi,
'train_dataset': train,
'assess_dataset': assess,
'predictions': predictions,
'metric': score_func.__name__,
'score': score_func(y_assess, predictions)}
def compare_models(
sst_home,
phi1,
train_func1,
phi2=None,
train_func2=None,
vectorize1=True,
vectorize2=True,
stats_test=scipy.stats.wilcoxon,
trials=10,
reader=train_reader,
train_size=0.7,
class_func=binary_class_func,
score_func=utils.safe_macro_f1):
"""
Wrapper for comparing models. The parameters are like those of
`experiment`, with the same defaults, except
Parameters
----------
sst_home : str
Full path to the 'trees' directory for SST.
phi1, phi2
Just like `phi` for `experiment`. `phi1` defaults to
`unigrams_phi`. If `phi2` is None, then it is set equal
to `phi1`.
train_func1, train_func2
Just like `train_func` for `experiment`. If `train_func2`
is None, then it is set equal to `train_func`.
vectorize1, vectorize1 : bool
Whether to vectorize the respective inputs. Use `False` for
deep learning models that featurize their own input.
stats_test : scipy.stats function
Defaults to `scipy.stats.wilcoxon`, a non-parametric version
of the paired t-test.
trials : int (default: 10)
Number of runs on random train/test splits of `reader`,
with `train_size` controlling the amount of training data.
train_size : float
Percentage of data o use for training.
class_func : function on the SST labels
Any function like `binary_class_func` or `ternary_class_func`.
This modifies the SST labels based on the experimental
design. If `class_func` returns None for a label, then that
item is ignored.
Prints
------
To standard output
A report of the assessment.
Returns
-------
(np.array, np.array, float)
The first two are the scores from each model (length `trials`),
and the third is the p-value returned by stats_test.
"""
if phi2 == None:
phi2 = phi1
if train_func2 == None:
train_func2 = train_func1
experiments1 = [experiment(sst_home,
train_reader=reader,
phi=phi1,
train_func=train_func1,
class_func=class_func,
score_func=score_func,
vectorize=vectorize1,
verbose=False) for _ in range(trials)]
experiments2 = [experiment(sst_home,
train_reader=reader,
phi=phi2,
train_func=train_func2,
class_func=class_func,
score_func=score_func,
vectorize=vectorize2,
verbose=False) for _ in range(trials)]
scores1 = np.array([d['score'] for d in experiments1])
scores2 = np.array([d['score'] for d in experiments2])
# stats_test returns (test_statistic, p-value). We keep just the p-value:
pval = stats_test(scores1, scores2)[1]
# Report:
print('Model 1 mean: %0.03f' % scores1.mean())
print('Model 2 mean: %0.03f' % scores2.mean())
print('p = %0.03f' % pval if pval >= 0.001 else 'p < 0.001')
# Return the scores for later analysis, and the p value:
return (scores1, scores2, pval)
def build_rnn_dataset(sst_home, reader, class_func=binary_class_func):
"""
Given an SST reader, return the `class_func` version of the
dataset as (X, y) training pair.
Parameters
----------
sst_home : str
Full path to the 'trees' directory for SST.
reader : train_reader or dev_reader
class_func : function on the SST labels
Returns
-------
X, y
Where X is a list of list of str, and y is the output label list.
"""
r = reader(sst_home, class_func=class_func)
data = [(tree.leaves(), label) for tree, label in r]
X, y = zip(*data)
return list(X), list(y)
def build_tree_dataset(sst_home, reader, class_func=binary_class_func):
"""
Given an SST reader, return the `class_func` version of the
dataset. The root node of each tree (`tree.label()`) is set to
the class for that tree. We also return the label vector for
assessment.
Parameters
----------
sst_home : str
Full path to the 'trees' directory for SST.
reader : train_reader or dev_reader
class_func : function on the SST labels
Returns
-------
X, y
Where X is a list of `nltk.tree.Tree`, and y is the output
label list.
"""
data = []
labels = []
for (tree, label) in reader(sst_home, class_func=class_func):
tree.set_label(label)
data.append(tree)
labels.append(label)
return data, labels