-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodels.py
516 lines (445 loc) · 21.7 KB
/
models.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
import torch
import random
import numpy as np
from transformers import BertModel, RobertaModel, AlbertModel, BertForSequenceClassification, BertConfig, RobertaConfig, RobertaForSequenceClassification
from peft import LoraConfig, TaskType, get_peft_model, IA3Model, IA3Config, PromptTuningConfig, PromptTuningInit
from adapters import AutoAdapterModel, AdapterConfig, BertAdapterModel, ConfigUnion, LoRAConfig, PrefixTuningConfig, SeqBnConfig, init
class DeterministicModel():
def __init__(self):
old_torch_state = torch.get_rng_state()
old_torch_cuda_state = torch.cuda.get_rng_state()
old_numpy_state = np.random.get_state()
old_random_state = random.getstate()
def set_rng_state(self, seed):
old_torch_state = torch.get_rng_state()
old_torch_cuda_state = torch.cuda.get_rng_state()
old_numpy_state = np.random.get_state()
old_random_state = random.getstate()
torch.manual_seed(seed)
torch.cuda.manual_seed(seed)
torch.cuda.manual_seed_all(seed)
np.random.seed(seed)
random.seed(seed)
return old_torch_state, old_torch_cuda_state, old_numpy_state, old_random_state
def restore_rng_state(self, states):
old_torch_state, old_torch_cuda_state, old_numpy_state, old_random_state = states
torch.set_rng_state(old_torch_state)
torch.cuda.set_rng_state(old_torch_cuda_state)
np.random.set_state(old_numpy_state)
random.setstate(old_random_state)
def get_rng_state(self):
old_torch_state = torch.get_rng_state()
old_torch_cuda_state = torch.cuda.get_rng_state()
old_numpy_state = np.random.get_state()
old_random_state = random.getstate()
return old_torch_state, old_torch_cuda_state, old_numpy_state, old_random_state
class BERTBase(torch.nn.Module, DeterministicModel):
def __init__(self, n_classes, init_seed=0, dropout_seed=0, trainable=True):
self.name = 'bert-base'
states = self.set_rng_state(init_seed)
super(BERTBase, self).__init__()
self.bert = BertModel.from_pretrained('bert-base-uncased', return_dict=False)
if not trainable:
for param in self.bert.parameters():
param.requires_grad = False
self.dropout = torch.nn.Dropout(p=0.3)
self.output = torch.nn.Linear(self.bert.config.hidden_size, n_classes)
self.restore_rng_state(states)
states = self.set_rng_state(dropout_seed)
self.dropout_states = self.get_rng_state()
self.restore_rng_state(states)
def forward(self, input_ids, attention_mask, token_type_ids, add_noise=None):
states = self.get_rng_state()
self.restore_rng_state(self.dropout_states)
if add_noise is not None:
with torch.no_grad():
_, bert_output = self.bert(
input_ids=input_ids,
attention_mask=attention_mask,
token_type_ids=token_type_ids
)
bert_output += (add_noise**0.5) * torch.randn(bert_output.shape).cuda()
else:
_, bert_output = self.bert(
input_ids=input_ids,
attention_mask=attention_mask,
token_type_ids=token_type_ids
)
output = self.dropout(bert_output)
output = self.output(output)
self.dropout_states = self.get_rng_state()
self.restore_rng_state(states)
return output
class RoBERTaBase(torch.nn.Module, DeterministicModel):
def __init__(self, n_classes, init_seed=0, dropout_seed=0, trainable=True):
self.name = 'roberta-base'
states = self.set_rng_state(init_seed)
super(RoBERTaBase, self).__init__()
self.bert = RobertaModel.from_pretrained('roberta-base', return_dict=None)
if not trainable:
for param in self.bert.parameters():
param.requires_grad = False
self.dropout = torch.nn.Dropout(p=0.3)
self.output = torch.nn.Linear(self.bert.config.hidden_size, n_classes)
self.restore_rng_state(states)
states = self.set_rng_state(dropout_seed)
self.dropout_states = self.get_rng_state()
self.restore_rng_state(states)
def forward(self, input_ids, attention_mask, token_type_ids, add_noise=None):
states = self.get_rng_state()
self.restore_rng_state(self.dropout_states)
if add_noise is not None:
with torch.no_grad():
_, bert_output = self.bert(
input_ids=input_ids,
attention_mask=attention_mask,
token_type_ids=token_type_ids
)
bert_output += (add_noise**0.5) * torch.randn(bert_output.shape).cuda()
else:
_, bert_output = self.bert(
input_ids=input_ids,
attention_mask=attention_mask,
token_type_ids=token_type_ids
)
output = self.dropout(bert_output)
output = self.output(output)
self.dropout_states = self.get_rng_state()
self.restore_rng_state(states)
return output
class ALBERTBase(torch.nn.Module, DeterministicModel):
def __init__(self, n_classes, init_seed=0, dropout_seed=0, trainable=True):
self.name = 'albert-base'
states = self.set_rng_state(init_seed)
super(ALBERTBase, self).__init__()
self.bert = AlbertModel.from_pretrained('albert-base-v2', return_dict=False)
if not trainable:
for param in self.bert.parameters():
param.requires_grad = False
self.dropout = torch.nn.Dropout(p=0.3)
self.output = torch.nn.Linear(self.bert.config.hidden_size, n_classes)
self.restore_rng_state(states)
states = self.set_rng_state(dropout_seed)
self.dropout_states = self.get_rng_state()
self.restore_rng_state(states)
def forward(self, input_ids, attention_mask, token_type_ids, add_noise=None):
states = self.get_rng_state()
self.restore_rng_state(self.dropout_states)
if add_noise is not None:
with torch.no_grad():
_, bert_output = self.bert(
input_ids=input_ids,
attention_mask=attention_mask,
token_type_ids=token_type_ids
)
bert_output += (add_noise**0.5) * torch.randn(bert_output.shape).cuda()
else:
_, bert_output = self.bert(
input_ids=input_ids,
attention_mask=attention_mask,
token_type_ids=token_type_ids
)
output = self.dropout(bert_output)
output = self.output(output)
self.dropout_states = self.get_rng_state()
self.restore_rng_state(states)
return output
class PEFTBERTBase(torch.nn.Module, DeterministicModel):
def __init__(self, n_classes, init_seed=0, dropout_seed=0, trainable=False, peft='lora', task_text=None):
self.peft = peft
self.task_text = task_text
self.name = 'bert-base'
states = self.set_rng_state(init_seed)
super(PEFTBERTBase, self).__init__()
self.bert = BertModel.from_pretrained('bert-base-uncased', return_dict=False)
if not trainable:
for param in self.bert.parameters():
param.requires_grad = False
self.__configure_peft_model__()
self.dropout = torch.nn.Dropout(p=0.3)
self.output = torch.nn.Linear(self.bert.config.hidden_size, n_classes)
self.restore_rng_state(states)
states = self.set_rng_state(dropout_seed)
self.dropout_states = self.get_rng_state()
self.restore_rng_state(states)
def __configure_peft_model__(self):
if self.peft not in ['unipelt']:
if self.peft == 'lora':
print('running lora')
config = LoraConfig(r=64, lora_alpha=64, lora_dropout=0.1, task_type=TaskType.FEATURE_EXTRACTION, bias='all', use_rslora=True)
elif self.peft == 'ia3':
print('running ia3')
config = IA3Config(peft_type="IA3", task_type=TaskType.FEATURE_EXTRACTION)
elif self.peft == 'prompt_tuning':
print('running prompt_tuning')
config = PromptTuningConfig(
task_type=TaskType.FEATURE_EXTRACTION,
num_virtual_tokens=25,
prompt_tuning_init=PromptTuningInit.TEXT,
tokenizer_name_or_path='bert-base-uncased',
prompt_tuning_init_text=self.task_text,
)
else:
raise NotImplementedError
self.bert = get_peft_model(self.bert, config)
print(self.bert.print_trainable_parameters())
else:
if self.peft == 'unipelt':
print('running unipelt')
init(self.bert)
config = ConfigUnion(
LoRAConfig(r=64, alpha=64, dropout=0.1, use_gating=True),
PrefixTuningConfig(prefix_length=25, use_gating=True),
SeqBnConfig(reduction_factor=16, use_gating=True),
)
self.bert.add_adapter("unipelt", config=config)
self.bert.set_active_adapters('unipelt')
self.bert.train_adapter('unipelt')
else:
raise NotImplementedError
trainable_params = 0
all_param = 0
for n, param in self.bert.named_parameters():
num_params = param.numel()
if num_params == 0 and hasattr(param, "ds_numel"):
num_params = param.ds_numel
if param.__class__.__name__ == "Params4bit":
num_params = num_params * 2
all_param += num_params
if param.requires_grad:
# print(n)
trainable_params += num_params
print(f"trainable params: {trainable_params:,d} || all params: {all_param:,d} || trainable%: {100 * trainable_params / all_param}")
def forward(self, input_ids, attention_mask, token_type_ids, add_noise=None):
states = self.get_rng_state()
self.restore_rng_state(self.dropout_states)
if add_noise is not None:
with torch.no_grad():
_, bert_output = self.bert(
input_ids=input_ids,
attention_mask=attention_mask,
token_type_ids=token_type_ids
)
bert_output += (add_noise**0.5) * torch.randn(bert_output.shape).cuda()
else:
_, bert_output = self.bert(
input_ids=input_ids,
attention_mask=attention_mask,
token_type_ids=token_type_ids
)
output = self.dropout(bert_output)
output = self.output(output)
self.dropout_states = self.get_rng_state()
self.restore_rng_state(states)
return output
class PEFTRoBERTaBase(torch.nn.Module, DeterministicModel):
def __init__(self, n_classes, init_seed=0, dropout_seed=0, trainable=False, peft='lora', task_text=None):
self.peft = peft
self.task_text = task_text
self.name = 'roberta-base'
states = self.set_rng_state(init_seed)
super(PEFTRoBERTaBase, self).__init__()
self.bert = RobertaModel.from_pretrained('roberta-base', return_dict=None)
if not trainable:
for name, param in self.bert.named_parameters():
if name not in ['pooler.dense.bias', 'pooler.dense.weight']:
param.requires_grad = False
self.__configure_peft_model__()
self.dropout = torch.nn.Dropout(p=0.3)
self.output = torch.nn.Linear(self.bert.config.hidden_size, n_classes)
self.restore_rng_state(states)
states = self.set_rng_state(dropout_seed)
self.dropout_states = self.get_rng_state()
self.restore_rng_state(states)
def __configure_peft_model__(self):
if self.peft not in ['unipelt']:
if self.peft == 'lora':
print('running lora')
modules_to_target = []
for name, module in self.bert.named_modules():
if ('dense' in name or 'query' in name or 'key' in name or 'value' in name) and 'pooler' not in name:
modules_to_target.append(name)
config = LoraConfig(r=64, lora_alpha=64, lora_dropout=0.1, task_type=TaskType.FEATURE_EXTRACTION, bias='all', use_rslora=True, target_modules=modules_to_target)
elif self.peft == 'ia3':
print('running ia3')
modules_to_target = []
linear_modules = []
for name, module in self.bert.named_modules():
if ('query' in name or 'key' in name or 'value' in name) and 'pooler' not in name:
modules_to_target.append(name)
if 'dense' in name and 'pooler' not in name:
modules_to_target.append(name)
linear_modules.append(name)
config = IA3Config(peft_type="IA3", task_type=TaskType.FEATURE_EXTRACTION, target_modules=modules_to_target, feedforward_modules=linear_modules)
elif self.peft == 'prompt_tuning':
print('running prompt_tuning')
config = PromptTuningConfig(
task_type=TaskType.FEATURE_EXTRACTION,
num_virtual_tokens=25,
prompt_tuning_init=PromptTuningInit.TEXT,
tokenizer_name_or_path='roberta-base',
prompt_tuning_init_text=self.task_text,
)
else:
raise NotImplementedError
self.bert = get_peft_model(self.bert, config)
for name, param in self.bert.named_parameters():
# print(name)
if name in ['base_model.model.pooler.dense.bias', 'base_model.model.pooler.dense.weight', 'base_model.pooler.dense.bias', 'base_model.pooler.dense.weight']:
print(name)
param.requires_grad = True
print(self.bert.print_trainable_parameters())
else:
if self.peft == 'unipelt':
print('running unipelt')
init(self.bert)
config = ConfigUnion(
LoRAConfig(r=64, alpha=64, dropout=0.1, use_gating=True),
PrefixTuningConfig(prefix_length=25, use_gating=True),
SeqBnConfig(reduction_factor=16, use_gating=True),
)
self.bert.add_adapter("unipelt", config=config)
self.bert.set_active_adapters('unipelt')
self.bert.train_adapter('unipelt')
else:
raise NotImplementedError
for name, param in self.bert.named_parameters():
# print(name)
if name in ['base_model.model.pooler.dense.bias', 'base_model.model.pooler.dense.weight', 'base_model.pooler.dense.bias', 'base_model.pooler.dense.weight', 'pooler.dense.bias', 'pooler.dense.weight']:
print(name)
param.requires_grad = True
trainable_params = 0
all_param = 0
for n, param in self.bert.named_parameters():
num_params = param.numel()
if num_params == 0 and hasattr(param, "ds_numel"):
num_params = param.ds_numel
if param.__class__.__name__ == "Params4bit":
num_params = num_params * 2
all_param += num_params
if param.requires_grad:
# print(n)
trainable_params += num_params
print(f"trainable params: {trainable_params:,d} || all params: {all_param:,d} || trainable%: {100 * trainable_params / all_param}")
def forward(self, input_ids, attention_mask, token_type_ids, add_noise=None):
states = self.get_rng_state()
self.restore_rng_state(self.dropout_states)
if add_noise is not None:
with torch.no_grad():
_, bert_output = self.bert(
input_ids=input_ids,
attention_mask=attention_mask,
token_type_ids=token_type_ids
)
bert_output += (add_noise**0.5) * torch.randn(bert_output.shape).cuda()
else:
_, bert_output = self.bert(
input_ids=input_ids,
attention_mask=attention_mask,
token_type_ids=token_type_ids
)
output = self.dropout(bert_output)
output = self.output(output)
self.dropout_states = self.get_rng_state()
self.restore_rng_state(states)
return output
class PEFTALBERTBase(torch.nn.Module, DeterministicModel):
def __init__(self, n_classes, init_seed=0, dropout_seed=0, trainable=False, peft='lora', task_text=None):
self.peft = peft
self.task_text = task_text
self.name = 'albert-base'
states = self.set_rng_state(init_seed)
super(PEFTALBERTBase, self).__init__()
self.bert = AlbertModel.from_pretrained('albert-base-v2', return_dict=False)
if not trainable:
for param in self.bert.parameters():
param.requires_grad = False
self.__configure_peft_model__()
self.dropout = torch.nn.Dropout(p=0.3)
self.output = torch.nn.Linear(self.bert.config.hidden_size, n_classes)
self.restore_rng_state(states)
states = self.set_rng_state(dropout_seed)
self.dropout_states = self.get_rng_state()
self.restore_rng_state(states)
def __configure_peft_model__(self):
if self.peft not in ['unipelt']:
if self.peft == 'lora':
print('running lora')
modules_to_target = []
for name, module in self.bert.named_modules():
if ('key' in name or 'value' in name):
modules_to_target.append(name)
config = LoraConfig(r=64, lora_alpha=64, lora_dropout=0.1, task_type=TaskType.FEATURE_EXTRACTION, bias='all', use_rslora=True, target_modules=modules_to_target)
elif self.peft == 'ia3':
print('running ia3')
modules_to_target = []
linear_modules = []
for name, module in self.bert.named_modules():
if ('query' in name or 'value' in name or 'key' in name):
modules_to_target.append(name)
if 'ffn_output' in name or 'dense' in name:
modules_to_target.append(name)
linear_modules.append(name)
config = IA3Config(peft_type="IA3", task_type=TaskType.FEATURE_EXTRACTION, target_modules=modules_to_target, feedforward_modules=linear_modules)
elif self.peft == 'prompt_tuning':
print('running prompt_tuning')
config = PromptTuningConfig(
task_type=TaskType.FEATURE_EXTRACTION,
num_virtual_tokens=25,
prompt_tuning_init=PromptTuningInit.TEXT,
tokenizer_name_or_path='albert-base-v2',
prompt_tuning_init_text=self.task_text,
)
else:
raise NotImplementedError
self.bert = get_peft_model(self.bert, config)
print(self.bert.print_trainable_parameters())
else:
if self.peft == 'unipelt':
print('running unipelt')
init(self.bert)
config = ConfigUnion(
LoRAConfig(r=64, alpha=64, dropout=0.1, use_gating=True),
PrefixTuningConfig(prefix_length=25, use_gating=True),
SeqBnConfig(reduction_factor=16, use_gating=True),
)
self.bert.add_adapter("unipelt", config=config)
self.bert.set_active_adapters('unipelt')
self.bert.train_adapter('unipelt')
else:
raise NotImplementedError
trainable_params = 0
all_param = 0
for n, param in self.bert.named_parameters():
num_params = param.numel()
if num_params == 0 and hasattr(param, "ds_numel"):
num_params = param.ds_numel
if param.__class__.__name__ == "Params4bit":
num_params = num_params * 2
all_param += num_params
if param.requires_grad:
# print(n)
trainable_params += num_params
print(f"trainable params: {trainable_params:,d} || all params: {all_param:,d} || trainable%: {100 * trainable_params / all_param}")
def forward(self, input_ids, attention_mask, token_type_ids, add_noise=None):
states = self.get_rng_state()
self.restore_rng_state(self.dropout_states)
if add_noise is not None:
with torch.no_grad():
_, bert_output = self.bert(
input_ids=input_ids,
attention_mask=attention_mask,
token_type_ids=token_type_ids
)
bert_output += (add_noise**0.5) * torch.randn(bert_output.shape).cuda()
else:
_, bert_output = self.bert(
input_ids=input_ids,
attention_mask=attention_mask,
token_type_ids=token_type_ids
)
output = self.dropout(bert_output)
output = self.output(output)
self.dropout_states = self.get_rng_state()
self.restore_rng_state(states)
return output