Views
No views yet
| Model | Visual Encoder | Projector | Resolution | Pretraining Strategy | Fine-tuning Strategy | Pretrain Dataset | Fine-tune Dataset |
|---|---|---|---|---|---|---|---|
| LLaVA-v1.5-7B | CLIP-L | MLP | 336 | Frozen LLM, Frozen ViT | Full LLM, Frozen ViT | LLaVA-PT (558K) | LLaVA-Mix (665K) |
| LLaVA-Llama-3-8B | CLIP-L | MLP | 336 | Frozen LLM, Frozen ViT | Full LLM, LoRA ViT | LLaVA-PT (558K) | LLaVA-Mix (665K) |
| LLaVA-Llama-3-8B-v1.1 | CLIP-L | MLP | 336 | Frozen LLM, Frozen ViT | Full LLM, LoRA ViT | ShareGPT4V-PT (1246K) | InternVL-SFT (1268K) |
| Model | MMBench Test (EN) | MMBench Test (CN) | CCBench Dev | MMMU Val | SEED-IMG | AI2D Test | ScienceQA Test | HallusionBench aAcc | POPE | GQA | TextVQA | MME | MMStar |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| LLaVA-v1.5-7B | 66.5 | 59.0 | 27.5 | 35.3 | 60.5 | 54.8 | 70.4 | 44.9 | 85.9 | 62.0 | 58.2 | 1511/348 | 30.3 |
| LLaVA-Llama-3-8B | 68.9 | 61.6 | 30.4 | 36.8 | 69.8 | 60.9 | 73.3 | 47.3 | 87.2 | 63.5 | 58.0 | 1506/295 | 38.2 |
| LLaVA-Llama-3-8B-v1.1 | 72.3 | 66.4 | 31.6 | 36.8 | 70.1 | 70.0 | 72.9 | 47.7 | 86.4 | 62.6 | 59.0 | 1469/349 | 45.1 |
pipeline1from transformers import pipeline
2from PIL import Image
3import requests
4
5model_id = "xtuner/llava-llama-3-8b-transformers"
6pipe = pipeline("image-to-text", model=model_id, device=0)
7url = "http://images.cocodataset.org/val2017/000000039769.jpg"
8
9image = Image.open(requests.get(url, stream=True).raw)
10prompt = ("<|start_header_id|>user<|end_header_id|>\n\n<image>\nWhat are these?<|eot_id|>"
11 "<|start_header_id|>assistant<|end_header_id|>\n\n")
12outputs = pipe(image, prompt=prompt, generate_kwargs={"max_new_tokens": 200})
13print(outputs)
14>>> [{'generated_text': 'user\n\n\nWhat are these?assistant\n\nThese are two cats lying on a pink blanket or bed, possibly on a couch...'}]transformers1import requests
2from PIL import Image
3
4import torch
5from transformers import AutoProcessor, LlavaForConditionalGeneration
6
7model_id = "xtuner/llava-llama-3-8b-transformers"
8
9prompt = ("<|start_header_id|>user<|end_header_id|>\n\n<image>\nWhat are these?<|eot_id|>"
10 "<|start_header_id|>assistant<|end_header_id|>\n\n")
11image_file = "http://images.cocodataset.org/val2017/000000039769.jpg"
12
13model = LlavaForConditionalGeneration.from_pretrained(
14 model_id,
15 torch_dtype=torch.float16,
16 low_cpu_mem_usage=True,
17).to(0)
18
19processor = AutoProcessor.from_pretrained(model_id)
20
21
22raw_image = Image.open(requests.get(image_file, stream=True).raw)
23inputs = processor(prompt, raw_image, return_tensors='pt').to(0, torch.float16)
24
25output = model.generate(**inputs, max_new_tokens=200, do_sample=False)
26print(processor.decode(output[0][2:], skip_special_tokens=True))
27>>> These are two cats lying on a pink blanket or bed, possibly on a couch...1@misc{2023xtuner,
2 title={XTuner: A Toolkit for Efficiently Fine-tuning LLM},
3 author={XTuner Contributors},
4 howpublished = {\url{https://github.com/InternLM/xtuner}},
5 year={2023}
6}