arcada-labs commited on
Commit
c92e25d
·
verified ·
1 Parent(s): ba7e887

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +151 -2
README.md CHANGED
@@ -1,4 +1,23 @@
1
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  configs:
3
  - config_name: default
4
  data_files:
@@ -6,6 +25,136 @@ configs:
6
  path: metadata.jsonl
7
  ---
8
 
9
- # grocery_bench
10
 
11
- 30-turn grocery ordering benchmark with 15 difficulty enhancements: 3-item turn, relative-math quantity, conditional addition, chained corrections, ambiguous 'both', revert removal, second subtotal after mods, 'same as first' recall, partial name reference, phone number correction, audio false start, homophone collision (flower/flour), fifteen/fifty audio confusion, conditional removal by price threshold, plus vague pronoun, mid-sentence self-correction, false memory trap, item removal, swap operation, retroactive qty change, full order reconciliation
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ language:
3
+ - en
4
+ license: mit
5
+ pretty_name: Grocery Bench
6
+ tags:
7
+ - audio
8
+ - benchmark
9
+ - speech-to-speech
10
+ - voice-ai
11
+ - multi-turn
12
+ - tool-use
13
+ - evaluation
14
+ - state-tracking
15
+ - function-calling
16
+ task_categories:
17
+ - automatic-speech-recognition
18
+ - text-generation
19
+ size_categories:
20
+ - n<1K
21
  configs:
22
  - config_name: default
23
  data_files:
 
25
  path: metadata.jsonl
26
  ---
27
 
28
+ # Grocery Bench
29
 
