HellenicSentimentAI_v2 / __init__.py
gsar78's picture
Update __init__.py
d60c0f1 verified
raw
history blame
297 Bytes
# __init__.py
from .modeling_custom import CustomConfig, CustomModel
from transformers import AutoConfig, AutoModel, CONFIG_MAPPING, MODEL_MAPPING
CONFIG_MAPPING.update({"custom_model": CustomConfig})
MODEL_MAPPING.update({"custom_model": CustomModel})
__all__ = ["CustomConfig", "CustomModel"]