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

Document Pointerbench inference protocol

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