Dataset Viewer
Duplicate
The dataset viewer is not available for this split.
The size of the content of the first rows (247968 B) exceeds the maximum supported size (200000 B) even after truncation. Please report the issue.
Error code:   TooBigContentError

Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.

工业手工具检索选型评测集 (Industrial Hand Tools Benchmark)

1. 数据集简介

本数据集是一个针对工业领域(具体为手工具类目)设计的 Rerank(重排序)选型(Selection) 基准测试集。 在工业 B2B 场景中,用户往往会输入包含复杂参数(如:规格、材质、尺寸)的查询词。模型需要从召回的多个候选 SKU 中,精准识别出完全符合所有参数要求的正确商品。

2. 数据结构 (Schema)

数据集包含以下核心字段:

字段名 类型 说明
query_text String 用户的原始非结构化查询词。
ReqmProName String 从 Query 中提取或推断出的产品标准名称。
recall_sku Dictionary 召回的候选池,Key 为随机 ID,Value 包含 SKU 的详细属性(品牌、规格、型号等)。
expect_recommended_sku List 标准答案。候选池中符合用户需求的正确 SKU ID 列表。

3. 评测目标

  • 精确性:模型是否能区分细微的规格差异(例如:4100mm 与 4150mm 的螺丝刀)。
  • 语义理解:模型是否能理解工业领域的专业术语和简写。

4. 如何使用

你可以使用 Hugging Face 的 datasets 库快速加载本数据集:

加载验证集 (用于调试 Prompt)

from datasets import load_dataset

dataset = load_dataset("jing666888/mro-benchmark-demo1", split="validation")
print(dataset[0])
Downloads last month
6