forked from vdogmcgee/SimCSE-Chinese-Pytorch
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsimcse_unsup.py
More file actions
232 lines (190 loc) · 9.46 KB
/
simcse_unsup.py
File metadata and controls
232 lines (190 loc) · 9.46 KB
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
# -*- encoding: utf-8 -*-
import random
import time
from typing import Dict, List
import jsonlines
import numpy as np
import torch
import torch.nn as nn
import torch.nn.functional as F
from loguru import logger
from scipy.stats import spearmanr
from torch.utils.data import DataLoader, Dataset
from tqdm import tqdm
from transformers import BertConfig, BertModel, BertTokenizer
# 基本参数
EPOCHS = 1
SAMPLES = 10000
BATCH_SIZE = 64
LR = 1e-5
DROPOUT = 0.3
MAXLEN = 64
POOLING = 'cls' # choose in ['cls', 'pooler', 'first-last-avg', 'last-avg']
DEVICE = torch.device('cuda' if torch.cuda.is_available() else 'cpu')
# 预训练模型目录
BERT = 'pretrained_model/bert_pytorch'
BERT_WWM_EXT = 'pretrained_model/bert_wwm_ext_pytorch'
ROBERTA = 'pretrained_model/roberta_wwm_ext_pytorch'
model_path = BERT_WWM_EXT
# 微调后参数存放位置
SAVE_PATH = './saved_model/simcse_unsup.pt'
# 数据目录
SNIL_TRAIN = './datasets/cnsd-snli/train.txt'
STS_TRAIN = './datasets/STS-B/cnsd-sts-train.txt'
STS_DEV = './datasets/STS-B/cnsd-sts-dev.txt'
STS_TEST = './datasets/STS-B/cnsd-sts-test.txt'
def load_data(name: str, path: str) -> List:
"""根据名字加载不同的数据集"""
def load_snli_data(path):
with jsonlines.open(path, 'r') as f:
return [line.get('origin') for line in f]
def load_lqcmc_data(path):
with open(path, 'r', encoding='utf8') as f:
return [line.strip().split('\t')[0] for line in f]
def load_sts_data(path):
with open(path, 'r', encoding='utf8') as f:
return [(line.split("||")[1], line.split("||")[2], line.split("||")[3]) for line in f]
assert name in ["snli", "lqcmc", "sts"]
if name == 'snli':
return load_snli_data(path)
return load_lqcmc_data(path) if name == 'lqcmc' else load_sts_data(path)
class TrainDataset(Dataset):
"""训练数据集, 重写__getitem__和__len__方法"""
def __init__(self, data: List):
self.data = data
def __len__(self):
return len(self.data)
def text_2_id(self, text: str):
# 添加自身两次, 经过bert编码之后, 互为正样本
return tokenizer([text, text], max_length=MAXLEN, truncation=True, padding='max_length', return_tensors='pt')
def __getitem__(self, index: int):
return self.text_2_id(self.data[index])
class TestDataset(Dataset):
"""测试数据集, 重写__getitem__和__len__方法"""
def __init__(self, data: List):
self.data = data
def __len__(self):
return len(self.data)
def text_2_id(self, text: str):
return tokenizer(text, max_length=MAXLEN, truncation=True, padding='max_length', return_tensors='pt')
def __getitem__(self, index: int):
da = self.data[index]
return self.text_2_id([da[0]]), self.text_2_id([da[1]]), int(da[2])
class SimcseModel(nn.Module):
"""Simcse无监督模型定义"""
def __init__(self, pretrained_model, pooling):
super(SimcseModel, self).__init__()
config = BertConfig.from_pretrained(pretrained_model)
config.attention_probs_dropout_prob = DROPOUT # 修改config的dropout系数
config.hidden_dropout_prob = DROPOUT
self.bert = BertModel.from_pretrained(pretrained_model, config=config)
self.pooling = pooling
def forward(self, input_ids, attention_mask, token_type_ids):
out = self.bert(input_ids, attention_mask, token_type_ids, output_hidden_states=True)
if self.pooling == 'cls':
return out.last_hidden_state[:, 0] # [batch, 768]
if self.pooling == 'pooler':
return out.pooler_output # [batch, 768]
if self.pooling == 'last-avg':
last = out.last_hidden_state.transpose(1, 2) # [batch, 768, seqlen]
return torch.avg_pool1d(last, kernel_size=last.shape[-1]).squeeze(-1) # [batch, 768]
if self.pooling == 'first-last-avg':
first = out.hidden_states[1].transpose(1, 2) # [batch, 768, seqlen]
last = out.hidden_states[-1].transpose(1, 2) # [batch, 768, seqlen]
first_avg = torch.avg_pool1d(first, kernel_size=last.shape[-1]).squeeze(-1) # [batch, 768]
last_avg = torch.avg_pool1d(last, kernel_size=last.shape[-1]).squeeze(-1) # [batch, 768]
avg = torch.cat((first_avg.unsqueeze(1), last_avg.unsqueeze(1)), dim=1) # [batch, 2, 768]
return torch.avg_pool1d(avg.transpose(1, 2), kernel_size=2).squeeze(-1) # [batch, 768]
def simcse_unsup_loss(y_pred: 'tensor') -> 'tensor':
"""无监督的损失函数
y_pred (tensor): bert的输出, [batch_size * 2, 768]
"""
# 得到y_pred对应的label, [1, 0, 3, 2, ..., batch_size-1, batch_size-2]
y_true = torch.arange(y_pred.shape[0], device=DEVICE)
y_true = (y_true - y_true % 2 * 2) + 1
# batch内两两计算相似度, 得到相似度矩阵(对角矩阵)
sim = F.cosine_similarity(y_pred.unsqueeze(1), y_pred.unsqueeze(0), dim=-1)
# 将相似度矩阵对角线置为很小的值, 消除自身的影响
sim = sim - torch.eye(y_pred.shape[0], device=DEVICE) * 1e12
# 相似度矩阵除以温度系数
sim = sim / 0.05
# 计算相似度矩阵与y_true的交叉熵损失
loss = F.cross_entropy(sim, y_true)
return torch.mean(loss)
def eval(model, dataloader) -> float:
"""模型评估函数
批量预测, batch结果拼接, 一次性求spearman相关度
"""
model.eval()
sim_tensor = torch.tensor([], device=DEVICE)
label_array = np.array([])
with torch.no_grad():
for source, target, label in dataloader:
# source [batch, 1, seq_len] -> [batch, seq_len]
source_input_ids = source.get('input_ids').squeeze(1).to(DEVICE)
source_attention_mask = source.get('attention_mask').squeeze(1).to(DEVICE)
source_token_type_ids = source.get('token_type_ids').squeeze(1).to(DEVICE)
source_pred = model(source_input_ids, source_attention_mask, source_token_type_ids)
# target [batch, 1, seq_len] -> [batch, seq_len]
target_input_ids = target.get('input_ids').squeeze(1).to(DEVICE)
target_attention_mask = target.get('attention_mask').squeeze(1).to(DEVICE)
target_token_type_ids = target.get('token_type_ids').squeeze(1).to(DEVICE)
target_pred = model(target_input_ids, target_attention_mask, target_token_type_ids)
# concat
sim = F.cosine_similarity(source_pred, target_pred, dim=-1)
sim_tensor = torch.cat((sim_tensor, sim), dim=0)
label_array = np.append(label_array, np.array(label))
# corrcoef
return spearmanr(label_array, sim_tensor.cpu().numpy()).correlation
def train(model, train_dl, dev_dl, optimizer) -> None:
"""模型训练函数"""
model.train()
global best
for batch_idx, source in enumerate(tqdm(train_dl), start=1):
# 维度转换 [batch, 2, seq_len] -> [batch * 2, sql_len]
real_batch_num = source.get('input_ids').shape[0]
input_ids = source.get('input_ids').view(real_batch_num * 2, -1).to(DEVICE)
attention_mask = source.get('attention_mask').view(real_batch_num * 2, -1).to(DEVICE)
token_type_ids = source.get('token_type_ids').view(real_batch_num * 2, -1).to(DEVICE)
out = model(input_ids, attention_mask, token_type_ids)
loss = simcse_unsup_loss(out)
optimizer.zero_grad()
loss.backward()
optimizer.step()
if batch_idx % 10 == 0:
logger.info(f'loss: {loss.item():.4f}')
corrcoef = eval(model, dev_dl)
model.train()
if best < corrcoef:
best = corrcoef
torch.save(model.state_dict(), SAVE_PATH)
logger.info(f"higher corrcoef: {best:.4f} in batch: {batch_idx}, save model")
if __name__ == '__main__':
logger.info(f'device: {DEVICE}, pooling: {POOLING}, model path: {model_path}')
tokenizer = BertTokenizer.from_pretrained(model_path)
# load data
train_data_snli = load_data('snli', SNIL_TRAIN)
train_data_sts = load_data('sts', STS_TRAIN)
train_data = train_data_snli + [_[0] for _ in train_data_sts] # 两个数据集组合
train_data = random.sample(train_data, SAMPLES) # 随机采样
dev_data = load_data('sts', STS_DEV)
test_data = load_data('sts', STS_TEST)
train_dataloader = DataLoader(TrainDataset(train_data), batch_size=BATCH_SIZE)
dev_dataloader = DataLoader(TestDataset(dev_data), batch_size=BATCH_SIZE)
test_dataloader = DataLoader(TestDataset(test_data), batch_size=BATCH_SIZE)
# load model
assert POOLING in ['cls', 'pooler', 'last-avg', 'first-last-avg']
model = SimcseModel(pretrained_model=model_path, pooling=POOLING).to(DEVICE)
optimizer = torch.optim.AdamW(model.parameters(), lr=LR)
# train
best = 0
for epoch in range(EPOCHS):
logger.info(f'epoch: {epoch}')
train(model, train_dataloader, dev_dataloader, optimizer)
logger.info(f'train is finished, best model is saved at {SAVE_PATH}')
# eval
model.load_state_dict(torch.load(SAVE_PATH))
dev_corrcoef = eval(model, dev_dataloader)
test_corrcoef = eval(model, test_dataloader)
logger.info(f'dev_corrcoef: {dev_corrcoef:.4f}')
logger.info(f'test_corrcoef: {test_corrcoef:.4f}')