Improve model card: Add pipeline tag, library name, and detailed description

#1
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +43 -12
README.md CHANGED
@@ -1,21 +1,52 @@
1
  ---
2
  license: apache-2.0
 
 
3
  ---
4
 
5
- We are thrilled to release LCO-Embed - a language-centric omnimodal representation learning framework and the LCO-Embedding model families!
6
 
7
- Models and datasets: https://huggingface.co/LCO-Embedding
8
 
9
- Github: https://github.com/LCO-Embedding/LCO-Embedding
10
 
11
- ```
12
- @misc{xiao2025scalinglanguagecentricomnimodalrepresentation,
13
- title={Scaling Language-Centric Omnimodal Representation Learning},
14
- author={Chenghao Xiao and Hou Pong Chan and Hao Zhang and Weiwen Xu and Mahani Aljunied and Yu Rong},
15
- year={2025},
16
- eprint={2510.11693},
17
- archivePrefix={arXiv},
18
- primaryClass={cs.CL},
19
- url={https://arxiv.org/abs/2510.11693},
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
  }
21
  ```
 
1
  ---
2
  license: apache-2.0
3
+ pipeline_tag: feature-extraction
4
+ library_name: transformers
5
  ---
6
 
7
+ # LCO-Embedding: Scaling Language-Centric Omnimodal Representation Learning
8
 
9
+ We are thrilled to release LCO-Embedding - a language-centric omnimodal representation learning framework and the LCO-Embedding model families!
10
 
11
+ This model implements the framework presented in the paper [Scaling Language-Centric Omnimodal Representation Learning](https://huggingface.co/papers/2510.11693), accepted by NeurIPS 2025.
12
 
13
+ **Project Page:** https://huggingface.co/LCO-Embedding
14
+ **Github Repository:** https://github.com/LCO-Embedding/LCO-Embedding
15
+
16
+ ## Overview
17
+
18
+ We introduce **LCO-Embedding**, a language-centric omnimodal representation learning method and the LCO-Embedding model families, setting a new state-of-the-art on [MIEB](https://huggingface.co/blog/isaacchung/introducing-mieb) (Massive Image Embedding Benchmark), while supporting audio and videos.
19
+
20
+ This work also introduces the **Generation-Representation Scaling Law**, connecting models' generative capabilities and their representation upper bound. Furthermore, we introduce **SeaDoc**, a challenging visual document retrieval task in Southeast Asian languages, and show that continual generative pretraining before contrastive learning raises the representation upper bound.
21
+
22
+ <div align='center'><img src="https://cdn-uploads.huggingface.co/production/uploads/604f67ef0fe8ff3ec13d71ef/4Wd8fDFBdT6GxqN6-KzZN.png" alt="overview" width="100%"/></div>
23
+
24
+ ## Evaluation Results
25
+
26
+ We evaluate LCO-Embedding with state-of-the-art embedding models, including E5-V, Voyage Multimodal 3, mmE5, and GME, on a MIEB-Lite benchmark (51 tasks) broken down by task categories.
27
+
28
+ <div align='center'><img src="https://cdn-uploads.huggingface.co/production/uploads/63108cc834c7d77420b0fd68/63WBsKh57HbNwwe3bZ-oZ.png" alt="mieb_lite" width="100%"/></div>
29
+
30
+ Performance and efficiency comparisons of different training strategies using 3B and 7B variants of Qwen2.5-VL backbones.
31
+
32
+ <div align='center'><img src="https://github.com/LCO-Embedding/LCO-Embedding/raw/main/assets/lora_ablation.png" alt="lora_ablation" width="100%"/></div>
33
+
34
+ Scaling relationship between generation benchmark performance (X-axis) and representation benchmark performance after language-centric contrastive learning (Y-axis).
35
+
36
+ <div align='center'><img src="https://github.com/LCO-Embedding/LCO-Embedding/raw/main/assets/scaling.png" alt="scaling_law" width="100%"/></div>
37
+
38
+ ## Citation
39
+
40
+ If you find LCO-Embedding useful for your research and applications, please cite using this BibTeX:
41
+
42
+ ```bibtex
43
+ @misc{xiao2025scaling,
44
+ title={Scaling Language-Centric Omnimodal Representation Learning},
45
+ author={Chenghao Xiao and Hou Pong Chan and Hao Zhang and Weiwen Xu and Mahani Aljunied and Yu Rong},
46
+ year={2025},
47
+ eprint={2510.11693},
48
+ archivePrefix={arXiv},
49
+ primaryClass={cs.CL},
50
+ url={https://arxiv.org/abs/2510.11693},
51
  }
52
  ```