--- license: cc-by-4.0 task_categories: - image-to-text - visual-question-answering language: - en - de - fr - es - it - nl tags: - gui-grounding - computer-use - benchmark - screenshots - synthetic-data - spreadsheets - text-grounding - professional-apps pretty_name: Pointerbench size_categories: - 1K= 0.90) and the prediction to stay reasonably tight around it (precision >= 0.70). This penalises predictions that cut off part of the target far more than predictions that wrap it with some margin. ## Evaluation Run the scorer inside a subset folder: ```bash python eval.py --predictions preds.jsonl ``` Predictions are JSONL rows with an `id` and either a `point` or `bbox`, depending on `answer_type`. Recommended inference prompt: ```bash python eval.py --show-system-prompt ``` ```text You are evaluating Pointerbench, a GUI grounding benchmark. You will receive one 1024x768 screenshot and one task instruction. Use absolute pixel coordinates with origin at the top-left of the image. Do not return normalized coordinates. Do not crop or resize the coordinate frame. For point tasks, return JSON like {"point": [x, y]}. For bounding-box tasks, return JSON like {"bbox": [x0, y0, x1, y1]}. ``` You can edit the prompt for your inference stack. Keep the 1024x768 absolute pixel coordinate frame fixed, and report any image resizing or multi-step zoom strategy with your results. See each subset README for the exact distribution, schema details, and examples. ## License Dataset images and annotations are released under CC BY 4.0. The included evaluation scripts are released under MIT.