Feature Extraction
Transformers
Safetensors
qwen2_5_vl
image-text-to-text
embedding
multimodal
vision-language
mmeb
mveb
Instructions to use HugC/VisME-Qwen25VL-3B with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use HugC/VisME-Qwen25VL-3B with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("feature-extraction", model="HugC/VisME-Qwen25VL-3B")# Load model directly from transformers import AutoProcessor, AutoModelForMultimodalLM processor = AutoProcessor.from_pretrained("HugC/VisME-Qwen25VL-3B") model = AutoModelForMultimodalLM.from_pretrained("HugC/VisME-Qwen25VL-3B", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Add pipeline tag and paper link
#1
by nielsr HF Staff - opened
README.md
CHANGED
|
@@ -1,5 +1,8 @@
|
|
| 1 |
---
|
|
|
|
|
|
|
| 2 |
license: apache-2.0
|
|
|
|
| 3 |
tags:
|
| 4 |
- embedding
|
| 5 |
- multimodal
|
|
@@ -7,15 +10,13 @@ tags:
|
|
| 7 |
- feature-extraction
|
| 8 |
- mmeb
|
| 9 |
- mveb
|
| 10 |
-
base_model: Qwen/Qwen2.5-VL-7B-Instruct
|
| 11 |
-
library_name: transformers
|
| 12 |
---
|
| 13 |
|
| 14 |
# VisME (Qwen2.5-VL-7B)
|
| 15 |
|
| 16 |
English | [简体中文](README.md)
|
| 17 |
|
| 18 |
-
**VisME** is a universal multimodal embedding model from our CVPR 2026 paper [*Illuminating Visual Identity in Universal Multimodal Embeddings*](https://
|
| 19 |
|
| 20 |
<p align="center">
|
| 21 |
<img src="assets/teaser.jpg" alt="VisME teaser" width="95%">
|
|
@@ -111,4 +112,4 @@ If you find VisME or MVEB useful, please cite:
|
|
| 111 |
|
| 112 |
## License
|
| 113 |
|
| 114 |
-
This model is built upon [Qwen2.5-VL-7B-Instruct](https://huggingface.co/Qwen/Qwen2.5-VL-7B-Instruct). Please follow the license terms of the base model and the respective datasets used during training.
|
|
|
|
| 1 |
---
|
| 2 |
+
base_model: Qwen/Qwen2.5-VL-7B-Instruct
|
| 3 |
+
library_name: transformers
|
| 4 |
license: apache-2.0
|
| 5 |
+
pipeline_tag: feature-extraction
|
| 6 |
tags:
|
| 7 |
- embedding
|
| 8 |
- multimodal
|
|
|
|
| 10 |
- feature-extraction
|
| 11 |
- mmeb
|
| 12 |
- mveb
|
|
|
|
|
|
|
| 13 |
---
|
| 14 |
|
| 15 |
# VisME (Qwen2.5-VL-7B)
|
| 16 |
|
| 17 |
English | [简体中文](README.md)
|
| 18 |
|
| 19 |
+
**VisME** is a universal multimodal embedding model from our CVPR 2026 paper [*Illuminating Visual Identity in Universal Multimodal Embeddings*](https://huggingface.co/papers/2608.01794). Built on [Qwen2.5-VL-7B-Instruct](https://huggingface.co/Qwen/Qwen2.5-VL-7B-Instruct), VisME produces dense embeddings for images, text, and image–text pairs, with strong performance on both general multimodal benchmarks (**MMEB**) and identity-centric retrieval (**MVEB**).
|
| 20 |
|
| 21 |
<p align="center">
|
| 22 |
<img src="assets/teaser.jpg" alt="VisME teaser" width="95%">
|
|
|
|
| 112 |
|
| 113 |
## License
|
| 114 |
|
| 115 |
+
This model is built upon [Qwen2.5-VL-7B-Instruct](https://huggingface.co/Qwen/Qwen2.5-VL-7B-Instruct). Please follow the license terms of the base model and the respective datasets used during training.
|