-
Notifications
You must be signed in to change notification settings - Fork 0
/
new_finetune_offensive_full.py
328 lines (250 loc) · 10.3 KB
/
new_finetune_offensive_full.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
import re
import string
import sys
"""
dataset_name seed_val model_name model_idx
"""
PUNCUATION_LIST = list(string.punctuation)
def remove_punctuation(word_list):
"""Remove punctuation tokens from a list of tokens"""
return ''.join([w for w in word_list if w not in PUNCUATION_LIST])
def preprocess_text(line):
if line[:3] == 'RT ':
line = line[3:]
cleaned_line = re.sub(r'http[s]?://(?:[a-zA-Z]|[0-9]|[$-_@.&+]|[!*\(\), ]|(?:%[0-9a-fA-F][0-9a-fA-F]))+', ' ', line)
cleaned_line = re.sub(r'pic\.twitter\.com\/\w+',' ',cleaned_line, re.UNICODE)
cleaned_line = re.sub(r'(@)(\w+)',' ',cleaned_line)
cleaned_line = re.sub(r'(#)(\w+)','\g<2>',cleaned_line)
cleaned_line = re.sub(r'\n',' ',cleaned_line)
cleaned_line = re.sub(r'(_|\…|#|@)',' ',cleaned_line)
cleaned_line = deEmojify(cleaned_line)
cleaned_line = re.sub(r'\.+',' . ',cleaned_line)
# cleaned_line = re.sub(r'(â|œ|Œ|Â|ã|ƒ|Â|ð|Ÿ)', ' ', cleaned_line)
cleaned_line = cleaned_line.lower()
cleaned_line = cleaned_line.strip()
cleaned_line = detect_elongated_words(cleaned_line)
cleaned_line = remove_punctuation(cleaned_line)
cleaned_line = re.sub(r'\s+',' ',cleaned_line)
return cleaned_line
def deEmojify(text):
regrex_pattern = re.compile(pattern = "["
u"\U0001F1E0-\U0001F1FF" # flags (iOS)
u"\U0001F300-\U0001F5FF" # symbols & pictographs
u"\U0001F600-\U0001F64F" # emoticons
u"\U0001F680-\U0001F6FF" # transport & map symbols
u"\U0001F700-\U0001F77F" # alchemical symbols
u"\U0001F780-\U0001F7FF" # Geometric Shapes Extended
u"\U0001F800-\U0001F8FF" # Supplemental Arrows-C
u"\U0001F900-\U0001F9FF" # Supplemental Symbols and Pictographs
u"\U0001FA00-\U0001FA6F" # Chess Symbols
u"\U0001FA70-\U0001FAFF" # Symbols and Pictographs Extended-A
u"\U00002702-\U000027B0" # Dingbats
"]+", flags = re.UNICODE)
return regrex_pattern.sub(r'',text)
def replace_elongated_word(word):
regex = r'(\w*)([^\W\d_])(\2{2,})(\w*)'
repl = r'\1\2\2\4'
new_word = re.sub(regex, repl, word, flags=re.UNICODE)
if new_word != word:
return replace_elongated_word(new_word)
else:
return new_word
def detect_elongated_words(row):
regexrep = r'(\w*)([^\W\d_])(\2{2,})(\w*)'
words = [''.join(i) for i in re.findall(regexrep, row, flags=re.UNICODE)]
for word in words:
row = row.replace(word, replace_elongated_word(word))
return row
from pathlib import Path
#dataset_name = 'hasoc-2020/task1-ml'
dataset_name = sys.argv[1]
dataset_path = Path('../datasets/offensive_2020_csv/') / dataset_name
data_files = {
'hasoc-2020/task1-ml': {
'train': 'train.tsv',
'val': 'val.tsv',
'test': 'test.csv'
},
'hasoc-2020/task2-ta': {
'train': 'train.csv',
'test': 'test.tsv'
},
'hasoc-2020/task2-ml': {
'train': 'train.csv',
'test': 'test.tsv'
}
}
datasets_to_undersample = {'hasoc-2020/task1-ml'}
import csv
from sklearn.model_selection import train_test_split
labels_to_val = {'not_offensive': 0, 'offensive': 1, 'not': 0, 'off': 1}
def read_offensive_split(filename, headers=False):
if str(filename).endswith('.csv'):
sep = ','
elif str(filename).endswith('.tsv'):
sep = '\t'
else:
raise Exception("Not CSV/TSV")
texts = []
labels = []
with open(filename) as f:
reader = csv.reader(f, delimiter=sep)
if headers:
header = next(reader)
for row in reader:
if len(row) == 2:
text = row[0]
label = row[1].strip()
else:
text = row[1]
label = row[2].strip()
texts.append(text)
label = label.lower()
labels.append(labels_to_val[label])
return texts, labels
dataset_file_map = data_files[dataset_name]
train_texts, train_labels = read_offensive_split( dataset_path / dataset_file_map['train'], headers=True)
if 'val' in dataset_file_map:
val_texts, val_labels = read_offensive_split( dataset_path / dataset_file_map['val'])
else:
train_texts, val_texts, train_labels, val_labels = train_test_split(train_texts, train_labels, random_state=42, test_size=0.15, stratify=train_labels)
# Full training
seed_val = int(sys.argv[2])
print(f"Number of train samples : {len(train_labels)}")
from collections import Counter
train_counter = Counter(train_labels)
print(train_counter)
train_text_processed = [preprocess_text(text) for text in train_texts]
val_text_processed = [preprocess_text(text) for text in val_texts]
from datasets import Dataset
train_dataset = Dataset.from_dict({'text': train_text_processed, 'label': train_labels})
val_dataset = Dataset.from_dict({'text': val_text_processed, 'label': val_labels})
train_dataset = train_dataset.shuffle(seed=seed_val)
val_dataset = val_dataset.shuffle(seed=42)
from transformers import AutoTokenizer
tokenizer = AutoTokenizer.from_pretrained('xlm-roberta-base')
def tokenize_function(examples):
return tokenizer(examples["text"], padding="max_length", truncation=True, max_length=128)
train_encodings = train_dataset.map(tokenize_function, batched=True)
val_encodings = val_dataset.map(tokenize_function, batched=True)
model_columns = ['input_ids', 'attention_mask', 'label']
train_encodings.set_format('torch', columns=model_columns)
val_encodings.set_format('torch', columns=model_columns)
import numpy as np
from datasets import load_metric
metric = load_metric("accuracy")
def compute_metrics(eval_pred):
logits, labels = eval_pred
predictions = np.argmax(logits, axis=-1)
return metric.compute(predictions=predictions, references=labels)
from transformers import AutoModelForSequenceClassification, Trainer, TrainingArguments, AutoConfig
from transformers import set_seed, EarlyStoppingCallback
from sklearn.utils import class_weight
import torch.nn as nn
import torch
# Set seed value
set_seed(seed_val)
device = 'cuda'
loss_weights = class_weight.compute_class_weight('balanced', np.unique(train_dataset['label']), train_dataset['label'])
loss_weights = np.exp(loss_weights)/np.sum(np.exp(loss_weights))
class_weights = torch.FloatTensor(loss_weights).to(device)
class WeightedTrainer(Trainer):
def compute_loss(self, model, inputs, return_outputs=False):
labels = inputs.pop("labels")
outputs = model(**inputs)
logits = outputs.logits
loss_fct = nn.CrossEntropyLoss(weight=class_weights, reduction='mean')
loss = loss_fct(logits.view(-1, self.model.config.num_labels), labels.view(-1))
return (loss, outputs) if return_outputs else loss
num_epochs = 20
warmup_steps = 500
early_stopping = EarlyStoppingCallback(early_stopping_patience=3)
training_args = TrainingArguments(
do_train=True,
do_eval=True,
learning_rate=2e-5,
output_dir='./models', # output directory
num_train_epochs=num_epochs, # total number of training epochs
per_device_train_batch_size=32, # batch size per device during training
per_device_eval_batch_size=32, # batch size for evaluation
save_strategy="epoch",
evaluation_strategy="epoch",
save_total_limit=3,
warmup_steps=warmup_steps, # number of warmup steps for learning rate scheduler
weight_decay=0.01, # strength of weight decay
metric_for_best_model="eval_loss",
load_best_model_at_end=True,
)
base_model_name = "xlm-roberta-base"
model_name = sys.argv[3]
model_idx = sys.argv[4]
if model_name == "base":
print("Loading normal HF model")
model = AutoModelForSequenceClassification.from_pretrained(base_model_name)
model.train()
else:
# Load meta bert model
print("Loading MetaBERT model from checkpoint")
from new_meta_bert import MetaBERT, MetaBERTForHF
is_distil = False
is_xlm = True
bert = AutoModelForSequenceClassification.from_pretrained(base_model_name)
bert.eval()
t = bert.state_dict()
config = bert.config
model = MetaBERTForHF.init_from_pretrained(
t,
config,
num_labels=2,
is_distil=is_distil,
is_xlm=is_xlm,
per_step_layer_norm_weights=False,
num_inner_loop_steps=5,
)
#model_name="train_model"
#model_idx="best"
#saved_models_filepath = "/home/azureuser/meta/ml_code/offensive_lang_detect_binary_proto/saved_models/"
#checkpoint = Path(saved_models_filepath) / "train_model_best"
#model_name="maml"
#model_idx="7_state"
saved_models_filepath = "/home/azureuser/meta/ml_code/models/"
checkpoint = Path(saved_models_filepath) / f"{model_name}_{model_idx}"
if checkpoint.exists():
#Load the model
print("Loading model")
state = model.load_model(
model_save_dir=saved_models_filepath,
model_name=model_name,
model_idx=model_idx,
)
del state
else:
import sys
print("State not found")
sys.exit(1)
trainer = WeightedTrainer(
model=model, # the instantiated 🤗 Transformers model to be trained
args=training_args, # training arguments, defined above
train_dataset=train_encodings, # training dataset
eval_dataset=val_encodings, # evaluation dataset
compute_metrics=compute_metrics,
callbacks=[early_stopping]
)
trainer.train()
val_raw_pred,_,_ = trainer.predict(val_encodings)
import numpy as np
val_preds = np.argmax(val_raw_pred, axis=1)
val_encoded_labels = np.array(val_dataset['label'])
from sklearn.metrics import classification_report
report = classification_report(val_encoded_labels, val_preds, target_names=['NOT', 'OFF'])
print(report)
test_texts, test_labels = read_offensive_split(dataset_path / dataset_file_map['test'])
test_text_processed = [preprocess_text(text) for text in test_texts]
test_dataset = Dataset.from_dict({'text': test_text_processed, 'label': test_labels})
test_encodings = test_dataset.map(tokenize_function, batched=True)
test_encodings.set_format('torch', columns=model_columns)
test_raw_pred,_,_ = trainer.predict(test_encodings)
test_preds = np.argmax(test_raw_pred, axis=1)
test_encoded_labels = np.array(test_dataset['label'])
report = classification_report(test_encoded_labels, test_preds, target_names=['NOT', 'OFF'])
print(report)