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="hf-internal-testing/tiny-vilt-random-vqa")
# Load model directly
from transformers import AutoProcessor, AutoModelForVisualQuestionAnswering

processor = AutoProcessor.from_pretrained("hf-internal-testing/tiny-vilt-random-vqa")
model = AutoModelForVisualQuestionAnswering.from_pretrained("hf-internal-testing/tiny-vilt-random-vqa")
Quick Links

A tiny randomly-initialized ViLT used for unit tests in the Transformers VQA pipeline

Downloads last month
2,532
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Paper for hf-internal-testing/tiny-vilt-random-vqa