🚀 InstructBLIP模型
InstructBLIP模型使用[Flan - T5 - xxl](https://huggingface.co/google/flan - t5 - xxl)作为语言模型。它由Dai等人在论文InstructBLIP: Towards General - purpose Vision - Language Models with Instruction Tuning中提出。该模型采用bitsandbytes进行量化,支持8位、nf4格式以及Safetensors,不过表现只能说“差强人意”🥱。
需要说明的是,发布InstructBLIP的团队并未为该模型撰写模型卡片,此卡片由Hugging Face团队编写。
🚀 快速开始
模型描述
InstructBLIP是[BLIP - 2](https://huggingface.co/docs/transformers/main/model_doc/blip - 2)的视觉指令微调版本。详细信息请参考相关论文。

预期用途与局限性
使用方法如下:
from transformers import InstructBlipProcessor, InstructBlipForConditionalGeneration
import torch
from PIL import Image
import requests
model = InstructBlipForConditionalGeneration.from_pretrained("Salesforce/instructblip-flan-t5-xxl")
processor = InstructBlipProcessor.from_pretrained("Salesforce/instructblip-flan-t5-xxl")
device = "cuda" if torch.cuda.is_available() else "cpu"
model.to(device)
url = "https://raw.githubusercontent.com/salesforce/LAVIS/main/docs/_static/Confusing-Pictures.jpg"
image = Image.open(requests.get(url, stream=True).raw).convert("RGB")
prompt = "What is unusual about this image?"
inputs = processor(images=image, text=prompt, return_tensors="pt").to(device)
outputs = model.generate(
**inputs,
do_sample=False,
num_beams=5,
max_length=256,
min_length=1,
top_p=0.9,
repetition_penalty=1.5,
length_penalty=1.0,
temperature=1,
)
generated_text = processor.batch_decode(outputs, skip_special_tokens=True)[0].strip()
print(generated_text)
如何使用
有关代码示例,请参考文档。
📄 许可证
本项目采用MIT许可证。
属性 |
详情 |
模型类型 |
图像到文本(image - to - text) |
标签 |
视觉(vision)、图像描述(image - captioning) |