fushh7 commited on
Commit
f5f15bd
·
verified ·
1 Parent(s): f24971d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +34 -0
README.md CHANGED
@@ -1,3 +1,37 @@
1
  ---
2
  license: apache-2.0
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: apache-2.0
3
+ tags:
4
+ - multimodal
5
+ - vision-language
6
+ - embeddings
7
+ - image-retrieval
8
+ - visual-grounding
9
  ---
10
+
11
+ # ObjEmbed: Towards Universal Multimodal Object Embeddings
12
+
13
+ [ObjEmbed](https://arxiv.org/abs/2602.01753) is a multimodal embedding model designed to align specific image regions (objects) with textual descriptions. Unlike global embedding models, ObjEmbed decomposes an image into multiple regional embeddings along with global embeddings, supporting tasks such as visual grounding, local image retrieval, and global image retrieval.
14
+
15
+ ## Key Features
16
+
17
+ - **Object-Oriented Representation**: It captures both semantic and spatial aspects of objects by generating two complementary embeddings for each region: an object embedding for semantic matching and an IoU embedding that predicts localization quality.
18
+ - **Versatility**: It seamlessly handles both region-level and image-level tasks.
19
+ - **Efficient Encoding**: All objects in an image, along with the full image, are encoded in a single forward pass for high efficiency.
20
+
21
+ ## Resources
22
+
23
+ - **Paper**: [ObjEmbed: Towards Universal Multimodal Object Embeddings](https://arxiv.org/abs/2602.01753)
24
+ - **Code**: [Official GitHub Repository](https://github.com/WeChatCV/ObjEmbed)
25
+
26
+ ## Citation
27
+
28
+ If you find ObjEmbed helpful for your research, please consider citing:
29
+
30
+ ```bibtex
31
+ @article{fu2026objembed,
32
+ title={ObjEmbed: Towards Universal Multimodal Object Embeddings},
33
+ author={Fu, Shenghao and Su, Yukun and Rao, Fengyun and LYU, Jing and Xie, Xiaohua and Zheng, Wei-Shi},
34
+ journal={arXiv preprint arXiv:2602.01753},
35
+ year={2026}
36
+ }
37
+ ```