GAMA / hf /transformers /utils /test_module /custom_configuration.py
sonalkum's picture
bug fix
fa57c60
raw
history blame contribute delete
380 Bytes
from transformers import PretrainedConfig
class CustomConfig(PretrainedConfig):
model_type = "custom"
def __init__(self, attribute=1, **kwargs):
self.attribute = attribute
super().__init__(**kwargs)
class NoSuperInitConfig(PretrainedConfig):
model_type = "custom"
def __init__(self, attribute=1, **kwargs):
self.attribute = attribute