Datasets:
Document Pointerbench inference protocol
Browse files
pointerbench-pro/README.md
CHANGED
|
@@ -105,15 +105,18 @@ sibling PNGs yourself.
|
|
| 105 |
|
| 106 |
### Evaluate
|
| 107 |
|
| 108 |
-
1.
|
|
|
|
|
|
|
|
|
|
| 109 |
predicted click point (absolute pixels on the 1024x768 image).
|
| 110 |
-
|
| 111 |
|
| 112 |
```json
|
| 113 |
{"id": "pbp_0000", "point": [612, 388]}
|
| 114 |
```
|
| 115 |
|
| 116 |
-
|
| 117 |
|
| 118 |
```bash
|
| 119 |
python eval.py --predictions preds.jsonl --json report.json
|
|
|
|
| 105 |
|
| 106 |
### Evaluate
|
| 107 |
|
| 108 |
+
1. Print the recommended system prompt with `python eval.py --show-system-prompt`,
|
| 109 |
+
or edit it for your inference stack while keeping the 1024x768 coordinate
|
| 110 |
+
frame fixed.
|
| 111 |
+
2. Run your model on every example's `instruction` + image and collect a
|
| 112 |
predicted click point (absolute pixels on the 1024x768 image).
|
| 113 |
+
3. Write predictions as JSONL, one object per example:
|
| 114 |
|
| 115 |
```json
|
| 116 |
{"id": "pbp_0000", "point": [612, 388]}
|
| 117 |
```
|
| 118 |
|
| 119 |
+
4. Score (pure standard library, no dependencies):
|
| 120 |
|
| 121 |
```bash
|
| 122 |
python eval.py --predictions preds.jsonl --json report.json
|