DerHansVader commited on
Commit
07403b3
·
verified ·
1 Parent(s): 34bf819

Document Pointerbench inference protocol

Browse files
Files changed (1) hide show
  1. pointerbench-pro/README.md +6 -3
pointerbench-pro/README.md CHANGED
@@ -105,15 +105,18 @@ sibling PNGs yourself.
105
 
106
  ### Evaluate
107
 
108
- 1. Run your model on every example's `instruction` + image and collect a
 
 
 
109
  predicted click point (absolute pixels on the 1024x768 image).
110
- 2. Write predictions as JSONL, one object per example:
111
 
112
  ```json
113
  {"id": "pbp_0000", "point": [612, 388]}
114
  ```
115
 
116
- 3. Score (pure standard library, no dependencies):
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