ovis-community/ovis-2.5-9B
013
Ovis2.5-9B
This is the community-maintained Transformers version of ATH-MaaS/Ovis2.5-9B. It provides native Ovis2.5 configuration, tokenizer, image processor, and video processor metadata so the standard Transformers Auto classes can load the model without trust_remote_code=True.
The model weights are copied unchanged from source revision d73b2283ae2a930b7762f8d7b8b8a3f0f3b5c3bd. Transformers applies the registered Ovis2.5 weight-name mapping while loading them.
Native support is being added in huggingface/transformers#47659. Until that support is available in a Transformers release, use a checkout that contains the PR.
from transformers import AutoModelForImageTextToText, AutoProcessor
model_id = "ovis-community/ovis-2.5-9B"
processor = AutoProcessor.from_pretrained(model_id)
model = AutoModelForImageTextToText.from_pretrained(
model_id,
device_map="auto",
)Provenance
- Original checkpoint:
ATH-MaaS/Ovis2.5-9B - Original revision:
d73b2283ae2a930b7762f8d7b8b8a3f0f3b5c3bd - Weight shards, weight index, BPE vocabulary,
LICENSE, andNOTICEare copied unchanged from that revision. - Native config, processor, and tokenizer metadata are regenerated for the Transformers Ovis2.5 implementation.
Please refer to the original model card for model details, intended use, limitations, and attribution.
