albedo
收藏资源简介:
albedo 是一个包含 SWE-agent 参考轨迹的数据集,这些轨迹源自 SN97 (albedo) 评估。数据集以聊天格式组织样本,每一行代表一个独立样本。每个样本包含两个核心字段:sample_id 用于唯一标识样本来源(格式为 `<数据集>/<分片>.parquet:<行号>:<轮次>`);messages 是一个消息列表,其中依次包含系统提示、用户任务(由 PR 描述和指令组成),以及交替出现的助手参考步骤和用户环境观察结果。数据集根据不同的参考模型划分为多个子集(split),包括 glm_5_2、gpt_5_6_luna 和 mimo_v2_5_pro。每个子集的数据存储在 Parquet 文件中,每个文件固定包含 100 个样本,随着评估工作的进行会持续追加新的文件。该数据集适用于软件工程代理(SWE-agent)的评估、训练或行为分析等任务。
albedo is a dataset containing reference trajectories for SWE-agent, derived from the SN97 (albedo) evaluation. The dataset organizes samples in a chat format, with each line representing an independent sample. Each sample includes two core fields: sample_id uniquely identifies the sample source (formatted as `<dataset>/<shard>.parquet:<row_number>:<round>`); messages is a list of messages that sequentially contain system prompts, user tasks (composed of PR descriptions and instructions), and alternating assistant reference steps and user environmental observations. The dataset is divided into multiple subsets (splits) based on different reference models, including glm_5_2, gpt_5_6_luna, and mimo_v2_5_pro. Data for each subset is stored in Parquet files, with each file fixed to contain 100 samples, and new files are continuously appended as the evaluation work progresses. This dataset is suitable for tasks such as evaluation, training, or behavioral analysis of software engineering agents (SWE-agent).
数据集名称
albedo
数据集简介
albedo数据集包含来自SN97(albedo)评估的参考轨迹数据,每一行代表一个聊天格式的样本。
数据集配置与文件结构
- 配置名称:
default - 数据文件:
glm_5_2分片路径:data/glm_5_2/*.parquetgpt_5_6_luna分片路径:data/gpt_5_6_luna/*.parquetmimo_v2_5_pro分片路径:data/mimo_v2_5_pro/*.parquet
每个分片对应一个参考模型,每个Parquet文件包含恰好100个样本,新文件会在评估完成后追加。
数据字段说明
sample_id: 源分片和数据行标识,格式为<dataset>/<shard>.parquet:<row>:<turn>。messages: 一个包含role和content字段的列表,结构如下:- 系统提示(
system) - 用户任务(
user),包含PR描述和指令 - 交替的参考步骤(
assistant)和用户环境观察(user)
- 系统提示(
使用示例
python from datasets import load_dataset
ds = load_dataset("dendriteholdings/albedo", split="glm_5_2") print(ds[0]["messages"][0])




