Update README.md
Browse files
README.md
CHANGED
|
@@ -24,15 +24,15 @@ configs:
|
|
| 24 |
|
| 25 |
<div align="center">
|
| 26 |
|
| 27 |
-
<h1>
|
| 28 |
|
| 29 |
-
<img src="logo.png" alt="
|
| 30 |
|
| 31 |
<br/>
|
| 32 |
<br/>
|
| 33 |
|
| 34 |
-
[
|
| 37 |

|
| 38 |
|
|
@@ -50,20 +50,20 @@ With the emergence of end-to-end agents like OpenClaw, data analysis is no longe
|
|
| 50 |
|
| 51 |
This means the core difficulty of a benchmark has shifted from answer generation alone to full agent-driven execution. A truly valuable data-analysis benchmark must test not only whether the final answer is correct, but also whether the agent can reliably complete a series of steps — retrieval, filtering, computation, verification, and constraint compliance — in complex data environments.
|
| 52 |
|
| 53 |
-
|
| 54 |
|
| 55 |
-
## 🔍 What Is
|
| 56 |
|
| 57 |
-
|
| 58 |
|
| 59 |
-
|
| 60 |
|
| 61 |
|
| 62 |
-
## 🎯 Why
|
| 63 |
|
| 64 |
-
- **From idealized data environments to imperfect real-world data environments.**
|
| 65 |
-
- **From single-shot static queries to multi-step dynamic reasoning.**
|
| 66 |
-
- **From outcome-oriented evaluation to process-oriented evaluation.**
|
| 67 |
|
| 68 |
## 🏗️ Repository Layout
|
| 69 |
|
|
@@ -104,7 +104,7 @@ Host (dataclaw/eval/run_batch.py)
|
|
| 104 |
|
| 105 |
### 1. Obtain the Pre-built Image
|
| 106 |
|
| 107 |
-
Download the pre-built image tarball from **[
|
| 108 |
|
| 109 |
```bash
|
| 110 |
docker load -i dataclaw_ubuntu_v0.1.0.tar
|
|
@@ -240,7 +240,7 @@ output/summary_<model>.json
|
|
| 240 |
|
| 241 |
### 7. Grading Rules
|
| 242 |
|
| 243 |
-
|
| 244 |
|
| 245 |
| Metric | Definition | Scope | Direction |
|
| 246 |
| --- | --- | --- | --- |
|
|
@@ -293,7 +293,7 @@ docker ps -a --filter "ancestor=${IMAGE}" --format "{{.Names}}\t{{.Status}}"
|
|
| 293 |
|
| 294 |
## 📊 Dataset Statistics
|
| 295 |
|
| 296 |
-
|
| 297 |
|
| 298 |
### 🗂️ Data Environment Statistics
|
| 299 |
|
|
@@ -379,7 +379,7 @@ The current version contains **492** tasks across **7** categories, with an over
|
|
| 379 |
|
| 380 |
## 🙏 Acknowledgements
|
| 381 |
|
| 382 |
-
|
| 383 |
|
| 384 |
This project also builds on excellent open-source agent ecosystems. We gratefully acknowledge:
|
| 385 |
|
|
|
|
| 24 |
|
| 25 |
<div align="center">
|
| 26 |
|
| 27 |
+
<h1>DataClawBench</h1>
|
| 28 |
|
| 29 |
+
<img src="logo.png" alt="DataClawBench Logo" width="220"/>
|
| 30 |
|
| 31 |
<br/>
|
| 32 |
<br/>
|
| 33 |
|
| 34 |
+
[](https://gtmllab.github.io/DataClaw/)
|
| 35 |
+
[](https://github.com/GTML-LAB-sysu/DataClaw)
|
| 36 |

|
| 37 |

|
| 38 |
|
|
|
|
| 50 |
|
| 51 |
This means the core difficulty of a benchmark has shifted from answer generation alone to full agent-driven execution. A truly valuable data-analysis benchmark must test not only whether the final answer is correct, but also whether the agent can reliably complete a series of steps — retrieval, filtering, computation, verification, and constraint compliance — in complex data environments.
|
| 52 |
|
| 53 |
+
DataClawBench is designed for exactly this shift. It evaluates not abstract capability divorced from execution, but how OpenClaw-style end-to-end agents actually perform on data analysis tasks under real data conditions, explicit task constraints, and a reproducible execution protocol.
|
| 54 |
|
| 55 |
+
## 🔍 What Is DataClawBench?
|
| 56 |
|
| 57 |
+
DataClawBench is a process-oriented data-analysis benchmark for realistic, complex data environments. Its core goal is not merely to measure agents' end-task performance, but to serve as a high-fidelity testbed that also evaluates, at fine granularity, how agents evolve when facing real-world complexity and multi-step reasoning.
|
| 58 |
|
| 59 |
+
DataClawBench simulates at scale the noisy, weakly-semantic, cross-domain data environments found in the real world. Complex data-analysis questions are authored by domain experts in finance and computer science, and each task's process annotations and unique objective answers are cross-verified by human experts with AI assistance. Process annotations include task milestones, human-corrected reference trajectories, and evidence data sources. DataClaw adopts OpenClaw as its unified agent framework.
|
| 60 |
|
| 61 |
|
| 62 |
+
## 🎯 Why DataClawBench?
|
| 63 |
|
| 64 |
+
- **From idealized data environments to imperfect real-world data environments.** DataClawBench contains a mix of structured and unstructured data, covering enterprise profiles, business operating status, regional industry statistics, national industry statistics, and policy texts. All data is collected from the real world and comes with friction such as missing indicators, inconsistent definitions, and inconsistent naming. Tasks face realistic data environments, not over-cleaned single-table lookups.
|
| 65 |
+
- **From single-shot static queries to multi-step dynamic reasoning.** DataClawBench tasks typically require agents to complete a multi-stage chain of operations rather than producing a one-shot answer. The challenge for agents comes not only from retrieval but also from cross-source integration, metric construction, aggregation computation, and format constraint compliance.
|
| 66 |
+
- **From outcome-oriented evaluation to process-oriented evaluation.** DataClawBench goes beyond simple outcome-accuracy evaluation and dissects how the agent's execution unfolds at fine granularity. Outcome-oriented evaluation paradigms focus only on final accuracy. This black-box approach ignores intermediate reasoning and provides little actionable signal for guiding optimization.
|
| 67 |
|
| 68 |
## 🏗️ Repository Layout
|
| 69 |
|
|
|
|
| 104 |
|
| 105 |
### 1. Obtain the Pre-built Image
|
| 106 |
|
| 107 |
+
Download the pre-built image tarball from **[DataClawBench v0.1.0](https://github.com/GTML-LAB-sysu/DataClaw/releases/tag/dataclaw-v0.1.0)** (asset `dataclaw_ubuntu_v0.1.0.tar`), then load it:
|
| 108 |
|
| 109 |
```bash
|
| 110 |
docker load -i dataclaw_ubuntu_v0.1.0.tar
|
|
|
|
| 240 |
|
| 241 |
### 7. Grading Rules
|
| 242 |
|
| 243 |
+
DataClawBench scores each run along **four metrics**.
|
| 244 |
|
| 245 |
| Metric | Definition | Scope | Direction |
|
| 246 |
| --- | --- | --- | --- |
|
|
|
|
| 293 |
|
| 294 |
## 📊 Dataset Statistics
|
| 295 |
|
| 296 |
+
DataClawBench's data does not come from synthetic samples or teaching examples; it is built on the publishing team's long-term, front-line data accumulation and industry insights from research on Chinese enterprises, industries, and policies. The current version is mainly based on data from 2022. After necessary de-identification, tasks are constructed to avoid model knowledge leakage as much as possible while preserving the information noise and data friction found in real business settings. Task authoring and annotation are conducted by a professional team from Lingnan College, Sun Yat-sen University, balancing academic rigor and practical usability.
|
| 297 |
|
| 298 |
### 🗂️ Data Environment Statistics
|
| 299 |
|
|
|
|
| 379 |
|
| 380 |
## 🙏 Acknowledgements
|
| 381 |
|
| 382 |
+
DataClawBench is jointly released by Prof. Chuan Chen's team at the School of Computer Science, Sun Yat-sen University, and the Southern Weekly Sci-Tech Power Research Center. We sincerely thank the Southern Weekly Sci-Tech Power Research Center for providing invaluable data and tremendous support.
|
| 383 |
|
| 384 |
This project also builds on excellent open-source agent ecosystems. We gratefully acknowledge:
|
| 385 |
|