Skip to content

Commit

Permalink
add LLaVANext
Browse files Browse the repository at this point in the history
  • Loading branch information
kennymckormick committed Mar 22, 2024
1 parent 1cafa6a commit 9b0610c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions vlmeval/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,10 @@
'llava_v1_7b': partial(LLaVA, model_pth=LLAVA_V1_7B_MODEL_PTH),
'sharegpt4v_7b': partial(LLaVA, model_pth='Lin-Chen/ShareGPT4V-7B'),
'sharegpt4v_13b': partial(LLaVA, model_pth='Lin-Chen/ShareGPT4V-13B'),
'llava_next_vicuna_7b': partial(LLaVA_Next, model_pth='llava-hf/llava-v1.6-vicuna-7b-hf'),
'llava_next_vicuna_13b': partial(LLaVA_Next, model_pth='llava-hf/llava-v1.6-vicuna-13b-hf'),
'llava_next_mistral_7b': partial(LLaVA_Next, model_pth='llava-hf/llava-v1.6-mistral-7b-hf'),
'llava_next_yi_34b': partial(LLaVA_Next, model_pth='llava-hf/llava-v1.6-34b-hf'),
}

internvl_series = {
Expand Down
2 changes: 1 addition & 1 deletion vlmeval/vlm/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from .emu import Emu
from .idefics import IDEFICS
from .instructblip import InstructBLIP
from .llava import LLaVA
from .llava import LLaVA, LLaVA_Next
from .llava_xtuner import LLaVA_XTuner
from .minicpm_v import MiniCPM_V
from .minigpt4 import MiniGPT4
Expand Down

0 comments on commit 9b0610c

Please sign in to comment.