plaguss/dolly_tutorial
收藏数据集概述
名称: dolly_tutorial
大小: 10K<n<100K
标签:
- rlfh
- argilla
- human-feedback
创建工具: Argilla
数据集内容
- 配置文件:
argilla.yaml,符合Argilla数据集格式。 - 数据记录: 兼容HuggingFace
datasets格式。 - 标注指南: 如有定义,可在标注指南部分找到。
加载方式
-
使用Argilla: python import argilla as rg ds = rg.FeedbackDataset.from_huggingface("plaguss/dolly_tutorial")
-
使用
datasets库: python from datasets import load_dataset ds = load_dataset("plaguss/dolly_tutorial")
数据结构
-
字段:
- category (TextField)
- instruction (TextField)
- context (TextField)
- response (TextField)
-
问题:
- final-instruction (TextQuestion)
- final-context (TextQuestion)
- final-response (TextQuestion)
-
建议:
- final-instruction-suggestion (text)
- final-context-suggestion (text)
- final-response-suggestion (text)
-
外部ID: external_id (可选)
数据实例
-
Argilla格式示例: json { "external_id": "6", "fields": { "category": "closed_qa", "context": "...", "instruction": "...", "response": "..." }, "id": "...", "metadata": {}, "responses": [], "suggestions": [] }
-
HuggingFace
datasets格式示例: json { "category": "closed_qa", "context": "...", "external_id": "6", "final-context": null, "final-context-suggestion": null, "final-context-suggestion-metadata": { "agent": null, "score": null, "type": null }, "final-instruction": null, "final-instruction-suggestion": null, "final-instruction-suggestion-metadata": { "agent": null, "score": null, "type": null }, "final-response": null, "final-response-suggestion": null, "final-response-suggestion-metadata": { "agent": null, "score": null, "type": null }, "instruction": "...", "metadata": null, "response": "..." }
数据分割
- 分割:
train



