Home

Awesome

<p align="center"> <img src="./assets/logo.png" width="250" style="margin-bottom: 0.2;"/> <p> <h2 align="center">πŸŒ‹πŸŒ‹ <a href="https://arxiv.org/abs/xxx">LLaVA-HR: High-Resolution Large Language-Vision Assistant </a>πŸŒ‹πŸŒ‹</h2> <h5 align="center">

hf_space hf_space arXiv License Hits GitHub issues GitHub closed issues <br>

</h5>

✨Technical Report:

Feast Your Eyes: Mixture-of-Resolution Adaptation for Multimodal Large Language Models <br> Gen Luo, Yiyi Zhou, Yuxin Zhang, Xiawu Zheng, Xiaoshuai Sun, Rongrong Ji <br>arXiv <br>

This repository contains the implementation of LLaVA-HR, a strong and efficient MLLM powered by our mixture-of-resolution adaptation. The features of LLaVA-HR include:

<div align="center"> <img src="./assets/fig1.png" width="55%"> </div>

πŸ“£ News

Table of Contents

Install

  1. Clone this repository and navigate to LLaVA-HR folder
git clone https://github.com/luogen1996/LLaVA-HR.git
cd LLaVA-HR
  1. Install Package
conda create -n llava-hr python=3.10 -y
conda activate llava-hr
pip install --upgrade pip  # enable PEP 660 support
pip install -e .
  1. Install additional packages for training cases
pip install ninja
pip install flash-attn --no-build-isolation

Model Zoo

VersionSizeResCheckpointVQAv2GQAVizWizTextVQAOKVQAOCRVQASQAMMEPOPESEEDMM-Vet
LLaVA-1.513B336liuhaotian/llava-v1.5-13b80.063.353.661.3--71.61531.385.961.635.4
LLaVA-HR7B1024favor123/llava-hr-7b-sft-102481.964.248.767.158.968.467.91554.987.664.231.5
LLaVA-HR-X13B1024favor123/llava-hr-13b-x-sft-102482.665.256.670.961.569.069.71487.388.065.340.3

Training

Our training pipeline and datasets are directly borrowed from LLaVA-v1.5. The training consists of two stages:

<details> <summary>Training scripts </summary>

Stage-1: Low-resolution Pretraining

Please download the caption annotations blip_laion_cc_sbu_558k.json and images from here. Move the downloaded files to the /data/data folder. Then run the following command to start the training process:

bash scripts/v1_5/pretrain_llava_hr.sh

We recommend to directly use our pre-trained projector for better reproducing our results.

VersionVision EncoderProjectionPretrain DataPretraining scheduleDownload
LLaVA-HR-7bCLIP-L & ConvNeXt-LMLP-2xLCS-558K1eprojector
LLaVA-HR-X-13bCLIP-L & ConvNeXt-XXLMLP-2xLCS-558K1eprojector

Stage-2: High-resolution Instruction Tuning

Please download the annotation file of the mixed instruction tuning data llava_v1_5_mix665k.json, and download the images from constituting datasets:

After downloading all of them, organize the data as follows in ./playground/data:

β”œβ”€β”€ coco
β”‚   └── train2017
β”œβ”€β”€ gqa
β”‚   └── images
β”œβ”€β”€ ocr_vqa
β”‚   └── images
β”œβ”€β”€ textvqa
β”‚   └── train_images
└── vg
    β”œβ”€β”€ VG_100K
    └── VG_100K_2

Then, you can start the training process by the following script. If you use your custom dataset, you can refer to llava_v1_5_mix665k.json to format your data.

bash scripts/v1_5/train_eval_llava_hr.sh

Instruction tuning takes around 16 hours for LLaVA-HR-7B on 8x A100s (80G).

</details>

Evaluation

We follow LLaVA-v1.5 to conduct evaluations. you should download eval.zip and unzip it to ./playground/data/eval. Besides, we further implement the evaluation of coco-caption, refcoco, vizwiz,ocrvqa and okvqa. Please refer to Evaluation.md to prepare the data.

Then, your can run our evaluation script bash scripts/v1_5/eval.sh.

πŸ€— Demo

Gradio Web UI <a href='https://github.com/gradio-app/gradio'><img src='https://img.shields.io/github/stars/gradio-app/gradio'></a>

Here are the steps to run the demo on your local devices.

<details> <summary>Demo scripts </summary> To launch a Gradio demo locally, please run the following commands one by one. If you plan to launch multiple model workers to compare between different checkpoints, you only need to launch the controller and the web server *ONCE*. #### Launch a controller ```Shell python -m llava.serve.controller --host 0.0.0.0 --port 10000 ```

Launch a gradio web server.

python -m llava.serve.gradio_web_server --controller http://localhost:10000 --model-list-mode reload

You just launched the Gradio web interface. Now, you can open the web interface with the URL printed on the screen. You may notice that there is no model in the model list. Do not worry, as we have not launched any model worker yet. It will be automatically updated when you launch a model worker.

Launch a model worker

This is the actual worker that performs the inference on the GPU. Each worker is responsible for a single model specified in --model-path.

python -m llava.serve.model_worker --host 0.0.0.0 --controller http://localhost:10000 --port 40000 --worker http://localhost:40000 --model-path ./checkpoints/llava-hr-7b-sft-1024

Wait until the process finishes loading the model and you see "Uvicorn running on ...". Now, refresh your Gradio web UI, and you will see the model you just launched in the model list.

You can launch as many workers as you want, and compare between different model checkpoints in the same Gradio interface. Please keep the --controller the same, and modify the --port and --worker to a different port number for each worker.

python -m llava.serve.model_worker --host 0.0.0.0 --controller http://localhost:10000 --port <different from 40000, say 40001> --worker http://localhost:<change accordingly, i.e. 40001> --model-path <ckpt2>

If you are using an Apple device with an M1 or M2 chip, you can specify the mps device by using the --device flag: --device mps.

Launch a model worker (Multiple GPUs, when GPU VRAM <= 24GB)

If the VRAM of your GPU is less than 24GB (e.g., RTX 3090, RTX 4090, etc.), you may try running it with multiple GPUs. Our latest code base will automatically try to use multiple GPUs if you have more than one GPU. You can specify which GPUs to use with CUDA_VISIBLE_DEVICES. Below is an example of running with the first two GPUs.

CUDA_VISIBLE_DEVICES=0,1 python -m llava.serve.model_worker --host 0.0.0.0 --controller http://localhost:10000 --port 40000 --worker http://localhost:40000 --model-path ./checkpoints/llava-hr-7b-sft-1024
</details>

CLI Inference

Here is the command for chatting with LLaVA-HR without the need of Gradio interface.

python -m llava.serve.cli \
    --model-path ./checkpoints/llava-hr-7b-sft-1024 \
    --image-file "./assets/example.jpg" 

πŸ‘ Acknowledgement

πŸ”’ License

✏️ Citation

If you find our paper and code useful in your research, please consider giving a star ⭐️ and citation πŸ“.

@article{luo2024feast,
  title={Feast Your Eyes: Mixture-of-Resolution Adaptation for Multimodal Large Language Models},
  author={Gen Luo, Yiyi Zhou, Yuxin Zhang, Xiawu Zheng, Xiaoshuai Sun, Rongrong Ji},
  journal={arXiv preprint arXiv:2403.03003},
  year={2024}
}

✨ Star History

Star History