Safetensors
ada_llava_llama
Zhuoyan Xu commited on
Commit
d897ff9
·
1 Parent(s): a5a5789

update readme.md

Browse files
Files changed (1) hide show
  1. README.md +47 -0
README.md CHANGED
@@ -1,3 +1,50 @@
1
  ---
2
  license: llama2
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: llama2
3
+ datasets:
4
+ - liuhaotian/LLaVA-Instruct-150K
5
  ---
6
+
7
+ # Ada-LLaVA Model Card
8
+
9
+ <!-- Provide a quick summary of what the model is/does. -->
10
+
11
+ Ada-LLaVA 13B is an open-source adaptive inference framework for multimodal Large Language Models (MLLMs) that dynamically adjusts its operations based on available computational resources and latency requirements.
12
+
13
+ See the paper for more details: [Learning to Inference Adaptively for Multimodal Large Language Models]()
14
+
15
+ **Model details**: https://zhuoyan-xu.github.io/ada-llava/
16
+
17
+ ## Model Details
18
+
19
+ <!-- Provide a longer summary of what this model is. -->
20
+
21
+ **Model Type:** Ada LLaVA 13B follows the [LLaVA-v1.5](https://arxiv.org/abs/2310.03744) stage-2 training pipeline,
22
+ with [CLIP-ViT-L-336px](https://huggingface.co/openai/clip-vit-large-patch14-336) as visual encoder (336*336 image resolution),
23
+ [Vicuna-v1.5-13B](https://huggingface.co/lmsys/vicuna-13b-v1.5) as base LLM and a two-layer MLP as vision-language connector, customized embedding model and MLP as latency scheduler.
24
+
25
+ It was trained with stage-2 pipeline as LLaVA:
26
+
27
+ Instruction tuning: Freeze vision encoder, train the remaining model with multimodal instruction following data of tabular and non-tabular tasks.
28
+
29
+ **Code Base:** We use the official code of [LLaVA-v1.5](https://github.com/haotian-liu/LLaVA) for model training and inference,
30
+ and the saved model checkpoint is uploaded to this repository.
31
+
32
+ **Model Date:** Ada-LLaVA 13B was trained in Oct 2024.
33
+
34
+
35
+ ## License
36
+
37
+ AdaLLaVA is based on LLaVA-1.5 and thus follows its license. Llama 2 is licensed under the LLAMA 2 Community License, Copyright (c) Meta Platforms, Inc. All Rights Reserved.
38
+
39
+ ## Intended use
40
+
41
+ **Primary intended uses:** The primary use of Ada LLaVA is research on multimodal large multimodal models and chatbots, especially for resource-constrain inference and deployment.
42
+
43
+ **Primary intended users:** The primary intended users of the model are researchers and hobbyists in computer vision, natural language processing, machine learning, and artificial intelligence.
44
+
45
+ ## Training dataset
46
+ - 665K image level instruction data from LLaVA-1.5 stage-2, see details in original [LLaVA repo](https://github.com/haotian-liu/LLaVA?tab=readme-ov-file#visual-instruction-tuning).
47
+
48
+ ## Limitations
49
+
50
+ While Ada-LLaVA is currently limited to processing one image at a time and only applies adaptive operations in its later half of layers, future work could explore multi-image input support and extend the adaptive mechanisms throughout the entire model architecture, including the vision encoder. These improvements would make the model more versatile and applicable to a broader range of real-world scenarios.