docs: adding json prediction example
Browse files
README.md
CHANGED
@@ -72,6 +72,13 @@ All of our ground truth labels are private. The only way to score your submissio
|
|
72 |
|
73 |
Your predictions should be a list of dictionaries, each containing an `question_id` field and a `response` field. For multiple choice questions, the `response` field should contain the predicted answer choice. For open-ended questions, the `response` field should contain the option letter (A-D). We will apply simple heuristics to clean the responses, but please ensure they are as accurate as possible.
|
74 |
|
75 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
76 |
## 🏆 Submit to the leaderboard
|
77 |
We welcome all submissions for model *or* method (including prompting-based) to our dataset. Please create a [GitHub issue](https://github.com/paulgavrikov/visualoverload/issues) following the template and include your predictions as JSON.
|
|
|
72 |
|
73 |
Your predictions should be a list of dictionaries, each containing an `question_id` field and a `response` field. For multiple choice questions, the `response` field should contain the predicted answer choice. For open-ended questions, the `response` field should contain the option letter (A-D). We will apply simple heuristics to clean the responses, but please ensure they are as accurate as possible.
|
74 |
|
75 |
+
Example:
|
76 |
+
```
|
77 |
+
[
|
78 |
+
{"question_id": "28deb79e", "response": "A"},
|
79 |
+
{"question_id": "73cbabd7", "response": "C"},
|
80 |
+
...
|
81 |
+
]
|
82 |
+
```
|
83 |
## 🏆 Submit to the leaderboard
|
84 |
We welcome all submissions for model *or* method (including prompting-based) to our dataset. Please create a [GitHub issue](https://github.com/paulgavrikov/visualoverload/issues) following the template and include your predictions as JSON.
|