paraphrastic_test / modeling_sim.py
jwieting's picture
Update modeling_sim.py
65e061d
raw
history blame
456 Bytes
import torch
from torch import nn
from transformers import MobileBertModel
class SimModel(PreTrainedModel):
def __init__(self, config):
super().__init__(config)
self.config = config
self.encoder = MobileBertModel(config)
# Initialize weights and apply final processing
self.post_init()
def forward(self, **input_args):
print(**input_args)
return self.encoder(**input_args).last_hidden_state