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="shi-labs/probe_depth_llava-1.5-pt-0.5ift")
messages = [
    {
        "role": "user",
        "content": [
            {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"},
            {"type": "text", "text": "What animal is on the candy?"}
        ]
    },
]
pipe(text=messages)
# Load model directly
from transformers import AutoModelForCausalLM
model = AutoModelForCausalLM.from_pretrained("shi-labs/probe_depth_llava-1.5-pt-0.5ift", device_map="auto")
Quick Links

probe_depth_llava-1.5-pt-ift

This model checkpoint contains the depth probes for CLIP-ConvNeXT-XXL Llama-3-8b based LLaVA-1.5 model after the PT and 50% IFT stages, i.e., trained on the LLaVA-558K and 50% LLaVA-665K dataset. Please refer to documentation for more details.

Citation

If you found our work useful in your research, please consider starring ⭐ us on GitHub and citing 📚 us in your research!

@article{jain2024ola_vlm,
    title={{OLA-VLM: Elevating Visual Perception in Multimodal LLMs with Auxiliary Embedding Distillation}},
    author={Jitesh Jain and Zhengyuan Yang and Humphrey Shi and Jianfeng Gao and Jianwei Yang},
    journal={arXiv},
    year={2024}
}
Downloads last month
2
Safetensors
Model size
10B params
Tensor type
F32
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Collection including shi-labs/probe_depth_llava-1.5-pt-0.5ift