Scientific Data Skills: Enabling Agent-Ready Scientific Data Services at Scale
把科学数据集打包成AI智能体能直接读懂的说明书,让它们自己找数据、用数据
科学数据分散在各种仓库里,文档又是给人看的,导致AI智能体很难自主发现、理解并正确使用这些数据集。研究团队提出了Scientific Data Skill(SciDSK),一种把数据集描述、科学背景、文件结构、使用步骤、质量检查和来源信息打包成可复用智能体技能的标准格式,并配套构建流程和一个覆盖六个学科的在线平台Scientific Data Skill Bank。实验显示,使用SciDSK的智能体在数据集检索和内容解读上都比传统方式更准确。
他们做了什么
- 问题:科学数据分散在不同仓库中,配套文档主要面向人类读者,导致AI智能体难以自主发现相关数据集、理解文件结构、并将其正确用于具体任务
- 方案:SciDSK将数据集描述、科学背景、文件组织、操作指南、质量检查和来源信息整合进一个可复用的智能体技能包,原始数据仍保留在原仓库,只建立关联而不复制
- 结构:每个SciDSK用一个SKILL.md文件,包含供机器读取的YAML头信息(名称、描述、标识符等)用于发现,以及供解读的正文(数据概览、访问方式、字段说明、使用指南、质量检查、来源信息);通过三阶段流程构建并在发布前验证
- 平台:Scientific Data Skill Bank(scidsk.cn)在线发布覆盖物理学、化学、地球科学、生物学、材料科学、计算机科学六个学科的SciDSK资源,每个资源都分配持久标识符CSTR,可与原始数据集相互追溯
- 结果:在104条查询的检索基准测试中,使用已注册SciDSK技能的智能体(Agent-SciDSK)在所有指标上都优于传统元数据检索和把SciDSK当纯文本搜索的方式;在CT影像、人口密度地图、表格图片、社交媒体事件数据四个解读案例中,该方式满足24项评估标准中的23项,而传统数据集页面方式只满足22项

| Dataset Metadata | Dataset Card | Agent Skill | Tool/MCP | SciDSK(Ours) | |
|---|---|---|---|---|---|
| Dataset description | ✓ | ✓ | × | × | ✓ |
| Scientific context | Partial | ✓ | Partial | × | ✓ |
| Task knowledge | × | Partial | ✓ | × | ✓ |
| Operational guidance | × | Partial | ✓ | ✓ | ✓ |
| Agent discovery | Partial | Partial | ✓ | × | ✓ |
| Dataset invocation | × | × | Partial | ✓ | ✓ |

| Method | Hit@1 | Recall@5 | MRR | nDCG@5 |
|---|---|---|---|---|
| BM25-Raw | 47.12 | 69.23 | 57.59 | 59.12 |
| Agent-Raw | 71.15 | 90.38 | 79.04 | 81.90 |
| Agent-SciDSK-Text | 70.19 | 90.38 | 79.01 | 81.92 |
| Agent-SciDSK | 80.77 | 94.23 | 86.41 | 88.40 |

| Evidence condition | Coverage (%) | Satisfied criteria |
|---|---|---|
| ScienceDB page | 91.67 | 22/24 |
| Scientific Data Skill | 95.83 | 23/24 |

| Evidence condition | TIFF sequence interpretation | Reported file-count handling | Pre-use checks | Coverage |
|---|---|---|---|---|
| Dataset information page | Incorrectly described the visible sequence as “200+ slices” | Noted that the visible file tree may be incomplete | Provided general checks for the image sequence and parameters | 5/6 |
| Scientific Data Skill | Correctly identified 196 consecutive slices | Distinguished the reported total from the visible portion while preserving uncertainty | Specified continuity, non-empty-file, readability, parameter-file, and directory-completeness checks | 6/6 |

