Add example model response
Browse files
README.md
CHANGED
@@ -110,7 +110,12 @@ conversation = [
|
|
110 |
# inference
|
111 |
pred = inference(conversation, model, tokenizer, data_processor, use_placeholder=True, topk=3)
|
112 |
px, py = pred["topk_points"][0]
|
113 |
-
print(f"Predicted click point: [{round(px,
|
|
|
|
|
|
|
|
|
|
|
114 |
```
|
115 |
|
116 |
## Citation
|
|
|
110 |
# inference
|
111 |
pred = inference(conversation, model, tokenizer, data_processor, use_placeholder=True, topk=3)
|
112 |
px, py = pred["topk_points"][0]
|
113 |
+
print(f"Predicted click point: [{round(px, 4)}, {round(py, 4)}]")
|
114 |
+
|
115 |
+
# >> Model Response
|
116 |
+
# Intruction: close this window
|
117 |
+
# ground-truth action region (x1, y1, x2, y2): [0.9479, 0.1444, 0.9938, 0.2074]
|
118 |
+
# Predicted click point: [0.9709, 0.1548]
|
119 |
```
|
120 |
|
121 |
## Citation
|