e06fe8e8c6
Secret Leaks / trufflehog (push) Failing after 1s
Build documentation / build (push) Failing after 1s
Build documentation / build_other_lang (push) Failing after 0s
CodeQL Security Analysis / CodeQL Analysis (push) Failing after 0s
PR CI / pr-ci (push) Failing after 1s
Slow tests on important models (on Push - A10) / Get all modified files (push) Failing after 1s
Slow tests on important models (on Push - A10) / Model CI (push) Has been skipped
Self-hosted runner (benchmark) / Benchmark (aws-g5-4xlarge-cache) (push) Has been cancelled
New model PR merged notification / Notify new model (push) Has been cancelled
Update Transformers metadata / build_and_package (push) Has been cancelled
108 lines
3.3 KiB
Markdown
108 lines
3.3 KiB
Markdown
<!--Copyright 2025 The HuggingFace Team. All rights reserved.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with
|
|
the License. You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on
|
|
an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
|
|
specific language governing permissions and limitations under the License.
|
|
|
|
⚠️ Note that this file is in Markdown but contain specific syntax for our doc-builder (similar to MDX) that may not be
|
|
rendered properly in your Markdown viewer.
|
|
|
|
-->
|
|
*This model was published in HF papers on 2024-05-31 and contributed to Hugging Face Transformers on 2025-08-18.*
|
|
|
|
# Ovis2
|
|
|
|
## Overview
|
|
|
|
The [Ovis2](https://github.com/AIDC-AI/Ovis) is an updated version of the [Ovis](https://huggingface.co/papers/2405.20797) model developed by the AIDC-AI team at Alibaba International Digital Commerce Group.
|
|
|
|
Ovis2 is the latest advancement in multi-modal large language models (MLLMs), succeeding Ovis1.6. It retains the architectural design of the Ovis series, which focuses on aligning visual and textual embeddings, and introduces major improvements in data curation and training methods.
|
|
|
|
<img src="https://cdn-uploads.huggingface.co/production/uploads/637aebed7ce76c3b834cea37/XB-vgzDL6FshrSNGyZvzc.png" width="600">
|
|
|
|
<small> Ovis2 architecture.</small>
|
|
|
|
This model was contributed by [thisisiron](https://huggingface.co/thisisiron).
|
|
|
|
## Usage example
|
|
|
|
```python
|
|
|
|
import requests
|
|
import torch
|
|
from PIL import Image
|
|
|
|
from transformers import AutoModelForImageTextToText, AutoProcessor
|
|
|
|
|
|
model = AutoModelForImageTextToText.from_pretrained(
|
|
"thisisiron/Ovis2-2B-hf",
|
|
).eval().to(model.device, device_map="auto")
|
|
processor = AutoProcessor.from_pretrained("thisisiron/Ovis2-2B-hf")
|
|
|
|
messages = [
|
|
{
|
|
"role": "user",
|
|
"content": [
|
|
{"type": "image"},
|
|
{"type": "text", "text": "Describe the image."},
|
|
],
|
|
},
|
|
]
|
|
url = "http://images.cocodataset.org/val2014/COCO_val2014_000000537955.jpg"
|
|
image = Image.open(requests.get(url, stream=True).raw)
|
|
messages = processor.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
|
|
print(messages)
|
|
|
|
inputs = processor(
|
|
images=[image],
|
|
text=messages,
|
|
return_tensors="pt",
|
|
)
|
|
inputs = inputs.to(model.device)
|
|
inputs['pixel_values'] = inputs['pixel_values'].to(torch.bfloat16)
|
|
|
|
with torch.inference_mode():
|
|
output_ids = model.generate(**inputs, max_new_tokens=128, do_sample=False)
|
|
generated_ids = [output_ids[len(input_ids):] for input_ids, output_ids in zip(inputs.input_ids, output_ids)]
|
|
output_text = processor.batch_decode(generated_ids, skip_special_tokens=True)
|
|
print(output_text)
|
|
```
|
|
|
|
## Ovis2Config
|
|
|
|
[[autodoc]] Ovis2Config
|
|
|
|
## Ovis2VisionConfig
|
|
|
|
[[autodoc]] Ovis2VisionConfig
|
|
|
|
## Ovis2Model
|
|
|
|
[[autodoc]] Ovis2Model
|
|
|
|
## Ovis2ForConditionalGeneration
|
|
|
|
[[autodoc]] Ovis2ForConditionalGeneration
|
|
- forward
|
|
- get_image_features
|
|
|
|
## Ovis2ImageProcessor
|
|
|
|
[[autodoc]] Ovis2ImageProcessor
|
|
- preprocess
|
|
|
|
## Ovis2ImageProcessorPil
|
|
|
|
[[autodoc]] Ovis2ImageProcessorPil
|
|
- preprocess
|
|
|
|
## Ovis2Processor
|
|
|
|
[[autodoc]] Ovis2Processor
|
|
- __call__ |