-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathbaseline_trainer_SL.py
718 lines (563 loc) · 25.8 KB
/
baseline_trainer_SL.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
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
import os
# os.environ['CUDA_VISIBLE_DEVICES'] = '1'
import torch
import torch.nn as nn
import torch.optim as optim
from torch.utils.data import Dataset, DataLoader
from utils.early_stopping import EarlyStopping
import numpy as np
import copy
from tqdm import tqdm
from model.sl import HierarchicalPredictor, NUM_EMO
from sklearn.metrics import classification_report
from data.evaluate import load_dev_labels, get_metrics
import pickle as pkl
import sys
from allennlp.modules.elmo import Elmo, batch_to_ids
from copy import deepcopy
import argparse
import random
from utils.focalloss import FocalLoss
import json
from torchmoji.sentence_tokenizer import SentenceTokenizer
from torchmoji.global_variables import PRETRAINED_PATH, VOCAB_PATH
from utils.tweet_processor import processing_pipeline
from emoji import UNICODE_EMOJI
parser = argparse.ArgumentParser(description='Options')
parser.add_argument('-folds', default=9, type=int,
help="num of folds")
parser.add_argument('-bs', default=128, type=int,
help="batch size")
parser.add_argument('-postname', default='', type=str,
help="a string which will be added to the end of the generated file")
parser.add_argument('-gamma', default=0.2, type=float,
help="learning rate decay")
parser.add_argument('-lr', default=5e-4, type=float,
help="learning rate")
parser.add_argument('-lbd1', default=0, type=float,
help="lambda1 is for MTL")
parser.add_argument('-lbd2', default=0, type=float,
help="lambda2 is for optimizing only the emotional labels")
parser.add_argument('-patience', default=1, type=int,
help="patience of early stopping")
parser.add_argument('-flat', default=1, type=float,
help="flatten para")
parser.add_argument('-focal', default=2, type=int,
help="gamma value for focal loss, default 2 ")
parser.add_argument('-w', default=2, type=int,
help="patience ")
parser.add_argument('-loss', default='ce', type=str,
help="ce or focal ")
parser.add_argument('-dim', default=1500, type=int,
help="post name")
parser.add_argument('-glovepath', type=int,
help="please specify the path to a GloVe 300d emb file")
opt = parser.parse_args()
NUM_OF_FOLD = opt.folds
learning_rate = opt.lr
MAX_EPOCH = 200
SENT_PAD_LEN = 30
EMOJ_SENT_PAD_LEN = 30
CONV_PAD_LEN = 3
FILL_VOCAB = True
BATCH_SIZE = opt.bs
SENT_EMB_DIM = 300
SENT_HIDDEN_SIZE = opt.dim
CLIP = 0.888
EARLY_STOP_PATIENCE = opt.patience
LAMBDA1 = opt.lbd1
LAMBDA2 = opt.lbd2
FLAT = opt.flat
EMOS = ['happy', 'angry', 'sad', 'others']
EMOS_DIC = {'happy': 0,
'angry': 1,
'sad': 2,
'others': 3}
# DEV_DIST = [0.05154264973, 0.05444646098, 0.04537205082, 0.8486388385]
# fix random seeds to ensure replicability
RANDOM_SEED = 0
torch.manual_seed(RANDOM_SEED)
torch.cuda.manual_seed(RANDOM_SEED)
torch.cuda.manual_seed_all(RANDOM_SEED)
np.random.seed(RANDOM_SEED)
random.seed(RANDOM_SEED)
GLOVE_EMB_PATH = opt.glovepath
options_file = "https://s3-us-west-2.amazonaws.com/allennlp/model/elmo/2x4096_512_2048cnn_2xhighway/elmo_2x4096_512_2048cnn_2xhighway_options.json"
weight_file = "https://s3-us-west-2.amazonaws.com/allennlp/model/elmo/2x4096_512_2048cnn_2xhighway/elmo_2x4096_512_2048cnn_2xhighway_weights.hdf5"
# options_file = 'https://s3-us-west-2.amazonaws.com/allennlp/models/elmo/2x4096_512_2048cnn_2xhighway_5.5B/elmo_2x4096_512_2048cnn_2xhighway_5.5B_options.json'
# weight_file = 'https://s3-us-west-2.amazonaws.com/allennlp/models/elmo/2x4096_512_2048cnn_2xhighway_5.5B/elmo_2x4096_512_2048cnn_2xhighway_5.5B_weights.hdf5'
elmo = Elmo(options_file, weight_file, 2, dropout=0).cuda()
elmo.eval()
print('Tokenizing using dictionary from {}'.format(VOCAB_PATH))
with open(VOCAB_PATH, 'r') as f:
vocabulary = json.load(f)
emoji_st = SentenceTokenizer(vocabulary, EMOJ_SENT_PAD_LEN)
def load_data_context(data_path='data/train.txt', is_train=True):
# data_path = 'data/train.txt'
data_list = []
target_list = []
f_data = open(data_path, 'r')
data_lines = f_data.readlines()
f_data.close()
for i, text in enumerate(data_lines):
# skip the first line
if i == 0:
continue
tokens = text.split('\t')
convers = tokens[1:CONV_PAD_LEN+1]
# normal preprocessing
raw_a = convers[0]
raw_b = convers[1]
raw_c = convers[2]
a = processing_pipeline(raw_a)
b = processing_pipeline(raw_b)
c = processing_pipeline(raw_c)
data_list.append(a + ' ' + b + ' ' + c)
if is_train:
emo = tokens[CONV_PAD_LEN + 1].strip()
target_list.append(EMOS_DIC[emo])
if is_train:
return data_list, target_list
else:
return data_list
def build_vocab(data_list_list, vocab_size, fill_vocab=False):
all_str_list = []
for data_list in data_list_list:
all_str_list.extend(data_list)
word_count = {}
word2id = {}
id2word = {}
for tokens in all_str_list:
for word in tokens.split():
if word in word_count:
word_count[word] += 1
else:
word_count[word] = 1
word_list = [x for x, _ in sorted(word_count.items(), key=lambda v: v[1], reverse=True)]
print('found', len(word_count), 'words')
if len(word_count) < vocab_size:
raise Exception('Vocab less than requested!!!')
# add <pad> first
word2id['<pad>'] = 0
id2word[0] = '<pad>'
word2id['<unk>'] = 1
id2word[1] = '<unk>'
word2id['<empty>'] = 2
id2word[2] = '<empty>'
n = len(word2id)
if not fill_vocab:
word_list = word_list[:vocab_size - n]
for word in word_list:
word2id[word] = n
id2word[n] = word
n += 1
if fill_vocab:
print('filling vocab to', len(id2word))
return word2id, id2word, len(id2word)
return word2id, id2word, len(word2id)
class TrainDataSet(Dataset):
def __init__(self, data_list, target_list, conv_pad_len, sent_pad_len, word2id, max_size=None, use_unk=False):
self.sent_pad_len = sent_pad_len
self.conv_pad_len = conv_pad_len
self.word2id = word2id
self.pad_int = word2id['<pad>']
self.use_unk = use_unk
# set max size for the purpose of testing
if max_size is not None:
self.data = self.data[:max_size]
self.target = self.target[:max_size]
# internal data
self.a = []
self.a_len = []
self.emoji_a = []
self.e_c = []
self.e_c_binary = []
self.e_c_emo = []
self.num_empty_lines = 0
self.weights = []
# prepare dataset
self.read_data(data_list, target_list)
def sent_to_ids(self, text):
tokens = text.split()
if self.use_unk:
tmp = [self.word2id[x] if x in self.word2id else self.word2id['<unk>'] for x in tokens]
else:
tmp = [self.word2id[x] for x in tokens if x in self.word2id]
if len(tmp) == 0:
tmp = [self.word2id['<empty>']]
self.num_empty_lines += 1
# PADDING
if len(tmp) > self.sent_pad_len:
tmp = tmp[: self.sent_pad_len]
text_len = len(tmp)
tmp = tmp + [self.pad_int] * (self.sent_pad_len - len(tmp))
return tmp, text_len
def read_data(self, data_list, target_list):
assert len(data_list) == len(target_list)
for X, y in zip(data_list, target_list):
clean_a = X
a, a_len = self.sent_to_ids(clean_a)
self.a.append(a)
self.a_len.append(a_len)
self.emoji_a.append(emoji_st.tokenize_sentences([clean_a])[0].reshape((-1)).astype(np.int64))
self.e_c.append(int(y))
self.e_c_binary.append(1 if int(y) == len(EMOS) - 1 else 0)
e_c_emo = [0] * (len(EMOS) - 1)
if int(y) < len(EMOS) - 1: # i.e. only first three emotions
e_c_emo[int(y)] = 1
self.e_c_emo.append(e_c_emo)
print('num of empty lines,', self.num_empty_lines)
def __len__(self):
return len(self.a)
def __getitem__(self, idx):
return torch.LongTensor(self.a[idx]), torch.LongTensor([self.a_len[idx]]), \
torch.LongTensor(self.emoji_a[idx]), \
torch.LongTensor([self.e_c[idx]]), torch.LongTensor([self.e_c_binary[idx]]), \
torch.FloatTensor(self.e_c_emo[idx])
class TestDataSet(Dataset):
def __init__(self, data_list, conv_pad_len, sent_pad_len, word2id, id2word, use_unk=False):
self.sent_pad_len = sent_pad_len
self.conv_pad_len = conv_pad_len
self.word2id = word2id
self.pad_int = word2id['<pad>']
self.use_unk = use_unk
# internal data
self.a = []
self.a_len = []
self.emoji_a = []
self.num_empty_lines = 0
# prepare dataset
self.ex_word2id = copy.deepcopy(word2id)
self.ex_id2word = copy.deepcopy(id2word)
self.unk_words_idx = set()
self.read_data(data_list)
def sent_to_ids(self, text):
tokens = text.split()
if self.use_unk:
tmp = [self.word2id[x] if x in self.word2id else self.word2id['<unk>'] for x in tokens]
else:
tmp = [self.word2id[x] for x in tokens if x in self.word2id]
if len(tmp) == 0:
tmp = [self.word2id['<empty>']]
self.num_empty_lines += 1
# PADDING
if len(tmp) > self.sent_pad_len:
tmp = tmp[: self.sent_pad_len]
text_len = len(tmp)
tmp = tmp + [self.pad_int] * (self.sent_pad_len - len(tmp))
return tmp, text_len
def read_data(self, data_list):
for X in data_list:
clean_a= X
a, a_len = self.sent_to_ids(clean_a)
self.a.append(a)
self.a_len.append(a_len)
self.emoji_a.append(emoji_st.tokenize_sentences([clean_a])[0].reshape((-1)).astype(np.int64))
print('num of empty lines,', self.num_empty_lines)
def __len__(self):
return len(self.a)
def __getitem__(self, idx):
return torch.LongTensor(self.a[idx]), torch.LongTensor([self.a_len[idx]]), \
torch.LongTensor(self.emoji_a[idx])
def build_embedding(id2word, fname, num_of_vocab):
"""
:param id2word, fname:
:return:
"""
import io
def load_vectors(fname):
print("Loading Glove Model")
f = open(fname, 'r', encoding='utf8')
model = {}
for line in tqdm(f.readlines(), total=2196017):
values = line.split(' ')
word = values[0]
try:
embedding = np.array(values[1:], dtype=np.float32)
model[word] = embedding
except ValueError:
print(len(values), values[0])
print("Done.", len(model), " words loaded!")
f.close()
return model
def get_emb(emb_dict, vocab_size, embedding_dim):
# emb_dict = load_vectors(fname)
all_embs = np.stack(emb_dict.values())
emb_mean, emb_std = all_embs.mean(), all_embs.std()
emb = np.random.normal(emb_mean, emb_std, (vocab_size, embedding_dim))
# emb = np.zeros((vocab_size, embedding_dim))
num_found = 0
print('loading glove')
for idx in tqdm(range(vocab_size)):
word = id2word[idx]
if word == '<pad>' or word == '<unk>':
emb[idx] = np.zeros([embedding_dim])
elif word in emb_dict:
emb[idx] = emb_dict[word]
num_found += 1
return emb, num_found
pkl_path = fname + '.pkl'
if not os.path.isfile(pkl_path):
print('creating pkl file for the emb text file')
emb_dict = load_vectors(fname)
with open(pkl_path, 'wb') as f:
pkl.dump(emb_dict, f)
else:
print('loading pkl file')
with open(pkl_path, 'rb') as f:
emb_dict = pkl.load(f)
print('loading finished')
emb, num_found = get_emb(emb_dict, num_of_vocab, SENT_EMB_DIM)
print(num_found, 'of', num_of_vocab, 'found', 'coverage', num_found/num_of_vocab)
return emb
def main():
num_of_vocab = 10000
# load data
train_file = 'data/train.txt'
data_list, target_list = load_data_context(data_path=train_file)
# dev set
dev_file = 'data/dev.txt'
dev_data_list, dev_target_list = load_data_context(data_path=dev_file)
# test set
test_file = 'data/test.txt'
test_data_list, test_target_list = load_data_context(data_path=test_file)
# load final test data
final_test_file = 'data/testwithoutlabels.txt'
final_test_data_list = load_data_context(data_path=final_test_file, is_train=False)
# build vocab
word2id, id2word, num_of_vocab = build_vocab([data_list, dev_data_list, test_data_list], num_of_vocab,
FILL_VOCAB)
emb = build_embedding(id2word, GLOVE_EMB_PATH, num_of_vocab)
gold_dev_data_set = TestDataSet(dev_data_list, CONV_PAD_LEN, SENT_PAD_LEN, word2id, id2word, use_unk=False)
gold_dev_data_loader = DataLoader(gold_dev_data_set, batch_size=BATCH_SIZE, shuffle=False)
print("Size of test data", len(gold_dev_data_set))
test_data_set = TestDataSet(test_data_list, CONV_PAD_LEN, SENT_PAD_LEN, word2id, id2word, use_unk=False)
test_data_loader = DataLoader(test_data_set, batch_size=BATCH_SIZE, shuffle=False)
print("Size of test data", len(test_data_set))
# ex_id2word, unk_words_idx = test_data_set.get_ex_id2word_unk_words()
final_test_data_set = TestDataSet(final_test_data_list, CONV_PAD_LEN, SENT_PAD_LEN, word2id, id2word, use_unk=False)
final_test_data_loader = DataLoader(final_test_data_set, batch_size=BATCH_SIZE, shuffle=False)
print("Size of final test data", len(final_test_data_set))
# final_ex_id2word, _ = final_test_data_set.get_ex_id2word_unk_words()
def glove_tokenizer(ids, __id2word):
return [__id2word[int(x)] for x in ids if x != 0]
def elmo_encode(data, __id2word=id2word):
data_text = [glove_tokenizer(x, __id2word) for x in data]
with torch.no_grad():
character_ids = batch_to_ids(data_text).cuda()
elmo_emb = elmo(character_ids)['elmo_representations']
elmo_emb = (elmo_emb[0] + elmo_emb[1]) / 2 # avg of two layers
return elmo_emb.cuda()
X = data_list
y = target_list
y = np.array(y)
combined = list(zip(X, y))
random.shuffle(combined)
X[:], y[:] = zip(*combined)
# train dev split
from sklearn.model_selection import StratifiedKFold
skf = StratifiedKFold(n_splits=NUM_OF_FOLD, random_state=0)
all_fold_results = []
real_test_results = []
def one_fold(num_fold, train_index, dev_index):
print("Training on fold:", num_fold)
X_train, X_dev = [X[i] for i in train_index], [X[i] for i in dev_index]
y_train, y_dev = y[train_index], y[dev_index]
# construct data loader
train_data_set = TrainDataSet(X_train, y_train, CONV_PAD_LEN, SENT_PAD_LEN, word2id, use_unk=True)
dev_data_set = TrainDataSet(X_dev, y_dev, CONV_PAD_LEN, SENT_PAD_LEN, word2id, use_unk=True)
dev_data_loader = DataLoader(dev_data_set, batch_size=BATCH_SIZE, shuffle=False)
# device = torch.device("cuda:0" if torch.cuda.is_available() else "cpu")
pred_list_test_best = None
final_pred_best = None
# This is to prevent model diverge, once happen, retrain
while True:
is_diverged = False
model = HierarchicalPredictor(SENT_EMB_DIM, SENT_HIDDEN_SIZE, num_of_vocab, USE_ELMO=True, ADD_LINEAR=False)
model.load_embedding(emb)
model.cuda()
# model = nn.DataParallel(model)
# model.to(device)
optimizer = optim.Adam(model.parameters(), lr=learning_rate, amsgrad=True) #
# optimizer = optim.SGD(model.parameters(), lr=learning_rate)
scheduler = torch.optim.lr_scheduler.ExponentialLR(optimizer, gamma=opt.gamma)
if opt.w == 1:
weight_list = [0.3, 0.3, 0.3, 1.7]
weight_list_binary = [0.3, 1.7]
elif opt.w == 2:
weight_list = [0.3198680179, 0.246494733, 0.2484349259, 1.74527696]
weight_list_binary = [2 - weight_list[-1], weight_list[-1]]
weight_list = [x**FLAT for x in weight_list]
weight_label = torch.Tensor(weight_list).cuda()
weight_list_binary = [x**FLAT for x in weight_list_binary]
weight_binary = torch.Tensor(weight_list_binary).cuda()
print('classification reweight: ', weight_list)
print('binary loss reweight = weight_list_binary', weight_list_binary)
# loss_criterion_binary = nn.CrossEntropyLoss(weight=weight_list_binary) #
if opt.loss == 'focal':
loss_criterion = FocalLoss(gamma=opt.focal, reduce=False)
loss_criterion_binary = FocalLoss(gamma=opt.focal, reduce=False) #
elif opt.loss == 'ce':
loss_criterion = nn.CrossEntropyLoss(reduce=False)
loss_criterion_binary = nn.CrossEntropyLoss(reduce=False) #
loss_criterion_emo_only = nn.MSELoss()
# es = EarlyStopping(min_delta=0.005, patience=EARLY_STOP_PATIENCE)
es = EarlyStopping(patience=EARLY_STOP_PATIENCE)
# best_model = None
final_pred_list_test = None
pred_list_test = None
for num_epoch in range(MAX_EPOCH):
# to ensure shuffle at ever epoch
train_data_loader = DataLoader(train_data_set, batch_size=BATCH_SIZE, shuffle=True)
print('Begin training epoch:', num_epoch, end='...\t')
sys.stdout.flush()
# stepping scheduler
scheduler.step(num_epoch)
print('Current learning rate', scheduler.get_lr())
train_loss = 0
model.train()
for i, (a, a_len, emoji_a, e_c, e_c_binary, e_c_emo) \
in tqdm(enumerate(train_data_loader), total=len(train_data_set)/BATCH_SIZE):
optimizer.zero_grad()
elmo_a = elmo_encode(a)
pred, pred2, pred3 = model(a.cuda(), a_len, emoji_a.cuda(), elmo_a)
loss_label = loss_criterion(pred, e_c.view(-1).cuda()).cuda()
loss_label = torch.matmul(torch.gather(weight_label, 0, e_c.view(-1).cuda()), loss_label) / \
e_c.view(-1).shape[0]
loss_binary = loss_criterion_binary(pred2, e_c_binary.view(-1).cuda()).cuda()
loss_binary = torch.matmul(torch.gather(weight_binary, 0, e_c_binary.view(-1).cuda()),
loss_binary) / e_c.view(-1).shape[0]
loss_emo = loss_criterion_emo_only(pred3, e_c_emo.cuda())
loss = (loss_label + LAMBDA1 * loss_binary + LAMBDA2 * loss_emo) / float(1 + LAMBDA1 + LAMBDA2)
# loss = torch.matmul(torch.gather(weight, 0, trg.view(-1).cuda()), loss) / trg.view(-1).shape[0]
# training trilogy
loss.backward()
torch.nn.utils.clip_grad_norm_(model.parameters(), CLIP)
optimizer.step()
train_loss += loss.data.cpu().numpy() * a.shape[0]
del pred, loss, elmo_a, e_c_emo, loss_binary, loss_label, loss_emo
# Evaluate
model.eval()
dev_loss = 0
# pred_list = []
# gold_list = []
for i, (a, a_len, emoji_a, e_c, e_c_binary, e_c_emo) \
in enumerate(dev_data_loader):
with torch.no_grad():
elmo_a = elmo_encode(a)
pred, pred2, pred3 = model(a.cuda(), a_len, emoji_a.cuda(), elmo_a)
loss_label = loss_criterion(pred, e_c.view(-1).cuda()).cuda()
loss_label = torch.matmul(torch.gather(weight_label, 0, e_c.view(-1).cuda()), loss_label) / e_c.view(-1).shape[0]
loss_binary = loss_criterion_binary(pred2, e_c_binary.view(-1).cuda()).cuda()
loss_binary = torch.matmul(torch.gather(weight_binary, 0, e_c_binary.view(-1).cuda()), loss_binary) / e_c.view(-1).shape[0]
loss_emo = loss_criterion_emo_only(pred3, e_c_emo.cuda())
loss = (loss_label + LAMBDA1 * loss_binary + LAMBDA2 * loss_emo) / float(1 + LAMBDA1 + LAMBDA2)
dev_loss += loss.data.cpu().numpy() * a.shape[0]
# pred_list.append(pred.data.cpu().numpy())
# gold_list.append(e_c.numpy())
del pred, loss, elmo_a, e_c_emo, loss_binary, loss_label, loss_emo
print('Training loss:', train_loss / len(train_data_set), end='\t')
print('Dev loss:', dev_loss / len(dev_data_set))
# print(classification_report(gold_list, pred_list, target_names=EMOS))
# get_metrics(pred_list, gold_list)
if dev_loss/len(dev_data_set) > 1.3 and num_epoch > 4:
print("Model diverged, retry")
is_diverged = True
break
if es.step(dev_loss): # overfitting
print('overfitting, loading best model ...')
break
else:
if es.is_best():
print('saving best model ...')
if final_pred_best is not None:
del final_pred_best
final_pred_best = deepcopy(final_pred_list_test)
if pred_list_test_best is not None:
del pred_list_test_best
pred_list_test_best = deepcopy(pred_list_test)
else:
print('not best model, ignoring ...')
if final_pred_best is None:
final_pred_best = deepcopy(final_pred_list_test)
if pred_list_test_best is None:
pred_list_test_best = deepcopy(pred_list_test)
# Gold Dev testing...
print('Gold Dev testing....')
pred_list_test = []
model.eval()
for i, (a, a_len, emoji_a) in enumerate(gold_dev_data_loader):
with torch.no_grad():
elmo_a = elmo_encode(a) # , __id2word=ex_id2word
pred, _, _ = model(a.cuda(), a_len, emoji_a.cuda(), elmo_a)
pred_list_test.append(pred.data.cpu().numpy())
del elmo_a, a, pred
pred_list_test = np.argmax(np.concatenate(pred_list_test, axis=0), axis=1)
# get_metrics(load_dev_labels('data/dev.txt'), pred_list_test)
# Testing
print('Gold test testing...')
final_pred_list_test = []
model.eval()
for i, (a, a_len, emoji_a) in enumerate(test_data_loader):
with torch.no_grad():
elmo_a = elmo_encode(a) # , __id2word=ex_id2word
pred, _, _ = model(a.cuda(), a_len, emoji_a.cuda(), elmo_a)
final_pred_list_test.append(pred.data.cpu().numpy())
del elmo_a, a, pred
final_pred_list_test = np.argmax(np.concatenate(final_pred_list_test, axis=0), axis=1)
# get_metrics(load_dev_labels('data/test.txt'), final_pred_list_test)
if is_diverged:
print("Reinitialize model ...")
del model
continue
all_fold_results.append(pred_list_test_best)
real_test_results.append(final_pred_best)
del model
break
if torch.cuda.device_count() > 1:
print("Let's use", torch.cuda.device_count(), "GPUs!")
# Training the folds
for idx, (_train_index, _dev_index) in enumerate(skf.split(X, y)):
print('Train size:', len(_train_index), 'Dev size:', len(_dev_index))
one_fold(idx, _train_index, _dev_index)
# Function of majority voting
def find_majority(k):
myMap = {}
maximum = ('', 0) # (occurring element, occurrences)
for n in k:
if n in myMap:
myMap[n] += 1
else:
myMap[n] = 1
# Keep track of maximum on the go
if myMap[n] > maximum[1]: maximum = (n, myMap[n])
return maximum
all_fold_results = np.asarray(all_fold_results)
mj_dev = []
for col_num in range(all_fold_results.shape[1]):
a_mj = find_majority(all_fold_results[:, col_num])
mj_dev.append(a_mj[0])
print('FINAL gold DEV RESULTS')
get_metrics(load_dev_labels('data/dev.txt'), np.asarray(mj_dev))
real_test_results = np.asarray(real_test_results)
mj = []
for col_num in range(real_test_results.shape[1]):
a_mj = find_majority(real_test_results[:, col_num])
mj.append(a_mj[0])
print('FINAL TESTING RESULTS')
get_metrics(load_dev_labels('data/test.txt'), np.asarray(mj))
# MAKE SUBMISSION
# WRITE TO FILE
test_file = 'data/testwithoutlabels.txt'
f_in = open(test_file, 'r')
f_out = open('test_SL' + opt.postname + '.txt', 'w')
data_lines = f_in.readlines()
for idx, text in enumerate(data_lines):
if idx == 0:
f_out.write(text.strip() + '\tlabel\n')
else:
f_out.write(text.strip() + '\t' + EMOS[mj[idx-1]] + '\n')
f_in.close()
f_out.close()
print('I am SL :) Final testing')
main()