Update dataset to 300 tasks: general(161), multimodal(101), multi-turn(38)
Browse files- Add multi-turn split (38 C-series user_agent tasks)
- Expand general split from 104 to 161 tasks
- Expand multimodal split from 35 to 101 tasks
- Update fixtures.tar.gz with all task fixtures
- .gitattributes +1 -0
- README.md +13 -9
- data/fixtures.tar.gz +2 -2
- data/general-00000-of-00001.parquet +2 -2
- data/multi-turn-00000-of-00001.parquet +3 -0
- data/multimodal-00000-of-00001.parquet +2 -2
.gitattributes
CHANGED
|
@@ -58,3 +58,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 58 |
# Video files - compressed
|
| 59 |
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 60 |
*.webm filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 58 |
# Video files - compressed
|
| 59 |
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 60 |
*.webm filter=lfs diff=lfs merge=lfs -text
|
| 61 |
+
*.tar.gz filter=lfs diff=lfs merge=lfs -text
|
README.md
CHANGED
|
@@ -11,17 +11,18 @@ dataset_info:
|
|
| 11 |
dtype: string
|
| 12 |
- name: category
|
| 13 |
dtype: string
|
| 14 |
-
- name: rubric
|
| 15 |
-
dtype: large_string
|
| 16 |
splits:
|
| 17 |
- name: general
|
| 18 |
num_bytes: 200118
|
| 19 |
-
num_examples:
|
| 20 |
- name: multimodal
|
| 21 |
num_bytes: 72393
|
| 22 |
-
num_examples:
|
|
|
|
|
|
|
|
|
|
| 23 |
download_size: 155773
|
| 24 |
-
dataset_size:
|
| 25 |
configs:
|
| 26 |
- config_name: default
|
| 27 |
data_files:
|
|
@@ -29,6 +30,8 @@ configs:
|
|
| 29 |
path: data/general-*
|
| 30 |
- split: multimodal
|
| 31 |
path: data/multimodal-*
|
|
|
|
|
|
|
| 32 |
language:
|
| 33 |
- en
|
| 34 |
- zh
|
|
@@ -49,7 +52,7 @@ size_categories:
|
|
| 49 |
|
| 50 |
<img src="assets/claw_eval.png" alt="Claw-Eval Logo" width="200">
|
| 51 |
|
| 52 |
-
[](https://claw-eval.github.io)
|
| 54 |
[](https://claw-eval.github.io)
|
| 55 |
[](https://github.com/claw-eval/claw-eval/blob/main/LICENSE)
|
|
@@ -68,8 +71,9 @@ size_categories:
|
|
| 68 |
|
| 69 |
| Split | Examples | Description |
|
| 70 |
|---|---:|---|
|
| 71 |
-
| `general` |
|
| 72 |
-
| `multimodal` |
|
|
|
|
| 73 |
|
| 74 |
### Fields
|
| 75 |
|
|
@@ -80,7 +84,6 @@ size_categories:
|
|
| 80 |
| `fixture` | list[string] | Fixture files required for the task (available in `data/fixtures.tar.gz`) |
|
| 81 |
| `language` | string | Task language (`en` or `zh`) |
|
| 82 |
| `category` | string | Task domain |
|
| 83 |
-
| `rubric` | string | Detailed evaluation criteria with weighted scoring |
|
| 84 |
|
| 85 |
## Usage
|
| 86 |
|
|
@@ -93,6 +96,7 @@ dataset = load_dataset("claw-eval/Claw-Eval")
|
|
| 93 |
# Load a specific split
|
| 94 |
general = load_dataset("claw-eval/Claw-Eval", split="general")
|
| 95 |
multimodal = load_dataset("claw-eval/Claw-Eval", split="multimodal")
|
|
|
|
| 96 |
|
| 97 |
# Inspect a sample
|
| 98 |
print(general[0])
|
|
|
|
| 11 |
dtype: string
|
| 12 |
- name: category
|
| 13 |
dtype: string
|
|
|
|
|
|
|
| 14 |
splits:
|
| 15 |
- name: general
|
| 16 |
num_bytes: 200118
|
| 17 |
+
num_examples: 161
|
| 18 |
- name: multimodal
|
| 19 |
num_bytes: 72393
|
| 20 |
+
num_examples: 101
|
| 21 |
+
- name: multi-turn
|
| 22 |
+
num_bytes: 50000
|
| 23 |
+
num_examples: 38
|
| 24 |
download_size: 155773
|
| 25 |
+
dataset_size: 322511
|
| 26 |
configs:
|
| 27 |
- config_name: default
|
| 28 |
data_files:
|
|
|
|
| 30 |
path: data/general-*
|
| 31 |
- split: multimodal
|
| 32 |
path: data/multimodal-*
|
| 33 |
+
- split: multi-turn
|
| 34 |
+
path: data/multi-turn-*
|
| 35 |
language:
|
| 36 |
- en
|
| 37 |
- zh
|
|
|
|
| 52 |
|
| 53 |
<img src="assets/claw_eval.png" alt="Claw-Eval Logo" width="200">
|
| 54 |
|
| 55 |
+
[](#dataset-structure)
|
| 56 |
[](https://claw-eval.github.io)
|
| 57 |
[](https://claw-eval.github.io)
|
| 58 |
[](https://github.com/claw-eval/claw-eval/blob/main/LICENSE)
|
|
|
|
| 71 |
|
| 72 |
| Split | Examples | Description |
|
| 73 |
|---|---:|---|
|
| 74 |
+
| `general` | 161 | Core agent tasks across 24 categories (communication, finance, ops, productivity, etc.) |
|
| 75 |
+
| `multimodal` | 101 | Multimodal agentic tasks requiring perception and creation (webpage generation, video QA, document extraction, etc.) |
|
| 76 |
+
| `multi-turn` | 38 | Multi-turn conversational tasks where the agent interacts with a simulated user persona to clarify needs and provide advice |
|
| 77 |
|
| 78 |
### Fields
|
| 79 |
|
|
|
|
| 84 |
| `fixture` | list[string] | Fixture files required for the task (available in `data/fixtures.tar.gz`) |
|
| 85 |
| `language` | string | Task language (`en` or `zh`) |
|
| 86 |
| `category` | string | Task domain |
|
|
|
|
| 87 |
|
| 88 |
## Usage
|
| 89 |
|
|
|
|
| 96 |
# Load a specific split
|
| 97 |
general = load_dataset("claw-eval/Claw-Eval", split="general")
|
| 98 |
multimodal = load_dataset("claw-eval/Claw-Eval", split="multimodal")
|
| 99 |
+
multi_turn = load_dataset("claw-eval/Claw-Eval", split="multi-turn")
|
| 100 |
|
| 101 |
# Inspect a sample
|
| 102 |
print(general[0])
|
data/fixtures.tar.gz
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:01c349b8eb3ae8bcd741578d6a7f94ba3f76e0aad74bd98233e02e629e65ff5b
|
| 3 |
+
size 2879916129
|
data/general-00000-of-00001.parquet
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e40ce97084ebde894540fdb8a5254f1745f6824bcac48f1e09d7587b69cf01b8
|
| 3 |
+
size 51315
|
data/multi-turn-00000-of-00001.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5fbf843786a496fe74eb3fcfeebd2fe0c6d0ebc95ade5e80ac4381b5b7dd0892
|
| 3 |
+
size 12502
|
data/multimodal-00000-of-00001.parquet
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ac9920c58f50d2949925e6ca459d0ccab4894dd27e16c90d5aaf52cf5a2026d3
|
| 3 |
+
size 32411
|