BAAI/BGE-VL-Screenshot 已完整同步
Vis-IR: Unifying Search With Visualized Information Retrieval
</a>
<a href="https://github.com/VectorSpaceLab/Vis-IR">
</a>
<a href="https://huggingface.co/datasets/marsh123/VIRA/">
</a>
<a href="https://huggingface.co/datasets/marsh123/MVRB">
</a>
<!--
-->
<a href="https://huggingface.co/marsh123/UniSE">
</a>
News | Release Plan | Overview | License | Citation
News
2025-04-06 🚀🚀 MVRB Dataset are released on Huggingface: MVRB
2025-04-02 🚀🚀 VIRA Dataset are released on Huggingface: VIRA
2025-04-01 🚀🚀 UniSE models are released on Huggingface: UniSE-MLMM
2025-02-17 🎉🎉 Release our paper: Any Information Is Just Worth One Single Screenshot: Unifying Search With Visualized Information Retrieval.
Release Plan
- Paper
- UniSE models
- VIRA Dataset
- MVRB benchmark
- Evaluation code
- Fine-tuning code
Overview
In this work, we formally define an emerging IR paradigm called Visualized Information Retrieval, or VisIR, where multimodal information, such as texts, images, tables and charts, is jointly represented by a unified visual format called Screenshots, for various retrieval applications. We further make three key contributions for VisIR. First, we create VIRA (Vis-IR Aggregation), a large-scale dataset comprising a vast collection of screenshots from diverse sources, carefully curated into captioned and questionanswer formats. Second, we develop UniSE (Universal Screenshot Embeddings), a family of retrieval models that enable screenshots to query or be queried across arbitrary data modalities. Finally, we construct MVRB (Massive Visualized IR Benchmark), a comprehensive benchmark covering a variety of task forms and application scenarios. Through extensive evaluations on MVRB, we highlight the deficiency from existing multimodal retrievers and the substantial improvements made by UniSE.
Model Usage
Using Sentence Transformers
Install Sentence Transformers:
pip install "sentence_transformers[image]"
from sentence_transformers import SentenceTransformer
model = SentenceTransformer("BAAI/BGE-VL-Screenshot")
# Queries: composed image + text inputs (prefix text with "Query:")
query_inputs = [
{"text": "Query:After a 17% drop, what is Nvidia's closing stock price?", "image": "https://huggingface.co/BAAI/BGE-VL-Screenshot/resolve/main/assets/query_1.png"},
{"text": "Query:I would like to see a detailed and intuitive performance comparison between the two models.", "image": "https://huggingface.co/BAAI/BGE-VL-Screenshot/resolve/main/assets/query_2.png"},
]
query_embeddings = model.encode_query(query_inputs)
print(query_embeddings.shape)
# (2, 2048)
# Candidates: screenshot images
candidate_inputs = [
"https://huggingface
26 个文件
浏览文件数据集版权信息
本数据集的许可证为 MIT License。如有违反相关条款,请联系 WEHUB,我们将及时处理。 查看许可证
通过 WeHub CLI 下载当前数据集快照。下列命令会固定为当前页面展示的数据版本(如果页面提供版本)。文件字节由本机直连存储下载,浏览器不会签发或保存下载链接。
前置要求
需要 Node.js 18 及以上,以及 npm(或 npx)。
1. 安装 CLI
npm install -g wehub-cli@latest
2. 下载此数据集
wehub datasets download ds_ext_4026_fcb8fdd096 --revision 2b0f1cd3e4acf66be759d840954e0c9f1c9a42cf --output ./ds_ext_4026_fcb8fdd096
若中断或部分失败,在同一目录重新执行同一命令即可续传。默认会校验 SHA-256。
免全局安装
npx --yes wehub-cli@latest datasets download ds_ext_4026_fcb8fdd096 --revision 2b0f1cd3e4acf66be759d840954e0c9f1c9a42cf --output ./ds_ext_4026_fcb8fdd096
高级选项
以下为 wehub datasets download 已支持的参数示例:
强制重新下载,不复用已校验的本地文件
wehub datasets download ds_ext_4026_fcb8fdd096 --revision 2b0f1cd3e4acf66be759d840954e0c9f1c9a42cf --output ./ds_ext_4026_fcb8fdd096 --overwrite
仅包含匹配路径
wehub datasets download ds_ext_4026_fcb8fdd096 --revision 2b0f1cd3e4acf66be759d840954e0c9f1c9a42cf --output ./ds_ext_4026_fcb8fdd096 --include "*.jsonl"
排除匹配路径
wehub datasets download ds_ext_4026_fcb8fdd096 --revision 2b0f1cd3e4acf66be759d840954e0c9f1c9a42cf --output ./ds_ext_4026_fcb8fdd096 --exclude "*.md"
提高并发下载数
wehub datasets download ds_ext_4026_fcb8fdd096 --revision 2b0f1cd3e4acf66be759d840954e0c9f1c9a42cf --output ./ds_ext_4026_fcb8fdd096 --jobs 8
完整帮助:wehub datasets download --help