mirror of
https://github.com/open-compass/opencompass.git
synced 2025-05-30 16:03:24 +08:00

* [Feature]: Add minigpt-4 * [Feature]: Add mm local runner * [Feature]: Add instructblip * [Feature]: Delete redundant file * [Feature]: Delete redundant file * [Feature]: Add README to InstructBLIP * [Feature]: Update MiniGPT-4 * [Fix]: Fix lint * [Feature]add omnibenchmark readme (#49) * add omnibenchmark readme * fix * Update OmniMMBench.md * Update OmniMMBench.md * Update OmniMMBench.md * [Fix]: Refine name (#54) * [Feature]: Unify out and err * [Fix]: Fix lint * [Feature]: Rename to mmbench and change weight path * [Feature]: Delete Omni in instructblip * [Feature]: Check the avaliablity of lavis * [Fix]: Fix lint * [Feature]: Refactor MM * [Refactor]: Refactor path * [Feature]: Delete redundant files * [Refactor]: Delete redundant files --------- Co-authored-by: Wangbo Zhao(黑色枷锁) <56866854+wangbo-zhao@users.noreply.github.com>
16 lines
512 B
Python
16 lines
512 B
Python
from mmengine.config import read_base
|
|
|
|
with read_base():
|
|
from .minigpt_4.minigpt_4_7b_mmbench import (minigpt_4_dataloader,
|
|
minigpt_4_evaluator,
|
|
minigpt_4_load_from,
|
|
minigpt_4_model)
|
|
|
|
models = [minigpt_4_model]
|
|
datasets = [minigpt_4_dataloader]
|
|
evaluators = [minigpt_4_evaluator]
|
|
load_froms = [minigpt_4_load_from]
|
|
num_gpus = 1
|
|
num_procs = 1
|
|
launcher = 'slurm'
|