HuggingFace镜像/inf-retriever-v1-pro
模型介绍文件和版本分析
下载使用量0

inf-retriever-v1-pro

Rank Hugging Face License

📖 概述

inf-retriever-v1-pro 是 INF-X-Retriever 框架的专用检索组件,旨在从复杂、冗长或推理密集型查询中提取核心检索意图。它以 inf-retriever-v1 为基础构建,并经过进一步训练,可作为检索增强生成(RAG)系统中的检索器,将原始用户查询转换为简洁、搜索优化的查询,供密集检索系统使用。

在我们的实验中,所有数据集均采用单一标准查询编写提示,以确保结果的一致性和可复现性。

task = 'Given a web search query, retrieve relevant passages that answer the query'

该模型是INF-X-Retriever实现顶尖性能的关键赋能因素,目前在BRIGHT Benchmark上位列第一(截至2025年12月17日)。

有关完整框架的更多详情,请访问INF-X-Retriever Repository。


要求

transformers==4.51.0

使用方法

句子转换器

from sentence_transformers import SentenceTransformer

model = SentenceTransformer("infly/inf-retriever-v1", trust_remote_code=True)
# In case you want to reduce the maximum length:
model.max_seq_length = 8192

queries = [
    "how much protein should a female eat",
    "summit define",
]
documents = [
    "As a general guideline, the CDC's average requirement of protein for women ages 19 to 70 is 46 grams per day. But, as you can see from this chart, you'll need to increase that if you're expecting or training for a marathon. Check out the chart below to see how much protein you should be eating each day.",
    "Definition of summit for English Language Learners. : 1  the highest point of a mountain : the top of a mountain. : 2  the highest level. : 3  a meeting or series of meetings between the leaders of two or more governments.",
]

query_embeddings = model.encode(queries, prompt_name="query")
document_embeddings = model.encode(documents)

scores = (query_embeddings @ document_embeddings.T) * 100
print(scores.tolist())
# [[91.46116638183594, 76.9832992553711], [70.7034683227539, 87.15817260742188]]

转换器

import torch
import torch.nn.functional as F

from torch import Tensor
from transformers import AutoTokenizer, AutoModel


def last_token_pool(last_hidden_states: Tensor,
                 attention_mask: Tensor) -> Tensor:
    left_padding = (attention_mask[:, -1].sum() == attention_mask.shape[0])
    if left_padding:
        return last_hidden_states[:, -1]
    else:
        sequence_lengths = attention_mask.sum(dim=1) - 1
        batch_size = last_hidden_states.shape[0]
        return last_hidden_states[torch.arange(batch_size, device=last_hidden_states.device), sequence_lengths]


def get_detailed_instruct(task_description: str, query: str) -> str:
    return f'Instruct: {task_description}\nQuery: {query}'


# Each query must come with a one-sentence instruction that describes the task
task = 'Given a web search query, retrieve relevant passages that answer the query'
queries = [
    get_detailed_instruct(task, 'how much protein should a female eat'),
    get_detailed_instruct(task, 'summit define')
]
# No need to add instruction for retrieval documents
documents = [
    "As a general guideline, the CDC's average requirement of protein for women ages 19 to 70 is 46 grams per day. But, as you can see from this chart, you'll need to increase that if you're expecting or training for a marathon. Check out the chart below to see how much protein you should be eating each day.",
    "Definition of summit for English Language Learners. : 1  the highest point of a mountain : the top of a mountain. : 2  the highest level. : 3  a meeting or series of meetings between the leaders of two or more governments."
]
input_texts = queries + documents

tokenizer = AutoTokenizer.from_pretrained('infly/inf-retriever-v1', trust_remote_code=True)
model = AutoModel.from_pretrained('infly/inf-retriever-v1', trust_remote_code=True)

max_length = 8192

# Tokenize the input texts
batch_dict = tokenizer(input_texts, max_length=max_length, padding=True, truncation=True, return_tensors='pt')
outputs = model(**batch_dict)
embeddings = last_token_pool(outputs.last_hidden_state, batch_dict['attention_mask'])

# normalize embeddings
embeddings = F.normalize(embeddings, p=2, dim=1)
scores = (embeddings[:2] @ embeddings[2:].T) * 100
print(scores.tolist())
# [[91.46114349365234, 76.98332214355469], [70.7035140991211, 87.158203125]]

性能表现

INF-X-Retriever 在 BRIGHT Benchmark 上取得了最先进的结果(截至2025年12月20日)。

BRIGHT(推理密集型接地HT基准测试)是一项严格的文本检索基准测试,旨在评估检索模型处理需要深入推理和跨文档综合的问题的能力。该基准测试的内容来源于StackExchange、编程竞赛平台和数学竞赛等真实场景,包含数学、编码、生物学、经济学和机器人学等多个领域的复杂查询。

短文档

总体及分类性能

模型平均ALLStackExchange编程定理类
INF-X-Retriever63.468.355.357.7
DIVER (v3)46.851.839.939.7
BGE-Reasoner-092846.452.035.340.7
LATTICE42.151.626.930.0
ReasonRank40.846.927.635.5
XDR240.347.128.532.1

12个数据集的详细结果

模型平均生物学地球科学经济学心理学机器人学StackExchange可持续性LeetCodePonyAoPS定理问题定理证明
INF-X-Retriever63.479.870.969.973.357.764.361.956.154.551.953.167.9
DIVER (v3)46.866.063.742.455.040.644.750.432.547.317.246.455.6
BGE-Reasoner-092846.468.566.440.653.143.244.147.829.041.617.246.558.4
LATTICE42.164.462.445.457.447.637.646.419.934.012.030.147.8
ReasonRank40.862.755.536.754.635.738.044.829.525.614.442.050.1
XDR240.363.155.438.552.937.138.244.621.935.015.734.446.2

长文档

8个数据集的详细结果

模型平均值生物学地球科学经济学小马心理学机器人学技术问答可持续性
INF-X-Retriever54.673.259.669.312.174.355.927.864.8
inf-retriever-v1-pro30.544.142.231.40.443.120.821.441.0

🖊️ 引用

如果您觉得本模型有用,请考虑引用我们的研究成果:

@misc{inf-x-retriever-2025,
    title        = {INF-X-Retriever},
    author       = {Yichen Yao, Jiahe Wan, Yuxin Hong, Mengna Zhang, Junhan Yang, Zhouyu Jiang, Qing Xu, Kuan Lu, Yinghui Xu, Wei Chu, Emma Wang, Yuan Qi},
    year         = {2025},
    url          = {https://yaoyichen.github.io/INF-X-Retriever},
    publisher    = {GitHub repository}
}

📬 联系方式

邮箱:eason.yyc@inftech.ai