wuyuverse commited on
Commit
3bb7bf5
·
verified ·
1 Parent(s): f825e91

Publish public benchmark data and paper figures

Browse files

Adds the three public split archives, canonical sample shards, a Viewer-ready sample, paper figures, and a complete dataset card.

CITATION.cff ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ cff-version: 1.2.0
2
+ message: "If you use AutoMemoryBench, please cite the paper below."
3
+ title: "AutoMemoryBench: State-Contract Evaluation for Auditable Agent Memory"
4
+ type: software
5
+ authors:
6
+ - family-names: Wu
7
+ given-names: Jiajun
8
+ affiliation: Beihang University
9
+ - family-names: Yang
10
+ given-names: Jian
11
+ affiliation: Beihang University
12
+ - family-names: Li
13
+ given-names: Chen
14
+ - family-names: Chai
15
+ given-names: Linzheng
16
+ - family-names: Gao
17
+ given-names: Ge
18
+ - family-names: Shi
19
+ given-names: Ensheng
20
+ affiliation: Huawei Cloud Computing Technologies Co., Ltd.
21
+ - family-names: Ma
22
+ given-names: Yuchi
23
+ affiliation: Huawei Cloud Computing Technologies Co., Ltd.
24
+ repository-code: "https://github.com/wuyuVerse/AutoMemoryBench"
25
+ license: Apache-2.0
26
+ date-released: 2026-07-30
27
+ preferred-citation:
28
+ type: generic
29
+ title: "AutoMemoryBench: State-Contract Evaluation for Auditable Agent Memory"
30
+ authors:
31
+ - family-names: Wu
32
+ given-names: Jiajun
33
+ - family-names: Yang
34
+ given-names: Jian
35
+ - family-names: Li
36
+ given-names: Chen
37
+ - family-names: Chai
38
+ given-names: Linzheng
39
+ - family-names: Gao
40
+ given-names: Ge
41
+ - family-names: Shi
42
+ given-names: Ensheng
43
+ - family-names: Ma
44
+ given-names: Yuchi
45
+ year: 2027
46
+ url: "https://github.com/wuyuVerse/AutoMemoryBench"
LICENSE ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ Copyright 2026 AutoMemoryBench Contributors
6
+
7
+ Licensed under the Apache License, Version 2.0 (the "License");
8
+ you may not use this file except in compliance with the License.
9
+ You may obtain a copy of the License at
10
+
11
+ http://www.apache.org/licenses/LICENSE-2.0
12
+
13
+ Unless required by applicable law or agreed to in writing, software
14
+ distributed under the License is distributed on an "AS IS" BASIS,
15
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16
+ See the License for the specific language governing permissions and
17
+ limitations under the License.
README.md CHANGED
@@ -2,28 +2,160 @@
2
  language:
3
  - en
4
  pretty_name: AutoMemoryBench
 
 
 
 
 
5
  tags:
6
  - benchmark
7
  - agent-memory
8
  - memory-systems
9
  - llm-agents
10
  - evaluation
 
 
 
 
 
 
11
  ---
12
 
 
 
13
  # AutoMemoryBench
14
 
15
- **State-Contract Evaluation for Auditable Agent Memory**
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
16
 
17
- AutoMemoryBench evaluates whether an agent uses the right memory, and only the
18
- admissible memory, under a query-time state contract. Each contract partitions
19
- memory into required, admissible, and prohibited sets, with prohibited memories
20
- typed as superseded, deleted, restricted, cross-namespace, or stale-tool.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
21
 
22
  ## Paper
23
 
