EvolvingLMMs-Lab / lmms-eval

Accelerating the development of large multimodal models (LMMs) with lmms-eval
https://lmms-lab.github.io/
Other
1.9k stars 145 forks source link

No llavavid module in the latest LLaVA-NeXT #242

Open YitaoLiu1996 opened 1 month ago

YitaoLiu1996 commented 1 month ago

I have installed LLaVA-NeXT and upgraded my dependency using something like

cd /path/to/LLaVA-NeXT;
pip install -e ".[train]"

But my code showed the No module named 'llavavid' error.

After searching I found this issue tells that llavavid module has merged into llava. So what should I do at this step?

floatingbigcat commented 1 month ago

Hi, I figured out this tmp solution and it works for me after manually fix some unmatched argment. Hopefully, there will be some update on this repo to catch up the latest change from llava side later on. https://github.com/EvolvingLMMs-Lab/lmms-eval/issues/197#issuecomment-2337089080

YitaoLiu1996 commented 1 month ago

@floatingbigcat Thank you very much!