Feature Extraction
Transformers
Safetensors
sentence-transformers
Chinese
English
qwen3_5
image-text-to-text
multimodal-embedding
text-embedding
image-embedding
video-embedding
mrl
custom_code
Instructions to use tencent/WeMM-Embedding-9B with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use tencent/WeMM-Embedding-9B with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("feature-extraction", model="tencent/WeMM-Embedding-9B", trust_remote_code=True)# Load model directly from transformers import AutoProcessor, AutoModelForMultimodalLM processor = AutoProcessor.from_pretrained("tencent/WeMM-Embedding-9B", trust_remote_code=True) model = AutoModelForMultimodalLM.from_pretrained("tencent/WeMM-Embedding-9B", trust_remote_code=True, device_map="auto") - sentence-transformers
How to use tencent/WeMM-Embedding-9B with sentence-transformers:
from sentence_transformers import SentenceTransformer model = SentenceTransformer("tencent/WeMM-Embedding-9B", trust_remote_code=True) sentences = [ "The weather is lovely today.", "It's so sunny outside!", "He drove to the stadium." ] embeddings = model.encode(sentences) similarities = model.similarity(embeddings, embeddings) print(similarities.shape) # [3, 3] - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -24,7 +24,7 @@ language:
|
|
| 24 |
# WeMM-Embedding-9B
|
| 25 |
|
| 26 |
[](https://huggingface.co/collections/tencent/wemm-embedding)
|
| 27 |
-
[](https://
|
| 28 |
[](https://github.com/Tencent/WeMM-Embedding)
|
| 29 |
|
| 30 |
WeMM-Embedding-9B is a universal multimodal embedding model built on Qwen3.5. It accepts text, images, videos, visual documents, and interleaved multimodal inputs, and returns a 4,096-dimensional L2-normalized embedding. Audio input is not supported.
|
|
@@ -208,13 +208,16 @@ Results on all 190 tasks from Table 2 of the [technical report](https://github.c
|
|
| 208 |
Text results use NDCG@5; agent, MCMR, and audio results use Hit@1.
|
| 209 |
|
| 210 |
## Citation
|
| 211 |
-
|
| 212 |
```bibtex
|
| 213 |
-
@
|
| 214 |
-
|
| 215 |
-
|
| 216 |
-
|
| 217 |
-
|
|
|
|
|
|
|
|
|
|
| 218 |
}
|
| 219 |
```
|
| 220 |
|
|
|
|
| 24 |
# WeMM-Embedding-9B
|
| 25 |
|
| 26 |
[](https://huggingface.co/collections/tencent/wemm-embedding)
|
| 27 |
+
[](https://arxiv.org/abs/2608.24053)
|
| 28 |
[](https://github.com/Tencent/WeMM-Embedding)
|
| 29 |
|
| 30 |
WeMM-Embedding-9B is a universal multimodal embedding model built on Qwen3.5. It accepts text, images, videos, visual documents, and interleaved multimodal inputs, and returns a 4,096-dimensional L2-normalized embedding. Audio input is not supported.
|
|
|
|
| 208 |
Text results use NDCG@5; agent, MCMR, and audio results use Hit@1.
|
| 209 |
|
| 210 |
## Citation
|
| 211 |
+
If you find this repository useful, please consider giving a star ⭐ and citation
|
| 212 |
```bibtex
|
| 213 |
+
@article{wemm-embedding,
|
| 214 |
+
title={WeMM-Embedding: WeChat Multi-Modal Embedding Technical Report},
|
| 215 |
+
author={Junjie Zhou and Ke Mei and Lei Li and Tianyi Wang and Fengyun Rao and Jing Lyu},
|
| 216 |
+
year={2026},
|
| 217 |
+
eprint={2608.24053},
|
| 218 |
+
archivePrefix={arXiv},
|
| 219 |
+
primaryClass={cs.CV},
|
| 220 |
+
url={https://arxiv.org/abs/2608.24053},
|
| 221 |
}
|
| 222 |
```
|
| 223 |
|