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

pipe = pipeline("image-text-to-text", model="shijiay/llava_clip224_stage2")
# Load model directly
from transformers import AutoProcessor, AutoModelForCausalLM

processor = AutoProcessor.from_pretrained("shijiay/llava_clip224_stage2")
model = AutoModelForCausalLM.from_pretrained("shijiay/llava_clip224_stage2", device_map="auto")
Quick Links

This model is the stage 2 checkpoint of one of the thirteen settings, CLIP@224, used in the Law of Vision Representation in MLLMs.

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

Paper for shijiay/llava_clip224_stage2