| Evidence condition | File organization | Cross-file relationship | Validation checks | Coverage |
|---|---|---|---|---|
| Dataset information page | Identified events.txt as the label file and posts.zip as containing event-organized JSON content | Linked event identifiers to event-named JSON files but left corpus-wide completeness unresolved | Suggested general coverage and schema checks without explicit count and label-domain validation | 5/6 |
| Scientific Data Skill | Identified 4,664 labeled events and clearly distinguished the roles of the two files | Specified a one-to-one mapping between event records and event-named JSON files | Required count validation, binary-label checks, archive extraction, orphan detection, and sampled content verification | 6/6 |

为什么重要
AI智能体要在科学研究中真正用上数据,必须先找到合适的数据集、正确理解每个文件的含义、并知道该如何规范使用,而现有文档体系在这三方面都支持不足。这项工作提供了一套具体的规范和可运行的平台,为让科学数据真正可被自主AI系统使用提供了实际的基础设施。

本文术语
- AI智能体 · 能够自主规划并执行多步骤任务、常借助外部工具的AI系统
- SciDSK(Scientific Data Skill) · 将数据集知识和使用方法打包成可供AI智能体复用的表示形式
- 智能体技能(Agent Skill) · 为AI智能体提供特定任务知识和操作指南的模块化、可复用资源
- FAIR原则 · 让数据可被发现、可访问、可互操作、可重用的数据管理准则
- CSTR · 分配给资源的持久标识符,便于独立识别和引用
论文原文摘要(英文)
Scientific data are increasingly used by AI agents, yet existing dataset representations provide limited support for autonomous discovery, interpretation, and invocation. This limitation stems from the fragmentation of scientific data across heterogeneous repositories and from dataset representations designed primarily for human use. To address this limitation, we introduce the Scientific Data Skill (SciDSK), an agent-ready representation that packages dataset-specific knowledge and operational guidance as a reusable agent skill. A SciDSK integrates dataset descriptions, scientific context, file organization, usage procedures, quality checks, and provenance information while retaining the underlying data in its original repository. We define a structured SciDSK specification and develop a systematic construction pipeline that grounds each SciDSK in authoritative dataset records and associated supporting materials. We further establish the Scientific Data Skill Bank, a unified platform that publishes SciDSK resources across six scientific disciplines and supports package access, persistent identification, and traceability to source datasets. We evaluate SciDSK through a retrieval benchmark for dataset discovery and controlled cases for dataset interpretation. The results show that SciDSK improves agent-driven dataset discovery and provides more precise and actionable support for dataset interpretation. These findings support the value of organizing dataset-specific knowledge in an agent-ready representation.
在 arXiv 阅读最新论文
- LoRA-GA$^2$: Low Rank Adaptation with Multi-step Gradient Adaptive Alignment在正式微调前先偷看几步训练的梯度,让LoRA的初始化更聪明
- Remember, Verify, or Ask? Cross-Family Evaluation of Memory Commitment in LLM AgentsAI助手在该向你提问的时候,却更愿意自己去核实事实
- Robust Incomplete Multimodal Sentiment Analysis via Iterative Proxy Correction文本信息缺失或损坏时,这个AI不靠一次性猜测,而是反复修正猜测结果,从而更准确地判断情绪
- Generating Diverse Personas for User Simulators to Test Interview Dialogue Systems要测试访谈式对话系统需要大量不同性格的虚拟用户,这项研究用大语言模型自动生成这些虚拟用户人设
- Rethinking Patch Based Multivariate Time Series Forecasting with Semantic Structured Partitioning别再机械切分时间序列,按语义把它切成有意义的块
- Reliable Financial Named Entity Recognition under Domain ShiftAI在正式文件里学到的自信,一到推特上就变得不可信
- Bringing analytic rigor to agentic AI for science: The Brain Researcher platform for neuroimaging data analysis让AI分析脑影像数据时,把“为什么这个结论可信”也一并记录下来
- GenMatch: An End-to-End Generative Matching Framework for Micro-View Order-Dispatching in Ride-Hailing滴滴把打车派单从预测-计算-匹配三段式流程改成一次生成完成,线上效果提升明显
METAL LAB 最新报道
图片来源: Xiaohan Huang et al., arXiv:2608.19625, arxiv-nonexclusive