DerHansVader commited on
Commit
e52aaf1
·
verified ·
1 Parent(s): 2871c69

Document Pointerbench inference protocol

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