Instructions to use kd13/RoPERT-base-cased with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use kd13/RoPERT-base-cased with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("fill-mask", model="kd13/RoPERT-base-cased", trust_remote_code=True)# Load model directly from transformers import AutoModelForMaskedLM model = AutoModelForMaskedLM.from_pretrained("kd13/RoPERT-base-cased", trust_remote_code=True, device_map="auto") - Notebooks
- Google Colab
- Kaggle
File size: 15,920 Bytes
47fe175 7172998 47fe175 4490265 47fe175 4490265 47fe175 7172998 | 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 | import math
import torch
import torch.nn as nn
import torch.nn.functional as F
from transformers import PreTrainedModel
from transformers.modeling_outputs import (
MaskedLMOutput,
BaseModelOutput,
SequenceClassifierOutput,
TokenClassifierOutput,
QuestionAnsweringModelOutput,
)
from .configuration_mybert import MyBertConfig
def _build_rope_cache(head_dim, max_seq_len, base=10000.0):
inv_freq = 1.0 / (base ** (torch.arange(0, head_dim, 2, dtype=torch.float32) / head_dim))
t = torch.arange(max_seq_len, dtype=torch.float32)
freqs = torch.outer(t, inv_freq)
emb = torch.cat((freqs, freqs), dim=-1)
return emb.cos(), emb.sin()
def _rotate_half(x):
x1, x2 = x.chunk(2, dim=-1)
return torch.cat((-x2, x1), dim=-1)
def _apply_rope(q, k, cos, sin):
cos = cos.to(q.dtype)[None, None, :, :]
sin = sin.to(q.dtype)[None, None, :, :]
return (q * cos) + (_rotate_half(q) * sin), (k * cos) + (_rotate_half(k) * sin)
class MyBertEmbeddings(nn.Module):
def __init__(self, config):
super().__init__()
self.word_embeddings = nn.Embedding(config.vocab_size, config.hidden_size,
padding_idx=config.pad_token_id)
self.LayerNorm = nn.LayerNorm(config.hidden_size, eps=config.layer_norm_eps)
self.dropout = nn.Dropout(config.hidden_dropout_prob)
def forward(self, input_ids):
return self.dropout(self.LayerNorm(self.word_embeddings(input_ids)))
class MyBertSelfAttention(nn.Module):
def __init__(self, config):
super().__init__()
self.num_attention_heads = config.num_attention_heads
self.attention_head_size = config.hidden_size // config.num_attention_heads
self.all_head_size = config.hidden_size
b = config.use_bias
self.query = nn.Linear(config.hidden_size, self.all_head_size, bias=b)
self.key = nn.Linear(config.hidden_size, self.all_head_size, bias=b)
self.value = nn.Linear(config.hidden_size, self.all_head_size, bias=b)
self.dropout_prob = config.attention_probs_dropout_prob
def forward(self, hidden_states, attention_mask=None, cos=None, sin=None):
q, k, v = self.query(hidden_states), self.key(hidden_states), self.value(hidden_states)
shp = q.size()[:-1] + (self.num_attention_heads, self.attention_head_size)
q = q.view(*shp).transpose(1, 2)
k = k.view(*shp).transpose(1, 2)
v = v.view(*shp).transpose(1, 2)
if cos is not None:
q, k = _apply_rope(q, k, cos, sin)
ctx = F.scaled_dot_product_attention(
q, k, v, attn_mask=attention_mask,
dropout_p=self.dropout_prob if self.training else 0.0, is_causal=False,
)
ctx = ctx.transpose(1, 2).contiguous()
return ctx.view(*ctx.size()[:-2], self.all_head_size)
class MyBertSelfOutput(nn.Module):
def __init__(self, config):
super().__init__()
self.dense = nn.Linear(config.hidden_size, config.hidden_size, bias=config.use_bias)
self.dropout = nn.Dropout(config.hidden_dropout_prob)
def forward(self, hidden_states):
return self.dropout(self.dense(hidden_states))
class MyBertAttention(nn.Module):
def __init__(self, config):
super().__init__()
self.self = MyBertSelfAttention(config)
self.output = MyBertSelfOutput(config)
def forward(self, hidden_states, attention_mask=None, cos=None, sin=None):
return self.output(self.self(hidden_states, attention_mask, cos, sin))
class MyBertSwiGLU(nn.Module):
def __init__(self, config):
super().__init__()
b = config.use_bias
self.gate_proj = nn.Linear(config.hidden_size, config.intermediate_size, bias=b)
self.up_proj = nn.Linear(config.hidden_size, config.intermediate_size, bias=b)
self.down_proj = nn.Linear(config.intermediate_size, config.hidden_size, bias=b)
self.dropout = nn.Dropout(config.hidden_dropout_prob)
def forward(self, x):
return self.dropout(self.down_proj(F.silu(self.gate_proj(x)) * self.up_proj(x)))
class MyBertLayer(nn.Module):
def __init__(self, config):
super().__init__()
self.attention_layernorm = nn.LayerNorm(config.hidden_size, eps=config.layer_norm_eps)
self.attention = MyBertAttention(config)
self.ffn_layernorm = nn.LayerNorm(config.hidden_size, eps=config.layer_norm_eps)
self.mlp = MyBertSwiGLU(config)
def forward(self, hidden_states, attention_mask=None, cos=None, sin=None):
hidden_states = hidden_states + self.attention(
self.attention_layernorm(hidden_states), attention_mask, cos, sin)
hidden_states = hidden_states + self.mlp(self.ffn_layernorm(hidden_states))
return hidden_states
class MyBertEncoder(nn.Module):
def __init__(self, config):
super().__init__()
self.layer = nn.ModuleList([MyBertLayer(config) for _ in range(config.num_hidden_layers)])
self.final_layernorm = nn.LayerNorm(config.hidden_size, eps=config.layer_norm_eps)
def forward(self, hidden_states, attention_mask=None, cos=None, sin=None):
for lyr in self.layer:
hidden_states = lyr(hidden_states, attention_mask, cos, sin)
return self.final_layernorm(hidden_states)
class MyBertPredictionHeadTransform(nn.Module):
def __init__(self, config):
super().__init__()
self.dense = nn.Linear(config.hidden_size, config.hidden_size)
self.transform_act_fn = nn.GELU()
self.LayerNorm = nn.LayerNorm(config.hidden_size, eps=config.layer_norm_eps)
def forward(self, h):
return self.LayerNorm(self.transform_act_fn(self.dense(h)))
class MyBertLMPredictionHead(nn.Module):
def __init__(self, config):
super().__init__()
self.transform = MyBertPredictionHeadTransform(config)
self.decoder = nn.Linear(config.hidden_size, config.vocab_size, bias=True)
def forward(self, h):
return self.decoder(self.transform(h))
class MyBertOnlyMLMHead(nn.Module):
def __init__(self, config):
super().__init__()
self.predictions = MyBertLMPredictionHead(config)
def forward(self, h):
return self.predictions(h)
class MyBertPreTrainedModel(PreTrainedModel):
config_class = MyBertConfig
base_model_prefix = "mybert"
supports_gradient_checkpointing = False
_no_split_modules = ["MyBertLayer"]
def _init_weights(self, module):
std = self.config.initializer_range
if isinstance(module, nn.Linear):
module.weight.data.normal_(mean=0.0, std=std)
if module.bias is not None:
module.bias.data.zero_()
elif isinstance(module, nn.Embedding):
module.weight.data.normal_(mean=0.0, std=std)
if module.padding_idx is not None:
module.weight.data[module.padding_idx].zero_()
elif isinstance(module, nn.LayerNorm):
module.bias.data.zero_()
module.weight.data.fill_(1.0)
if isinstance(module, MyBertModel):
head_dim = self.config.hidden_size // self.config.num_attention_heads
cos, sin = _build_rope_cache(head_dim, self.config.max_position_embeddings,
self.config.rope_theta)
if module.rope_cos.device.type != "meta":
module.rope_cos.copy_(cos)
module.rope_sin.copy_(sin)
class MyBertModel(MyBertPreTrainedModel):
def __init__(self, config):
super().__init__(config)
self.embeddings = MyBertEmbeddings(config)
self.encoder = MyBertEncoder(config)
head_dim = config.hidden_size // config.num_attention_heads
cos, sin = _build_rope_cache(head_dim, config.max_position_embeddings, config.rope_theta)
self.register_buffer("rope_cos", cos, persistent=False)
self.register_buffer("rope_sin", sin, persistent=False)
self.post_init()
n = config.num_hidden_layers
for lyr in self.encoder.layer:
lyr.attention.output.dense.weight.data.normal_(
0.0, config.initializer_range / math.sqrt(2 * n))
lyr.mlp.down_proj.weight.data.normal_(
0.0, config.initializer_range / math.sqrt(2 * n))
def get_input_embeddings(self):
return self.embeddings.word_embeddings
def set_input_embeddings(self, v):
self.embeddings.word_embeddings = v
def forward(self, input_ids=None, attention_mask=None, return_dict=True, **kw):
T = input_ids.shape[1]
if T > self.rope_cos.shape[0]:
raise ValueError(f"seq_len {T} > max_position_embeddings {self.rope_cos.shape[0]}")
cos, sin = self.rope_cos[:T], self.rope_sin[:T]
attn_mask = attention_mask.bool()[:, None, None, :] if attention_mask is not None else None
seq = self.encoder(self.embeddings(input_ids), attn_mask, cos, sin)
if not return_dict:
return (seq,)
return BaseModelOutput(last_hidden_state=seq)
class MyBertForMaskedLM(MyBertPreTrainedModel):
_tied_weights_keys = {
"cls.predictions.decoder.weight": "mybert.embeddings.word_embeddings.weight",
}
def __init__(self, config):
super().__init__(config)
self.mybert = MyBertModel(config)
self.cls = MyBertOnlyMLMHead(config)
self.post_init()
def get_output_embeddings(self):
return self.cls.predictions.decoder
def set_output_embeddings(self, new):
self.cls.predictions.decoder = new
def forward(self, input_ids=None, attention_mask=None, labels=None,
label_smoothing=0.0, return_dict=True, **kw):
seq = self.mybert(input_ids=input_ids, attention_mask=attention_mask,
return_dict=True).last_hidden_state
if labels is not None and self.config.sparse_prediction:
flat_h = seq.view(-1, seq.size(-1))
flat_y = labels.view(-1)
idx = (flat_y != -100).nonzero(as_tuple=True)[0]
logits = self.cls(flat_h.index_select(0, idx))
loss = F.cross_entropy(logits.float(), flat_y.index_select(0, idx),
label_smoothing=label_smoothing)
return MaskedLMOutput(loss=loss, logits=None)
logits = self.cls(seq)
loss = None
if labels is not None:
loss = F.cross_entropy(logits.float().view(-1, self.config.vocab_size),
labels.view(-1), ignore_index=-100,
label_smoothing=label_smoothing)
if not return_dict:
return ((loss, logits) if loss is not None else (logits,))
return MaskedLMOutput(loss=loss, logits=logits)
class MyBertForSequenceClassification(MyBertPreTrainedModel):
def __init__(self, config):
super().__init__(config)
self.num_labels = config.num_labels
self.config = config
self.mybert = MyBertModel(config)
classifier_dropout = (
config.classifier_dropout
if getattr(config, "classifier_dropout", None) is not None
else config.hidden_dropout_prob
)
self.dropout = nn.Dropout(classifier_dropout)
self.classifier = nn.Linear(config.hidden_size, config.num_labels)
self.post_init()
def forward(self, input_ids=None, attention_mask=None, labels=None,
return_dict=True, **kw):
seq = self.mybert(input_ids=input_ids, attention_mask=attention_mask,
return_dict=True).last_hidden_state
pooled = seq[:, 0]
logits = self.classifier(self.dropout(pooled))
loss = None
if labels is not None:
if self.config.problem_type is None:
if self.num_labels == 1:
self.config.problem_type = "regression"
elif self.num_labels > 1 and labels.dtype in (torch.long, torch.int):
self.config.problem_type = "single_label_classification"
else:
self.config.problem_type = "multi_label_classification"
if self.config.problem_type == "regression":
loss_fct = nn.MSELoss()
loss = (loss_fct(logits.squeeze(), labels.squeeze())
if self.num_labels == 1 else loss_fct(logits, labels))
elif self.config.problem_type == "single_label_classification":
loss = nn.CrossEntropyLoss()(logits.view(-1, self.num_labels),
labels.view(-1))
else:
loss = nn.BCEWithLogitsLoss()(logits, labels)
if not return_dict:
return ((loss, logits) if loss is not None else (logits,))
return SequenceClassifierOutput(loss=loss, logits=logits)
class MyBertForTokenClassification(MyBertPreTrainedModel):
def __init__(self, config):
super().__init__(config)
self.num_labels = config.num_labels
self.mybert = MyBertModel(config)
classifier_dropout = (
config.classifier_dropout
if getattr(config, "classifier_dropout", None) is not None
else config.hidden_dropout_prob
)
self.dropout = nn.Dropout(classifier_dropout)
self.classifier = nn.Linear(config.hidden_size, config.num_labels)
self.post_init()
def forward(self, input_ids=None, attention_mask=None, labels=None,
return_dict=True, **kw):
seq = self.mybert(input_ids=input_ids, attention_mask=attention_mask,
return_dict=True).last_hidden_state
logits = self.classifier(self.dropout(seq))
loss = None
if labels is not None:
loss = nn.CrossEntropyLoss()(logits.view(-1, self.num_labels),
labels.view(-1))
if not return_dict:
return ((loss, logits) if loss is not None else (logits,))
return TokenClassifierOutput(loss=loss, logits=logits)
class MyBertForQuestionAnswering(MyBertPreTrainedModel):
def __init__(self, config):
super().__init__(config)
self.num_labels = 2
self.mybert = MyBertModel(config)
self.qa_outputs = nn.Linear(config.hidden_size, 2)
self.post_init()
def forward(self, input_ids=None, attention_mask=None,
start_positions=None, end_positions=None,
return_dict=True, **kw):
seq = self.mybert(input_ids=input_ids, attention_mask=attention_mask,
return_dict=True).last_hidden_state
start_logits, end_logits = self.qa_outputs(seq).split(1, dim=-1)
start_logits = start_logits.squeeze(-1).contiguous()
end_logits = end_logits.squeeze(-1).contiguous()
total_loss = None
if start_positions is not None and end_positions is not None:
if start_positions.dim() > 1:
start_positions = start_positions.squeeze(-1)
if end_positions.dim() > 1:
end_positions = end_positions.squeeze(-1)
ignored_index = start_logits.size(1)
start_positions = start_positions.clamp(0, ignored_index)
end_positions = end_positions.clamp(0, ignored_index)
loss_fct = nn.CrossEntropyLoss(ignore_index=ignored_index)
total_loss = (loss_fct(start_logits, start_positions)
+ loss_fct(end_logits, end_positions)) / 2
if not return_dict:
out = (start_logits, end_logits)
return ((total_loss,) + out) if total_loss is not None else out
return QuestionAnsweringModelOutput(
loss=total_loss, start_logits=start_logits, end_logits=end_logits) |