Instructions to use FreedomIntelligence/LongLLaVA-53B-A13B with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
How to use FreedomIntelligence/LongLLaVA-53B-A13B with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("image-text-to-text", model="FreedomIntelligence/LongLLaVA-53B-A13B", trust_remote_code=True)
# Load model directly
from transformers import AutoModelForCausalLM
model = AutoModelForCausalLM.from_pretrained("FreedomIntelligence/LongLLaVA-53B-A13B", trust_remote_code=True, device_map="auto")