forked from facebookresearch/ParlAI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_tra.py
210 lines (172 loc) · 6.97 KB
/
test_tra.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
#!/usr/bin/env python3
# Copyright (c) Facebook, Inc. and its affiliates.
# This source code is licensed under the MIT license found in the
# LICENSE file in the root directory of this source tree.
"""
Test TorchRankerAgent.
"""
import os
import pytest
import unittest
import parlai.utils.testing as testing_utils
from parlai.tasks.integration_tests.agents import CandidateTeacher
class _AbstractTRATest(unittest.TestCase):
"""
Test upgrade_opt behavior.
"""
@classmethod
def setUpClass(cls):
if cls is _AbstractTRATest:
raise unittest.SkipTest('Skip abstract parent class')
super(_AbstractTRATest, cls).setUpClass()
def _get_args(self):
# Add arguments for the Torch Ranker Agent to test
# Override in child classes
return dict(
task='integration_tests:overfit',
optimizer='adam',
learningrate=1e-2,
batchsize=4,
validation_every_n_epochs=5,
validation_patience=10,
lr_scheduler='none',
embedding_size=8,
gradient_clip=0.5,
)
def _get_threshold(self):
# Accuracy threshold
return 0.8
# test train inline cands
@testing_utils.retry(ntries=3)
def test_train_inline(self):
args = self._get_args()
args['candidates'] = 'inline'
args['eval_candidates'] = 'inline'
valid, test = testing_utils.train_model(args)
threshold = self._get_threshold()
self.assertGreaterEqual(valid['hits@1'], threshold)
# test train batch cands
@testing_utils.retry(ntries=3)
def test_train_batch(self):
args = self._get_args()
args['candidates'] = 'batch'
args['eval_candidates'] = 'batch'
valid, test = testing_utils.train_model(args)
threshold = self._get_threshold()
self.assertGreaterEqual(valid['hits@1'], threshold)
# test train fixed
@pytest.mark.nofbcode
@testing_utils.retry(ntries=3)
def test_train_fixed(self):
args = self._get_args()
args['candidates'] = 'fixed'
args['eval_candidates'] = 'fixed'
args['encode_candidate_vecs'] = False
valid, test = testing_utils.train_model(args)
threshold = self._get_threshold()
self.assertGreaterEqual(valid['hits@1'], threshold)
# test train batch all cands
@testing_utils.retry(ntries=3)
def test_train_batch_all(self):
args = self._get_args()
args['candidates'] = 'batch-all-cands'
args['eval_candidates'] = 'batch-all-cands'
valid, test = testing_utils.train_model(args)
threshold = self._get_threshold()
self.assertGreaterEqual(valid['hits@1'], threshold)
# test eval inline ecands
@testing_utils.retry(ntries=3)
def test_eval_inline(self):
args = self._get_args()
args['eval_candidates'] = 'inline'
valid, test = testing_utils.train_model(args)
threshold = self._get_threshold()
self.assertGreaterEqual(valid['hits@1'], threshold)
# test eval batch ecands
def test_eval_batch(self):
args = self._get_args()
args['eval_candidates'] = 'batch'
valid, test = testing_utils.train_model(args)
# no threshold, the model won't generalize on :overfit
# test eval vocab ecands
@testing_utils.retry(ntries=3)
def test_eval_vocab(self):
args = self._get_args()
args['eval_candidates'] = 'vocab'
args['encode_candidate_vecs'] = True
valid, test = testing_utils.train_model(args)
# accuracy should be zero, none of the vocab candidates should be the
# correct label
self.assertEqual(valid['hits@100'], 0)
class TestTransformerRanker(_AbstractTRATest):
def _get_args(self):
args = super()._get_args()
new_args = dict(model='transformer/ranker', n_layers=1, n_heads=4, ffn_size=32)
for k, v in new_args.items():
args[k] = v
return args
class TestMemNN(_AbstractTRATest):
def _get_args(self):
args = super()._get_args()
args['model'] = 'memnn'
return args
def _get_threshold(self):
# this is a slightly worse model, so we expect it to perform worse
return 0.5
@pytest.mark.nofbcode
class TestPolyRanker(_AbstractTRATest):
def _get_args(self):
args = super()._get_args()
new_args = dict(
model='transformer/polyencoder', n_layers=1, n_heads=4, ffn_size=32
)
for k, v in new_args.items():
args[k] = v
return args
def _get_threshold(self):
return 0.6
def test_eval_fixed_label_not_in_cands(self):
# test where cands during eval do not contain test label
args = self._get_args()
args[
'model'
] = 'parlai.agents.transformer.polyencoder:IRFriendlyPolyencoderAgent'
args['eval_candidates'] = 'fixed'
teacher = CandidateTeacher({'datatype': 'train'})
all_cands = teacher.train + teacher.val + teacher.test
train_val_cands = teacher.train + teacher.val
all_cands_str = '\n'.join([' '.join(x) for x in all_cands])
train_val_cands_str = '\n'.join([' '.join(x) for x in train_val_cands])
with testing_utils.tempdir() as tmpdir:
tmp_cands_file = os.path.join(tmpdir, 'all_cands.text')
with open(tmp_cands_file, 'w') as f:
f.write(all_cands_str)
tmp_train_val_cands_file = os.path.join(tmpdir, 'train_val_cands.text')
with open(tmp_train_val_cands_file, 'w') as f:
f.write(train_val_cands_str)
args['fixed_candidates_path'] = tmp_cands_file
args['encode_candidate_vecs'] = False # don't encode before training
args['ignore_bad_candidates'] = False
args['model_file'] = os.path.join(tmpdir, 'model')
args['dict_file'] = os.path.join(tmpdir, 'model.dict')
args['num_epochs'] = 4
args['add_label_to_fixed_cands'] = False
# Train model where it has access to the candidate in labels
valid, test = testing_utils.train_model(args)
self.assertGreaterEqual(valid['hits@100'], 0.0)
# Evaluate model where label is not in fixed candidates
args['fixed_candidates_path'] = tmp_train_val_cands_file
# need these args dropped, it was for train only
del args['num_epochs']
del args['validation_patience']
del args['validation_every_n_epochs']
# use validation set that doesn't overlap
args['task'] = 'integration_tests'
# Will fail without appropriate arg set
with self.assertRaises(RuntimeError):
testing_utils.eval_model(args, skip_valid=True)
args['add_label_to_fixed_cands'] = True
_, test = testing_utils.eval_model(args, skip_valid=True)
self.assertGreaterEqual(test['hits@100'], 0.0)
if __name__ == '__main__':
unittest.main()