llm2vec-gen-echo-rewritten-w-hard-negative
收藏资源简介:
该数据集包含多个数据分割版本(原始版本及4个Qwen3模型变体版本),每个分割均包含1433721个样本。数据集采用MIT许可协议,包含五个字符串类型的字段:id(标识符)、question(问题)、answer(答案)、negative_question(负面问题)和negative_answer(负面答案)。原始分割大小为2.04GB,各模型变体分割大小介于1.80GB至3.86GB之间,总数据集规模达14.17GB。数据适用于需要正负样本对比的自然语言处理任务,如问答系统优化、文本对抗训练等场景。
This dataset comprises multiple data splits, including the original version and 4 variant versions of the Qwen3 model. Each split contains 1,433,721 samples. The dataset is licensed under the MIT License and features five string-type fields: `id` (identifier), `question`, `answer`, `negative_question`, and `negative_answer`. The original split has a size of 2.04 GB, while the sizes of the model variant splits range from 1.80 GB to 3.86 GB, resulting in a total dataset size of 14.17 GB. This dataset is suitable for natural language processing tasks that require positive and negative sample comparison, such as question answering system optimization, text adversarial training, and other relevant application scenarios.
LLM2Vec-Gen-Echo-Rewritten-w-Hard-Negative 数据集概述
数据集基本信息
- 数据集名称: LLM2Vec-Gen-Echo-Rewritten-w-Hard-Negative
- 托管地址: https://huggingface.co/datasets/McGill-NLP/llm2vec-gen-echo-rewritten-w-hard-negative
- 许可证: MIT
- 总下载大小: 7,578,062,600 字节
- 总数据集大小: 14,168,874,701 字节
数据来源与目的
- 数据基于 Echo 数据生成,原始 Echo 数据来源为:https://openreview.net/forum?id=Ahlrf2HGJR
- 指令和查询已使用 Gemini 重写为自然语调。
- 生成内容旨在用于训练 LLM2Vec-Gen 模型,作为查询的目标输出。
数据集结构与内容
数据特征
每个数据实例包含以下字段:
id: 原始 ID。question: 经过重写的原始查询。answer: 由指定模型生成的文本。negative_question: 由 Gemini 生成的负向查询。negative_answer: 由指定模型生成的文本。
数据分片
数据集包含以下五个分片,每个分片均包含 1,433,721 个示例:
| 分片名称 | 描述 | 数据大小(字节) | 示例数量 |
|---|---|---|---|
original |
原始的 Tulu-3 响应。 | 2,040,994,271 | 1,433,721 |
Qwen3_06B |
由 Qwen3-6B 模型生成的响应。 | 1,801,709,124 | 1,433,721 |
Qwen3_17B |
由 Qwen3-17B 模型生成的响应。 | 3,312,577,277 | 1,433,721 |
Qwen3_4B |
由 Qwen3-4B 模型生成的响应。 | 3,856,167,238 | 1,433,721 |
Qwen3_8B |
由 Qwen3-8B 模型生成的响应。 | 3,157,426,791 | 1,433,721 |
使用方法
可以使用 Hugging Face datasets 库加载数据集。例如,加载 Qwen3_4B 分片:
python
from datasets import load_dataset
dataset = load_dataset("McGill-NLP/llm2vec-gen-echo-rewritten-w-hard-negative", split="Qwen3_4B")



