Update README.md
Browse files
README.md
CHANGED
|
@@ -8,4 +8,44 @@ tags:
|
|
| 8 |
- benchmark
|
| 9 |
- QA testing
|
| 10 |
- tap-accuracy
|
| 11 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 8 |
- benchmark
|
| 9 |
- QA testing
|
| 10 |
- tap-accuracy
|
| 11 |
+
---
|
| 12 |
+
|
| 13 |
+
# 📝 Summary & Intention
|
| 14 |
+
**UI-TapBench** is an open-source benchmark created to evaluate the spatial precision of Large Multimodal Models (LMMs) in mobile environments.
|
| 15 |
+
|
| 16 |
+
As AI agents move toward "Actionable AI," the ability to translate a natural language instruction into exact screen coordinates is the most common point of failure. This dataset provides a standardized way to measure and improve how models handle dense UI layouts and list-based navigation, ensuring "tap" reliability in autonomous agents.
|
| 17 |
+
|
| 18 |
+
## 🚀 About Drizz
|
| 19 |
+
**Reimagining Mobile App Testing with Vision AI.**
|
| 20 |
+
|
| 21 |
+
At **[Drizz](https://www.drizz.dev/)**, we’re building the world’s fastest AI-powered testing agent for mobile apps—no locators, no scripting, just plain English. Mobile teams today move fast, but testing tools haven’t kept up. Drizz replaces brittle, locator-based frameworks with a vision-based AI engine that understands your app like a human.
|
| 22 |
+
|
| 23 |
+
**With Drizz, teams achieve:**
|
| 24 |
+
* **10x Faster Test Cycles**
|
| 25 |
+
* **97%+ Test Accuracy**
|
| 26 |
+
* **Zero Flaky Tests** via our vision-based engine.
|
| 27 |
+
|
| 28 |
+
We are releasing **UI-TapBench** to help the community move toward a world where UI automation is as simple, reliable, and "human-like" as possible.
|
| 29 |
+
## 📊 Dataset Structure
|
| 30 |
+
|
| 31 |
+
Each entry in `metadata.jsonl` follows this schema:
|
| 32 |
+
|
| 33 |
+
| Key | Description |
|
| 34 |
+
|---|---|
|
| 35 |
+
| `id` | Unique identifier for the sample. |
|
| 36 |
+
| `image` | Relative path to the screenshot (e.g., `images/841.png`). |
|
| 37 |
+
| `task` | The natural language command (e.g., "Tap on second option"). |
|
| 38 |
+
| `bbox` | Ground truth coordinates: `[xmin, ymin, xmax, ymax]`. |
|
| 39 |
+
| `app_name` | The package name of the app being tested. |
|
| 40 |
+
| `function` | The targeted action type (default: `tap_call_llm`). |
|
| 41 |
+
|
| 42 |
+
### Example Entry
|
| 43 |
+
```json
|
| 44 |
+
{
|
| 45 |
+
"id": 841,
|
| 46 |
+
"image": "images/841.png",
|
| 47 |
+
"task": "Tap on second option in the list.",
|
| 48 |
+
"bbox": [42, 733, 1038, 901],
|
| 49 |
+
"app_name": "com.duolingo",
|
| 50 |
+
"function": "tap_call_llm"
|
| 51 |
+
}
|