30
+ **30-turn multi-turn speech-to-speech benchmark** for evaluating voice AI models as a grocery ordering assistant.
31
+
32
+ Part of [Audio Arena](https://audioarena.ai), a suite of 6 benchmarks spanning 221 turns across different domains. Built by [Arcada Labs](https://arcada.dev).
33
+
34
+ [Leaderboard](https://audioarena.ai/leaderboard) | [GitHub](https://github.com/Design-Arena/audio-arena) | [All Benchmarks](#part-of-audio-arena)
35
+
36
+ ## Dataset Description
37
+
38
+ The model acts as a grocery ordering assistant helping a customer build, modify, and finalize an order. The conversation is designed around 15 difficulty enhancements that stress-test item lookup, quantity math, chained corrections, and order reconciliation — culminating in a full order summary the model must compute correctly.
39
+
40
+ ## What This Benchmark Tests
41
+
42
+ - **Tool use**: 5 functions — item lookup, add to cart, remove from cart, modify quantity, order summary
43
+ - **3-item turns**: Multiple items added in a single spoken request
44
+ - **Relative-math quantity**: "Double the bananas", "add three more"
45
+ - **Conditional addition/removal**: "If X costs more than $5, remove it"
46
+ - **Chained corrections**: Multiple sequential edits to the same item
47
+ - **Homophone collisions**: flower vs flour — ambiguous in speech
48
+ - **Fifteen/fifty audio confusion**: Quantities that sound alike over audio
49
+ - **Ambiguous "both"**: References to multiple items where "both" is under-specified
50
+ - **Revert removal**: Undoing a previously removed item
51
+ - **Swap operations**: Replace one item with another in a single turn
52
+ - **Retroactive quantity change**: Changing a quantity set many turns earlier
53
+ - **Mid-sentence self-correction**: Speaker changes their mind partway through
54
+ - **False memory traps**: Assertions about items never added
55
+ - **Full order reconciliation**: Final order summary requiring correct math across all modifications
56
+
57
+ ## Dataset Structure
58
+
59
+ ```
60
+ grocery-bench/
61
+ ├── audio/ # TTS-generated audio (1 WAV per turn)
62
+ │ ├── turn_000.wav
63
+ │ ├── turn_001.wav
64
+ │ └── ... (30 files)
65
+ ├── real_audio/ # Human-recorded audio
66
+ │ ├── person1/
67
+ │ │ └── turn_000.wav ... turn_029.wav
68
+ │ └── person2/
69
+ │ └── turn_000.wav ... turn_029.wav
70
+ ├── benchmark/
71
+ │ ├── turns.json # Turn definitions with golden answers
72
+ │ ├── hard_turns.json # Same as turns.json but input_text=null (audio-only)
73
+ │ ├── tool_schemas.json # Tool/function schemas (5 tools)
74
+ │ └── knowledge_base.txt # Grocery store KB (products, policies, delivery)
75
+ └── metadata.jsonl # HF dataset viewer metadata
76
+ ```
77
+
78
+ ### Metadata Fields
79
+
80
+ | Field | Description |
81
+ |-------|-------------|
82
+ | `file_name` | Path to the audio file |
83
+ | `turn_id` | Turn index (0–29) |
84
+ | `speaker` | `tts`, `person1`, or `person2` |
85
+ | `input_text` | What the user says (text transcript) |
86
+ | `golden_text` | Expected assistant response |
87
+ | `required_function_call` | Tool call the model should make (JSON, nullable) |
88
+ | `function_call_response` | Scripted tool response (JSON, nullable) |
89
+ | `categories` | Evaluation categories for this turn |
90
+ | `subcategory` | Specific sub-skill being tested |
91
+ | `scoring_dimensions` | Which judge dimensions apply |
92
+
93
+ ## Audio Format
94
+
95
+ - **Format**: WAV, 16-bit PCM, mono
96
+ - **TTS audio**: Generated via text-to-speech
97
+ - **Real audio**: Human-recorded by multiple speakers, same transcript content
98
+
99
+ ## Usage
100
+
101
+ ### With Audio Arena CLI
102
+
103
+ ```bash
104
+ pip install audio-arena # or: git clone + uv sync
105
+
106
+ # Run with a text model
107
+ uv run audio-arena run grocery_bench --model claude-sonnet-4-5 --service anthropic
108
+
109
+ # Run with a speech-to-speech model
110
+ uv run audio-arena run grocery_bench --model gpt-realtime --service openai-realtime
111
+
112
+ # Judge the results
113
+ uv run audio-arena judge runs/grocery_bench/<run_dir>
114
+ ```
115
+
116
+ ### With Hugging Face Datasets
117
+
118
+ ```python
119
+ from datasets import load_dataset
120
+
121
+ ds = load_dataset("arcada-labs/grocery-bench")
122
+ ```
123
+
124
+ ## Evaluation
125
+
126
+ Models are judged on up to 5 dimensions per turn:
127
+
128
+ | Dimension | Description |
129
+ |-----------|-------------|
130
+ | `tool_use_correct` | Correct function called with correct arguments |
131
+ | `instruction_following` | User's request was actually completed |
132
+ | `kb_grounding` | Claims are supported by the knowledge base or tool results |
133
+ | `state_tracking` | Consistency with earlier turns (scored on tagged turns only) |
134
+ | `ambiguity_handling` | Correct disambiguation (scored on tagged turns only) |
135
+
136
+ For speech-to-speech models, a 6th `turn_taking` dimension evaluates audio timing correctness.
137
+
138
+ See the [full methodology](https://github.com/Design-Arena/audio-arena#methodology) for details on two-phase evaluation, penalty absorption, and category-aware scoring.
139
+
140
+ ## Part of Audio Arena
141
+
142
+ | Benchmark | Turns | Scenario |
143
+ |-----------|-------|----------|
144
+ | [Conversation Bench](https://huggingface.co/datasets/arcada-labs/conversation-bench) | 75 | Conference assistant |
145
+ | [Appointment Bench](https://huggingface.co/datasets/arcada-labs/appointment-bench) | 25 | Dental office scheduling |
146
+ | [Assistant Bench](https://huggingface.co/datasets/arcada-labs/assistant-bench) | 31 | Personal assistant |
147
+ | [Event Bench](https://huggingface.co/datasets/arcada-labs/event-bench) | 29 | Event planning |
148
+ | **Grocery Bench** (this dataset) | 30 | Grocery ordering |
149
+ | [Product Bench](https://huggingface.co/datasets/arcada-labs/product-bench) | 31 | Laptop comparison shopping |
150
+
151
+ ## Citation
152
+
153
+ ```bibtex
154
+ @misc{audioarena2026,
155
+ title={Audio Arena: Multi-Turn Speech-to-Speech Evaluation Benchmarks},
156
+ author={Arcada Labs},
157
+ year={2026},
158
+ url={https://audioarena.ai}
159
+ }
160
+ ```