| | import os.path as osp |
| |
|
| | from opencompass.utils import satisfy_requirement |
| |
|
| | if satisfy_requirement('salesforce-lavis'): |
| | from .instructblip import * |
| |
|
| | if osp.exists('opencompass/multimodal/models/minigpt_4/MiniGPT-4'): |
| | from .minigpt_4 import * |
| |
|
| | if osp.exists( |
| | 'opencompass/multimodal/models/llama_adapter_v2_multimodal/LLaMA-Adapter' |
| | ): |
| | from .llama_adapter_v2_multimodal import * |
| |
|
| | from .llava import * |
| |
|
| | if osp.exists('opencompass/multimodal/models/mplug_owl/mPLUG-Owl'): |
| | from .mplug_owl import * |
| |
|
| | from .openflamingo import * |
| | from .otter import * |
| | from .qwen import * |
| | from .visualglm import * |
| |
|