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

* refine gitignore * [Feature]: Add minigpt-4 * [Feature]: Add mm local runner * [Feature]: Add instructblip * add otter and llama-adapter * add owl * add llama2-adapter and owl * lint * [Feature]: Add minigpt-4 * [Feature]: Add instructblip * add otter and llama-adapter * add owl * add llama2-adapter and owl * lint * lint * update * lint * lint * add __init__.py * update * update * update --------- Co-authored-by: liuyuan <3463423099@qq.com>
17 lines
579 B
Python
17 lines
579 B
Python
from mmengine.config import read_base
|
|
|
|
with read_base():
|
|
from .minigpt_4.minigpt_4_7b_mmbench import (minigpt_4_mmbench_dataloader,
|
|
minigpt_4_mmbench_evaluator,
|
|
minigpt_4_mmbench_load_from,
|
|
minigpt_4_mmbench_model)
|
|
|
|
models = [minigpt_4_mmbench_model]
|
|
datasets = [minigpt_4_mmbench_dataloader]
|
|
evaluators = [minigpt_4_mmbench_evaluator]
|
|
load_froms = [minigpt_4_mmbench_load_from]
|
|
|
|
num_gpus = 8
|
|
num_procs = 8
|
|
launcher = 'pytorch'
|