File size: 199 Bytes
be9811f |
1 2 3 4 5 6 7 |
from transformers import PretrainedConfig
class RobertaEmotionConfig(PretrainedConfig):
model_type = "ma2za/roberta-emotion"
def __init__(self, **kwargs):
super().__init__(**kwargs) |