Welcome to the official repository for Elva, a language and vision assistant developed with the goal of enhancing efficiency in vision-language models. Recent advancements in Large Vision-Language Models (LVLMs) have improved visually-situated language understanding but often come with higher computational demands. In response, Elva offers a streamlined and faster alternative.
Our work focuses on optimizing key components to balance performance with manageable computational costs. Through this repository, we hope to offer our findings and techniques as helpful resources for those interested in the field. By refining dataset strategies, enhancing vision module designs, and optimizing supervision methods, Elva makes noticeable improvements in speed and accuracy.
Here, you'll find the resources and codebase needed to replicate our findings and explore further possibilities. Our experiments, ranging from 160M to 13B parameters, provide insights we believe can benefit ongoing work in visually-situated natural language understanding.
For more detailed information, please refer to our paper linked below. We hope you find this repository useful and look forward to seeing how it contributes to your research and applications:
On Efficient Language and Vision Assistants for Visually-Situated Natural Language Understanding: What Matters in Reading and Reasoning.
Geewook Kim and Minjoon Seo. In EMNLP 2024.
2024-11-23 Additional pretrained weights have been updated, and a bug fix has been implemented.
2024-11-14 Initial release of the codebase.
To get started with Elva, execute the following installation command:
bash install.sh
Model | Link |
---|---|
Elva-LLaMA-160M | gwkrsrch/Elva-Llama-160M |
Elva-Tiny-Vicuna-1B | gwkrsrch/Elva-Tiny-Vicuna-1B |
Elva-Phi3-3.8B | gwkrsrch/Elva-Phi3-3.8B |
Elva-Vicuna-7B | Coming soon! |
Elva-Vicuna-13B | Coming soon! |
More models will be available soon. Also, you can train your own models using the instructions in the next sections.
To test the pretrained models, use this command:
cd VLMEvalKit
torchrun --nproc-per-node=1 run.py --data ScienceQA_TEST --model Elva-Llama-160M
This will show you the test results.
You can train your own models with the provided scripts:
train_llama.sh
train_openelm.sh
train_phi3.sh
If you find Elva helpful for your work, please include the following citation:
@inproceedings{kim-seo-2024-efficient,
title = "On Efficient Language and Vision Assistants for Visually-Situated Natural Language Understanding: What Matters in Reading and Reasoning",
author = "Kim, Geewook and
Seo, Minjoon",
editor = "Al-Onaizan, Yaser and
Bansal, Mohit and
Chen, Yun-Nung",
booktitle = "Proceedings of the 2024 Conference on Empirical Methods in Natural Language Processing",
month = nov,
year = "2024",
address = "Miami, Florida, USA",
publisher = "Association for Computational Linguistics",
url = "https://aclanthology.org/2024.emnlp-main.944",
pages = "16978--17000",
}
Elva
Copyright (c) 2024-present NAVER Cloud Corp.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.