How to use from the
Use from the
Transformers library
# Use a pipeline as a high-level helper
from transformers import pipeline

pipe = pipeline("visual-question-answering", model="trieutm/blip-vqa-finetuned")
# Load model directly
from transformers import AutoProcessor, AutoModelForVisualQuestionAnswering

processor = AutoProcessor.from_pretrained("trieutm/blip-vqa-finetuned")
model = AutoModelForVisualQuestionAnswering.from_pretrained("trieutm/blip-vqa-finetuned")
Quick Links

How to use:

For inference

Load model directly

from transformers import BlipForQuestionAnswering, BlipProcessor

model = BlipForQuestionAnswering.from_pretrained("trieutm/blip-vqa-finetuned")
processor = BlipProcessor.from_pretrained("trieutm/blip-vqa-finetuned")
Downloads last month
8
Safetensors
Model size
0.4B params
Tensor type
F32
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for trieutm/blip-vqa-finetuned

Finetuned
(17)
this model

Dataset used to train trieutm/blip-vqa-finetuned