InternViT-300M-448px / __init__.py
czczup's picture
Upload folder using huggingface_hub
265dbe2 verified
raw
history blame
551 Bytes
# --------------------------------------------------------
# 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']