File size: 317 Bytes
628be02 |
1 2 3 4 5 6 7 8 9 10 11 |
from transformers import BertModel
from .configuration import NewModelConfig
from .util import ImportLayer
class NewModel(BertModel):
config_class = NewModelConfig
def __init__(self, config):
super().__init__(config)
self.last_layer = ImportLayer(config.hidden_size, config.new_hidden_size) |