24
- - [Paper PDF](AutoMemoryBench-arXiv.pdf)
25
- - [arXiv source package](AutoMemoryBench-arXiv-source.tar.gz)
26
- - [Code and data](https://github.com/wuyuVerse/AutoMemoryBench)
 
 
 
27
 
28
  ## Authors
29
 
@@ -32,16 +164,6 @@ Jiajun Wu, Jian Yang, Chen Li, Linzheng Chai, Ge Gao, Ensheng Shi, and Yuchi Ma.
32
  Jiajun Wu and Jian Yang are affiliated with Beihang University. Ensheng Shi and
33
  Yuchi Ma are affiliated with Huawei Cloud Computing Technologies Co., Ltd.
34
 
35
- ## Abstract
36
-
37
- A deployed agent fails not only when it forgets, but when it uses memory that is
38
- stale, deleted, unauthorized, cross-namespace, or unsupported by current tool
39
- state. AutoMemoryBench introduces query-time memory admissibility as an
40
- executable evaluation contract. Its primary metric, StrictCore, counts a query
41
- only when the task is solved, required evidence is used, and no prohibited
42
- memory influences the output. The release spans eight domains with 7,200 case
43
- variants and 151,200 probes, paired with minimal single-axis interventions.
44
-
45
  ## Citation
46
 
47
  ```bibtex
@@ -54,9 +176,6 @@ variants and 151,200 probes, paired with minimal single-axis interventions.
54
  }
55
  ```
56
 
57
- The formal Hugging Face Paper page and arXiv link will be added after the paper
58
- receives an arXiv identifier.
59
-
60
  ## License
61
 
62
  The code and benchmark data are released under Apache-2.0. The paper license
 
2
  language:
3
  - en
4
  pretty_name: AutoMemoryBench
5
+ size_categories:
6
+ - 1K<n<10K
7
+ task_categories:
8
+ - question-answering
9
+ - text-retrieval
10
  tags:
11
  - benchmark
12
  - agent-memory
13
  - memory-systems
14
  - llm-agents
15
  - evaluation
16
+ - text
17
+ configs:
18
+ - config_name: sample
19
+ data_files:
20
+ - split: audit_subset
21
+ path: data/sample_cases.jsonl
22
  ---
23
 
24
+ <div align="center">
25
+
26
  # AutoMemoryBench
27
 
28
+ ### State-Contract Evaluation for Auditable Agent Memory
29
+
30
+ [![Paper](https://img.shields.io/badge/Paper-PDF-b31b1b.svg)](AutoMemoryBench-arXiv.pdf)
31
+ [![Source](https://img.shields.io/badge/arXiv-Source-b31b1b.svg)](AutoMemoryBench-arXiv-source.tar.gz)
32
+ [![GitHub](https://img.shields.io/badge/Code%20%26%20Data-GitHub-181717.svg)](https://github.com/wuyuVerse/AutoMemoryBench)
33
+ [![License](https://img.shields.io/badge/Data-Apache--2.0-2f7d32.svg)](https://github.com/wuyuVerse/AutoMemoryBench/blob/main/LICENSE)
34
+
35
+ </div>
36
+
37
+ AutoMemoryBench evaluates whether an agent uses the *right* memory, and only
38
+ the admissible memory, under a query-time state contract. Each executable
39
+ contract partitions memory into **required**, **admissible**, and
40
+ **prohibited** sets. Prohibited memories are typed as superseded, deleted,
41
+ restricted, cross-namespace, or stale-tool.
42
+
43
+ <p align="center">
44
+ <img src="assets/query-time-admissibility.png" alt="Query-time memory admissibility" width="760">
45
+ </p>
46
+ <p align="center"><em>Relevance is not enough: remembered evidence must also be allowed now.</em></p>
47
+
48
+ ## Benchmark at a Glance
49
+
50
+ | Property | Value |
51
+ | --- | ---: |
52
+ | Domains | 8 |
53
+ | Case variants | 7,200 |
54
+ | Total probes | 151,200 |
55
+ | Public probes | 120,960 |
56
+ | Withheld hidden-test probes | 30,240 |
57
+ | Probe types | 20 |
58
+ | Memory systems evaluated | 18 |
59
+ | Agent/CLI controls | 12 |
60
+ | Backbones | Up to 8 |
61
+
62
+ The eight domains cover personal assistance, education and tutoring, customer
63
+ support, DevOps workflows, research assistance, coding agents, multi-party
64
+ collaboration, and office collaboration. Minimal single-axis interventions
65
+ change exactly one admissibility dimension while preserving the surrounding
66
+ case.
67
+
68
+ ## Benchmark Design
69
+
70
+ AutoMemoryBench compiles a chronological event graph into query-conditioned
71
+ memory contracts. The same benchmark case is exposed through an interaction
72
+ trace view for the system under test and a contract view used only by the
73
+ evaluator. This separates task success from prohibited-memory influence without
74
+ revealing the gold state to the tested system.
75
+
76
+ <p align="center">
77
+ <img src="assets/benchmark-framework.png" alt="AutoMemoryBench evaluation pipeline" width="100%">
78
+ </p>
79
+ <p align="center"><em>From event graphs to executable state contracts, paired interventions, and hard-gated scoring.</em></p>
80
+
81
+ ### One Case, Two Views
82
+
83
+ <p align="center">
84
+ <img src="assets/two-view-evaluation.png" alt="Interaction trace and compiled state-contract views" width="900">
85
+ </p>
86
+ <p align="center"><em>One benchmark case is evaluated through an interaction view and a hidden contract view.</em></p>
87
+
88
+ The interaction view contains the user turns, memory operations, tool calls,
89
+ tool results, and observed answer or action. The compiled contract view records
90
+ what the current query must use, may use, and must not use under the active
91
+ time, role, namespace, lifecycle, and tool state.
92
+
93
+ ## Public Data
94
+
95
+ The `sample` configuration shown in the Dataset Viewer contains **40 cases and
96
+ 840 queries** across all eight domains. Each row is a complete benchmark case
97
+ with its chronological events, sessions, memory units, query-time contracts,
98
+ and probes. It is intended for schema inspection and smoke testing.
99
 
100
+ The complete public release is hosted directly in this repository:
101
+
102
+ | Split | Cases | Probes | Download |
103
+ | --- | ---: | ---: | --- |
104
+ | `audit_subset` | 720 | 15,120 | [archive](data/full/audit_subset_shards.tar.gz) |
105
+ | `public_dev` | 1,440 | 30,240 | [archive](data/full/public_dev_shards.tar.gz) |
106
+ | `public_test` | 3,600 | 75,600 | [archive](data/full/public_test_shards.tar.gz) |
107
+ | **Public total** | **5,760** | **120,960** | [checksums](data/SHA256SUMS) |
108
+
109
+ Each archive contains one canonical JSON shard per domain. The original sample
110
+ manifest and domain shards are under [`data/sample`](data/sample). The same
111
+ release is versioned with the evaluator in the
112
+ [GitHub repository](https://github.com/wuyuVerse/AutoMemoryBench). The
113
+ 30,240-probe hidden-test split is withheld to prevent overfitting.
114
+
115
+ ```bash
116
+ # Download the three public split archives from Hugging Face.
117
+ hf download Multilingual-Multimodal-NLP/AutoMemoryBench \
118
+ --repo-type dataset --include "data/full/*" --local-dir AutoMemoryBench-data
119
+ ```
120
+
121
+ ### Core Fields
122
+
123
+ | Field | Description |
124
+ | --- | --- |
125
+ | `case_id` | Stable identifier for a benchmark case variant |
126
+ | `domain` | Application domain of the interaction |
127
+ | `events` | Chronological lifecycle, authorization, and tool events |
128
+ | `sessions` | User and assistant interaction trace |
129
+ | `gold_memory_units` | Auditable memory objects compiled from events |
130
+ | `state_contracts` | Query-time admissibility partitions and transitions |
131
+ | `queries` | Memory-required and diagnostic probes with scoring contracts |
132
+
133
+ ## Evaluation
134
+
135
+ - **StrictCore** is the primary hard gate. A memory-required query counts only
136
+ when the task is solved, required evidence is used, and no prohibited memory
137
+ influences the output.
138
+ - **PairAcc** measures whether both sides of a minimal intervention pair pass
139
+ StrictCore.
140
+ - **LeakRate** measures how often prohibited memory appears in an answer or
141
+ trace.
142
+ - **AMQ** is a diagnostic composite across writing, retrieval, update,
143
+ compression, task utility, safety, and efficiency; it is not the headline
144
+ metric.
145
+
146
+ The canonical evaluator is implemented in
147
+ [`amb/benchmark/evaluation`](https://github.com/wuyuVerse/AutoMemoryBench/tree/main/amb/benchmark/evaluation)
148
+ and
149
+ [`amb/benchmark/metrics`](https://github.com/wuyuVerse/AutoMemoryBench/tree/main/amb/benchmark/metrics).
150
 
151
  ## Paper
152
 
153
+ - [AutoMemoryBench paper PDF](AutoMemoryBench-arXiv.pdf)
154
+ - [Submission-ready arXiv source package](AutoMemoryBench-arXiv-source.tar.gz)
155
+ - [SHA256 checksums](SHA256SUMS)
156
+
157
+ The formal Hugging Face Paper page and arXiv tag will be added after the paper
158
+ receives an arXiv identifier.
159
 
160
  ## Authors
161
 
 
164
  Jiajun Wu and Jian Yang are affiliated with Beihang University. Ensheng Shi and
165
  Yuchi Ma are affiliated with Huawei Cloud Computing Technologies Co., Ltd.
166
 
 
 
 
 
 
 
 
 
 
 
167
  ## Citation
168
 
169
  ```bibtex
 
176
  }
177
  ```
178
 
 
 
 
179
  ## License
180
 
181
  The code and benchmark data are released under Apache-2.0. The paper license
assets/benchmark-framework.png ADDED

Git LFS Details

  • SHA256: 9548d135908360688d698e93324eaeb0aa33210810bbccffba061857d88a2d64
  • Pointer size: 131 Bytes
  • Size of remote file: 892 kB
assets/query-time-admissibility.png ADDED

Git LFS Details

  • SHA256: 0f9a0483b418f6954d1c2c16747242da9a73f80008ca919c0cf0ad4357bb1a33
  • Pointer size: 131 Bytes
  • Size of remote file: 278 kB
assets/two-view-evaluation.png ADDED

Git LFS Details

  • SHA256: 9c26fe0f39e9ce563c9dc29645e66081bb688d33fa4c5c451722ff8ddcf81407
  • Pointer size: 131 Bytes
  • Size of remote file: 411 kB
data/SHA256SUMS ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 537359836989153a447ce3b2832500468b43173fb1f16735ae17f005d3322eff full/audit_subset_shards.tar.gz
2
+ 89a7dc5e54b231ee82068d33390a83a0c08791abd76a8cf8dc2d56a0bbb98706 full/public_dev_shards.tar.gz
3
+ d3e414d74cabf3db9aae8aa20c0ce72ccc7f290c9a3baa2701a2a8c88af90ea2 full/public_test_shards.tar.gz
4
+ 99ddca50079a061881c1d4d70fd7b0d1486426aba3db9d89781ca1599d5b3197 sample/manifest.json
5
+ dd1d2c7359dfd6d258eefb3ddd17001470e71f41ea7642506cf2576c78d15a3d sample/shards/coding_agent.json
6
+ ef8e9cc058bcf044ff19f4808fd58794e6c1ca641299115aa49c11c4917ac266 sample/shards/customer_support.json
7
+ b8e935a2a2ebb64fd152bb824e7b51e901d6746ba3f12f1167bcfedff31eb471 sample/shards/devops_workflow.json
8
+ 803b27916b7078058f5481cd4a38207f067411daaee8d487dd5168b660b4649b sample/shards/education_tutoring.json
9
+ d28b7dceae8637b6e6c01c9507183a8d014fc2cd08a2e7c177906ba2aace8f06 sample/shards/multi_party_collaboration.json
10
+ 2505ad80c5bc09ffd34984fede40e4789568d1563fa4b87c4ac7aa7deac105f6 sample/shards/office_collaboration.json
11
+ 5bff1007caa5c568bbd8966888d1bfadfe62ab6beadfe4794f8801bf4b55a375 sample/shards/personal_assistant.json
12
+ d3c85c0e44b4b032121131fc5d93f225b6ec75068887a8c2eba037a7408b2076 sample/shards/research_assistant.json
data/full/audit_subset_shards.tar.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:537359836989153a447ce3b2832500468b43173fb1f16735ae17f005d3322eff
3
+ size 6353606
data/full/public_dev_shards.tar.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:89a7dc5e54b231ee82068d33390a83a0c08791abd76a8cf8dc2d56a0bbb98706
3
+ size 12620669
data/full/public_test_shards.tar.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d3e414d74cabf3db9aae8aa20c0ce72ccc7f290c9a3baa2701a2a8c88af90ea2
3
+ size 30939355
data/sample/manifest.json ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "benchmark_id": "amst-sample-v1",
3
+ "schema_version": "1.0.0",
4
+ "package_type": "sample",
5
+ "visibility": {
6
+ "audit_subset": "public"
7
+ },
8
+ "included_splits": [
9
+ "audit_subset"
10
+ ],
11
+ "split_files": {
12
+ "audit_subset": {
13
+ "personal_assistant": "shards/personal_assistant.json",
14
+ "education_tutoring": "shards/education_tutoring.json",
15
+ "customer_support": "shards/customer_support.json",
16
+ "devops_workflow": "shards/devops_workflow.json",
17
+ "research_assistant": "shards/research_assistant.json",
18
+ "coding_agent": "shards/coding_agent.json",
19
+ "multi_party_collaboration": "shards/multi_party_collaboration.json",
20
+ "office_collaboration": "shards/office_collaboration.json"
21
+ }
22
+ },
23
+ "split_reports": {
24
+ "audit_subset": {
25
+ "num_cases": 40,
26
+ "num_queries": 840
27
+ }
28
+ }
29
+ }
data/sample/shards/coding_agent.json ADDED
The diff for this file is too large to render. See raw diff
 
data/sample/shards/customer_support.json ADDED
The diff for this file is too large to render. See raw diff
 
data/sample/shards/devops_workflow.json ADDED
The diff for this file is too large to render. See raw diff
 
data/sample/shards/education_tutoring.json ADDED
The diff for this file is too large to render. See raw diff
 
data/sample/shards/multi_party_collaboration.json ADDED
The diff for this file is too large to render. See raw diff
 
data/sample/shards/office_collaboration.json ADDED
The diff for this file is too large to render. See raw diff
 
data/sample/shards/personal_assistant.json ADDED
The diff for this file is too large to render. See raw diff
 
data/sample/shards/research_assistant.json ADDED
The diff for this file is too large to render. See raw diff
 
data/sample_cases.jsonl ADDED
The diff for this file is too large to render. See raw diff