Air-Chat
收藏资源简介:
Air Chat 是一个小规模的俄语对话数据集,包含少于 1000 个样本。每个样本由用户问题(question)和助手回答(answer)组成,数据以 JSONL 格式存储。该数据集可用于训练俄语对话模型、问答系统或聊天机器人,支持通过 Hugging Face Datasets 库加载俄语版本。数据采用 CC-BY-4.0 许可证,允许自由使用和分享。
Air Chat is a small-scale Russian dialogue dataset containing fewer than 1000 samples. Each sample consists of a user question and an assistant answer, stored in JSONL format. The dataset can be used to train Russian dialogue models, question-answering systems, or chatbots, and supports loading the Russian version via the Hugging Face Datasets library. The data is licensed under CC-BY-4.0, allowing free use and sharing.
数据集概述:Air Chat
- 数据集名称:Air Chat
- 版本:0.1
- 许可证:cc-by-4.0
- 语言:俄语(ru)、英语(en)
- 标签:jsonl
- 数据规模:小于 1,000 条(n<1K)
- 存储大小:约 7.01 kB
数据格式
每个数据条目包含两个字段:
question:用户提出的问题answer:助手给出的回答
示例: json {"question": "Hello!", "answer": "Hello to you too!"}
文件结构
数据以 JSONL 格式存储,目录结构如下:
dialogue_dataset/ ├── README.md ├── dataset_infos.json ├── data/ │ ├── ru/ │ │ └── train-ru-00001-of-00001.jsonl │ └── en/ │ └── train-en-00001-of-00001.jsonl └── .gitattributes
加载方式
可通过 load_dataset 分别加载俄语、英语版本,或同时加载所有版本:
python
加载俄语版本
dataset = load_dataset("Vladimir0-1/Air-Chat", "ru")
加载英语版本
dataset = load_dataset("Vladimir0-1/Air-Chat", "en")
加载所有版本
dataset = load_dataset("Vladimir0-1/Air-Chat")




