rlhn-680K-qwen3-reranker-8b
收藏资源简介:
RLHN-680K — Qwen3-Reranker-8B教师分数(top-200)是一个专为重排序模型知识蒸馏设计的训练数据集。它构成了Tevatron 3.0工具包中列表式KL重排序器蒸馏所使用的训练集。该数据集基于RLHN-680K数据集,为其中的每个查询配对了其候选段落(最多前200个),并利用Qwen3-Reranker-8B模型为每个段落生成了一个教师相关性分数,作为蒸馏训练中的软目标。数据集包含646,588个样本,每个样本包含以下字段:查询ID(query_id)、查询文本(query)、候选段落列表(passages,每个段落包含标题和文本)以及与段落顺序严格对齐的教师分数列表(scores)。教师分数由Qwen3-Reranker-8B模型生成,采用是/否逻辑对数几率形式,分数越高表示段落与查询越相关,分数值可能为负数。这些分数作为软标签,用于列表式KL散度或排序蒸馏任务。
RLHN-680K — Qwen3-Reranker-8B Teacher Scores (top-200) is a training dataset specifically designed for knowledge distillation of reranking models. It serves as the training set for listwise KL reranker distillation in the Tevatron 3.0 toolkit. Based on the RLHN-680K dataset, it pairs each query with its candidate passages (up to the top 200) and uses the Qwen3-Reranker-8B model to generate a teacher relevance score for each passage as a soft target in distillation training. The dataset contains 646,588 samples, each including the following fields: query ID (query_id), query text (query), a list of candidate passages (each passage containing a title and text), and a list of teacher scores (scores) strictly aligned with the passage order. The teacher scores are generated by the Qwen3-Reranker-8B model in the form of yes/no log odds, where higher scores indicate greater relevance of the passage to the query, and the scores may be negative. These scores act as soft labels for listwise KL divergence or ranking distillation tasks.
数据集概述
数据集名称: RLHN-680K — Qwen3-Reranker-8B teacher scores (top-200)
许可协议: Apache-2.0
任务类别: 文本排序(text-ranking)
语言: 英语
标签: 重排序器(reranker)、知识蒸馏(distillation)、Tevatron、信息检索(information-retrieval)
数据集描述
该数据集是 Tevatron 3.0 在 listwise-KL 重排序器蒸馏过程中使用的蒸馏训练集。它基于 RLHN-680K 数据集,为每个查询配对了候选段落,并提供了由 Qwen3-Reranker-8B 模型生成的每个段落的教师相关性评分,作为蒸馏任务所需的软目标。
数据模式
| 字段 | 类型 | 描述 |
|---|---|---|
query_id |
字符串 | RLHN 查询 ID |
query |
字符串 | 查询文本 |
passages |
列表(包含 title 和 text) |
候选段落(最多前 200 个) |
scores |
浮点数列表 | 每个段落的教师评分,与 passages 顺序对齐 |
数据集规模
- 行数: 646,588
评分说明
- 教师模型: Qwen3-Reranker-8B(采用 yes/no log-odds 方法;值越高表示相关性越强,可能为负值)。
- 评分语义:
scores[i]对应passages[i]的教师相关性评分,可用作 listwise KL / 排序蒸馏的软标签。
使用方法
python from datasets import load_dataset ds = load_dataset("brutusxu/rlhn-680K-qwen3-reranker-8b-top200", split="train") row = ds[0] for p, s in zip(row["passages"], row["scores"]): print(s, p["text"][:80])
引用说明
请引用 Tevatron 工具包和原始的 RLHN-680K 数据集。




