File size: 551 Bytes
265dbe2 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
# --------------------------------------------------------
# InternVL
# Copyright (c) 2023 OpenGVLab
# Licensed under The MIT License [see LICENSE for details]
# --------------------------------------------------------
from .configuration_intern_vit import InternVisionConfig
from .configuration_internvl_chat import InternVLChatConfig
from .modeling_intern_vit import InternVisionModel
from .modeling_internvl_chat import InternVLChatModel
__all__ = ['InternVisionConfig', 'InternVisionModel',
'InternVLChatConfig', 'InternVLChatModel']
|