-
Notifications
You must be signed in to change notification settings - Fork 8
/
test_squad_fairseq_mnli_cn.py
250 lines (170 loc) · 5.55 KB
/
test_squad_fairseq_mnli_cn.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
from torch import nn
import argparse
import torch
from glob import glob
import numpy as np
import json
from tokenizer.validate import validate
from copy import deepcopy
from time import time
from multiprocessing import Pool
import multiprocessing
import gc
import random
from tqdm import tqdm
import os
roberta_directory = './roberta.large'
max_seq_length = 256
max_query_length = 128
doc_stride = 128
merge_style = 0
default_choices = []
from tokenizer.tokenization import BertTokenizer, translate_to_cn, char_anchors_to_tok_pos
vocab_file = 'roberta.large.zh/vocab.txt'
get_tokenizer = lambda: BertTokenizer(vocab_file)
tk = tokenizer = get_tokenizer()
#Data Utilities
def init():
global tokenizer, tk
import gc
tokenizer = tk = get_tokenizer()
def data_from_path(train_dir):
index = 0
for fn in glob(train_dir):
with open(fn, "r") as f:
entries = [e for e in json.load(f)["data"] for e in e['paragraphs']]
print("%-40s : %s contexts"%(fn.split('/')[-1],len(entries)))
for e in entries:
c = e['context']
yield index, c, e['qas']
index += 1
def char_anchors_to_tok_pos(r):
if len(r.char_anchors) == 2:
a,b = r.char_anchors
else:
return -1,-1
a = r.char_to_tok_offset[a]
b = r.char_to_tok_offset[b]
while b+1 < len(r.all_doc_tokens) and r.all_text_tokens[b+1] == '':
b += 1
return a, b
import marshal
def read(dat):
inp, label = marshal.loads(dat)
inp = np.frombuffer(inp, dtype=np.uint16).astype(np.int32)
return inp, label
def fread(f):
inp, label = marshal.load(f)
inp = np.frombuffer(inp, dtype=np.uint16).astype(np.int32)
return inp, label
def chunks(l, n):
if type(l) == type((e for e in range(1))):
it = iter(l)
while True:
out = []
try:
for _ in range(n):
out.append(next(it))
except StopIteration:
yield out
break
yield out
else:
for i in range(0, len(l), n):
yield l[i:i + n]
def pad(list_of_tokens,
dtype=np.long,
torch_tensor=None,
pad_idx=1):
list_of_tokens = [e for e in list_of_tokens if len(e) <= max_seq_length]
k = np.empty((len(list_of_tokens),max_seq_length), dtype=dtype)
k.fill(pad_idx)
i = 0
for tokens in list_of_tokens:
k[i,:len(tokens)] = tokens
i += 1
return k if torch_tensor is None else torch_tensor(k)
def from_records(records, batch_size = 48, half=False, shuffle=True):
if half:
float = torch.HalfTensor
else:
float = torch.FloatTensor
fn_style = isinstance(records,str)
if fn_style:
def from_file(fn):
with open(fn, 'rb') as f:
while True:
try:
record = fread(f)
yield record
except EOFError:
break
records = from_file(records)
if shuffle:
records = list(records)
random.shuffle(records)
for record_samples in chunks(records,batch_size):
inp, label = zip(*record_samples) if fn_style else zip(*(read(record) for record in record_samples))
inp = pad(inp,dtype=np.long, torch_tensor=torch.LongTensor)
yield inp, label
# Train Utilities
# Model Init
##############################################################################
##############################################################################
####
#### Below are using DataParallel... which is slow...
#### and I do not know how to use DistributedDataParallel yet
####
##############################################################################
##############################################################################
import sys
eval_model = sys.argv[1]
eval_dir = sys.argv[2]
import transformers
from time import time
import torch
roberta_single = transformers.BertForSequenceClassification(transformers.modeling_bert.BertConfig.from_json_file("roberta.large.zh.wwm.mnli/config.json"))
states = torch.load(eval_model)
roberta_single.load_state_dict(states['model'])
log_steps = 500
num_epochs = 2
max_seq_length = 256
num_cores = torch.cuda.device_count() # 8
effective_batch_size = 64 # 8 bs per device
update_freq = 1 # 4 bs per device
fp16 = True
class args:
update_freq=update_freq
fp16_scale_window=128
distributed_world_size=1
fp16_init_scale=4
fp16_scale_tolerance=0
threshold_loss_scale=1
min_loss_scale=1e-4
use_gpu = None
assert effective_batch_size % update_freq == 0
batch_size = effective_batch_size // update_freq
if num_cores > 1:
roberta = nn.DataParallel(roberta_single)
print("Let's use", num_cores, "GPUs!")
use_gpu = torch.cuda.is_available() if use_gpu is None else use_gpu
device = torch.device("cuda:0" if use_gpu else "cpu")
if not use_gpu:
fp16 = False
roberta.to(device)
if fp16:
roberta.half()
roberta.eval()
def evaluate(eval_dir):
batches = from_records(eval_dir,batch_size, half=fp16, shuffle=False)
count = 0
ncorrects = 0
with torch.no_grad():
for inp, labels in tqdm(batches):
cls_logits = roberta(inp.to(device=device), attention_mask=inp.ne(1))[0]
preds = cls_logits.argmax(1).tolist()
ncorrect = sum(a == b for a, b in zip(labels, preds))
ncorrects += ncorrect
count += len(inp)
print('Accuracy: ', '%.4f'%(100*ncorrects / count), '%', '(',ncorrects,'/',count,')' )
evaluate(eval_dir)