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

* [Feature]: Refactor class name * [Feature]: Add minigpt-4 coco caption * [Feature]: Update minigpt-4 coco caption * [Feature]: Add MiniGPT-4 ScienceQA * [Feature]: Add minigpt-4 vqav2 * [Feature]: Add VSR * [Feature]: Revert task to previous version
15 lines
513 B
Python
15 lines
513 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 = 8
|
|
num_procs = 8
|
|
launcher = 'pytorch' |