final result
Browse filesThis view is limited to 50 files because it contains too many changes. See raw diff
- Absolute_relative_positions/.DS_Store +0 -0
- Absolute_relative_positions/2/4_P01_01.jpg +0 -3
- Absolute_relative_positions/2/4_P01_03.jpg +0 -3
- Absolute_relative_positions/2/4_P01_07.jpg +0 -3
- Absolute_relative_positions/2/4_P01_09.jpg +0 -3
- Absolute_relative_positions/relation1.json +0 -0
- Absolute_relative_positions/relation2.json +0 -0
- merged_dataset_v2_fixed.json → Combination.json +0 -0
- counting/counting_data.json → Counting.json +0 -0
- README.md +0 -3
- Relation.json +0 -0
- check_images.py +0 -36
- count2/counting_tasks_1.json +0 -1328
- counting/relation_tasks.json +0 -1289
- entity_recall/.DS_Store +0 -0
- entity_recall/counting.json +0 -1068
- entity_recall/images/recall_1.jpg +0 -3
- entity_recall/images/recall_10.jpg +0 -3
- entity_recall/images/recall_100.jpg +0 -3
- entity_recall/images/recall_101.jpg +0 -3
- entity_recall/images/recall_104.jpg +0 -3
- entity_recall/images/recall_107.jpg +0 -3
- entity_recall/images/recall_108.jpg +0 -3
- entity_recall/images/recall_109.jpg +0 -3
- entity_recall/images/recall_111.jpg +0 -3
- entity_recall/images/recall_112.jpg +0 -3
- entity_recall/images/recall_113.jpg +0 -3
- entity_recall/images/recall_114.jpg +0 -3
- entity_recall/images/recall_115.jpg +0 -3
- entity_recall/images/recall_116.jpg +0 -3
- entity_recall/images/recall_117.jpg +0 -3
- entity_recall/images/recall_119.jpg +0 -3
- entity_recall/images/recall_120.jpg +0 -3
- entity_recall/images/recall_122.jpg +0 -3
- entity_recall/images/recall_124.jpg +0 -3
- entity_recall/images/recall_126.jpg +0 -3
- entity_recall/images/recall_127.jpg +0 -3
- entity_recall/images/recall_129.jpg +0 -3
- entity_recall/images/recall_130.jpg +0 -3
- entity_recall/images/recall_131.jpg +0 -3
- entity_recall/images/recall_132.jpg +0 -3
- entity_recall/images/recall_134.jpg +0 -3
- entity_recall/images/recall_135.jpg +0 -3
- entity_recall/images/recall_137.jpg +0 -3
- entity_recall/images/recall_138.jpg +0 -3
- entity_recall/images/recall_139.jpg +0 -3
- entity_recall/images/recall_140.jpg +0 -3
- entity_recall/images/recall_142.jpg +0 -3
- entity_recall/images/recall_143.jpg +0 -3
- entity_recall/images/recall_147.jpg +0 -3
Absolute_relative_positions/.DS_Store
DELETED
|
Binary file (6.15 kB)
|
|
|
Absolute_relative_positions/2/4_P01_01.jpg
DELETED
Git LFS Details
|
Absolute_relative_positions/2/4_P01_03.jpg
DELETED
Git LFS Details
|
Absolute_relative_positions/2/4_P01_07.jpg
DELETED
Git LFS Details
|
Absolute_relative_positions/2/4_P01_09.jpg
DELETED
Git LFS Details
|
Absolute_relative_positions/relation1.json
DELETED
|
The diff for this file is too large to render.
See raw diff
|
|
|
Absolute_relative_positions/relation2.json
DELETED
|
The diff for this file is too large to render.
See raw diff
|
|
|
merged_dataset_v2_fixed.json → Combination.json
RENAMED
|
The diff for this file is too large to render.
See raw diff
|
|
|
counting/counting_data.json → Counting.json
RENAMED
|
The diff for this file is too large to render.
See raw diff
|
|
|
README.md
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: apache-2.0
|
| 3 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
Relation.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
check_images.py
DELETED
|
@@ -1,36 +0,0 @@
|
|
| 1 |
-
import json
|
| 2 |
-
import os
|
| 3 |
-
from pathlib import Path
|
| 4 |
-
|
| 5 |
-
# 设置工作目录
|
| 6 |
-
base_dir = os.path.dirname(os.path.abspath(__file__))
|
| 7 |
-
|
| 8 |
-
# 读取JSON文件
|
| 9 |
-
with open('merged_dataset_v2_fixed.json', 'r') as f:
|
| 10 |
-
data = json.load(f)
|
| 11 |
-
|
| 12 |
-
# 记录缺失的图片
|
| 13 |
-
missing_images = []
|
| 14 |
-
|
| 15 |
-
# 检查每个图片是否存在
|
| 16 |
-
for item in data:
|
| 17 |
-
image_path = item['image_path']
|
| 18 |
-
full_path = os.path.join(base_dir, image_path)
|
| 19 |
-
|
| 20 |
-
if not os.path.exists(full_path):
|
| 21 |
-
missing_images.append({
|
| 22 |
-
'id': item.get('id', 'unknown'),
|
| 23 |
-
'path': image_path,
|
| 24 |
-
'question': item.get('question', '')
|
| 25 |
-
})
|
| 26 |
-
|
| 27 |
-
# 打印结果
|
| 28 |
-
if missing_images:
|
| 29 |
-
print(f"\n发现 {len(missing_images)} 个图片不存在:")
|
| 30 |
-
for missing in missing_images:
|
| 31 |
-
print(f"\nID: {missing['id']}")
|
| 32 |
-
print(f"路径: {missing['path']}")
|
| 33 |
-
print(f"问题: {missing['question']}")
|
| 34 |
-
print("-" * 50)
|
| 35 |
-
else:
|
| 36 |
-
print("\n所有图片都存在!")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
count2/counting_tasks_1.json
DELETED
|
@@ -1,1328 +0,0 @@
|
|
| 1 |
-
[
|
| 2 |
-
{
|
| 3 |
-
"id": "counting_500",
|
| 4 |
-
"image_path": "count2/counting2/counting_500.jpg",
|
| 5 |
-
"image_name": "counting_500.jpg",
|
| 6 |
-
"difficulty": "hard",
|
| 7 |
-
"metrics": [
|
| 8 |
-
"exact_match",
|
| 9 |
-
"error_margin"
|
| 10 |
-
],
|
| 11 |
-
"question": "How many ice - creams are there in the picture?",
|
| 12 |
-
"answer": "3",
|
| 13 |
-
"final_category": "medium"
|
| 14 |
-
},
|
| 15 |
-
{
|
| 16 |
-
"id": "counting_501",
|
| 17 |
-
"image_path": "count2/counting2/counting_501.jpg",
|
| 18 |
-
"image_name": "counting_501.jpg",
|
| 19 |
-
"difficulty": "easy",
|
| 20 |
-
"metrics": [
|
| 21 |
-
"exact_match",
|
| 22 |
-
"error_margin"
|
| 23 |
-
],
|
| 24 |
-
"question": "How many cats are there in the picture?",
|
| 25 |
-
"answer": "1",
|
| 26 |
-
"final_category": "medium"
|
| 27 |
-
},
|
| 28 |
-
{
|
| 29 |
-
"id": "counting_502",
|
| 30 |
-
"image_path": "count2/counting2/counting_502.jpg",
|
| 31 |
-
"image_name": "counting_502.jpg",
|
| 32 |
-
"difficulty": "hard",
|
| 33 |
-
"metrics": [
|
| 34 |
-
"exact_match",
|
| 35 |
-
"error_margin"
|
| 36 |
-
],
|
| 37 |
-
"question": "How many people are farming in the field in the picture?",
|
| 38 |
-
"answer": "10",
|
| 39 |
-
"final_category": "medium"
|
| 40 |
-
},
|
| 41 |
-
{
|
| 42 |
-
"id": "counting_503",
|
| 43 |
-
"image_path": "count2/counting2/counting_503.jpg",
|
| 44 |
-
"image_name": "counting_503.jpg",
|
| 45 |
-
"difficulty": "easy",
|
| 46 |
-
"metrics": [
|
| 47 |
-
"exact_match",
|
| 48 |
-
"error_margin"
|
| 49 |
-
],
|
| 50 |
-
"question": "How many chess pieces are there on the chessboard in the picture?",
|
| 51 |
-
"answer": "17",
|
| 52 |
-
"final_category": "medium"
|
| 53 |
-
},
|
| 54 |
-
{
|
| 55 |
-
"id": "counting_504",
|
| 56 |
-
"image_path": "count2/counting2/counting_504.jpg",
|
| 57 |
-
"image_name": "counting_504.jpg",
|
| 58 |
-
"difficulty": "easy",
|
| 59 |
-
"metrics": [
|
| 60 |
-
"exact_match",
|
| 61 |
-
"error_margin"
|
| 62 |
-
],
|
| 63 |
-
"question": "How many dinner plates are there in the picture?",
|
| 64 |
-
"answer": "2",
|
| 65 |
-
"final_category": "hard"
|
| 66 |
-
},
|
| 67 |
-
{
|
| 68 |
-
"id": "counting_505",
|
| 69 |
-
"image_path": "count2/counting2/counting_505.jpg",
|
| 70 |
-
"image_name": "counting_505.jpg",
|
| 71 |
-
"difficulty": "easy",
|
| 72 |
-
"metrics": [
|
| 73 |
-
"exact_match",
|
| 74 |
-
"error_margin"
|
| 75 |
-
],
|
| 76 |
-
"question": "How many people are there in the picture?",
|
| 77 |
-
"answer": "9",
|
| 78 |
-
"final_category": "hard"
|
| 79 |
-
},
|
| 80 |
-
{
|
| 81 |
-
"id": "counting_506",
|
| 82 |
-
"image_path": "count2/counting2/counting_506.jpg",
|
| 83 |
-
"image_name": "counting_506.jpg",
|
| 84 |
-
"difficulty": "hard",
|
| 85 |
-
"metrics": [
|
| 86 |
-
"exact_match",
|
| 87 |
-
"error_margin"
|
| 88 |
-
],
|
| 89 |
-
"question": "How many people are there in the picture?",
|
| 90 |
-
"answer": "1",
|
| 91 |
-
"final_category": "hard"
|
| 92 |
-
},
|
| 93 |
-
{
|
| 94 |
-
"id": "counting_507",
|
| 95 |
-
"image_path": "count2/counting2/counting_507.jpg",
|
| 96 |
-
"image_name": "counting_507.jpg",
|
| 97 |
-
"difficulty": "easy",
|
| 98 |
-
"metrics": [
|
| 99 |
-
"exact_match",
|
| 100 |
-
"error_margin"
|
| 101 |
-
],
|
| 102 |
-
"question": "How many plastic beverage bottles are there in the picture?",
|
| 103 |
-
"answer": "2",
|
| 104 |
-
"final_category": "easy"
|
| 105 |
-
},
|
| 106 |
-
{
|
| 107 |
-
"id": "counting_508",
|
| 108 |
-
"image_path": "count2/counting2/counting_508.jpg",
|
| 109 |
-
"image_name": "counting_508.jpg",
|
| 110 |
-
"difficulty": "easy",
|
| 111 |
-
"metrics": [
|
| 112 |
-
"exact_match",
|
| 113 |
-
"error_margin"
|
| 114 |
-
],
|
| 115 |
-
"question": "How many people are there in the central part of the picture?",
|
| 116 |
-
"answer": "4",
|
| 117 |
-
"final_category": "medium"
|
| 118 |
-
},
|
| 119 |
-
{
|
| 120 |
-
"id": "counting_509",
|
| 121 |
-
"image_path": "count2/counting2/counting_509.jpg",
|
| 122 |
-
"image_name": "counting_509.jpg",
|
| 123 |
-
"difficulty": "easy",
|
| 124 |
-
"metrics": [
|
| 125 |
-
"exact_match",
|
| 126 |
-
"error_margin"
|
| 127 |
-
],
|
| 128 |
-
"question": "How many individual shoes are there in the picture?",
|
| 129 |
-
"answer": "8",
|
| 130 |
-
"final_category": "medium"
|
| 131 |
-
},
|
| 132 |
-
{
|
| 133 |
-
"id": "counting_510",
|
| 134 |
-
"image_path": "count2/counting2/counting_510.jpg",
|
| 135 |
-
"image_name": "counting_510.jpg",
|
| 136 |
-
"difficulty": "easy",
|
| 137 |
-
"metrics": [
|
| 138 |
-
"exact_match",
|
| 139 |
-
"error_margin"
|
| 140 |
-
],
|
| 141 |
-
"question": "How many hospital beds are there in the picture?",
|
| 142 |
-
"answer": "4",
|
| 143 |
-
"final_category": "medium"
|
| 144 |
-
},
|
| 145 |
-
{
|
| 146 |
-
"id": "counting_511",
|
| 147 |
-
"image_path": "count2/counting2/counting_511.jpg",
|
| 148 |
-
"image_name": "counting_511.jpg",
|
| 149 |
-
"difficulty": "easy",
|
| 150 |
-
"metrics": [
|
| 151 |
-
"exact_match",
|
| 152 |
-
"error_margin"
|
| 153 |
-
],
|
| 154 |
-
"question": "There are several giraffes in the picture",
|
| 155 |
-
"answer": "3",
|
| 156 |
-
"final_category": "medium"
|
| 157 |
-
},
|
| 158 |
-
{
|
| 159 |
-
"id": "counting_512",
|
| 160 |
-
"image_path": "count2/counting2/counting_512.jpg",
|
| 161 |
-
"image_name": "counting_512.jpg",
|
| 162 |
-
"difficulty": "hard",
|
| 163 |
-
"metrics": [
|
| 164 |
-
"exact_match",
|
| 165 |
-
"error_margin"
|
| 166 |
-
],
|
| 167 |
-
"question": "How many tools are there on the left shelf in the picture?",
|
| 168 |
-
"answer": "16",
|
| 169 |
-
"final_category": "hard"
|
| 170 |
-
},
|
| 171 |
-
{
|
| 172 |
-
"id": "counting_513",
|
| 173 |
-
"image_path": "count2/counting2/counting_513.jpg",
|
| 174 |
-
"image_name": "counting_513.jpg",
|
| 175 |
-
"difficulty": "easy",
|
| 176 |
-
"metrics": [
|
| 177 |
-
"exact_match",
|
| 178 |
-
"error_margin"
|
| 179 |
-
],
|
| 180 |
-
"question": "How many books are there in the picture?",
|
| 181 |
-
"answer": "6",
|
| 182 |
-
"final_category": "hard"
|
| 183 |
-
},
|
| 184 |
-
{
|
| 185 |
-
"id": "counting_514",
|
| 186 |
-
"image_path": "count2/counting2/counting_514.jpg",
|
| 187 |
-
"image_name": "counting_514.jpg",
|
| 188 |
-
"difficulty": "easy",
|
| 189 |
-
"metrics": [
|
| 190 |
-
"exact_match",
|
| 191 |
-
"error_margin"
|
| 192 |
-
],
|
| 193 |
-
"question": "How many women are there in this painting?",
|
| 194 |
-
"answer": "8",
|
| 195 |
-
"final_category": "hard"
|
| 196 |
-
},
|
| 197 |
-
{
|
| 198 |
-
"id": "counting_515",
|
| 199 |
-
"image_path": "count2/counting2/counting_515.jpg",
|
| 200 |
-
"image_name": "counting_515.jpg",
|
| 201 |
-
"difficulty": "hard",
|
| 202 |
-
"metrics": [
|
| 203 |
-
"exact_match",
|
| 204 |
-
"error_margin"
|
| 205 |
-
],
|
| 206 |
-
"question": "How many empty bottles are there in the picture?",
|
| 207 |
-
"answer": "7",
|
| 208 |
-
"final_category": "medium"
|
| 209 |
-
},
|
| 210 |
-
{
|
| 211 |
-
"id": "counting_516",
|
| 212 |
-
"image_path": "count2/counting2/counting_516.jpg",
|
| 213 |
-
"image_name": "counting_516.jpg",
|
| 214 |
-
"difficulty": "easy",
|
| 215 |
-
"metrics": [
|
| 216 |
-
"exact_match",
|
| 217 |
-
"error_margin"
|
| 218 |
-
],
|
| 219 |
-
"question": "How many feet are visible in the picture?",
|
| 220 |
-
"answer": "10",
|
| 221 |
-
"final_category": "hard"
|
| 222 |
-
},
|
| 223 |
-
{
|
| 224 |
-
"id": "counting_517",
|
| 225 |
-
"image_path": "count2/counting2/counting_517.jpg",
|
| 226 |
-
"image_name": "counting_517.jpg",
|
| 227 |
-
"difficulty": "easy",
|
| 228 |
-
"metrics": [
|
| 229 |
-
"exact_match",
|
| 230 |
-
"error_margin"
|
| 231 |
-
],
|
| 232 |
-
"question": "How many bowls are stacked in the picture?",
|
| 233 |
-
"answer": "3",
|
| 234 |
-
"final_category": "easy"
|
| 235 |
-
},
|
| 236 |
-
{
|
| 237 |
-
"id": "counting_518",
|
| 238 |
-
"image_path": "count2/counting2/counting_518.jpg",
|
| 239 |
-
"image_name": "counting_518.jpg",
|
| 240 |
-
"difficulty": "hard",
|
| 241 |
-
"metrics": [
|
| 242 |
-
"exact_match",
|
| 243 |
-
"error_margin"
|
| 244 |
-
],
|
| 245 |
-
"question": "How many conical flasks are on the table in the picture that are not on the shelf at the back?",
|
| 246 |
-
"answer": "6",
|
| 247 |
-
"final_category": "hard"
|
| 248 |
-
},
|
| 249 |
-
{
|
| 250 |
-
"id": "counting_519",
|
| 251 |
-
"image_path": "count2/counting2/counting_519.jpg",
|
| 252 |
-
"image_name": "counting_519.jpg",
|
| 253 |
-
"difficulty": "hard",
|
| 254 |
-
"metrics": [
|
| 255 |
-
"exact_match",
|
| 256 |
-
"error_margin"
|
| 257 |
-
],
|
| 258 |
-
"question": "How many numbers 7 are there in the picture",
|
| 259 |
-
"answer": "14",
|
| 260 |
-
"final_category": "hard"
|
| 261 |
-
},
|
| 262 |
-
{
|
| 263 |
-
"id": "counting_520",
|
| 264 |
-
"image_path": "count2/counting2/counting_520.jpg",
|
| 265 |
-
"image_name": "counting_520.jpg",
|
| 266 |
-
"difficulty": "hard",
|
| 267 |
-
"metrics": [
|
| 268 |
-
"exact_match",
|
| 269 |
-
"error_margin"
|
| 270 |
-
],
|
| 271 |
-
"question": "How many clocks are there in the picture?",
|
| 272 |
-
"answer": "23",
|
| 273 |
-
"final_category": "hard"
|
| 274 |
-
},
|
| 275 |
-
{
|
| 276 |
-
"id": "counting_521",
|
| 277 |
-
"image_path": "count2/counting2/counting_521.jpg",
|
| 278 |
-
"image_name": "counting_521.jpg",
|
| 279 |
-
"difficulty": "easy",
|
| 280 |
-
"metrics": [
|
| 281 |
-
"exact_match",
|
| 282 |
-
"error_margin"
|
| 283 |
-
],
|
| 284 |
-
"question": "How many paper items are there in the picture?",
|
| 285 |
-
"answer": "9",
|
| 286 |
-
"final_category": "hard"
|
| 287 |
-
},
|
| 288 |
-
{
|
| 289 |
-
"id": "counting_522",
|
| 290 |
-
"image_path": "count2/counting2/counting_522.jpg",
|
| 291 |
-
"image_name": "counting_522.jpg",
|
| 292 |
-
"difficulty": "hard",
|
| 293 |
-
"metrics": [
|
| 294 |
-
"exact_match",
|
| 295 |
-
"error_margin"
|
| 296 |
-
],
|
| 297 |
-
"question": "How many ships are not at the dock in the picture?",
|
| 298 |
-
"answer": "50",
|
| 299 |
-
"final_category": "hard"
|
| 300 |
-
},
|
| 301 |
-
{
|
| 302 |
-
"id": "counting_523",
|
| 303 |
-
"image_path": "count2/counting2/counting_523.jpg",
|
| 304 |
-
"image_name": "counting_523.jpg",
|
| 305 |
-
"difficulty": "hard",
|
| 306 |
-
"metrics": [
|
| 307 |
-
"exact_match",
|
| 308 |
-
"error_margin"
|
| 309 |
-
],
|
| 310 |
-
"question": "How many different tools are there in the picture?",
|
| 311 |
-
"answer": "29",
|
| 312 |
-
"final_category": "hard"
|
| 313 |
-
},
|
| 314 |
-
{
|
| 315 |
-
"id": "counting_524",
|
| 316 |
-
"image_path": "count2/counting2/counting_524.jpg",
|
| 317 |
-
"image_name": "counting_524.jpg",
|
| 318 |
-
"difficulty": "hard",
|
| 319 |
-
"metrics": [
|
| 320 |
-
"exact_match",
|
| 321 |
-
"error_margin"
|
| 322 |
-
],
|
| 323 |
-
"question": "How many pairs of scissors are there in the picture?",
|
| 324 |
-
"answer": "1",
|
| 325 |
-
"final_category": "medium"
|
| 326 |
-
},
|
| 327 |
-
{
|
| 328 |
-
"id": "counting_525",
|
| 329 |
-
"image_path": "count2/counting2/counting_525.jpg",
|
| 330 |
-
"image_name": "counting_525.jpg",
|
| 331 |
-
"difficulty": "easy",
|
| 332 |
-
"metrics": [
|
| 333 |
-
"exact_match",
|
| 334 |
-
"error_margin"
|
| 335 |
-
],
|
| 336 |
-
"question": "How many people are there in the picture?",
|
| 337 |
-
"answer": "7",
|
| 338 |
-
"final_category": "hard"
|
| 339 |
-
},
|
| 340 |
-
{
|
| 341 |
-
"id": "counting_526",
|
| 342 |
-
"image_path": "count2/counting2/counting_526.jpg",
|
| 343 |
-
"image_name": "counting_526.jpg",
|
| 344 |
-
"difficulty": "easy",
|
| 345 |
-
"metrics": [
|
| 346 |
-
"exact_match",
|
| 347 |
-
"error_margin"
|
| 348 |
-
],
|
| 349 |
-
"question": "How many people are there in the picture?",
|
| 350 |
-
"answer": "14",
|
| 351 |
-
"final_category": "medium"
|
| 352 |
-
},
|
| 353 |
-
{
|
| 354 |
-
"id": "counting_527",
|
| 355 |
-
"image_path": "count2/counting2/counting_527.jpg",
|
| 356 |
-
"image_name": "counting_527.jpg",
|
| 357 |
-
"difficulty": "easy",
|
| 358 |
-
"metrics": [
|
| 359 |
-
"exact_match",
|
| 360 |
-
"error_margin"
|
| 361 |
-
],
|
| 362 |
-
"question": "How many lights are there in the picture?",
|
| 363 |
-
"answer": "2",
|
| 364 |
-
"final_category": "hard"
|
| 365 |
-
},
|
| 366 |
-
{
|
| 367 |
-
"id": "counting_528",
|
| 368 |
-
"image_path": "count2/counting2/counting_528.jpg",
|
| 369 |
-
"image_name": "counting_528.jpg",
|
| 370 |
-
"difficulty": "easy",
|
| 371 |
-
"metrics": [
|
| 372 |
-
"exact_match",
|
| 373 |
-
"error_margin"
|
| 374 |
-
],
|
| 375 |
-
"question": "How many electrical appliances are there on the table?",
|
| 376 |
-
"answer": "3",
|
| 377 |
-
"final_category": "hard"
|
| 378 |
-
},
|
| 379 |
-
{
|
| 380 |
-
"id": "counting_529",
|
| 381 |
-
"image_path": "count2/counting2/counting_529.jpg",
|
| 382 |
-
"image_name": "counting_529.jpg",
|
| 383 |
-
"difficulty": "easy",
|
| 384 |
-
"metrics": [
|
| 385 |
-
"exact_match",
|
| 386 |
-
"error_margin"
|
| 387 |
-
],
|
| 388 |
-
"question": "How many pens are there on the table?",
|
| 389 |
-
"answer": "3",
|
| 390 |
-
"final_category": "easy"
|
| 391 |
-
},
|
| 392 |
-
{
|
| 393 |
-
"id": "counting_530",
|
| 394 |
-
"image_path": "count2/counting2/counting_530.jpg",
|
| 395 |
-
"image_name": "counting_530.jpg",
|
| 396 |
-
"difficulty": "hard",
|
| 397 |
-
"metrics": [
|
| 398 |
-
"exact_match",
|
| 399 |
-
"error_margin"
|
| 400 |
-
],
|
| 401 |
-
"question": "How many bottles of mineral water are there in the picture?",
|
| 402 |
-
"answer": "13",
|
| 403 |
-
"final_category": "hard"
|
| 404 |
-
},
|
| 405 |
-
{
|
| 406 |
-
"id": "counting_531",
|
| 407 |
-
"image_path": "count2/counting2/counting_531.jpg",
|
| 408 |
-
"image_name": "counting_531.jpg",
|
| 409 |
-
"difficulty": "easy",
|
| 410 |
-
"metrics": [
|
| 411 |
-
"exact_match",
|
| 412 |
-
"error_margin"
|
| 413 |
-
],
|
| 414 |
-
"question": "How many tables are there in the picture?",
|
| 415 |
-
"answer": "11",
|
| 416 |
-
"final_category": "hard"
|
| 417 |
-
},
|
| 418 |
-
{
|
| 419 |
-
"id": "counting_532",
|
| 420 |
-
"image_path": "count2/counting2/counting_532.jpg",
|
| 421 |
-
"image_name": "counting_532.jpg",
|
| 422 |
-
"difficulty": "easy",
|
| 423 |
-
"metrics": [
|
| 424 |
-
"exact_match",
|
| 425 |
-
"error_margin"
|
| 426 |
-
],
|
| 427 |
-
"question": "How many physical hats are there in the picture?",
|
| 428 |
-
"answer": "5",
|
| 429 |
-
"final_category": "hard"
|
| 430 |
-
},
|
| 431 |
-
{
|
| 432 |
-
"id": "counting_533",
|
| 433 |
-
"image_path": "count2/counting2/counting_533.jpg",
|
| 434 |
-
"image_name": "counting_533.jpg",
|
| 435 |
-
"difficulty": "easy",
|
| 436 |
-
"metrics": [
|
| 437 |
-
"exact_match",
|
| 438 |
-
"error_margin"
|
| 439 |
-
],
|
| 440 |
-
"question": "How many lanterns are there in the picture?",
|
| 441 |
-
"answer": "5",
|
| 442 |
-
"final_category": "medium"
|
| 443 |
-
},
|
| 444 |
-
{
|
| 445 |
-
"id": "counting_534",
|
| 446 |
-
"image_path": "count2/counting2/counting_534.jpg",
|
| 447 |
-
"image_name": "counting_534.jpg",
|
| 448 |
-
"difficulty": "easy",
|
| 449 |
-
"metrics": [
|
| 450 |
-
"exact_match",
|
| 451 |
-
"error_margin"
|
| 452 |
-
],
|
| 453 |
-
"question": "How many belts are there in the picture?",
|
| 454 |
-
"answer": "9",
|
| 455 |
-
"final_category": "medium"
|
| 456 |
-
},
|
| 457 |
-
{
|
| 458 |
-
"id": "counting_535",
|
| 459 |
-
"image_path": "count2/counting2/counting_535.jpg",
|
| 460 |
-
"image_name": "counting_535.jpg",
|
| 461 |
-
"difficulty": "easy",
|
| 462 |
-
"metrics": [
|
| 463 |
-
"exact_match",
|
| 464 |
-
"error_margin"
|
| 465 |
-
],
|
| 466 |
-
"question": "How many cars are there in the picture?",
|
| 467 |
-
"answer": "4",
|
| 468 |
-
"final_category": "hard"
|
| 469 |
-
},
|
| 470 |
-
{
|
| 471 |
-
"id": "counting_536",
|
| 472 |
-
"image_path": "count2/counting2/counting_536.jpg",
|
| 473 |
-
"image_name": "counting_536.jpg",
|
| 474 |
-
"difficulty": "easy",
|
| 475 |
-
"metrics": [
|
| 476 |
-
"exact_match",
|
| 477 |
-
"error_margin"
|
| 478 |
-
],
|
| 479 |
-
"question": "How many tulips are there in the picture?",
|
| 480 |
-
"answer": "7",
|
| 481 |
-
"final_category": "medium"
|
| 482 |
-
},
|
| 483 |
-
{
|
| 484 |
-
"id": "counting_537",
|
| 485 |
-
"image_path": "count2/counting2/counting_537.jpg",
|
| 486 |
-
"image_name": "counting_537.jpg",
|
| 487 |
-
"difficulty": "easy",
|
| 488 |
-
"metrics": [
|
| 489 |
-
"exact_match",
|
| 490 |
-
"error_margin"
|
| 491 |
-
],
|
| 492 |
-
"question": "How many people are there in the picture?",
|
| 493 |
-
"answer": "5",
|
| 494 |
-
"final_category": "easy"
|
| 495 |
-
},
|
| 496 |
-
{
|
| 497 |
-
"id": "counting_538",
|
| 498 |
-
"image_path": "count2/counting2/counting_538.jpg",
|
| 499 |
-
"image_name": "counting_538.jpg",
|
| 500 |
-
"difficulty": "easy",
|
| 501 |
-
"metrics": [
|
| 502 |
-
"exact_match",
|
| 503 |
-
"error_margin"
|
| 504 |
-
],
|
| 505 |
-
"question": "How many bottles have white caps in the picture?",
|
| 506 |
-
"answer": "3",
|
| 507 |
-
"final_category": "medium"
|
| 508 |
-
},
|
| 509 |
-
{
|
| 510 |
-
"id": "counting_539",
|
| 511 |
-
"image_path": "count2/counting2/counting_539.jpg",
|
| 512 |
-
"image_name": "counting_539.jpg",
|
| 513 |
-
"difficulty": "easy",
|
| 514 |
-
"metrics": [
|
| 515 |
-
"exact_match",
|
| 516 |
-
"error_margin"
|
| 517 |
-
],
|
| 518 |
-
"question": "How many alcohol lamps are there in the picture?",
|
| 519 |
-
"answer": "1",
|
| 520 |
-
"final_category": "medium"
|
| 521 |
-
},
|
| 522 |
-
{
|
| 523 |
-
"id": "counting_540",
|
| 524 |
-
"image_path": "count2/counting2/counting_540.jpg",
|
| 525 |
-
"image_name": "counting_540.jpg",
|
| 526 |
-
"difficulty": "easy",
|
| 527 |
-
"metrics": [
|
| 528 |
-
"exact_match",
|
| 529 |
-
"error_margin"
|
| 530 |
-
],
|
| 531 |
-
"question": "How many people are playing with their phones in the picture?",
|
| 532 |
-
"answer": "2",
|
| 533 |
-
"final_category": "easy"
|
| 534 |
-
},
|
| 535 |
-
{
|
| 536 |
-
"id": "counting_541",
|
| 537 |
-
"image_path": "count2/counting2/counting_541.jpg",
|
| 538 |
-
"image_name": "counting_541.jpg",
|
| 539 |
-
"difficulty": "easy",
|
| 540 |
-
"metrics": [
|
| 541 |
-
"exact_match",
|
| 542 |
-
"error_margin"
|
| 543 |
-
],
|
| 544 |
-
"question": "How many glasses and watches are there in the picture?",
|
| 545 |
-
"answer": "5",
|
| 546 |
-
"final_category": "medium"
|
| 547 |
-
},
|
| 548 |
-
{
|
| 549 |
-
"id": "counting_542",
|
| 550 |
-
"image_path": "count2/counting2/counting_542.jpg",
|
| 551 |
-
"image_name": "counting_542.jpg",
|
| 552 |
-
"difficulty": "easy",
|
| 553 |
-
"metrics": [
|
| 554 |
-
"exact_match",
|
| 555 |
-
"error_margin"
|
| 556 |
-
],
|
| 557 |
-
"question": "How many people are there in the picture?",
|
| 558 |
-
"answer": "4",
|
| 559 |
-
"final_category": "easy"
|
| 560 |
-
},
|
| 561 |
-
{
|
| 562 |
-
"id": "counting_543",
|
| 563 |
-
"image_path": "count2/counting2/counting_543.jpg",
|
| 564 |
-
"image_name": "counting_543.jpg",
|
| 565 |
-
"difficulty": "easy",
|
| 566 |
-
"metrics": [
|
| 567 |
-
"exact_match",
|
| 568 |
-
"error_margin"
|
| 569 |
-
],
|
| 570 |
-
"question": "There are several electrophoresis power supplies in the picture",
|
| 571 |
-
"answer": "3",
|
| 572 |
-
"final_category": "medium"
|
| 573 |
-
},
|
| 574 |
-
{
|
| 575 |
-
"id": "counting_544",
|
| 576 |
-
"image_path": "count2/counting2/counting_544.jpg",
|
| 577 |
-
"image_name": "counting_544.jpg",
|
| 578 |
-
"difficulty": "hard",
|
| 579 |
-
"metrics": [
|
| 580 |
-
"exact_match",
|
| 581 |
-
"error_margin"
|
| 582 |
-
],
|
| 583 |
-
"question": "There are several wallets in the picture",
|
| 584 |
-
"answer": "3",
|
| 585 |
-
"final_category": "medium"
|
| 586 |
-
},
|
| 587 |
-
{
|
| 588 |
-
"id": "counting_545",
|
| 589 |
-
"image_path": "count2/counting2/counting_545.jpg",
|
| 590 |
-
"image_name": "counting_545.jpg",
|
| 591 |
-
"difficulty": "easy",
|
| 592 |
-
"metrics": [
|
| 593 |
-
"exact_match",
|
| 594 |
-
"error_margin"
|
| 595 |
-
],
|
| 596 |
-
"question": "There are several different items in the picture",
|
| 597 |
-
"answer": "11",
|
| 598 |
-
"final_category": "medium"
|
| 599 |
-
},
|
| 600 |
-
{
|
| 601 |
-
"id": "counting_546",
|
| 602 |
-
"image_path": "count2/counting2/counting_546.jpg",
|
| 603 |
-
"image_name": "counting_546.jpg",
|
| 604 |
-
"difficulty": "easy",
|
| 605 |
-
"metrics": [
|
| 606 |
-
"exact_match",
|
| 607 |
-
"error_margin"
|
| 608 |
-
],
|
| 609 |
-
"question": "How many people are there in the picture?",
|
| 610 |
-
"answer": "3",
|
| 611 |
-
"final_category": "medium"
|
| 612 |
-
},
|
| 613 |
-
{
|
| 614 |
-
"id": "counting_547",
|
| 615 |
-
"image_path": "count2/counting2/counting_547.jpg",
|
| 616 |
-
"image_name": "counting_547.jpg",
|
| 617 |
-
"difficulty": "hard",
|
| 618 |
-
"metrics": [
|
| 619 |
-
"exact_match",
|
| 620 |
-
"error_margin"
|
| 621 |
-
],
|
| 622 |
-
"question": "Ignoring the items on the upper right shelf in the picture, how many cups are there?",
|
| 623 |
-
"answer": "5",
|
| 624 |
-
"final_category": "medium"
|
| 625 |
-
},
|
| 626 |
-
{
|
| 627 |
-
"id": "counting_548",
|
| 628 |
-
"image_path": "count2/counting2/counting_548.jpg",
|
| 629 |
-
"image_name": "counting_548.jpg",
|
| 630 |
-
"difficulty": "easy",
|
| 631 |
-
"metrics": [
|
| 632 |
-
"exact_match",
|
| 633 |
-
"error_margin"
|
| 634 |
-
],
|
| 635 |
-
"question": "How many bottles of mineral water are there in the picture?",
|
| 636 |
-
"answer": "12",
|
| 637 |
-
"final_category": "hard"
|
| 638 |
-
},
|
| 639 |
-
{
|
| 640 |
-
"id": "counting_549",
|
| 641 |
-
"image_path": "count2/counting2/counting_549.jpg",
|
| 642 |
-
"image_name": "counting_549.jpg",
|
| 643 |
-
"difficulty": "easy",
|
| 644 |
-
"metrics": [
|
| 645 |
-
"exact_match",
|
| 646 |
-
"error_margin"
|
| 647 |
-
],
|
| 648 |
-
"question": "How many plates are there in the picture?",
|
| 649 |
-
"answer": "1",
|
| 650 |
-
"final_category": "easy"
|
| 651 |
-
},
|
| 652 |
-
{
|
| 653 |
-
"id": "counting_550",
|
| 654 |
-
"image_path": "count2/counting2/counting_550.jpg",
|
| 655 |
-
"image_name": "counting_550.jpg",
|
| 656 |
-
"difficulty": "hard",
|
| 657 |
-
"metrics": [
|
| 658 |
-
"exact_match",
|
| 659 |
-
"error_margin"
|
| 660 |
-
],
|
| 661 |
-
"question": "How many people are there in the picture?",
|
| 662 |
-
"answer": "9",
|
| 663 |
-
"final_category": "hard"
|
| 664 |
-
},
|
| 665 |
-
{
|
| 666 |
-
"id": "counting_551",
|
| 667 |
-
"image_path": "count2/counting2/counting_551.jpg",
|
| 668 |
-
"image_name": "counting_551.jpg",
|
| 669 |
-
"difficulty": "hard",
|
| 670 |
-
"metrics": [
|
| 671 |
-
"exact_match",
|
| 672 |
-
"error_margin"
|
| 673 |
-
],
|
| 674 |
-
"question": "How many intact price tags are there in the picture?",
|
| 675 |
-
"answer": "19",
|
| 676 |
-
"final_category": "medium"
|
| 677 |
-
},
|
| 678 |
-
{
|
| 679 |
-
"id": "counting_552",
|
| 680 |
-
"image_path": "count2/counting2/counting_552.jpg",
|
| 681 |
-
"image_name": "counting_552.jpg",
|
| 682 |
-
"difficulty": "easy",
|
| 683 |
-
"metrics": [
|
| 684 |
-
"exact_match",
|
| 685 |
-
"error_margin"
|
| 686 |
-
],
|
| 687 |
-
"question": "How many size labels are there at the top of the picture?",
|
| 688 |
-
"answer": "11",
|
| 689 |
-
"final_category": "hard"
|
| 690 |
-
},
|
| 691 |
-
{
|
| 692 |
-
"id": "counting_553",
|
| 693 |
-
"image_path": "count2/counting2/counting_553.jpg",
|
| 694 |
-
"image_name": "counting_553.jpg",
|
| 695 |
-
"difficulty": "easy",
|
| 696 |
-
"metrics": [
|
| 697 |
-
"exact_match",
|
| 698 |
-
"error_margin"
|
| 699 |
-
],
|
| 700 |
-
"question": "How many plates are there in the picture?",
|
| 701 |
-
"answer": "2",
|
| 702 |
-
"final_category": "hard"
|
| 703 |
-
},
|
| 704 |
-
{
|
| 705 |
-
"id": "counting_554",
|
| 706 |
-
"image_path": "count2/counting2/counting_554.jpg",
|
| 707 |
-
"image_name": "counting_554.jpg",
|
| 708 |
-
"difficulty": "easy",
|
| 709 |
-
"metrics": [
|
| 710 |
-
"exact_match",
|
| 711 |
-
"error_margin"
|
| 712 |
-
],
|
| 713 |
-
"question": "How many chairs are there in the picture?",
|
| 714 |
-
"answer": "4",
|
| 715 |
-
"final_category": "hard"
|
| 716 |
-
},
|
| 717 |
-
{
|
| 718 |
-
"id": "counting_555",
|
| 719 |
-
"image_path": "count2/counting2/counting_555.jpg",
|
| 720 |
-
"image_name": "counting_555.jpg",
|
| 721 |
-
"difficulty": "easy",
|
| 722 |
-
"metrics": [
|
| 723 |
-
"exact_match",
|
| 724 |
-
"error_margin"
|
| 725 |
-
],
|
| 726 |
-
"question": "How many elephants are there in the picture?",
|
| 727 |
-
"answer": "4",
|
| 728 |
-
"final_category": "easy"
|
| 729 |
-
},
|
| 730 |
-
{
|
| 731 |
-
"id": "counting_556",
|
| 732 |
-
"image_path": "count2/counting2/counting_556.jpg",
|
| 733 |
-
"image_name": "counting_556.jpg",
|
| 734 |
-
"difficulty": "easy",
|
| 735 |
-
"metrics": [
|
| 736 |
-
"exact_match",
|
| 737 |
-
"error_margin"
|
| 738 |
-
],
|
| 739 |
-
"question": "How many skewers of grilled shrimp are there?",
|
| 740 |
-
"answer": "1",
|
| 741 |
-
"final_category": "hard"
|
| 742 |
-
},
|
| 743 |
-
{
|
| 744 |
-
"id": "counting_557",
|
| 745 |
-
"image_path": "count2/counting2/counting_557.jpg",
|
| 746 |
-
"image_name": "counting_557.jpg",
|
| 747 |
-
"difficulty": "easy",
|
| 748 |
-
"metrics": [
|
| 749 |
-
"exact_match",
|
| 750 |
-
"error_margin"
|
| 751 |
-
],
|
| 752 |
-
"question": "How many people are there in the picture?",
|
| 753 |
-
"answer": "1",
|
| 754 |
-
"final_category": "easy"
|
| 755 |
-
},
|
| 756 |
-
{
|
| 757 |
-
"id": "counting_558",
|
| 758 |
-
"image_path": "count2/counting2/counting_558.jpg",
|
| 759 |
-
"image_name": "counting_558.jpg",
|
| 760 |
-
"difficulty": "easy",
|
| 761 |
-
"metrics": [
|
| 762 |
-
"exact_match",
|
| 763 |
-
"error_margin"
|
| 764 |
-
],
|
| 765 |
-
"question": "How many books are there in the picture?",
|
| 766 |
-
"answer": "2",
|
| 767 |
-
"final_category": "easy"
|
| 768 |
-
},
|
| 769 |
-
{
|
| 770 |
-
"id": "counting_559",
|
| 771 |
-
"image_path": "count2/counting2/counting_559.jpg",
|
| 772 |
-
"image_name": "counting_559.jpg",
|
| 773 |
-
"difficulty": "easy",
|
| 774 |
-
"metrics": [
|
| 775 |
-
"exact_match",
|
| 776 |
-
"error_margin"
|
| 777 |
-
],
|
| 778 |
-
"question": "How many pots of flowers are there in the picture?",
|
| 779 |
-
"answer": "4",
|
| 780 |
-
"final_category": "medium"
|
| 781 |
-
},
|
| 782 |
-
{
|
| 783 |
-
"id": "counting_560",
|
| 784 |
-
"image_path": "count2/counting2/counting_560.jpg",
|
| 785 |
-
"image_name": "counting_560.jpg",
|
| 786 |
-
"difficulty": "easy",
|
| 787 |
-
"metrics": [
|
| 788 |
-
"exact_match",
|
| 789 |
-
"error_margin"
|
| 790 |
-
],
|
| 791 |
-
"question": "How many taxis are there in the picture?",
|
| 792 |
-
"answer": "4",
|
| 793 |
-
"final_category": "medium"
|
| 794 |
-
},
|
| 795 |
-
{
|
| 796 |
-
"id": "counting_561",
|
| 797 |
-
"image_path": "count2/counting2/counting_561.jpg",
|
| 798 |
-
"image_name": "counting_561.jpg",
|
| 799 |
-
"difficulty": "easy",
|
| 800 |
-
"metrics": [
|
| 801 |
-
"exact_match",
|
| 802 |
-
"error_margin"
|
| 803 |
-
],
|
| 804 |
-
"question": "How many chairs are there in the picture?",
|
| 805 |
-
"answer": "6",
|
| 806 |
-
"final_category": "medium"
|
| 807 |
-
},
|
| 808 |
-
{
|
| 809 |
-
"id": "counting_562",
|
| 810 |
-
"image_path": "count2/counting2/counting_562.jpg",
|
| 811 |
-
"image_name": "counting_562.jpg",
|
| 812 |
-
"difficulty": "easy",
|
| 813 |
-
"metrics": [
|
| 814 |
-
"exact_match",
|
| 815 |
-
"error_margin"
|
| 816 |
-
],
|
| 817 |
-
"question": "How many mirrors are there in the picture?",
|
| 818 |
-
"answer": "1",
|
| 819 |
-
"final_category": "easy"
|
| 820 |
-
},
|
| 821 |
-
{
|
| 822 |
-
"id": "counting_563",
|
| 823 |
-
"image_path": "count2/counting2/counting_563.jpg",
|
| 824 |
-
"image_name": "counting_563.jpg",
|
| 825 |
-
"difficulty": "easy",
|
| 826 |
-
"metrics": [
|
| 827 |
-
"exact_match",
|
| 828 |
-
"error_margin"
|
| 829 |
-
],
|
| 830 |
-
"question": "How many lights are there in the picture?",
|
| 831 |
-
"answer": "2",
|
| 832 |
-
"final_category": "medium"
|
| 833 |
-
},
|
| 834 |
-
{
|
| 835 |
-
"id": "counting_564",
|
| 836 |
-
"image_path": "count2/counting2/counting_564.jpg",
|
| 837 |
-
"image_name": "counting_564.jpg",
|
| 838 |
-
"difficulty": "easy",
|
| 839 |
-
"metrics": [
|
| 840 |
-
"exact_match",
|
| 841 |
-
"error_margin"
|
| 842 |
-
],
|
| 843 |
-
"question": "How many pillows are there in the picture?",
|
| 844 |
-
"answer": "2",
|
| 845 |
-
"final_category": "easy"
|
| 846 |
-
},
|
| 847 |
-
{
|
| 848 |
-
"id": "counting_565",
|
| 849 |
-
"image_path": "count2/counting2/counting_565.jpg",
|
| 850 |
-
"image_name": "counting_565.jpg",
|
| 851 |
-
"difficulty": "easy",
|
| 852 |
-
"metrics": [
|
| 853 |
-
"exact_match",
|
| 854 |
-
"error_margin"
|
| 855 |
-
],
|
| 856 |
-
"question": "How many purple bases are there in the picture?",
|
| 857 |
-
"answer": "25",
|
| 858 |
-
"final_category": "medium"
|
| 859 |
-
},
|
| 860 |
-
{
|
| 861 |
-
"id": "counting_566",
|
| 862 |
-
"image_path": "count2/counting2/counting_566.jpg",
|
| 863 |
-
"image_name": "counting_566.jpg",
|
| 864 |
-
"difficulty": "easy",
|
| 865 |
-
"metrics": [
|
| 866 |
-
"exact_match",
|
| 867 |
-
"error_margin"
|
| 868 |
-
],
|
| 869 |
-
"question": "How many lanterns are there in the picture?",
|
| 870 |
-
"answer": "3",
|
| 871 |
-
"final_category": "medium"
|
| 872 |
-
},
|
| 873 |
-
{
|
| 874 |
-
"id": "counting_567",
|
| 875 |
-
"image_path": "count2/counting2/counting_567.jpg",
|
| 876 |
-
"image_name": "counting_567.jpg",
|
| 877 |
-
"difficulty": "easy",
|
| 878 |
-
"metrics": [
|
| 879 |
-
"exact_match",
|
| 880 |
-
"error_margin"
|
| 881 |
-
],
|
| 882 |
-
"question": "How many flags are there in the picture?",
|
| 883 |
-
"answer": "8",
|
| 884 |
-
"final_category": "medium"
|
| 885 |
-
},
|
| 886 |
-
{
|
| 887 |
-
"id": "counting_568",
|
| 888 |
-
"image_path": "count2/counting2/counting_568.jpg",
|
| 889 |
-
"image_name": "counting_568.jpg",
|
| 890 |
-
"difficulty": "easy",
|
| 891 |
-
"metrics": [
|
| 892 |
-
"exact_match",
|
| 893 |
-
"error_margin"
|
| 894 |
-
],
|
| 895 |
-
"question": "How many gourds are there in the picture?",
|
| 896 |
-
"answer": "5",
|
| 897 |
-
"final_category": "medium"
|
| 898 |
-
},
|
| 899 |
-
{
|
| 900 |
-
"id": "counting_569",
|
| 901 |
-
"image_path": "count2/counting2/counting_569.jpg",
|
| 902 |
-
"image_name": "counting_569.jpg",
|
| 903 |
-
"difficulty": "easy",
|
| 904 |
-
"metrics": [
|
| 905 |
-
"exact_match",
|
| 906 |
-
"error_margin"
|
| 907 |
-
],
|
| 908 |
-
"question": "How many kiwis are there in the picture?",
|
| 909 |
-
"answer": "2",
|
| 910 |
-
"final_category": "easy"
|
| 911 |
-
},
|
| 912 |
-
{
|
| 913 |
-
"id": "counting_570",
|
| 914 |
-
"image_path": "count2/counting2/counting_570.jpg",
|
| 915 |
-
"image_name": "counting_570.jpg",
|
| 916 |
-
"difficulty": "easy",
|
| 917 |
-
"metrics": [
|
| 918 |
-
"exact_match",
|
| 919 |
-
"error_margin"
|
| 920 |
-
],
|
| 921 |
-
"question": "How many bowls and plates are there on the table in the picture?",
|
| 922 |
-
"answer": "9",
|
| 923 |
-
"final_category": "medium"
|
| 924 |
-
},
|
| 925 |
-
{
|
| 926 |
-
"id": "counting_571",
|
| 927 |
-
"image_path": "count2/counting2/counting_571.jpg",
|
| 928 |
-
"image_name": "counting_571.jpg",
|
| 929 |
-
"difficulty": "easy",
|
| 930 |
-
"metrics": [
|
| 931 |
-
"exact_match",
|
| 932 |
-
"error_margin"
|
| 933 |
-
],
|
| 934 |
-
"question": "How many people are there in the picture?",
|
| 935 |
-
"answer": "3",
|
| 936 |
-
"final_category": "easy"
|
| 937 |
-
},
|
| 938 |
-
{
|
| 939 |
-
"id": "counting_572",
|
| 940 |
-
"image_path": "count2/counting2/counting_572.jpg",
|
| 941 |
-
"image_name": "counting_572.jpg",
|
| 942 |
-
"difficulty": "easy",
|
| 943 |
-
"metrics": [
|
| 944 |
-
"exact_match",
|
| 945 |
-
"error_margin"
|
| 946 |
-
],
|
| 947 |
-
"question": "How many children are there in the picture?",
|
| 948 |
-
"answer": "2",
|
| 949 |
-
"final_category": "easy"
|
| 950 |
-
},
|
| 951 |
-
{
|
| 952 |
-
"id": "counting_573",
|
| 953 |
-
"image_path": "count2/counting2/counting_573.jpg",
|
| 954 |
-
"image_name": "counting_573.jpg",
|
| 955 |
-
"difficulty": "easy",
|
| 956 |
-
"metrics": [
|
| 957 |
-
"exact_match",
|
| 958 |
-
"error_margin"
|
| 959 |
-
],
|
| 960 |
-
"question": "How many people are there in the picture?",
|
| 961 |
-
"answer": "2",
|
| 962 |
-
"final_category": "easy"
|
| 963 |
-
},
|
| 964 |
-
{
|
| 965 |
-
"id": "counting_574",
|
| 966 |
-
"image_path": "count2/counting2/counting_574.jpg",
|
| 967 |
-
"image_name": "counting_574.jpg",
|
| 968 |
-
"difficulty": "easy",
|
| 969 |
-
"metrics": [
|
| 970 |
-
"exact_match",
|
| 971 |
-
"error_margin"
|
| 972 |
-
],
|
| 973 |
-
"question": "What is the number of fruit plates multiplied by the number of cups in the picture?",
|
| 974 |
-
"answer": "6",
|
| 975 |
-
"final_category": "medium"
|
| 976 |
-
},
|
| 977 |
-
{
|
| 978 |
-
"id": "counting_575",
|
| 979 |
-
"image_path": "count2/counting2/counting_575.jpg",
|
| 980 |
-
"image_name": "counting_575.jpg",
|
| 981 |
-
"difficulty": "easy",
|
| 982 |
-
"metrics": [
|
| 983 |
-
"exact_match",
|
| 984 |
-
"error_margin"
|
| 985 |
-
],
|
| 986 |
-
"question": "How many people are there on the runway in the picture?",
|
| 987 |
-
"answer": "11",
|
| 988 |
-
"final_category": "hard"
|
| 989 |
-
},
|
| 990 |
-
{
|
| 991 |
-
"id": "counting_576",
|
| 992 |
-
"image_path": "count2/counting2/counting_576.jpg",
|
| 993 |
-
"image_name": "counting_576.jpg",
|
| 994 |
-
"difficulty": "easy",
|
| 995 |
-
"metrics": [
|
| 996 |
-
"exact_match",
|
| 997 |
-
"error_margin"
|
| 998 |
-
],
|
| 999 |
-
"question": "How many antlers are there in the picture?",
|
| 1000 |
-
"answer": "4",
|
| 1001 |
-
"final_category": "medium"
|
| 1002 |
-
},
|
| 1003 |
-
{
|
| 1004 |
-
"id": "counting_577",
|
| 1005 |
-
"image_path": "count2/counting2/counting_577.jpg",
|
| 1006 |
-
"image_name": "counting_577.jpg",
|
| 1007 |
-
"difficulty": "easy",
|
| 1008 |
-
"metrics": [
|
| 1009 |
-
"exact_match",
|
| 1010 |
-
"error_margin"
|
| 1011 |
-
],
|
| 1012 |
-
"question": "How many green boxes are there in the picture?",
|
| 1013 |
-
"answer": "9",
|
| 1014 |
-
"final_category": "hard"
|
| 1015 |
-
},
|
| 1016 |
-
{
|
| 1017 |
-
"id": "counting_578",
|
| 1018 |
-
"image_path": "count2/counting2/counting_578.jpg",
|
| 1019 |
-
"image_name": "counting_578.jpg",
|
| 1020 |
-
"difficulty": "easy",
|
| 1021 |
-
"metrics": [
|
| 1022 |
-
"exact_match",
|
| 1023 |
-
"error_margin"
|
| 1024 |
-
],
|
| 1025 |
-
"question": "How many people are there in the picture?",
|
| 1026 |
-
"answer": "8",
|
| 1027 |
-
"final_category": "hard"
|
| 1028 |
-
},
|
| 1029 |
-
{
|
| 1030 |
-
"id": "counting_579",
|
| 1031 |
-
"image_path": "count2/counting2/counting_579.jpg",
|
| 1032 |
-
"image_name": "counting_579.jpg",
|
| 1033 |
-
"difficulty": "easy",
|
| 1034 |
-
"metrics": [
|
| 1035 |
-
"exact_match",
|
| 1036 |
-
"error_margin"
|
| 1037 |
-
],
|
| 1038 |
-
"question": "How many bottles of pink drinks are there in the picture?",
|
| 1039 |
-
"answer": "8",
|
| 1040 |
-
"final_category": "medium"
|
| 1041 |
-
},
|
| 1042 |
-
{
|
| 1043 |
-
"id": "counting_580",
|
| 1044 |
-
"image_path": "count2/counting2/counting_580.jpg",
|
| 1045 |
-
"image_name": "counting_580.jpg",
|
| 1046 |
-
"difficulty": "easy",
|
| 1047 |
-
"metrics": [
|
| 1048 |
-
"exact_match",
|
| 1049 |
-
"error_margin"
|
| 1050 |
-
],
|
| 1051 |
-
"question": "How many LAMER skincare products are there in the picture?",
|
| 1052 |
-
"answer": "5",
|
| 1053 |
-
"final_category": "medium"
|
| 1054 |
-
},
|
| 1055 |
-
{
|
| 1056 |
-
"id": "counting_581",
|
| 1057 |
-
"image_path": "count2/counting2/counting_581.jpg",
|
| 1058 |
-
"image_name": "counting_581.jpg",
|
| 1059 |
-
"difficulty": "hard",
|
| 1060 |
-
"metrics": [
|
| 1061 |
-
"exact_match",
|
| 1062 |
-
"error_margin"
|
| 1063 |
-
],
|
| 1064 |
-
"question": "How many planes are there in the picture?",
|
| 1065 |
-
"answer": "30",
|
| 1066 |
-
"final_category": "hard"
|
| 1067 |
-
},
|
| 1068 |
-
{
|
| 1069 |
-
"id": "counting_582",
|
| 1070 |
-
"image_path": "count2/counting2/counting_582.jpg",
|
| 1071 |
-
"image_name": "counting_582.jpg",
|
| 1072 |
-
"difficulty": "easy",
|
| 1073 |
-
"metrics": [
|
| 1074 |
-
"exact_match",
|
| 1075 |
-
"error_margin"
|
| 1076 |
-
],
|
| 1077 |
-
"question": "How many guitars are there in the picture?",
|
| 1078 |
-
"answer": "11",
|
| 1079 |
-
"final_category": "medium"
|
| 1080 |
-
},
|
| 1081 |
-
{
|
| 1082 |
-
"id": "counting_583",
|
| 1083 |
-
"image_path": "count2/counting2/counting_583.jpg",
|
| 1084 |
-
"image_name": "counting_583.jpg",
|
| 1085 |
-
"difficulty": "easy",
|
| 1086 |
-
"metrics": [
|
| 1087 |
-
"exact_match",
|
| 1088 |
-
"error_margin"
|
| 1089 |
-
],
|
| 1090 |
-
"question": "How many people in the picture don\u2019t have white hair?",
|
| 1091 |
-
"answer": "4",
|
| 1092 |
-
"final_category": "medium"
|
| 1093 |
-
},
|
| 1094 |
-
{
|
| 1095 |
-
"id": "counting_584",
|
| 1096 |
-
"image_path": "count2/counting2/counting_584.jpg",
|
| 1097 |
-
"image_name": "counting_584.jpg",
|
| 1098 |
-
"difficulty": "easy",
|
| 1099 |
-
"metrics": [
|
| 1100 |
-
"exact_match",
|
| 1101 |
-
"error_margin"
|
| 1102 |
-
],
|
| 1103 |
-
"question": "How many containers have orange caps?",
|
| 1104 |
-
"answer": "26",
|
| 1105 |
-
"final_category": "hard"
|
| 1106 |
-
},
|
| 1107 |
-
{
|
| 1108 |
-
"id": "counting_585",
|
| 1109 |
-
"image_path": "count2/counting2/counting_585.jpg",
|
| 1110 |
-
"image_name": "counting_585.jpg",
|
| 1111 |
-
"difficulty": "easy",
|
| 1112 |
-
"metrics": [
|
| 1113 |
-
"exact_match",
|
| 1114 |
-
"error_margin"
|
| 1115 |
-
],
|
| 1116 |
-
"question": "How many kettles are there in the picture?",
|
| 1117 |
-
"answer": "2",
|
| 1118 |
-
"final_category": "easy"
|
| 1119 |
-
},
|
| 1120 |
-
{
|
| 1121 |
-
"id": "counting_586",
|
| 1122 |
-
"image_path": "count2/counting2/counting_586.jpg",
|
| 1123 |
-
"image_name": "counting_586.jpg",
|
| 1124 |
-
"difficulty": "easy",
|
| 1125 |
-
"metrics": [
|
| 1126 |
-
"exact_match",
|
| 1127 |
-
"error_margin"
|
| 1128 |
-
],
|
| 1129 |
-
"question": "How many speakers are there in the picture?",
|
| 1130 |
-
"answer": "6",
|
| 1131 |
-
"final_category": "hard"
|
| 1132 |
-
},
|
| 1133 |
-
{
|
| 1134 |
-
"id": "counting_587",
|
| 1135 |
-
"image_path": "count2/counting2/counting_587.jpg",
|
| 1136 |
-
"image_name": "counting_587.jpg",
|
| 1137 |
-
"difficulty": "easy",
|
| 1138 |
-
"metrics": [
|
| 1139 |
-
"exact_match",
|
| 1140 |
-
"error_margin"
|
| 1141 |
-
],
|
| 1142 |
-
"question": "How many mineral water bottles are there in the picture?",
|
| 1143 |
-
"answer": "0",
|
| 1144 |
-
"final_category": "easy"
|
| 1145 |
-
},
|
| 1146 |
-
{
|
| 1147 |
-
"id": "counting_588",
|
| 1148 |
-
"image_path": "count2/counting2/counting_588.jpg",
|
| 1149 |
-
"image_name": "counting_588.jpg",
|
| 1150 |
-
"difficulty": "easy",
|
| 1151 |
-
"metrics": [
|
| 1152 |
-
"exact_match",
|
| 1153 |
-
"error_margin"
|
| 1154 |
-
],
|
| 1155 |
-
"question": "How many types of food are there in the picture?",
|
| 1156 |
-
"answer": "4",
|
| 1157 |
-
"final_category": "medium"
|
| 1158 |
-
},
|
| 1159 |
-
{
|
| 1160 |
-
"id": "counting_589",
|
| 1161 |
-
"image_path": "count2/counting2/counting_589.jpg",
|
| 1162 |
-
"image_name": "counting_589.jpg",
|
| 1163 |
-
"difficulty": "easy",
|
| 1164 |
-
"metrics": [
|
| 1165 |
-
"exact_match",
|
| 1166 |
-
"error_margin"
|
| 1167 |
-
],
|
| 1168 |
-
"question": "How many electronic products are there in the picture?",
|
| 1169 |
-
"answer": "6",
|
| 1170 |
-
"final_category": "medium"
|
| 1171 |
-
},
|
| 1172 |
-
{
|
| 1173 |
-
"id": "counting_590",
|
| 1174 |
-
"image_path": "count2/counting2/counting_590.jpg",
|
| 1175 |
-
"image_name": "counting_590.jpg",
|
| 1176 |
-
"difficulty": "easy",
|
| 1177 |
-
"metrics": [
|
| 1178 |
-
"exact_match",
|
| 1179 |
-
"error_margin"
|
| 1180 |
-
],
|
| 1181 |
-
"question": "How many gourds are there in the picture?",
|
| 1182 |
-
"answer": "4",
|
| 1183 |
-
"final_category": "hard"
|
| 1184 |
-
},
|
| 1185 |
-
{
|
| 1186 |
-
"id": "counting_591",
|
| 1187 |
-
"image_path": "count2/counting2/counting_591.jpg",
|
| 1188 |
-
"image_name": "counting_591.jpg",
|
| 1189 |
-
"difficulty": "easy",
|
| 1190 |
-
"metrics": [
|
| 1191 |
-
"exact_match",
|
| 1192 |
-
"error_margin"
|
| 1193 |
-
],
|
| 1194 |
-
"question": "How many ships are there in the picture?",
|
| 1195 |
-
"answer": "32",
|
| 1196 |
-
"final_category": "hard"
|
| 1197 |
-
},
|
| 1198 |
-
{
|
| 1199 |
-
"id": "counting_592",
|
| 1200 |
-
"image_path": "count2/counting2/counting_592.jpg",
|
| 1201 |
-
"image_name": "counting_592.jpg",
|
| 1202 |
-
"difficulty": "easy",
|
| 1203 |
-
"metrics": [
|
| 1204 |
-
"exact_match",
|
| 1205 |
-
"error_margin"
|
| 1206 |
-
],
|
| 1207 |
-
"question": "How many empty bottles are there in the picture?",
|
| 1208 |
-
"answer": "0",
|
| 1209 |
-
"final_category": "easy"
|
| 1210 |
-
},
|
| 1211 |
-
{
|
| 1212 |
-
"id": "counting_593",
|
| 1213 |
-
"image_path": "count2/counting2/counting_593.jpg",
|
| 1214 |
-
"image_name": "counting_593.jpg",
|
| 1215 |
-
"difficulty": "easy",
|
| 1216 |
-
"metrics": [
|
| 1217 |
-
"exact_match",
|
| 1218 |
-
"error_margin"
|
| 1219 |
-
],
|
| 1220 |
-
"question": "How many pairs of shoes are there in the picture?",
|
| 1221 |
-
"answer": "1",
|
| 1222 |
-
"final_category": "medium"
|
| 1223 |
-
},
|
| 1224 |
-
{
|
| 1225 |
-
"id": "counting_594",
|
| 1226 |
-
"image_path": "count2/counting2/counting_594.jpg",
|
| 1227 |
-
"image_name": "counting_594.jpg",
|
| 1228 |
-
"difficulty": "easy",
|
| 1229 |
-
"metrics": [
|
| 1230 |
-
"exact_match",
|
| 1231 |
-
"error_margin"
|
| 1232 |
-
],
|
| 1233 |
-
"question": "How many women are lying on the lawn in the picture?",
|
| 1234 |
-
"answer": "1",
|
| 1235 |
-
"final_category": "hard"
|
| 1236 |
-
},
|
| 1237 |
-
{
|
| 1238 |
-
"id": "counting_595",
|
| 1239 |
-
"image_path": "count2/counting2/counting_595.jpg",
|
| 1240 |
-
"image_name": "counting_595.jpg",
|
| 1241 |
-
"difficulty": "easy",
|
| 1242 |
-
"metrics": [
|
| 1243 |
-
"exact_match",
|
| 1244 |
-
"error_margin"
|
| 1245 |
-
],
|
| 1246 |
-
"question": "How many planes are there in the picture?",
|
| 1247 |
-
"answer": "5",
|
| 1248 |
-
"final_category": "hard"
|
| 1249 |
-
},
|
| 1250 |
-
{
|
| 1251 |
-
"id": "counting_596",
|
| 1252 |
-
"image_path": "count2/counting2/counting_596.jpg",
|
| 1253 |
-
"image_name": "counting_596.jpg",
|
| 1254 |
-
"difficulty": "easy",
|
| 1255 |
-
"metrics": [
|
| 1256 |
-
"exact_match",
|
| 1257 |
-
"error_margin"
|
| 1258 |
-
],
|
| 1259 |
-
"question": "How many guitars are there in the picture?",
|
| 1260 |
-
"answer": "8",
|
| 1261 |
-
"final_category": "medium"
|
| 1262 |
-
},
|
| 1263 |
-
{
|
| 1264 |
-
"id": "counting_597",
|
| 1265 |
-
"image_path": "count2/counting2/counting_597.jpg",
|
| 1266 |
-
"image_name": "counting_597.jpg",
|
| 1267 |
-
"difficulty": "hard",
|
| 1268 |
-
"metrics": [
|
| 1269 |
-
"exact_match",
|
| 1270 |
-
"error_margin"
|
| 1271 |
-
],
|
| 1272 |
-
"question": "How many tools are there in the picture, excluding the hole saws?",
|
| 1273 |
-
"answer": "23",
|
| 1274 |
-
"final_category": "medium"
|
| 1275 |
-
},
|
| 1276 |
-
{
|
| 1277 |
-
"id": "counting_598",
|
| 1278 |
-
"image_path": "count2/counting2/counting_598.jpg",
|
| 1279 |
-
"image_name": "counting_598.jpg",
|
| 1280 |
-
"difficulty": "easy",
|
| 1281 |
-
"metrics": [
|
| 1282 |
-
"exact_match",
|
| 1283 |
-
"error_margin"
|
| 1284 |
-
],
|
| 1285 |
-
"question": "How many apples are there in the picture?",
|
| 1286 |
-
"answer": "18",
|
| 1287 |
-
"final_category": "medium"
|
| 1288 |
-
},
|
| 1289 |
-
{
|
| 1290 |
-
"id": "counting_599",
|
| 1291 |
-
"image_path": "count2/counting2/counting_599.jpg",
|
| 1292 |
-
"image_name": "counting_599.jpg",
|
| 1293 |
-
"difficulty": "easy",
|
| 1294 |
-
"metrics": [
|
| 1295 |
-
"exact_match",
|
| 1296 |
-
"error_margin"
|
| 1297 |
-
],
|
| 1298 |
-
"question": "How many black pieces are there on the middle chessboard?",
|
| 1299 |
-
"answer": "11",
|
| 1300 |
-
"final_category": "hard"
|
| 1301 |
-
},
|
| 1302 |
-
{
|
| 1303 |
-
"id": "counting_600",
|
| 1304 |
-
"image_path": "count2/counting2/counting_600.jpg",
|
| 1305 |
-
"image_name": "counting_600.jpg",
|
| 1306 |
-
"difficulty": "easy",
|
| 1307 |
-
"metrics": [
|
| 1308 |
-
"exact_match",
|
| 1309 |
-
"error_margin"
|
| 1310 |
-
],
|
| 1311 |
-
"question": "How many red pieces are not on the center board?",
|
| 1312 |
-
"answer": "8",
|
| 1313 |
-
"final_category": "hard"
|
| 1314 |
-
},
|
| 1315 |
-
{
|
| 1316 |
-
"id": "counting_601",
|
| 1317 |
-
"image_path": "count2/counting2/counting_601.jpg",
|
| 1318 |
-
"image_name": "counting_601.jpg",
|
| 1319 |
-
"difficulty": "easy",
|
| 1320 |
-
"metrics": [
|
| 1321 |
-
"exact_match",
|
| 1322 |
-
"error_margin"
|
| 1323 |
-
],
|
| 1324 |
-
"question": "How many apples are there in the picture?",
|
| 1325 |
-
"answer": "33",
|
| 1326 |
-
"final_category": "hard"
|
| 1327 |
-
}
|
| 1328 |
-
]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
counting/relation_tasks.json
DELETED
|
@@ -1,1289 +0,0 @@
|
|
| 1 |
-
[
|
| 2 |
-
{
|
| 3 |
-
"id": "counting_5",
|
| 4 |
-
"image_path": "counting/images/counting_5.jpg",
|
| 5 |
-
"image_name": "counting_5.jpg",
|
| 6 |
-
"difficulty": "medium",
|
| 7 |
-
"metrics": [
|
| 8 |
-
"exact_match",
|
| 9 |
-
"error_margin"
|
| 10 |
-
],
|
| 11 |
-
"question": "Which side of the person in red is the person in yellow on?",
|
| 12 |
-
"answer": "left",
|
| 13 |
-
"final_category": "medium"
|
| 14 |
-
},
|
| 15 |
-
{
|
| 16 |
-
"id": "counting_6",
|
| 17 |
-
"image_path": "counting/images/counting_6.jpg",
|
| 18 |
-
"image_name": "counting_6.jpg",
|
| 19 |
-
"difficulty": "medium",
|
| 20 |
-
"metrics": [
|
| 21 |
-
"exact_match",
|
| 22 |
-
"error_margin"
|
| 23 |
-
],
|
| 24 |
-
"question": "Which side is the cat in blue clothes on compared to the cat in pink clothes? ",
|
| 25 |
-
"answer": "left",
|
| 26 |
-
"final_category": "medium"
|
| 27 |
-
},
|
| 28 |
-
{
|
| 29 |
-
"id": "counting_10",
|
| 30 |
-
"image_path": "counting/images/counting_10.jpg",
|
| 31 |
-
"image_name": "counting_10.jpg",
|
| 32 |
-
"difficulty": "medium",
|
| 33 |
-
"metrics": [
|
| 34 |
-
"exact_match",
|
| 35 |
-
"error_margin"
|
| 36 |
-
],
|
| 37 |
-
"question": "Where is the blue pens in relation to the black pens?",
|
| 38 |
-
"answer": "up",
|
| 39 |
-
"final_category": "medium"
|
| 40 |
-
},
|
| 41 |
-
{
|
| 42 |
-
"id": "counting_10",
|
| 43 |
-
"image_path": "counting/images/counting_10.jpg",
|
| 44 |
-
"image_name": "counting_10.jpg",
|
| 45 |
-
"difficulty": "medium",
|
| 46 |
-
"metrics": [
|
| 47 |
-
"exact_match",
|
| 48 |
-
"error_margin"
|
| 49 |
-
],
|
| 50 |
-
"question": "Where is the pencil case in relation to the watch?",
|
| 51 |
-
"answer": "under",
|
| 52 |
-
"final_category": "medium"
|
| 53 |
-
},
|
| 54 |
-
{
|
| 55 |
-
"id": "counting_11",
|
| 56 |
-
"image_path": "counting/images/counting_11.jpg",
|
| 57 |
-
"image_name": "counting_11.jpg",
|
| 58 |
-
"difficulty": "medium",
|
| 59 |
-
"metrics": [
|
| 60 |
-
"exact_match",
|
| 61 |
-
"error_margin"
|
| 62 |
-
],
|
| 63 |
-
"question": "Where is the green ball in relation to the white ball?",
|
| 64 |
-
"answer": "above",
|
| 65 |
-
"final_category": "medium"
|
| 66 |
-
},
|
| 67 |
-
{
|
| 68 |
-
"id": "counting_11",
|
| 69 |
-
"image_path": "counting/images/counting_11.jpg",
|
| 70 |
-
"image_name": "counting_11.jpg",
|
| 71 |
-
"difficulty": "medium",
|
| 72 |
-
"metrics": [
|
| 73 |
-
"exact_match",
|
| 74 |
-
"error_margin"
|
| 75 |
-
],
|
| 76 |
-
"question": "Where is the red ball in relation to the yellow ball?",
|
| 77 |
-
"answer": "right",
|
| 78 |
-
"final_category": "medium"
|
| 79 |
-
},
|
| 80 |
-
{
|
| 81 |
-
"id": "counting_13",
|
| 82 |
-
"image_path": "counting/images/counting_13.jpg",
|
| 83 |
-
"image_name": "counting_13.jpg",
|
| 84 |
-
"difficulty": "medium",
|
| 85 |
-
"metrics": [
|
| 86 |
-
"exact_match",
|
| 87 |
-
"error_margin"
|
| 88 |
-
],
|
| 89 |
-
"question": "Where is the cut tomato in relation to the rest of the tomatoes?",
|
| 90 |
-
"answer": "above",
|
| 91 |
-
"final_category": "medium"
|
| 92 |
-
},
|
| 93 |
-
{
|
| 94 |
-
"id": "counting_15",
|
| 95 |
-
"image_path": "counting/images/counting_15.jpg",
|
| 96 |
-
"image_name": "counting_15.jpg",
|
| 97 |
-
"difficulty": "medium",
|
| 98 |
-
"metrics": [
|
| 99 |
-
"exact_match",
|
| 100 |
-
"error_margin"
|
| 101 |
-
],
|
| 102 |
-
"question": "Which side is the purple slipper on compared to the white slipper?",
|
| 103 |
-
"answer": "left",
|
| 104 |
-
"final_category": "medium"
|
| 105 |
-
},
|
| 106 |
-
{
|
| 107 |
-
"id": "counting_15",
|
| 108 |
-
"image_path": "counting/images/counting_15.jpg",
|
| 109 |
-
"image_name": "counting_15.jpg",
|
| 110 |
-
"difficulty": "medium",
|
| 111 |
-
"metrics": [
|
| 112 |
-
"exact_match",
|
| 113 |
-
"error_margin"
|
| 114 |
-
],
|
| 115 |
-
"question": "Which side is the black slipper on compared to the purple slipper?",
|
| 116 |
-
"answer": "above",
|
| 117 |
-
"final_category": "medium"
|
| 118 |
-
},
|
| 119 |
-
{
|
| 120 |
-
"id": "counting_16",
|
| 121 |
-
"image_path": "counting/images/counting_16.jpg",
|
| 122 |
-
"image_name": "counting_16.jpg",
|
| 123 |
-
"difficulty": "medium",
|
| 124 |
-
"metrics": [
|
| 125 |
-
"exact_match",
|
| 126 |
-
"error_margin"
|
| 127 |
-
],
|
| 128 |
-
"question": "Where is the red pen in relation to the white pen?",
|
| 129 |
-
"answer": "right",
|
| 130 |
-
"final_category": "medium"
|
| 131 |
-
},
|
| 132 |
-
{
|
| 133 |
-
"id": "counting_18",
|
| 134 |
-
"image_path": "counting/images/counting_18.jpg",
|
| 135 |
-
"image_name": "counting_18.jpg",
|
| 136 |
-
"difficulty": "easy",
|
| 137 |
-
"metrics": [
|
| 138 |
-
"exact_match",
|
| 139 |
-
"error_margin"
|
| 140 |
-
],
|
| 141 |
-
"question": "Where is the white cat in the group of cats?",
|
| 142 |
-
"answer": "middle",
|
| 143 |
-
"final_category": "medium"
|
| 144 |
-
},
|
| 145 |
-
{
|
| 146 |
-
"id": "counting_18",
|
| 147 |
-
"image_path": "counting/images/counting_18.jpg",
|
| 148 |
-
"image_name": "counting_18.jpg",
|
| 149 |
-
"difficulty": "easy",
|
| 150 |
-
"metrics": [
|
| 151 |
-
"exact_match",
|
| 152 |
-
"error_margin"
|
| 153 |
-
],
|
| 154 |
-
"question": "Where is the white cat in relation to the black cat?",
|
| 155 |
-
"answer": "above",
|
| 156 |
-
"final_category": "medium"
|
| 157 |
-
},
|
| 158 |
-
{
|
| 159 |
-
"id": "counting_29",
|
| 160 |
-
"image_path": "counting/images/counting_29.jpg",
|
| 161 |
-
"image_name": "counting_29.jpg",
|
| 162 |
-
"difficulty": "medium",
|
| 163 |
-
"metrics": [
|
| 164 |
-
"exact_match",
|
| 165 |
-
"error_margin"
|
| 166 |
-
],
|
| 167 |
-
"question": "Where is the person in relation to the dogs?",
|
| 168 |
-
"answer": "right",
|
| 169 |
-
"final_category": "medium"
|
| 170 |
-
},
|
| 171 |
-
{
|
| 172 |
-
"id": "counting_36",
|
| 173 |
-
"image_path": "counting/images/counting_36.jpg",
|
| 174 |
-
"image_name": "counting_36.jpg",
|
| 175 |
-
"difficulty": "medium",
|
| 176 |
-
"metrics": [
|
| 177 |
-
"exact_match",
|
| 178 |
-
"error_margin"
|
| 179 |
-
],
|
| 180 |
-
"question": "Where is the yellow cup in relation to the orange cup?",
|
| 181 |
-
"answer": "above",
|
| 182 |
-
"final_category": "medium"
|
| 183 |
-
},
|
| 184 |
-
{
|
| 185 |
-
"id": "counting_37",
|
| 186 |
-
"image_path": "counting/images/counting_37.jpg",
|
| 187 |
-
"image_name": "counting_37.jpg",
|
| 188 |
-
"difficulty": "medium",
|
| 189 |
-
"metrics": [
|
| 190 |
-
"exact_match",
|
| 191 |
-
"error_margin"
|
| 192 |
-
],
|
| 193 |
-
"question": "Where is the cat in relation to the dog?",
|
| 194 |
-
"answer": "front",
|
| 195 |
-
"final_category": "medium"
|
| 196 |
-
},
|
| 197 |
-
{
|
| 198 |
-
"id": "counting_52",
|
| 199 |
-
"image_path": "counting/images/counting_52.jpg",
|
| 200 |
-
"image_name": "counting_52.jpg",
|
| 201 |
-
"difficulty": "medium",
|
| 202 |
-
"metrics": [
|
| 203 |
-
"exact_match",
|
| 204 |
-
"error_margin"
|
| 205 |
-
],
|
| 206 |
-
"question": "Which position is the camera in relation to the person?",
|
| 207 |
-
"answer": "left",
|
| 208 |
-
"final_category": "medium"
|
| 209 |
-
},
|
| 210 |
-
{
|
| 211 |
-
"id": "counting_53",
|
| 212 |
-
"image_path": "counting/images/counting_53.jpg",
|
| 213 |
-
"image_name": "counting_53.jpg",
|
| 214 |
-
"difficulty": "medium",
|
| 215 |
-
"metrics": [
|
| 216 |
-
"exact_match",
|
| 217 |
-
"error_margin"
|
| 218 |
-
],
|
| 219 |
-
"question": "Where is the blue entity in relation to the gray entity?",
|
| 220 |
-
"answer": "under",
|
| 221 |
-
"final_category": "medium"
|
| 222 |
-
},
|
| 223 |
-
{
|
| 224 |
-
"id": "counting_53",
|
| 225 |
-
"image_path": "counting/images/counting_53.jpg",
|
| 226 |
-
"image_name": "counting_53.jpg",
|
| 227 |
-
"difficulty": "medium",
|
| 228 |
-
"metrics": [
|
| 229 |
-
"exact_match",
|
| 230 |
-
"error_margin"
|
| 231 |
-
],
|
| 232 |
-
"question": "Where is the white entity in relation to the black entity?",
|
| 233 |
-
"answer": "above",
|
| 234 |
-
"final_category": "medium"
|
| 235 |
-
},
|
| 236 |
-
{
|
| 237 |
-
"id": "counting_72",
|
| 238 |
-
"image_path": "counting/images/counting_72.jpg",
|
| 239 |
-
"image_name": "counting_72.jpg",
|
| 240 |
-
"difficulty": "easy",
|
| 241 |
-
"metrics": [
|
| 242 |
-
"exact_match",
|
| 243 |
-
"error_margin"
|
| 244 |
-
],
|
| 245 |
-
"question": "Where is the short-sleeved shirt in relation to the shorts?",
|
| 246 |
-
"answer": "above",
|
| 247 |
-
"final_category": "medium"
|
| 248 |
-
},
|
| 249 |
-
{
|
| 250 |
-
"id": "counting_72",
|
| 251 |
-
"image_path": "counting/images/counting_72.jpg",
|
| 252 |
-
"image_name": "counting_72.jpg",
|
| 253 |
-
"difficulty": "medium",
|
| 254 |
-
"metrics": [
|
| 255 |
-
"exact_match",
|
| 256 |
-
"error_margin"
|
| 257 |
-
],
|
| 258 |
-
"question": "Where are the shorts in relation to the long trousers?",
|
| 259 |
-
"answer": "left",
|
| 260 |
-
"final_category": "medium"
|
| 261 |
-
},
|
| 262 |
-
{
|
| 263 |
-
"id": "counting_78",
|
| 264 |
-
"image_path": "counting/images/counting_78.jpg",
|
| 265 |
-
"image_name": "counting_78.jpg",
|
| 266 |
-
"difficulty": "medium",
|
| 267 |
-
"metrics": [
|
| 268 |
-
"exact_match",
|
| 269 |
-
"error_margin"
|
| 270 |
-
],
|
| 271 |
-
"question": "Where is the person in black clothes in relation to the person in white clothes? ",
|
| 272 |
-
"answer": "left",
|
| 273 |
-
"final_category": "medium"
|
| 274 |
-
},
|
| 275 |
-
{
|
| 276 |
-
"id": "counting_96",
|
| 277 |
-
"image_path": "counting/images/counting_96.jpg",
|
| 278 |
-
"image_name": "counting_96.jpg",
|
| 279 |
-
"difficulty": "medium",
|
| 280 |
-
"metrics": [
|
| 281 |
-
"exact_match",
|
| 282 |
-
"error_margin"
|
| 283 |
-
],
|
| 284 |
-
"question": "Where is the tiger in relation to the lion?",
|
| 285 |
-
"answer": "left",
|
| 286 |
-
"final_category": "medium"
|
| 287 |
-
},
|
| 288 |
-
{
|
| 289 |
-
"id": "counting_98",
|
| 290 |
-
"image_path": "counting/images/counting_98.jpg",
|
| 291 |
-
"image_name": "counting_98.jpg",
|
| 292 |
-
"difficulty": "medium",
|
| 293 |
-
"metrics": [
|
| 294 |
-
"exact_match",
|
| 295 |
-
"error_margin"
|
| 296 |
-
],
|
| 297 |
-
"question": "Where is the plane in relation to the tank?",
|
| 298 |
-
"answer": "above",
|
| 299 |
-
"final_category": "medium"
|
| 300 |
-
},
|
| 301 |
-
{
|
| 302 |
-
"id": "counting_101",
|
| 303 |
-
"image_path": "counting/images/counting_101.jpg",
|
| 304 |
-
"image_name": "counting_101.jpg",
|
| 305 |
-
"difficulty": "medium",
|
| 306 |
-
"metrics": [
|
| 307 |
-
"exact_match",
|
| 308 |
-
"error_margin"
|
| 309 |
-
],
|
| 310 |
-
"question": "Where is the letter V in relation to the letter W?",
|
| 311 |
-
"answer": "upper right",
|
| 312 |
-
"final_category": "medium"
|
| 313 |
-
},
|
| 314 |
-
{
|
| 315 |
-
"id": "counting_101",
|
| 316 |
-
"image_path": "counting/images/counting_101.jpg",
|
| 317 |
-
"image_name": "counting_101.jpg",
|
| 318 |
-
"difficulty": "medium",
|
| 319 |
-
"metrics": [
|
| 320 |
-
"exact_match",
|
| 321 |
-
"error_margin"
|
| 322 |
-
],
|
| 323 |
-
"question": "Where is the letter G in relation to the letter X?",
|
| 324 |
-
"answer": "left",
|
| 325 |
-
"final_category": "medium"
|
| 326 |
-
},
|
| 327 |
-
{
|
| 328 |
-
"id": "counting_104",
|
| 329 |
-
"image_path": "counting/images/counting_104.jpg",
|
| 330 |
-
"image_name": "counting_104.jpg",
|
| 331 |
-
"difficulty": "medium",
|
| 332 |
-
"metrics": [
|
| 333 |
-
"exact_match",
|
| 334 |
-
"error_margin"
|
| 335 |
-
],
|
| 336 |
-
"question": "Where is the rice in the bowl?",
|
| 337 |
-
"answer": "inside",
|
| 338 |
-
"final_category": "medium"
|
| 339 |
-
},
|
| 340 |
-
{
|
| 341 |
-
"id": "counting_105",
|
| 342 |
-
"image_path": "counting/images/counting_105.jpg",
|
| 343 |
-
"image_name": "counting_105.jpg",
|
| 344 |
-
"difficulty": "medium",
|
| 345 |
-
"metrics": [
|
| 346 |
-
"exact_match",
|
| 347 |
-
"error_margin"
|
| 348 |
-
],
|
| 349 |
-
"question": "Where is the clock in relation to the cup?",
|
| 350 |
-
"answer": "left",
|
| 351 |
-
"final_category": "medium"
|
| 352 |
-
},
|
| 353 |
-
{
|
| 354 |
-
"id": "counting_112",
|
| 355 |
-
"image_path": "counting/images/counting_112.jpg",
|
| 356 |
-
"image_name": "counting_112.jpg",
|
| 357 |
-
"difficulty": "medium",
|
| 358 |
-
"metrics": [
|
| 359 |
-
"exact_match",
|
| 360 |
-
"error_margin"
|
| 361 |
-
],
|
| 362 |
-
"question": "Where is the person in relation to the camera?",
|
| 363 |
-
"answer": "right",
|
| 364 |
-
"final_category": "medium"
|
| 365 |
-
},
|
| 366 |
-
{
|
| 367 |
-
"id": "counting_114",
|
| 368 |
-
"image_path": "counting/images/counting_114.jpg",
|
| 369 |
-
"image_name": "counting_114.jpg",
|
| 370 |
-
"difficulty": "easy",
|
| 371 |
-
"metrics": [
|
| 372 |
-
"exact_match",
|
| 373 |
-
"error_margin"
|
| 374 |
-
],
|
| 375 |
-
"question": "Where is the hand in relation to the spoon?",
|
| 376 |
-
"answer": "bottom",
|
| 377 |
-
"final_category": "medium"
|
| 378 |
-
},
|
| 379 |
-
{
|
| 380 |
-
"id": "counting_116",
|
| 381 |
-
"image_path": "counting/images/counting_116.jpg",
|
| 382 |
-
"image_name": "counting_116.jpg",
|
| 383 |
-
"difficulty": "medium",
|
| 384 |
-
"metrics": [
|
| 385 |
-
"exact_match",
|
| 386 |
-
"error_margin"
|
| 387 |
-
],
|
| 388 |
-
"question": "Where is the person on the plane?",
|
| 389 |
-
"answer": "bottom",
|
| 390 |
-
"final_category": "medium"
|
| 391 |
-
},
|
| 392 |
-
{
|
| 393 |
-
"id": "counting_119",
|
| 394 |
-
"image_path": "counting/images/counting_119.jpg",
|
| 395 |
-
"image_name": "counting_119.jpg",
|
| 396 |
-
"difficulty": "medium",
|
| 397 |
-
"metrics": [
|
| 398 |
-
"exact_match",
|
| 399 |
-
"error_margin"
|
| 400 |
-
],
|
| 401 |
-
"question": "Where is the cherry in relation to the water cup?",
|
| 402 |
-
"answer": "right",
|
| 403 |
-
"final_category": "medium"
|
| 404 |
-
},
|
| 405 |
-
{
|
| 406 |
-
"id": "counting_132",
|
| 407 |
-
"image_path": "counting/images/counting_132.jpg",
|
| 408 |
-
"image_name": "counting_132.jpg",
|
| 409 |
-
"difficulty": "medium",
|
| 410 |
-
"metrics": [
|
| 411 |
-
"exact_match",
|
| 412 |
-
"error_margin"
|
| 413 |
-
],
|
| 414 |
-
"question": "Where is the V block in relation to the Z block?",
|
| 415 |
-
"answer": "right",
|
| 416 |
-
"final_category": "medium"
|
| 417 |
-
},
|
| 418 |
-
{
|
| 419 |
-
"id": "counting_132",
|
| 420 |
-
"image_path": "counting/images/counting_132.jpg",
|
| 421 |
-
"image_name": "counting_132.jpg",
|
| 422 |
-
"difficulty": "medium",
|
| 423 |
-
"metrics": [
|
| 424 |
-
"exact_match",
|
| 425 |
-
"error_margin"
|
| 426 |
-
],
|
| 427 |
-
"question": "Where is the X block in relation to the D block?",
|
| 428 |
-
"answer": "under",
|
| 429 |
-
"final_category": "medium"
|
| 430 |
-
},
|
| 431 |
-
{
|
| 432 |
-
"id": "counting_134",
|
| 433 |
-
"image_path": "counting/images/counting_134.jpg",
|
| 434 |
-
"image_name": "counting_134.jpg",
|
| 435 |
-
"difficulty": "medium",
|
| 436 |
-
"metrics": [
|
| 437 |
-
"exact_match",
|
| 438 |
-
"error_margin"
|
| 439 |
-
],
|
| 440 |
-
"question": "Where is the K block in relation to the E block?",
|
| 441 |
-
"answer": "under",
|
| 442 |
-
"final_category": "medium"
|
| 443 |
-
},
|
| 444 |
-
{
|
| 445 |
-
"id": "counting_134",
|
| 446 |
-
"image_path": "counting/images/counting_134.jpg",
|
| 447 |
-
"image_name": "counting_134.jpg",
|
| 448 |
-
"difficulty": "medium",
|
| 449 |
-
"metrics": [
|
| 450 |
-
"exact_match",
|
| 451 |
-
"error_margin"
|
| 452 |
-
],
|
| 453 |
-
"question": "Where is the letter K in relation to the letter Z?",
|
| 454 |
-
"answer": "right",
|
| 455 |
-
"final_category": "medium"
|
| 456 |
-
},
|
| 457 |
-
{
|
| 458 |
-
"id": "counting_137",
|
| 459 |
-
"image_path": "counting/images/counting_137.jpg",
|
| 460 |
-
"image_name": "counting_137.jpg",
|
| 461 |
-
"difficulty": "medium",
|
| 462 |
-
"metrics": [
|
| 463 |
-
"exact_match",
|
| 464 |
-
"error_margin"
|
| 465 |
-
],
|
| 466 |
-
"question": "Where is the red one in relation to the black one?",
|
| 467 |
-
"answer": "right",
|
| 468 |
-
"final_category": "medium"
|
| 469 |
-
},
|
| 470 |
-
{
|
| 471 |
-
"id": "counting_137",
|
| 472 |
-
"image_path": "counting/images/counting_137.jpg",
|
| 473 |
-
"image_name": "counting_137.jpg",
|
| 474 |
-
"difficulty": "medium",
|
| 475 |
-
"metrics": [
|
| 476 |
-
"exact_match",
|
| 477 |
-
"error_margin"
|
| 478 |
-
],
|
| 479 |
-
"question": "Where is the white one in relation to the purple one?",
|
| 480 |
-
"answer": "front",
|
| 481 |
-
"final_category": "medium"
|
| 482 |
-
},
|
| 483 |
-
{
|
| 484 |
-
"id": "counting_140",
|
| 485 |
-
"image_path": "counting/images/counting_140.jpg",
|
| 486 |
-
"image_name": "counting_140.jpg",
|
| 487 |
-
"difficulty": "medium",
|
| 488 |
-
"metrics": [
|
| 489 |
-
"exact_match",
|
| 490 |
-
"error_margin"
|
| 491 |
-
],
|
| 492 |
-
"question": "Where is the dog in relation to the coffee?",
|
| 493 |
-
"answer": "lower right",
|
| 494 |
-
"final_category": "medium"
|
| 495 |
-
},
|
| 496 |
-
{
|
| 497 |
-
"id": "counting_146",
|
| 498 |
-
"image_path": "counting/images/counting_146.jpg",
|
| 499 |
-
"image_name": "counting_146.jpg",
|
| 500 |
-
"difficulty": "medium",
|
| 501 |
-
"metrics": [
|
| 502 |
-
"exact_match",
|
| 503 |
-
"error_margin"
|
| 504 |
-
],
|
| 505 |
-
"question": "Where is the spoon in relation to the box?",
|
| 506 |
-
"answer": "inside",
|
| 507 |
-
"final_category": "medium"
|
| 508 |
-
},
|
| 509 |
-
{
|
| 510 |
-
"id": "counting_149",
|
| 511 |
-
"image_path": "counting/images/counting_149.jpg",
|
| 512 |
-
"image_name": "counting_149.jpg",
|
| 513 |
-
"difficulty": "medium",
|
| 514 |
-
"metrics": [
|
| 515 |
-
"exact_match",
|
| 516 |
-
"error_margin"
|
| 517 |
-
],
|
| 518 |
-
"question": "Where is the red flag in relation to the blue flag?",
|
| 519 |
-
"answer": "right",
|
| 520 |
-
"final_category": "medium"
|
| 521 |
-
},
|
| 522 |
-
{
|
| 523 |
-
"id": "counting_149",
|
| 524 |
-
"image_path": "counting/images/counting_149.jpg",
|
| 525 |
-
"image_name": "counting_149.jpg",
|
| 526 |
-
"difficulty": "medium",
|
| 527 |
-
"metrics": [
|
| 528 |
-
"exact_match",
|
| 529 |
-
"error_margin"
|
| 530 |
-
],
|
| 531 |
-
"question": "Where is the green flag in relation to the blue flag?",
|
| 532 |
-
"answer": "right",
|
| 533 |
-
"final_category": "medium"
|
| 534 |
-
},
|
| 535 |
-
{
|
| 536 |
-
"id": "counting_160",
|
| 537 |
-
"image_path": "counting/images/counting_160.jpg",
|
| 538 |
-
"image_name": "counting_160.jpg",
|
| 539 |
-
"difficulty": "medium",
|
| 540 |
-
"metrics": [
|
| 541 |
-
"exact_match",
|
| 542 |
-
"error_margin"
|
| 543 |
-
],
|
| 544 |
-
"question": "Where is the woman in relation to the man?",
|
| 545 |
-
"answer": "left",
|
| 546 |
-
"final_category": "medium"
|
| 547 |
-
},
|
| 548 |
-
{
|
| 549 |
-
"id": "counting_163",
|
| 550 |
-
"image_path": "counting/images/counting_163.jpg",
|
| 551 |
-
"image_name": "counting_163.jpg",
|
| 552 |
-
"difficulty": "medium",
|
| 553 |
-
"metrics": [
|
| 554 |
-
"exact_match",
|
| 555 |
-
"error_margin"
|
| 556 |
-
],
|
| 557 |
-
"question": "Where is the hand in relation to the shoe?",
|
| 558 |
-
"answer": "upper",
|
| 559 |
-
"final_category": "medium"
|
| 560 |
-
},
|
| 561 |
-
{
|
| 562 |
-
"id": "counting_171",
|
| 563 |
-
"image_path": "counting/images/counting_171.jpg",
|
| 564 |
-
"image_name": "counting_171.jpg",
|
| 565 |
-
"difficulty": "medium",
|
| 566 |
-
"metrics": [
|
| 567 |
-
"exact_match",
|
| 568 |
-
"error_margin"
|
| 569 |
-
],
|
| 570 |
-
"question": "Where is the blue one in relation to the yellow one?",
|
| 571 |
-
"answer": "right",
|
| 572 |
-
"final_category": "medium"
|
| 573 |
-
},
|
| 574 |
-
{
|
| 575 |
-
"id": "counting_174",
|
| 576 |
-
"image_path": "counting/images/counting_174.jpg",
|
| 577 |
-
"image_name": "counting_174.jpg",
|
| 578 |
-
"difficulty": "medium",
|
| 579 |
-
"metrics": [
|
| 580 |
-
"exact_match",
|
| 581 |
-
"error_margin"
|
| 582 |
-
],
|
| 583 |
-
"question": "Where is the dog in relation to the boy?",
|
| 584 |
-
"answer": "front",
|
| 585 |
-
"final_category": "medium"
|
| 586 |
-
},
|
| 587 |
-
{
|
| 588 |
-
"id": "counting_175",
|
| 589 |
-
"image_path": "counting/images/counting_175.jpg",
|
| 590 |
-
"image_name": "counting_175.jpg",
|
| 591 |
-
"difficulty": "medium",
|
| 592 |
-
"metrics": [
|
| 593 |
-
"exact_match",
|
| 594 |
-
"error_margin"
|
| 595 |
-
],
|
| 596 |
-
"question": "Where is the green book in relation to the red book?",
|
| 597 |
-
"answer": "upperright",
|
| 598 |
-
"final_category": "medium"
|
| 599 |
-
},
|
| 600 |
-
{
|
| 601 |
-
"id": "counting_176",
|
| 602 |
-
"image_path": "counting/images/counting_176.jpg",
|
| 603 |
-
"image_name": "counting_176.jpg",
|
| 604 |
-
"difficulty": "medium",
|
| 605 |
-
"metrics": [
|
| 606 |
-
"exact_match",
|
| 607 |
-
"error_margin"
|
| 608 |
-
],
|
| 609 |
-
"question": "Where is the people in relation to the plane?",
|
| 610 |
-
"answer": "front",
|
| 611 |
-
"final_category": "medium"
|
| 612 |
-
},
|
| 613 |
-
{
|
| 614 |
-
"id": "counting_183",
|
| 615 |
-
"image_path": "counting/images/counting_183.jpg",
|
| 616 |
-
"image_name": "counting_183.jpg",
|
| 617 |
-
"difficulty": "medium",
|
| 618 |
-
"metrics": [
|
| 619 |
-
"exact_match",
|
| 620 |
-
"error_margin"
|
| 621 |
-
],
|
| 622 |
-
"question": "Where is the knife in relation to the fork?",
|
| 623 |
-
"answer": "right",
|
| 624 |
-
"final_category": "medium"
|
| 625 |
-
},
|
| 626 |
-
{
|
| 627 |
-
"id": "counting_187",
|
| 628 |
-
"image_path": "counting/images/counting_187.jpg",
|
| 629 |
-
"image_name": "counting_187.jpg",
|
| 630 |
-
"difficulty": "medium",
|
| 631 |
-
"metrics": [
|
| 632 |
-
"exact_match",
|
| 633 |
-
"error_margin"
|
| 634 |
-
],
|
| 635 |
-
"question": "Where is the pen in relation to the pen holder?",
|
| 636 |
-
"answer": "inside",
|
| 637 |
-
"final_category": "medium"
|
| 638 |
-
},
|
| 639 |
-
{
|
| 640 |
-
"id": "counting_192",
|
| 641 |
-
"image_path": "counting/images/counting_192.jpg",
|
| 642 |
-
"image_name": "counting_192.jpg",
|
| 643 |
-
"difficulty": "medium",
|
| 644 |
-
"metrics": [
|
| 645 |
-
"exact_match",
|
| 646 |
-
"error_margin"
|
| 647 |
-
],
|
| 648 |
-
"question": "Where is the red racket in relation to the black racket?",
|
| 649 |
-
"answer": "above",
|
| 650 |
-
"final_category": "medium"
|
| 651 |
-
},
|
| 652 |
-
{
|
| 653 |
-
"id": "counting_199",
|
| 654 |
-
"image_path": "counting/images/counting_199.jpg",
|
| 655 |
-
"image_name": "counting_199.jpg",
|
| 656 |
-
"difficulty": "medium",
|
| 657 |
-
"metrics": [
|
| 658 |
-
"exact_match",
|
| 659 |
-
"error_margin"
|
| 660 |
-
],
|
| 661 |
-
"question": "Where is the white hanger in relation to the black hanger?",
|
| 662 |
-
"answer": "left",
|
| 663 |
-
"final_category": "medium"
|
| 664 |
-
},
|
| 665 |
-
{
|
| 666 |
-
"id": "counting_207",
|
| 667 |
-
"image_path": "counting/images/counting_207.jpg",
|
| 668 |
-
"image_name": "counting_207.jpg",
|
| 669 |
-
"difficulty": "medium",
|
| 670 |
-
"metrics": [
|
| 671 |
-
"exact_match",
|
| 672 |
-
"error_margin"
|
| 673 |
-
],
|
| 674 |
-
"question": "Where is the fork in relation to the spoons?",
|
| 675 |
-
"answer": "right",
|
| 676 |
-
"final_category": "medium"
|
| 677 |
-
},
|
| 678 |
-
{
|
| 679 |
-
"id": "counting_208",
|
| 680 |
-
"image_path": "counting/images/counting_208.jpg",
|
| 681 |
-
"image_name": "counting_208.jpg",
|
| 682 |
-
"difficulty": "medium",
|
| 683 |
-
"metrics": [
|
| 684 |
-
"exact_match",
|
| 685 |
-
"error_margin"
|
| 686 |
-
],
|
| 687 |
-
"question": "Where is the yellow chopsticks in relation to the black chopsticks?",
|
| 688 |
-
"answer": "left",
|
| 689 |
-
"final_category": "medium"
|
| 690 |
-
},
|
| 691 |
-
{
|
| 692 |
-
"id": "counting_214",
|
| 693 |
-
"image_path": "counting/images/counting_214.jpg",
|
| 694 |
-
"image_name": "counting_214.jpg",
|
| 695 |
-
"difficulty": "medium",
|
| 696 |
-
"metrics": [
|
| 697 |
-
"exact_match",
|
| 698 |
-
"error_margin"
|
| 699 |
-
],
|
| 700 |
-
"question": "Where is the car key in relation to the watch?",
|
| 701 |
-
"answer": "left",
|
| 702 |
-
"final_category": "medium"
|
| 703 |
-
},
|
| 704 |
-
{
|
| 705 |
-
"id": "counting_219",
|
| 706 |
-
"image_path": "counting/images/counting_219.jpg",
|
| 707 |
-
"image_name": "counting_219.jpg",
|
| 708 |
-
"difficulty": "medium",
|
| 709 |
-
"metrics": [
|
| 710 |
-
"exact_match",
|
| 711 |
-
"error_margin"
|
| 712 |
-
],
|
| 713 |
-
"question": "Where is the goose in relation to the boy?",
|
| 714 |
-
"answer": "upper right",
|
| 715 |
-
"final_category": "medium"
|
| 716 |
-
},
|
| 717 |
-
{
|
| 718 |
-
"id": "counting_228",
|
| 719 |
-
"image_path": "counting/images/counting_228.jpg",
|
| 720 |
-
"image_name": "counting_228.jpg",
|
| 721 |
-
"difficulty": "medium",
|
| 722 |
-
"metrics": [
|
| 723 |
-
"exact_match",
|
| 724 |
-
"error_margin"
|
| 725 |
-
],
|
| 726 |
-
"question": "Where is the chair in relation to the panda?",
|
| 727 |
-
"answer": "right",
|
| 728 |
-
"final_category": "medium"
|
| 729 |
-
},
|
| 730 |
-
{
|
| 731 |
-
"id": "counting_231",
|
| 732 |
-
"image_path": "counting/images/counting_231.jpg",
|
| 733 |
-
"image_name": "counting_231.jpg",
|
| 734 |
-
"difficulty": "medium",
|
| 735 |
-
"metrics": [
|
| 736 |
-
"exact_match",
|
| 737 |
-
"error_margin"
|
| 738 |
-
],
|
| 739 |
-
"question": "Where is the shrimp in relation to the rice?",
|
| 740 |
-
"answer": "above",
|
| 741 |
-
"final_category": "medium"
|
| 742 |
-
},
|
| 743 |
-
{
|
| 744 |
-
"id": "counting_235",
|
| 745 |
-
"image_path": "counting/images/counting_235.jpg",
|
| 746 |
-
"image_name": "counting_235.jpg",
|
| 747 |
-
"difficulty": "medium",
|
| 748 |
-
"metrics": [
|
| 749 |
-
"exact_match",
|
| 750 |
-
"error_margin"
|
| 751 |
-
],
|
| 752 |
-
"question": "Where is the doll in relation to the box?",
|
| 753 |
-
"answer": "inside",
|
| 754 |
-
"final_category": "medium"
|
| 755 |
-
},
|
| 756 |
-
{
|
| 757 |
-
"id": "counting_240",
|
| 758 |
-
"image_path": "counting/images/counting_240.jpg",
|
| 759 |
-
"image_name": "counting_240.jpg",
|
| 760 |
-
"difficulty": "medium",
|
| 761 |
-
"metrics": [
|
| 762 |
-
"exact_match",
|
| 763 |
-
"error_margin"
|
| 764 |
-
],
|
| 765 |
-
"question": "Where is the shadow in relation to the boy?",
|
| 766 |
-
"answer": "right",
|
| 767 |
-
"final_category": "medium"
|
| 768 |
-
},
|
| 769 |
-
{
|
| 770 |
-
"id": "counting_247",
|
| 771 |
-
"image_path": "counting/images/counting_247.jpg",
|
| 772 |
-
"image_name": "counting_247.jpg",
|
| 773 |
-
"difficulty": "medium",
|
| 774 |
-
"metrics": [
|
| 775 |
-
"exact_match",
|
| 776 |
-
"error_margin"
|
| 777 |
-
],
|
| 778 |
-
"question": "Where is the bowl in relation to the fork?",
|
| 779 |
-
"answer": "left",
|
| 780 |
-
"final_category": "medium"
|
| 781 |
-
},
|
| 782 |
-
{
|
| 783 |
-
"id": "counting_250",
|
| 784 |
-
"image_path": "counting/images/counting_250.jpg",
|
| 785 |
-
"image_name": "counting_250.jpg",
|
| 786 |
-
"difficulty": "medium",
|
| 787 |
-
"metrics": [
|
| 788 |
-
"exact_match",
|
| 789 |
-
"error_margin"
|
| 790 |
-
],
|
| 791 |
-
"question": "Where is the green pepper in relation to the red pepper?",
|
| 792 |
-
"answer": "left",
|
| 793 |
-
"final_category": "medium"
|
| 794 |
-
},
|
| 795 |
-
{
|
| 796 |
-
"id": "counting_251",
|
| 797 |
-
"image_path": "counting/images/counting_251.jpg",
|
| 798 |
-
"image_name": "counting_251.jpg",
|
| 799 |
-
"difficulty": "medium",
|
| 800 |
-
"metrics": [
|
| 801 |
-
"exact_match",
|
| 802 |
-
"error_margin"
|
| 803 |
-
],
|
| 804 |
-
"question": "Where is the dog in relation to the raccoon?",
|
| 805 |
-
"answer": "under",
|
| 806 |
-
"final_category": "medium"
|
| 807 |
-
},
|
| 808 |
-
{
|
| 809 |
-
"id": "counting_281",
|
| 810 |
-
"image_path": "counting/images/counting_281.jpg",
|
| 811 |
-
"image_name": "counting_281.jpg",
|
| 812 |
-
"difficulty": "medium",
|
| 813 |
-
"metrics": [
|
| 814 |
-
"exact_match",
|
| 815 |
-
"error_margin"
|
| 816 |
-
],
|
| 817 |
-
"question": "Where is the basketball in relation to the motorbike?",
|
| 818 |
-
"answer": "above",
|
| 819 |
-
"final_category": "medium"
|
| 820 |
-
},
|
| 821 |
-
{
|
| 822 |
-
"id": "counting_284",
|
| 823 |
-
"image_path": "counting/images/counting_284.jpg",
|
| 824 |
-
"image_name": "counting_284.jpg",
|
| 825 |
-
"difficulty": "medium",
|
| 826 |
-
"metrics": [
|
| 827 |
-
"exact_match",
|
| 828 |
-
"error_margin"
|
| 829 |
-
],
|
| 830 |
-
"question": "Where is the glove in relation to the tag?",
|
| 831 |
-
"answer": "under",
|
| 832 |
-
"final_category": "medium"
|
| 833 |
-
},
|
| 834 |
-
{
|
| 835 |
-
"id": "counting_301",
|
| 836 |
-
"image_path": "counting/images/counting_301.jpg",
|
| 837 |
-
"image_name": "counting_301.jpg",
|
| 838 |
-
"difficulty": "medium",
|
| 839 |
-
"metrics": [
|
| 840 |
-
"exact_match",
|
| 841 |
-
"error_margin"
|
| 842 |
-
],
|
| 843 |
-
"question": "Where is the white bottle in relation to the blue bottle?",
|
| 844 |
-
"answer": "left",
|
| 845 |
-
"final_category": "medium"
|
| 846 |
-
},
|
| 847 |
-
{
|
| 848 |
-
"id": "counting_305",
|
| 849 |
-
"image_path": "counting/images/counting_305.jpg",
|
| 850 |
-
"image_name": "counting_305.jpg",
|
| 851 |
-
"difficulty": "medium",
|
| 852 |
-
"metrics": [
|
| 853 |
-
"exact_match",
|
| 854 |
-
"error_margin"
|
| 855 |
-
],
|
| 856 |
-
"question": "The plug is on the left side of the wire.",
|
| 857 |
-
"answer": "left",
|
| 858 |
-
"final_category": "medium"
|
| 859 |
-
},
|
| 860 |
-
{
|
| 861 |
-
"id": "counting_306",
|
| 862 |
-
"image_path": "counting/images/counting_306.jpg",
|
| 863 |
-
"image_name": "counting_306.jpg",
|
| 864 |
-
"difficulty": "medium",
|
| 865 |
-
"metrics": [
|
| 866 |
-
"exact_match",
|
| 867 |
-
"error_margin"
|
| 868 |
-
],
|
| 869 |
-
"question": "Where is the green football in relation to the purple football?",
|
| 870 |
-
"answer": "right",
|
| 871 |
-
"final_category": "medium"
|
| 872 |
-
},
|
| 873 |
-
{
|
| 874 |
-
"id": "counting_306",
|
| 875 |
-
"image_path": "counting/images/counting_306.jpg",
|
| 876 |
-
"image_name": "counting_306.jpg",
|
| 877 |
-
"difficulty": "medium",
|
| 878 |
-
"metrics": [
|
| 879 |
-
"exact_match",
|
| 880 |
-
"error_margin"
|
| 881 |
-
],
|
| 882 |
-
"question": "Where is the blue football in relation to the green football?",
|
| 883 |
-
"answer": "upper left",
|
| 884 |
-
"final_category": "medium"
|
| 885 |
-
},
|
| 886 |
-
{
|
| 887 |
-
"id": "counting_318",
|
| 888 |
-
"image_path": "counting/images/counting_318.jpg",
|
| 889 |
-
"image_name": "counting_318.jpg",
|
| 890 |
-
"difficulty": "medium",
|
| 891 |
-
"metrics": [
|
| 892 |
-
"exact_match",
|
| 893 |
-
"error_margin"
|
| 894 |
-
],
|
| 895 |
-
"question": "Where is the green one in relation to the red one?",
|
| 896 |
-
"answer": "left",
|
| 897 |
-
"final_category": "medium"
|
| 898 |
-
},
|
| 899 |
-
{
|
| 900 |
-
"id": "counting_318",
|
| 901 |
-
"image_path": "counting/images/counting_318.jpg",
|
| 902 |
-
"image_name": "counting_318.jpg",
|
| 903 |
-
"difficulty": "medium",
|
| 904 |
-
"metrics": [
|
| 905 |
-
"exact_match",
|
| 906 |
-
"error_margin"
|
| 907 |
-
],
|
| 908 |
-
"question": "Where is the black one in relation to the green one?",
|
| 909 |
-
"answer": "upper right",
|
| 910 |
-
"final_category": "medium"
|
| 911 |
-
},
|
| 912 |
-
{
|
| 913 |
-
"id": "counting_329",
|
| 914 |
-
"image_path": "counting/images/counting_329.jpg",
|
| 915 |
-
"image_name": "counting_329.jpg",
|
| 916 |
-
"difficulty": "medium",
|
| 917 |
-
"metrics": [
|
| 918 |
-
"exact_match",
|
| 919 |
-
"error_margin"
|
| 920 |
-
],
|
| 921 |
-
"question": "Where is the egg in relation to the strawberry?",
|
| 922 |
-
"answer": "middle",
|
| 923 |
-
"final_category": "medium"
|
| 924 |
-
},
|
| 925 |
-
{
|
| 926 |
-
"id": "counting_332",
|
| 927 |
-
"image_path": "counting/images/counting_332.jpg",
|
| 928 |
-
"image_name": "counting_332.jpg",
|
| 929 |
-
"difficulty": "medium",
|
| 930 |
-
"metrics": [
|
| 931 |
-
"exact_match",
|
| 932 |
-
"error_margin"
|
| 933 |
-
],
|
| 934 |
-
"question": "Where is the blue baskball in relation to the red baskball?",
|
| 935 |
-
"answer": "left",
|
| 936 |
-
"final_category": "medium"
|
| 937 |
-
},
|
| 938 |
-
{
|
| 939 |
-
"id": "counting_336",
|
| 940 |
-
"image_path": "counting/images/counting_336.jpg",
|
| 941 |
-
"image_name": "counting_336.jpg",
|
| 942 |
-
"difficulty": "medium",
|
| 943 |
-
"metrics": [
|
| 944 |
-
"exact_match",
|
| 945 |
-
"error_margin"
|
| 946 |
-
],
|
| 947 |
-
"question": "Where is the yellow chopstick in relation to the blue chopstick?",
|
| 948 |
-
"answer": "left",
|
| 949 |
-
"final_category": "medium"
|
| 950 |
-
},
|
| 951 |
-
{
|
| 952 |
-
"id": "counting_348",
|
| 953 |
-
"image_path": "counting/images/counting_348.jpg",
|
| 954 |
-
"image_name": "counting_348.jpg",
|
| 955 |
-
"difficulty": "medium",
|
| 956 |
-
"metrics": [
|
| 957 |
-
"exact_match",
|
| 958 |
-
"error_margin"
|
| 959 |
-
],
|
| 960 |
-
"question": "Where is the yellow pepper in relation to the red pepper?",
|
| 961 |
-
"answer": "front",
|
| 962 |
-
"final_category": "medium"
|
| 963 |
-
},
|
| 964 |
-
{
|
| 965 |
-
"id": "counting_350",
|
| 966 |
-
"image_path": "counting/images/counting_350.jpg",
|
| 967 |
-
"image_name": "counting_350.jpg",
|
| 968 |
-
"difficulty": "medium",
|
| 969 |
-
"metrics": [
|
| 970 |
-
"exact_match",
|
| 971 |
-
"error_margin"
|
| 972 |
-
],
|
| 973 |
-
"question": "Where is the red bag in relation to the green bag?",
|
| 974 |
-
"answer": "right",
|
| 975 |
-
"final_category": "medium"
|
| 976 |
-
},
|
| 977 |
-
{
|
| 978 |
-
"id": "counting_351",
|
| 979 |
-
"image_path": "counting/images/counting_351.jpg",
|
| 980 |
-
"image_name": "counting_351.jpg",
|
| 981 |
-
"difficulty": "medium",
|
| 982 |
-
"metrics": [
|
| 983 |
-
"exact_match",
|
| 984 |
-
"error_margin"
|
| 985 |
-
],
|
| 986 |
-
"question": "Where is the Chinese character in relation to the rice cooker?",
|
| 987 |
-
"answer": "left",
|
| 988 |
-
"final_category": "medium"
|
| 989 |
-
},
|
| 990 |
-
{
|
| 991 |
-
"id": "counting_365",
|
| 992 |
-
"image_path": "counting/images/counting_365.jpg",
|
| 993 |
-
"image_name": "counting_365.jpg",
|
| 994 |
-
"difficulty": "medium",
|
| 995 |
-
"metrics": [
|
| 996 |
-
"exact_match",
|
| 997 |
-
"error_margin"
|
| 998 |
-
],
|
| 999 |
-
"question": "Where is the black one in relation to the gray one?",
|
| 1000 |
-
"answer": "right",
|
| 1001 |
-
"final_category": "medium"
|
| 1002 |
-
},
|
| 1003 |
-
{
|
| 1004 |
-
"id": "counting_376",
|
| 1005 |
-
"image_path": "counting/images/counting_376.jpg",
|
| 1006 |
-
"image_name": "counting_376.jpg",
|
| 1007 |
-
"difficulty": "medium",
|
| 1008 |
-
"metrics": [
|
| 1009 |
-
"exact_match",
|
| 1010 |
-
"error_margin"
|
| 1011 |
-
],
|
| 1012 |
-
"question": "Where is the white T shirt in relation to the green T shirt?",
|
| 1013 |
-
"answer": "under",
|
| 1014 |
-
"final_category": "medium"
|
| 1015 |
-
},
|
| 1016 |
-
{
|
| 1017 |
-
"id": "counting_377",
|
| 1018 |
-
"image_path": "counting/images/counting_377.jpg",
|
| 1019 |
-
"image_name": "counting_377.jpg",
|
| 1020 |
-
"difficulty": "medium",
|
| 1021 |
-
"metrics": [
|
| 1022 |
-
"exact_match",
|
| 1023 |
-
"error_margin"
|
| 1024 |
-
],
|
| 1025 |
-
"question": "Where is the meet in relation to the tiger?",
|
| 1026 |
-
"answer": "front",
|
| 1027 |
-
"final_category": "medium"
|
| 1028 |
-
},
|
| 1029 |
-
{
|
| 1030 |
-
"id": "counting_378",
|
| 1031 |
-
"image_path": "counting/images/counting_378.jpg",
|
| 1032 |
-
"image_name": "counting_378.jpg",
|
| 1033 |
-
"difficulty": "medium",
|
| 1034 |
-
"metrics": [
|
| 1035 |
-
"exact_match",
|
| 1036 |
-
"error_margin"
|
| 1037 |
-
],
|
| 1038 |
-
"question": "Where is the letter C in relation to the letter W?",
|
| 1039 |
-
"answer": "upper",
|
| 1040 |
-
"final_category": "medium"
|
| 1041 |
-
},
|
| 1042 |
-
{
|
| 1043 |
-
"id": "counting_379",
|
| 1044 |
-
"image_path": "counting/images/counting_379.jpg",
|
| 1045 |
-
"image_name": "counting_379.jpg",
|
| 1046 |
-
"difficulty": "medium",
|
| 1047 |
-
"metrics": [
|
| 1048 |
-
"exact_match",
|
| 1049 |
-
"error_margin"
|
| 1050 |
-
],
|
| 1051 |
-
"question": "Where is the horse in relation to the giraffe?",
|
| 1052 |
-
"answer": "front",
|
| 1053 |
-
"final_category": "medium"
|
| 1054 |
-
},
|
| 1055 |
-
{
|
| 1056 |
-
"id": "counting_381",
|
| 1057 |
-
"image_path": "counting/images/counting_381.jpg",
|
| 1058 |
-
"image_name": "counting_381.jpg",
|
| 1059 |
-
"difficulty": "medium",
|
| 1060 |
-
"metrics": [
|
| 1061 |
-
"exact_match",
|
| 1062 |
-
"error_margin"
|
| 1063 |
-
],
|
| 1064 |
-
"question": "Where is the green book in relation to the blue book?",
|
| 1065 |
-
"answer": "under",
|
| 1066 |
-
"final_category": "medium"
|
| 1067 |
-
},
|
| 1068 |
-
{
|
| 1069 |
-
"id": "counting_386",
|
| 1070 |
-
"image_path": "counting/images/counting_386.jpg",
|
| 1071 |
-
"image_name": "counting_386.jpg",
|
| 1072 |
-
"difficulty": "medium",
|
| 1073 |
-
"metrics": [
|
| 1074 |
-
"exact_match",
|
| 1075 |
-
"error_margin"
|
| 1076 |
-
],
|
| 1077 |
-
"question": "Where is the cherry tomato in relation to the Sausage?",
|
| 1078 |
-
"answer": "upper left",
|
| 1079 |
-
"final_category": "medium"
|
| 1080 |
-
},
|
| 1081 |
-
{
|
| 1082 |
-
"id": "counting_398",
|
| 1083 |
-
"image_path": "counting/images/counting_398.jpg",
|
| 1084 |
-
"image_name": "counting_398.jpg",
|
| 1085 |
-
"difficulty": "medium",
|
| 1086 |
-
"metrics": [
|
| 1087 |
-
"exact_match",
|
| 1088 |
-
"error_margin"
|
| 1089 |
-
],
|
| 1090 |
-
"question": "HWhich side is the hammer on in relation to the wrench?",
|
| 1091 |
-
"answer": "left",
|
| 1092 |
-
"final_category": "medium"
|
| 1093 |
-
},
|
| 1094 |
-
{
|
| 1095 |
-
"id": "counting_401",
|
| 1096 |
-
"image_path": "counting/images/counting_401.jpg",
|
| 1097 |
-
"image_name": "counting_401.jpg",
|
| 1098 |
-
"difficulty": "medium",
|
| 1099 |
-
"metrics": [
|
| 1100 |
-
"exact_match",
|
| 1101 |
-
"error_margin"
|
| 1102 |
-
],
|
| 1103 |
-
"question": "Where is the letter e in relation to the letter Q?",
|
| 1104 |
-
"answer": "upper left",
|
| 1105 |
-
"final_category": "medium"
|
| 1106 |
-
},
|
| 1107 |
-
{
|
| 1108 |
-
"id": "counting_403",
|
| 1109 |
-
"image_path": "counting/images/counting_403.jpg",
|
| 1110 |
-
"image_name": "counting_403.jpg",
|
| 1111 |
-
"difficulty": "medium",
|
| 1112 |
-
"metrics": [
|
| 1113 |
-
"exact_match",
|
| 1114 |
-
"error_margin"
|
| 1115 |
-
],
|
| 1116 |
-
"question": "Which side is the mint on in relation to the meat?",
|
| 1117 |
-
"answer": "above",
|
| 1118 |
-
"final_category": "medium"
|
| 1119 |
-
},
|
| 1120 |
-
{
|
| 1121 |
-
"id": "counting_407",
|
| 1122 |
-
"image_path": "counting/images/counting_407.jpg",
|
| 1123 |
-
"image_name": "counting_407.jpg",
|
| 1124 |
-
"difficulty": "medium",
|
| 1125 |
-
"metrics": [
|
| 1126 |
-
"exact_match",
|
| 1127 |
-
"error_margin"
|
| 1128 |
-
],
|
| 1129 |
-
"question": "Where is the potato on in relation to the box?",
|
| 1130 |
-
"answer": "under right",
|
| 1131 |
-
"final_category": "medium"
|
| 1132 |
-
},
|
| 1133 |
-
{
|
| 1134 |
-
"id": "counting_413",
|
| 1135 |
-
"image_path": "counting/images/counting_413.jpg",
|
| 1136 |
-
"image_name": "counting_413.jpg",
|
| 1137 |
-
"difficulty": "medium",
|
| 1138 |
-
"metrics": [
|
| 1139 |
-
"exact_match",
|
| 1140 |
-
"error_margin"
|
| 1141 |
-
],
|
| 1142 |
-
"question": "Where is the blue box in relation to the pink box?",
|
| 1143 |
-
"answer": "under",
|
| 1144 |
-
"final_category": "medium"
|
| 1145 |
-
},
|
| 1146 |
-
{
|
| 1147 |
-
"id": "counting_427",
|
| 1148 |
-
"image_path": "counting/images/counting_427.jpg",
|
| 1149 |
-
"image_name": "counting_427.jpg",
|
| 1150 |
-
"difficulty": "medium",
|
| 1151 |
-
"metrics": [
|
| 1152 |
-
"exact_match",
|
| 1153 |
-
"error_margin"
|
| 1154 |
-
],
|
| 1155 |
-
"question": "Where is the gray shoe in relation to the white shoe?",
|
| 1156 |
-
"answer": "upper left",
|
| 1157 |
-
"final_category": "medium"
|
| 1158 |
-
},
|
| 1159 |
-
{
|
| 1160 |
-
"id": "counting_429",
|
| 1161 |
-
"image_path": "counting/images/counting_429.jpg",
|
| 1162 |
-
"image_name": "counting_429.jpg",
|
| 1163 |
-
"difficulty": "easy",
|
| 1164 |
-
"metrics": [
|
| 1165 |
-
"exact_match",
|
| 1166 |
-
"error_margin"
|
| 1167 |
-
],
|
| 1168 |
-
"question": "Where is the shoe in relation to the rug?",
|
| 1169 |
-
"answer": "upper",
|
| 1170 |
-
"final_category": "medium"
|
| 1171 |
-
},
|
| 1172 |
-
{
|
| 1173 |
-
"id": "counting_435",
|
| 1174 |
-
"image_path": "counting/images/counting_435.jpg",
|
| 1175 |
-
"image_name": "counting_435.jpg",
|
| 1176 |
-
"difficulty": "medium",
|
| 1177 |
-
"metrics": [
|
| 1178 |
-
"exact_match",
|
| 1179 |
-
"error_margin"
|
| 1180 |
-
],
|
| 1181 |
-
"question": "Where is the baseball cap in relation to the bag?",
|
| 1182 |
-
"answer": "left",
|
| 1183 |
-
"final_category": "medium"
|
| 1184 |
-
},
|
| 1185 |
-
{
|
| 1186 |
-
"id": "counting_459",
|
| 1187 |
-
"image_path": "counting/images/counting_459.jpg",
|
| 1188 |
-
"image_name": "counting_459.jpg",
|
| 1189 |
-
"difficulty": "medium",
|
| 1190 |
-
"metrics": [
|
| 1191 |
-
"exact_match",
|
| 1192 |
-
"error_margin"
|
| 1193 |
-
],
|
| 1194 |
-
"question": "Where is the letter C in relation to the letter Z?",
|
| 1195 |
-
"answer": "upper right",
|
| 1196 |
-
"final_category": "medium"
|
| 1197 |
-
},
|
| 1198 |
-
{
|
| 1199 |
-
"id": "counting_468",
|
| 1200 |
-
"image_path": "counting/images/counting_468.jpg",
|
| 1201 |
-
"image_name": "counting_468.jpg",
|
| 1202 |
-
"difficulty": "medium",
|
| 1203 |
-
"metrics": [
|
| 1204 |
-
"exact_match",
|
| 1205 |
-
"error_margin"
|
| 1206 |
-
],
|
| 1207 |
-
"question": "Where is the straight ruler in relation to the protractor?",
|
| 1208 |
-
"answer": "upper left",
|
| 1209 |
-
"final_category": "medium"
|
| 1210 |
-
},
|
| 1211 |
-
{
|
| 1212 |
-
"id": "counting_477",
|
| 1213 |
-
"image_path": "counting/images/counting_477.jpg",
|
| 1214 |
-
"image_name": "counting_477.jpg",
|
| 1215 |
-
"difficulty": "medium",
|
| 1216 |
-
"metrics": [
|
| 1217 |
-
"exact_match",
|
| 1218 |
-
"error_margin"
|
| 1219 |
-
],
|
| 1220 |
-
"question": "Where is the yellow flower in relation to the purple flower?",
|
| 1221 |
-
"answer": "left",
|
| 1222 |
-
"final_category": "medium"
|
| 1223 |
-
},
|
| 1224 |
-
{
|
| 1225 |
-
"id": "counting_483",
|
| 1226 |
-
"image_path": "counting/images/counting_483.jpg",
|
| 1227 |
-
"image_name": "counting_483.jpg",
|
| 1228 |
-
"difficulty": "medium",
|
| 1229 |
-
"metrics": [
|
| 1230 |
-
"exact_match",
|
| 1231 |
-
"error_margin"
|
| 1232 |
-
],
|
| 1233 |
-
"question": "Where is the pen in relation to the bucket?",
|
| 1234 |
-
"answer": "inside",
|
| 1235 |
-
"final_category": "medium"
|
| 1236 |
-
},
|
| 1237 |
-
{
|
| 1238 |
-
"id": "counting_493",
|
| 1239 |
-
"image_path": "counting/images/counting_493.jpg",
|
| 1240 |
-
"image_name": "counting_493.jpg",
|
| 1241 |
-
"difficulty": "medium",
|
| 1242 |
-
"metrics": [
|
| 1243 |
-
"exact_match",
|
| 1244 |
-
"error_margin"
|
| 1245 |
-
],
|
| 1246 |
-
"question": "Where is the shoe in relation to the hand?",
|
| 1247 |
-
"answer": "above",
|
| 1248 |
-
"final_category": "medium"
|
| 1249 |
-
},
|
| 1250 |
-
{
|
| 1251 |
-
"id": "counting_496",
|
| 1252 |
-
"image_path": "counting/images/counting_496.jpg",
|
| 1253 |
-
"image_name": "counting_496.jpg",
|
| 1254 |
-
"difficulty": "medium",
|
| 1255 |
-
"metrics": [
|
| 1256 |
-
"exact_match",
|
| 1257 |
-
"error_margin"
|
| 1258 |
-
],
|
| 1259 |
-
"question": "Where is the blue pen in relation to the white pen?",
|
| 1260 |
-
"answer": "left",
|
| 1261 |
-
"final_category": "medium"
|
| 1262 |
-
},
|
| 1263 |
-
{
|
| 1264 |
-
"id": "counting_497",
|
| 1265 |
-
"image_path": "counting/images/counting_497.jpg",
|
| 1266 |
-
"image_name": "counting_497.jpg",
|
| 1267 |
-
"difficulty": "medium",
|
| 1268 |
-
"metrics": [
|
| 1269 |
-
"exact_match",
|
| 1270 |
-
"error_margin"
|
| 1271 |
-
],
|
| 1272 |
-
"question": "Where is the straight ruler in relation to the protractor?",
|
| 1273 |
-
"answer": "above",
|
| 1274 |
-
"final_category": "medium"
|
| 1275 |
-
},
|
| 1276 |
-
{
|
| 1277 |
-
"id": "counting_498",
|
| 1278 |
-
"image_path": "counting/images/counting_498.jpg",
|
| 1279 |
-
"image_name": "counting_498.jpg",
|
| 1280 |
-
"difficulty": "medium",
|
| 1281 |
-
"metrics": [
|
| 1282 |
-
"exact_match",
|
| 1283 |
-
"error_margin"
|
| 1284 |
-
],
|
| 1285 |
-
"question": "Where is the shrimp in relation to the mint?",
|
| 1286 |
-
"answer": "under",
|
| 1287 |
-
"final_category": "medium"
|
| 1288 |
-
}
|
| 1289 |
-
]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
entity_recall/.DS_Store
DELETED
|
Binary file (8.2 kB)
|
|
|
entity_recall/counting.json
DELETED
|
@@ -1,1068 +0,0 @@
|
|
| 1 |
-
[
|
| 2 |
-
{
|
| 3 |
-
"id": "recall_0",
|
| 4 |
-
"image_path": "entity_recall/images/recall_0.jpg",
|
| 5 |
-
"image_name": "recall_0.jpg",
|
| 6 |
-
"difficulty": "easy",
|
| 7 |
-
"metrics": [
|
| 8 |
-
"exact_match",
|
| 9 |
-
"error_margin"
|
| 10 |
-
],
|
| 11 |
-
"question": "How many clip are in the image?",
|
| 12 |
-
"answer": "1",
|
| 13 |
-
"final_category": "easy"
|
| 14 |
-
},
|
| 15 |
-
{
|
| 16 |
-
"id": "recall_3",
|
| 17 |
-
"image_path": "entity_recall/images/recall_3.jpg",
|
| 18 |
-
"image_name": "recall_3.jpg",
|
| 19 |
-
"difficulty": "medium",
|
| 20 |
-
"metrics": [
|
| 21 |
-
"exact_match",
|
| 22 |
-
"error_margin"
|
| 23 |
-
],
|
| 24 |
-
"question": "How many chairs are in the image?",
|
| 25 |
-
"answer": "4",
|
| 26 |
-
"final_category": "easy"
|
| 27 |
-
},
|
| 28 |
-
{
|
| 29 |
-
"id": "recall_4",
|
| 30 |
-
"image_path": "entity_recall/images/recall_4.jpg",
|
| 31 |
-
"image_name": "recall_4.jpg",
|
| 32 |
-
"difficulty": "medium",
|
| 33 |
-
"metrics": [
|
| 34 |
-
"exact_match",
|
| 35 |
-
"error_margin"
|
| 36 |
-
],
|
| 37 |
-
"question": "How many vase with flowers are in the image?",
|
| 38 |
-
"answer": "2",
|
| 39 |
-
"final_category": "medium"
|
| 40 |
-
},
|
| 41 |
-
{
|
| 42 |
-
"id": "recall_5",
|
| 43 |
-
"image_path": "entity_recall/images/recall_5.jpg",
|
| 44 |
-
"image_name": "recall_5.jpg",
|
| 45 |
-
"difficulty": "easy",
|
| 46 |
-
"metrics": [
|
| 47 |
-
"exact_match",
|
| 48 |
-
"error_margin"
|
| 49 |
-
],
|
| 50 |
-
"question": "How many black frying pan are in the image?",
|
| 51 |
-
"answer": "2",
|
| 52 |
-
"final_category": "easy"
|
| 53 |
-
},
|
| 54 |
-
{
|
| 55 |
-
"id": "recall_6",
|
| 56 |
-
"image_path": "entity_recall/images/recall_6.jpg",
|
| 57 |
-
"image_name": "recall_6.jpg",
|
| 58 |
-
"difficulty": "medium",
|
| 59 |
-
"metrics": [
|
| 60 |
-
"exact_match",
|
| 61 |
-
"error_margin"
|
| 62 |
-
],
|
| 63 |
-
"question": "How many people are in the image?",
|
| 64 |
-
"answer": "3",
|
| 65 |
-
"final_category": "easy"
|
| 66 |
-
},
|
| 67 |
-
{
|
| 68 |
-
"id": "recall_8",
|
| 69 |
-
"image_path": "entity_recall/images/recall_8.jpg",
|
| 70 |
-
"image_name": "recall_8.jpg",
|
| 71 |
-
"difficulty": "easy",
|
| 72 |
-
"metrics": [
|
| 73 |
-
"exact_match",
|
| 74 |
-
"error_margin"
|
| 75 |
-
],
|
| 76 |
-
"question": "How many mug are in the image?",
|
| 77 |
-
"answer": "1",
|
| 78 |
-
"final_category": "easy"
|
| 79 |
-
},
|
| 80 |
-
{
|
| 81 |
-
"id": "recall_11",
|
| 82 |
-
"image_path": "entity_recall/images/recall_11.jpg",
|
| 83 |
-
"image_name": "recall_11.jpg",
|
| 84 |
-
"difficulty": "easy",
|
| 85 |
-
"metrics": [
|
| 86 |
-
"exact_match",
|
| 87 |
-
"error_margin"
|
| 88 |
-
],
|
| 89 |
-
"question": "How many sushi are in the image?",
|
| 90 |
-
"answer": "4",
|
| 91 |
-
"final_category": "medium"
|
| 92 |
-
},
|
| 93 |
-
{
|
| 94 |
-
"id": "recall_12",
|
| 95 |
-
"image_path": "entity_recall/images/recall_12.jpg",
|
| 96 |
-
"image_name": "recall_12.jpg",
|
| 97 |
-
"difficulty": "medium",
|
| 98 |
-
"metrics": [
|
| 99 |
-
"exact_match",
|
| 100 |
-
"error_margin"
|
| 101 |
-
],
|
| 102 |
-
"question": "How many bowl of red beans are in the image?",
|
| 103 |
-
"answer": "2",
|
| 104 |
-
"final_category": "easy"
|
| 105 |
-
},
|
| 106 |
-
{
|
| 107 |
-
"id": "recall_13",
|
| 108 |
-
"image_path": "entity_recall/images/recall_13.jpg",
|
| 109 |
-
"image_name": "recall_13.jpg",
|
| 110 |
-
"difficulty": "hard",
|
| 111 |
-
"metrics": [
|
| 112 |
-
"exact_match",
|
| 113 |
-
"error_margin"
|
| 114 |
-
],
|
| 115 |
-
"question": "How many palm trees are in the image?",
|
| 116 |
-
"answer": "13",
|
| 117 |
-
"final_category": "hard"
|
| 118 |
-
},
|
| 119 |
-
{
|
| 120 |
-
"id": "recall_17",
|
| 121 |
-
"image_path": "entity_recall/images/recall_17.jpg",
|
| 122 |
-
"image_name": "recall_17.jpg",
|
| 123 |
-
"difficulty": "medium",
|
| 124 |
-
"metrics": [
|
| 125 |
-
"exact_match",
|
| 126 |
-
"error_margin"
|
| 127 |
-
],
|
| 128 |
-
"question": "How many bicycles are in the image?",
|
| 129 |
-
"answer": "3",
|
| 130 |
-
"final_category": "medium"
|
| 131 |
-
},
|
| 132 |
-
{
|
| 133 |
-
"id": "recall_20",
|
| 134 |
-
"image_path": "entity_recall/images/recall_20.jpg",
|
| 135 |
-
"image_name": "recall_20.jpg",
|
| 136 |
-
"difficulty": "hard",
|
| 137 |
-
"metrics": [
|
| 138 |
-
"exact_match",
|
| 139 |
-
"error_margin"
|
| 140 |
-
],
|
| 141 |
-
"question": "How many scissors are in the image?",
|
| 142 |
-
"answer": "1",
|
| 143 |
-
"final_category": "hard"
|
| 144 |
-
},
|
| 145 |
-
{
|
| 146 |
-
"id": "recall_21",
|
| 147 |
-
"image_path": "entity_recall/images/recall_21.jpg",
|
| 148 |
-
"image_name": "recall_21.jpg",
|
| 149 |
-
"difficulty": "easy",
|
| 150 |
-
"metrics": [
|
| 151 |
-
"exact_match",
|
| 152 |
-
"error_margin"
|
| 153 |
-
],
|
| 154 |
-
"question": "How many people are in the image?",
|
| 155 |
-
"answer": "4",
|
| 156 |
-
"final_category": "easy"
|
| 157 |
-
},
|
| 158 |
-
{
|
| 159 |
-
"id": "recall_23",
|
| 160 |
-
"image_path": "entity_recall/images/recall_23.jpg",
|
| 161 |
-
"image_name": "recall_23.jpg",
|
| 162 |
-
"difficulty": "medium",
|
| 163 |
-
"metrics": [
|
| 164 |
-
"exact_match",
|
| 165 |
-
"error_margin"
|
| 166 |
-
],
|
| 167 |
-
"question": "How many globe are in the image?",
|
| 168 |
-
"answer": "2",
|
| 169 |
-
"final_category": "easy"
|
| 170 |
-
},
|
| 171 |
-
{
|
| 172 |
-
"id": "recall_26",
|
| 173 |
-
"image_path": "entity_recall/images/recall_26.jpg",
|
| 174 |
-
"image_name": "recall_26.jpg",
|
| 175 |
-
"difficulty": "medium",
|
| 176 |
-
"metrics": [
|
| 177 |
-
"exact_match",
|
| 178 |
-
"error_margin"
|
| 179 |
-
],
|
| 180 |
-
"question": "How many people are in the image?",
|
| 181 |
-
"answer": "6",
|
| 182 |
-
"final_category": "hard"
|
| 183 |
-
},
|
| 184 |
-
{
|
| 185 |
-
"id": "recall_27",
|
| 186 |
-
"image_path": "entity_recall/images/recall_27.jpg",
|
| 187 |
-
"image_name": "recall_27.jpg",
|
| 188 |
-
"difficulty": "hard",
|
| 189 |
-
"metrics": [
|
| 190 |
-
"exact_match",
|
| 191 |
-
"error_margin"
|
| 192 |
-
],
|
| 193 |
-
"question": "How many cat are in the image?",
|
| 194 |
-
"answer": "7",
|
| 195 |
-
"final_category": "hard"
|
| 196 |
-
},
|
| 197 |
-
{
|
| 198 |
-
"id": "recall_28",
|
| 199 |
-
"image_path": "entity_recall/images/recall_28.jpg",
|
| 200 |
-
"image_name": "recall_28.jpg",
|
| 201 |
-
"difficulty": "medium",
|
| 202 |
-
"metrics": [
|
| 203 |
-
"exact_match",
|
| 204 |
-
"error_margin"
|
| 205 |
-
],
|
| 206 |
-
"question": "How many chairs are in the image?",
|
| 207 |
-
"answer": "2",
|
| 208 |
-
"final_category": "easy"
|
| 209 |
-
},
|
| 210 |
-
{
|
| 211 |
-
"id": "recall_29",
|
| 212 |
-
"image_path": "entity_recall/images/recall_29.jpg",
|
| 213 |
-
"image_name": "recall_29.jpg",
|
| 214 |
-
"difficulty": "easy",
|
| 215 |
-
"metrics": [
|
| 216 |
-
"exact_match",
|
| 217 |
-
"error_margin"
|
| 218 |
-
],
|
| 219 |
-
"question": "How many hammer are in the image?",
|
| 220 |
-
"answer": "2",
|
| 221 |
-
"final_category": "easy"
|
| 222 |
-
},
|
| 223 |
-
{
|
| 224 |
-
"id": "recall_30",
|
| 225 |
-
"image_path": "entity_recall/images/recall_30.jpg",
|
| 226 |
-
"image_name": "recall_30.jpg",
|
| 227 |
-
"difficulty": "easy",
|
| 228 |
-
"metrics": [
|
| 229 |
-
"exact_match",
|
| 230 |
-
"error_margin"
|
| 231 |
-
],
|
| 232 |
-
"question": "How many hanging lamps are in the image?",
|
| 233 |
-
"answer": "2",
|
| 234 |
-
"final_category": "easy"
|
| 235 |
-
},
|
| 236 |
-
{
|
| 237 |
-
"id": "recall_31",
|
| 238 |
-
"image_path": "entity_recall/images/recall_31.jpg",
|
| 239 |
-
"image_name": "recall_31.jpg",
|
| 240 |
-
"difficulty": "easy",
|
| 241 |
-
"metrics": [
|
| 242 |
-
"exact_match",
|
| 243 |
-
"error_margin"
|
| 244 |
-
],
|
| 245 |
-
"question": "How many red wine glass are in the image?",
|
| 246 |
-
"answer": "2",
|
| 247 |
-
"final_category": "medium"
|
| 248 |
-
},
|
| 249 |
-
{
|
| 250 |
-
"id": "recall_34",
|
| 251 |
-
"image_path": "entity_recall/images/recall_34.jpg",
|
| 252 |
-
"image_name": "recall_34.jpg",
|
| 253 |
-
"difficulty": "medium",
|
| 254 |
-
"metrics": [
|
| 255 |
-
"exact_match",
|
| 256 |
-
"error_margin"
|
| 257 |
-
],
|
| 258 |
-
"question": "How many chairs are in the image?",
|
| 259 |
-
"answer": "7",
|
| 260 |
-
"final_category": "hard"
|
| 261 |
-
},
|
| 262 |
-
{
|
| 263 |
-
"id": "recall_38",
|
| 264 |
-
"image_path": "entity_recall/images/recall_38.jpg",
|
| 265 |
-
"image_name": "recall_38.jpg",
|
| 266 |
-
"difficulty": "medium",
|
| 267 |
-
"metrics": [
|
| 268 |
-
"exact_match",
|
| 269 |
-
"error_margin"
|
| 270 |
-
],
|
| 271 |
-
"question": "How many dining chairs are in the image?",
|
| 272 |
-
"answer": "7",
|
| 273 |
-
"final_category": "medium"
|
| 274 |
-
},
|
| 275 |
-
{
|
| 276 |
-
"id": "recall_41",
|
| 277 |
-
"image_path": "entity_recall/images/recall_41.jpg",
|
| 278 |
-
"image_name": "recall_41.jpg",
|
| 279 |
-
"difficulty": "easy",
|
| 280 |
-
"metrics": [
|
| 281 |
-
"exact_match",
|
| 282 |
-
"error_margin"
|
| 283 |
-
],
|
| 284 |
-
"question": "How many makeup brushes are in the image?",
|
| 285 |
-
"answer": "2",
|
| 286 |
-
"final_category": "easy"
|
| 287 |
-
},
|
| 288 |
-
{
|
| 289 |
-
"id": "recall_42",
|
| 290 |
-
"image_path": "entity_recall/images/recall_42.jpg",
|
| 291 |
-
"image_name": "recall_42.jpg",
|
| 292 |
-
"difficulty": "easy",
|
| 293 |
-
"metrics": [
|
| 294 |
-
"exact_match",
|
| 295 |
-
"error_margin"
|
| 296 |
-
],
|
| 297 |
-
"question": "How many guitars are in the image?",
|
| 298 |
-
"answer": "5",
|
| 299 |
-
"final_category": "medium"
|
| 300 |
-
},
|
| 301 |
-
{
|
| 302 |
-
"id": "recall_43",
|
| 303 |
-
"image_path": "entity_recall/images/recall_43.jpg",
|
| 304 |
-
"image_name": "recall_43.jpg",
|
| 305 |
-
"difficulty": "hard",
|
| 306 |
-
"metrics": [
|
| 307 |
-
"exact_match",
|
| 308 |
-
"error_margin"
|
| 309 |
-
],
|
| 310 |
-
"question": "How many hospital beds are in the image?",
|
| 311 |
-
"answer": "6",
|
| 312 |
-
"final_category": "medium"
|
| 313 |
-
},
|
| 314 |
-
{
|
| 315 |
-
"id": "recall_44",
|
| 316 |
-
"image_path": "entity_recall/images/recall_44.jpg",
|
| 317 |
-
"image_name": "recall_44.jpg",
|
| 318 |
-
"difficulty": "hard",
|
| 319 |
-
"metrics": [
|
| 320 |
-
"exact_match",
|
| 321 |
-
"error_margin"
|
| 322 |
-
],
|
| 323 |
-
"question": "How many chairs are in the image?",
|
| 324 |
-
"answer": "9",
|
| 325 |
-
"final_category": "medium"
|
| 326 |
-
},
|
| 327 |
-
{
|
| 328 |
-
"id": "recall_45",
|
| 329 |
-
"image_path": "entity_recall/images/recall_45.jpg",
|
| 330 |
-
"image_name": "recall_45.jpg",
|
| 331 |
-
"difficulty": "medium",
|
| 332 |
-
"metrics": [
|
| 333 |
-
"exact_match",
|
| 334 |
-
"error_margin"
|
| 335 |
-
],
|
| 336 |
-
"question": "How many snooker balls are in the image?",
|
| 337 |
-
"answer": "13",
|
| 338 |
-
"final_category": "hard"
|
| 339 |
-
},
|
| 340 |
-
{
|
| 341 |
-
"id": "recall_50",
|
| 342 |
-
"image_path": "entity_recall/images/recall_50.jpg",
|
| 343 |
-
"image_name": "recall_50.jpg",
|
| 344 |
-
"difficulty": "easy",
|
| 345 |
-
"metrics": [
|
| 346 |
-
"exact_match",
|
| 347 |
-
"error_margin"
|
| 348 |
-
],
|
| 349 |
-
"question": "How many feeding trays are in the image?",
|
| 350 |
-
"answer": "4",
|
| 351 |
-
"final_category": "easy"
|
| 352 |
-
},
|
| 353 |
-
{
|
| 354 |
-
"id": "recall_52",
|
| 355 |
-
"image_path": "entity_recall/images/recall_52.jpg",
|
| 356 |
-
"image_name": "recall_52.jpg",
|
| 357 |
-
"difficulty": "medium",
|
| 358 |
-
"metrics": [
|
| 359 |
-
"exact_match",
|
| 360 |
-
"error_margin"
|
| 361 |
-
],
|
| 362 |
-
"question": "How many cups are in the image?",
|
| 363 |
-
"answer": "7",
|
| 364 |
-
"final_category": "medium"
|
| 365 |
-
},
|
| 366 |
-
{
|
| 367 |
-
"id": "recall_59",
|
| 368 |
-
"image_path": "entity_recall/images/recall_59.jpg",
|
| 369 |
-
"image_name": "recall_59.jpg",
|
| 370 |
-
"difficulty": "easy",
|
| 371 |
-
"metrics": [
|
| 372 |
-
"exact_match",
|
| 373 |
-
"error_margin"
|
| 374 |
-
],
|
| 375 |
-
"question": "How many wine glasses are in the image?",
|
| 376 |
-
"answer": "2",
|
| 377 |
-
"final_category": "easy"
|
| 378 |
-
},
|
| 379 |
-
{
|
| 380 |
-
"id": "recall_61",
|
| 381 |
-
"image_path": "entity_recall/images/recall_61.jpg",
|
| 382 |
-
"image_name": "recall_61.jpg",
|
| 383 |
-
"difficulty": "easy",
|
| 384 |
-
"metrics": [
|
| 385 |
-
"exact_match",
|
| 386 |
-
"error_margin"
|
| 387 |
-
],
|
| 388 |
-
"question": "How many capybaras are in the image?",
|
| 389 |
-
"answer": "2",
|
| 390 |
-
"final_category": "easy"
|
| 391 |
-
},
|
| 392 |
-
{
|
| 393 |
-
"id": "recall_65",
|
| 394 |
-
"image_path": "entity_recall/images/recall_65.jpg",
|
| 395 |
-
"image_name": "recall_65.jpg",
|
| 396 |
-
"difficulty": "medium",
|
| 397 |
-
"metrics": [
|
| 398 |
-
"exact_match",
|
| 399 |
-
"error_margin"
|
| 400 |
-
],
|
| 401 |
-
"question": "How many people are in the image?",
|
| 402 |
-
"answer": "6",
|
| 403 |
-
"final_category": "hard"
|
| 404 |
-
},
|
| 405 |
-
{
|
| 406 |
-
"id": "recall_66",
|
| 407 |
-
"image_path": "entity_recall/images/recall_66.jpg",
|
| 408 |
-
"image_name": "recall_66.jpg",
|
| 409 |
-
"difficulty": "hard",
|
| 410 |
-
"metrics": [
|
| 411 |
-
"exact_match",
|
| 412 |
-
"error_margin"
|
| 413 |
-
],
|
| 414 |
-
"question": "How many pears are in the image?",
|
| 415 |
-
"answer": "14",
|
| 416 |
-
"final_category": "medium"
|
| 417 |
-
},
|
| 418 |
-
{
|
| 419 |
-
"id": "recall_71",
|
| 420 |
-
"image_path": "entity_recall/images/recall_71.jpg",
|
| 421 |
-
"image_name": "recall_71.jpg",
|
| 422 |
-
"difficulty": "easy",
|
| 423 |
-
"metrics": [
|
| 424 |
-
"exact_match",
|
| 425 |
-
"error_margin"
|
| 426 |
-
],
|
| 427 |
-
"question": "How many chairs are in the image?",
|
| 428 |
-
"answer": "4",
|
| 429 |
-
"final_category": "easy"
|
| 430 |
-
},
|
| 431 |
-
{
|
| 432 |
-
"id": "recall_72",
|
| 433 |
-
"image_path": "entity_recall/images/recall_72.jpg",
|
| 434 |
-
"image_name": "recall_72.jpg",
|
| 435 |
-
"difficulty": "easy",
|
| 436 |
-
"metrics": [
|
| 437 |
-
"exact_match",
|
| 438 |
-
"error_margin"
|
| 439 |
-
],
|
| 440 |
-
"question": "How many people are in the image?",
|
| 441 |
-
"answer": "5",
|
| 442 |
-
"final_category": "easy"
|
| 443 |
-
},
|
| 444 |
-
{
|
| 445 |
-
"id": "recall_74",
|
| 446 |
-
"image_path": "entity_recall/images/recall_74.jpg",
|
| 447 |
-
"image_name": "recall_74.jpg",
|
| 448 |
-
"difficulty": "easy",
|
| 449 |
-
"metrics": [
|
| 450 |
-
"exact_match",
|
| 451 |
-
"error_margin"
|
| 452 |
-
],
|
| 453 |
-
"question": "How many laptop are in the image?",
|
| 454 |
-
"answer": "2",
|
| 455 |
-
"final_category": "hard"
|
| 456 |
-
},
|
| 457 |
-
{
|
| 458 |
-
"id": "recall_79",
|
| 459 |
-
"image_path": "entity_recall/images/recall_79.jpg",
|
| 460 |
-
"image_name": "recall_79.jpg",
|
| 461 |
-
"difficulty": "easy",
|
| 462 |
-
"metrics": [
|
| 463 |
-
"exact_match",
|
| 464 |
-
"error_margin"
|
| 465 |
-
],
|
| 466 |
-
"question": "How many digital signboards are in the image?",
|
| 467 |
-
"answer": "4",
|
| 468 |
-
"final_category": "hard"
|
| 469 |
-
},
|
| 470 |
-
{
|
| 471 |
-
"id": "recall_85",
|
| 472 |
-
"image_path": "entity_recall/images/recall_85.jpg",
|
| 473 |
-
"image_name": "recall_85.jpg",
|
| 474 |
-
"difficulty": "easy",
|
| 475 |
-
"metrics": [
|
| 476 |
-
"exact_match",
|
| 477 |
-
"error_margin"
|
| 478 |
-
],
|
| 479 |
-
"question": "How many pendant lights are in the image?",
|
| 480 |
-
"answer": "2",
|
| 481 |
-
"final_category": "medium"
|
| 482 |
-
},
|
| 483 |
-
{
|
| 484 |
-
"id": "recall_86",
|
| 485 |
-
"image_path": "entity_recall/images/recall_86.jpg",
|
| 486 |
-
"image_name": "recall_86.jpg",
|
| 487 |
-
"difficulty": "medium",
|
| 488 |
-
"metrics": [
|
| 489 |
-
"exact_match",
|
| 490 |
-
"error_margin"
|
| 491 |
-
],
|
| 492 |
-
"question": "How many plants are in the image?",
|
| 493 |
-
"answer": "4",
|
| 494 |
-
"final_category": "easy"
|
| 495 |
-
},
|
| 496 |
-
{
|
| 497 |
-
"id": "recall_89",
|
| 498 |
-
"image_path": "entity_recall/images/recall_89.jpg",
|
| 499 |
-
"image_name": "recall_89.jpg",
|
| 500 |
-
"difficulty": "medium",
|
| 501 |
-
"metrics": [
|
| 502 |
-
"exact_match",
|
| 503 |
-
"error_margin"
|
| 504 |
-
],
|
| 505 |
-
"question": "How many medical waste bins are in the image?",
|
| 506 |
-
"answer": "1",
|
| 507 |
-
"final_category": "hard"
|
| 508 |
-
},
|
| 509 |
-
{
|
| 510 |
-
"id": "recall_91",
|
| 511 |
-
"image_path": "entity_recall/images/recall_91.jpg",
|
| 512 |
-
"image_name": "recall_91.jpg",
|
| 513 |
-
"difficulty": "easy",
|
| 514 |
-
"metrics": [
|
| 515 |
-
"exact_match",
|
| 516 |
-
"error_margin"
|
| 517 |
-
],
|
| 518 |
-
"question": "How many reindeer are in the image?",
|
| 519 |
-
"answer": "2",
|
| 520 |
-
"final_category": "easy"
|
| 521 |
-
},
|
| 522 |
-
{
|
| 523 |
-
"id": "recall_93",
|
| 524 |
-
"image_path": "entity_recall/images/recall_93.jpg",
|
| 525 |
-
"image_name": "recall_93.jpg",
|
| 526 |
-
"difficulty": "medium",
|
| 527 |
-
"metrics": [
|
| 528 |
-
"exact_match",
|
| 529 |
-
"error_margin"
|
| 530 |
-
],
|
| 531 |
-
"question": "How many pliers are in the image?",
|
| 532 |
-
"answer": "2",
|
| 533 |
-
"final_category": "medium"
|
| 534 |
-
},
|
| 535 |
-
{
|
| 536 |
-
"id": "recall_102",
|
| 537 |
-
"image_path": "entity_recall/images/recall_102.jpg",
|
| 538 |
-
"image_name": "recall_102.jpg",
|
| 539 |
-
"difficulty": "medium",
|
| 540 |
-
"metrics": [
|
| 541 |
-
"exact_match",
|
| 542 |
-
"error_margin"
|
| 543 |
-
],
|
| 544 |
-
"question": "How many geese are in the image?",
|
| 545 |
-
"answer": "9",
|
| 546 |
-
"final_category": "hard"
|
| 547 |
-
},
|
| 548 |
-
{
|
| 549 |
-
"id": "recall_105",
|
| 550 |
-
"image_path": "entity_recall/images/recall_105.jpg",
|
| 551 |
-
"image_name": "recall_105.jpg",
|
| 552 |
-
"difficulty": "easy",
|
| 553 |
-
"metrics": [
|
| 554 |
-
"exact_match",
|
| 555 |
-
"error_margin"
|
| 556 |
-
],
|
| 557 |
-
"question": "How many teddy bear are in the image?",
|
| 558 |
-
"answer": "2",
|
| 559 |
-
"final_category": "easy"
|
| 560 |
-
},
|
| 561 |
-
{
|
| 562 |
-
"id": "recall_106",
|
| 563 |
-
"image_path": "entity_recall/images/recall_106.jpg",
|
| 564 |
-
"image_name": "recall_106.jpg",
|
| 565 |
-
"difficulty": "easy",
|
| 566 |
-
"metrics": [
|
| 567 |
-
"exact_match",
|
| 568 |
-
"error_margin"
|
| 569 |
-
],
|
| 570 |
-
"question": "How many basketball hoops are in the image?",
|
| 571 |
-
"answer": "3",
|
| 572 |
-
"final_category": "medium"
|
| 573 |
-
},
|
| 574 |
-
{
|
| 575 |
-
"id": "recall_118",
|
| 576 |
-
"image_path": "entity_recall/images/recall_118.jpg",
|
| 577 |
-
"image_name": "recall_118.jpg",
|
| 578 |
-
"difficulty": "easy",
|
| 579 |
-
"metrics": [
|
| 580 |
-
"exact_match",
|
| 581 |
-
"error_margin"
|
| 582 |
-
],
|
| 583 |
-
"question": "How many people are in the image?",
|
| 584 |
-
"answer": "4",
|
| 585 |
-
"final_category": "easy"
|
| 586 |
-
},
|
| 587 |
-
{
|
| 588 |
-
"id": "recall_121",
|
| 589 |
-
"image_path": "entity_recall/images/recall_121.jpg",
|
| 590 |
-
"image_name": "recall_121.jpg",
|
| 591 |
-
"difficulty": "easy",
|
| 592 |
-
"metrics": [
|
| 593 |
-
"exact_match",
|
| 594 |
-
"error_margin"
|
| 595 |
-
],
|
| 596 |
-
"question": "How many lamp are in the image?",
|
| 597 |
-
"answer": "2",
|
| 598 |
-
"final_category": "easy"
|
| 599 |
-
},
|
| 600 |
-
{
|
| 601 |
-
"id": "recall_123",
|
| 602 |
-
"image_path": "entity_recall/images/recall_123.jpg",
|
| 603 |
-
"image_name": "recall_123.jpg",
|
| 604 |
-
"difficulty": "easy",
|
| 605 |
-
"metrics": [
|
| 606 |
-
"exact_match",
|
| 607 |
-
"error_margin"
|
| 608 |
-
],
|
| 609 |
-
"question": "How many sofa are in the image?",
|
| 610 |
-
"answer": "4",
|
| 611 |
-
"final_category": "easy"
|
| 612 |
-
},
|
| 613 |
-
{
|
| 614 |
-
"id": "recall_125",
|
| 615 |
-
"image_path": "entity_recall/images/recall_125.jpg",
|
| 616 |
-
"image_name": "recall_125.jpg",
|
| 617 |
-
"difficulty": "medium",
|
| 618 |
-
"metrics": [
|
| 619 |
-
"exact_match",
|
| 620 |
-
"error_margin"
|
| 621 |
-
],
|
| 622 |
-
"question": "How many alpacas are in the image?",
|
| 623 |
-
"answer": "5",
|
| 624 |
-
"final_category": "easy"
|
| 625 |
-
},
|
| 626 |
-
{
|
| 627 |
-
"id": "recall_136",
|
| 628 |
-
"image_path": "entity_recall/images/recall_136.jpg",
|
| 629 |
-
"image_name": "recall_136.jpg",
|
| 630 |
-
"difficulty": "easy",
|
| 631 |
-
"metrics": [
|
| 632 |
-
"exact_match",
|
| 633 |
-
"error_margin"
|
| 634 |
-
],
|
| 635 |
-
"question": "How many chairs are in the image?",
|
| 636 |
-
"answer": "4",
|
| 637 |
-
"final_category": "easy"
|
| 638 |
-
},
|
| 639 |
-
{
|
| 640 |
-
"id": "recall_141",
|
| 641 |
-
"image_path": "entity_recall/images/recall_141.jpg",
|
| 642 |
-
"image_name": "recall_141.jpg",
|
| 643 |
-
"difficulty": "easy",
|
| 644 |
-
"metrics": [
|
| 645 |
-
"exact_match",
|
| 646 |
-
"error_margin"
|
| 647 |
-
],
|
| 648 |
-
"question": "How many skewered meat are in the image?",
|
| 649 |
-
"answer": "4",
|
| 650 |
-
"final_category": "medium"
|
| 651 |
-
},
|
| 652 |
-
{
|
| 653 |
-
"id": "recall_144",
|
| 654 |
-
"image_path": "entity_recall/images/recall_144.jpg",
|
| 655 |
-
"image_name": "recall_144.jpg",
|
| 656 |
-
"difficulty": "medium",
|
| 657 |
-
"metrics": [
|
| 658 |
-
"exact_match",
|
| 659 |
-
"error_margin"
|
| 660 |
-
],
|
| 661 |
-
"question": "How many paintings are in the image?",
|
| 662 |
-
"answer": "7",
|
| 663 |
-
"final_category": "medium"
|
| 664 |
-
},
|
| 665 |
-
{
|
| 666 |
-
"id": "recall_145",
|
| 667 |
-
"image_path": "entity_recall/images/recall_145.jpg",
|
| 668 |
-
"image_name": "recall_145.jpg",
|
| 669 |
-
"difficulty": "medium",
|
| 670 |
-
"metrics": [
|
| 671 |
-
"exact_match",
|
| 672 |
-
"error_margin"
|
| 673 |
-
],
|
| 674 |
-
"question": "How many laundry detergents are in the image?",
|
| 675 |
-
"answer": "4",
|
| 676 |
-
"final_category": "medium"
|
| 677 |
-
},
|
| 678 |
-
{
|
| 679 |
-
"id": "recall_146",
|
| 680 |
-
"image_path": "entity_recall/images/recall_146.jpg",
|
| 681 |
-
"image_name": "recall_146.jpg",
|
| 682 |
-
"difficulty": "easy",
|
| 683 |
-
"metrics": [
|
| 684 |
-
"exact_match",
|
| 685 |
-
"error_margin"
|
| 686 |
-
],
|
| 687 |
-
"question": "How many sofa are in the image?",
|
| 688 |
-
"answer": "3",
|
| 689 |
-
"final_category": "medium"
|
| 690 |
-
},
|
| 691 |
-
{
|
| 692 |
-
"id": "recall_150",
|
| 693 |
-
"image_path": "entity_recall/images/recall_150.jpg",
|
| 694 |
-
"image_name": "recall_150.jpg",
|
| 695 |
-
"difficulty": "medium",
|
| 696 |
-
"metrics": [
|
| 697 |
-
"exact_match",
|
| 698 |
-
"error_margin"
|
| 699 |
-
],
|
| 700 |
-
"question": "How many office chairs are in the image?",
|
| 701 |
-
"answer": "9",
|
| 702 |
-
"final_category": "medium"
|
| 703 |
-
},
|
| 704 |
-
{
|
| 705 |
-
"id": "recall_154",
|
| 706 |
-
"image_path": "entity_recall/images/recall_154.jpg",
|
| 707 |
-
"image_name": "recall_154.jpg",
|
| 708 |
-
"difficulty": "easy",
|
| 709 |
-
"metrics": [
|
| 710 |
-
"exact_match",
|
| 711 |
-
"error_margin"
|
| 712 |
-
],
|
| 713 |
-
"question": "How many necklaces are in the image?",
|
| 714 |
-
"answer": "2",
|
| 715 |
-
"final_category": "medium"
|
| 716 |
-
},
|
| 717 |
-
{
|
| 718 |
-
"id": "recall_157",
|
| 719 |
-
"image_path": "entity_recall/images/recall_157.jpg",
|
| 720 |
-
"image_name": "recall_157.jpg",
|
| 721 |
-
"difficulty": "hard",
|
| 722 |
-
"metrics": [
|
| 723 |
-
"exact_match",
|
| 724 |
-
"error_margin"
|
| 725 |
-
],
|
| 726 |
-
"question": "How many wildebeests are in the image?",
|
| 727 |
-
"answer": "10",
|
| 728 |
-
"final_category": "hard"
|
| 729 |
-
},
|
| 730 |
-
{
|
| 731 |
-
"id": "recall_161",
|
| 732 |
-
"image_path": "entity_recall/images/recall_161.jpg",
|
| 733 |
-
"image_name": "recall_161.jpg",
|
| 734 |
-
"difficulty": "easy",
|
| 735 |
-
"metrics": [
|
| 736 |
-
"exact_match",
|
| 737 |
-
"error_margin"
|
| 738 |
-
],
|
| 739 |
-
"question": "How many red tomatoes are in the image?",
|
| 740 |
-
"answer": "4",
|
| 741 |
-
"final_category": "medium"
|
| 742 |
-
},
|
| 743 |
-
{
|
| 744 |
-
"id": "recall_162",
|
| 745 |
-
"image_path": "entity_recall/images/recall_162.jpg",
|
| 746 |
-
"image_name": "recall_162.jpg",
|
| 747 |
-
"difficulty": "medium",
|
| 748 |
-
"metrics": [
|
| 749 |
-
"exact_match",
|
| 750 |
-
"error_margin"
|
| 751 |
-
],
|
| 752 |
-
"question": "How many llamas are in the image?",
|
| 753 |
-
"answer": "6",
|
| 754 |
-
"final_category": "hard"
|
| 755 |
-
},
|
| 756 |
-
{
|
| 757 |
-
"id": "recall_167",
|
| 758 |
-
"image_path": "entity_recall/images/recall_167.jpg",
|
| 759 |
-
"image_name": "recall_167.jpg",
|
| 760 |
-
"difficulty": "medium",
|
| 761 |
-
"metrics": [
|
| 762 |
-
"exact_match",
|
| 763 |
-
"error_margin"
|
| 764 |
-
],
|
| 765 |
-
"question": "How many books are in the image?",
|
| 766 |
-
"answer": "6",
|
| 767 |
-
"final_category": "hard"
|
| 768 |
-
},
|
| 769 |
-
{
|
| 770 |
-
"id": "recall_169",
|
| 771 |
-
"image_path": "entity_recall/images/recall_169.jpg",
|
| 772 |
-
"image_name": "recall_169.jpg",
|
| 773 |
-
"difficulty": "hard",
|
| 774 |
-
"metrics": [
|
| 775 |
-
"exact_match",
|
| 776 |
-
"error_margin"
|
| 777 |
-
],
|
| 778 |
-
"question": "How many hazelnuts are in the image?",
|
| 779 |
-
"answer": "10",
|
| 780 |
-
"final_category": "hard"
|
| 781 |
-
},
|
| 782 |
-
{
|
| 783 |
-
"id": "recall_170",
|
| 784 |
-
"image_path": "entity_recall/images/recall_170.jpg",
|
| 785 |
-
"image_name": "recall_170.jpg",
|
| 786 |
-
"difficulty": "easy",
|
| 787 |
-
"metrics": [
|
| 788 |
-
"exact_match",
|
| 789 |
-
"error_margin"
|
| 790 |
-
],
|
| 791 |
-
"question": "How many star anise are in the image?",
|
| 792 |
-
"answer": "2",
|
| 793 |
-
"final_category": "easy"
|
| 794 |
-
},
|
| 795 |
-
{
|
| 796 |
-
"id": "recall_172",
|
| 797 |
-
"image_path": "entity_recall/images/recall_172.jpg",
|
| 798 |
-
"image_name": "recall_172.jpg",
|
| 799 |
-
"difficulty": "medium",
|
| 800 |
-
"metrics": [
|
| 801 |
-
"exact_match",
|
| 802 |
-
"error_margin"
|
| 803 |
-
],
|
| 804 |
-
"question": "How many people are in the image?",
|
| 805 |
-
"answer": "7",
|
| 806 |
-
"final_category": "medium"
|
| 807 |
-
},
|
| 808 |
-
{
|
| 809 |
-
"id": "recall_192",
|
| 810 |
-
"image_path": "entity_recall/images/recall_192.jpg",
|
| 811 |
-
"image_name": "recall_192.jpg",
|
| 812 |
-
"difficulty": "medium",
|
| 813 |
-
"metrics": [
|
| 814 |
-
"exact_match",
|
| 815 |
-
"error_margin"
|
| 816 |
-
],
|
| 817 |
-
"question": "How many people are in the image?",
|
| 818 |
-
"answer": "5",
|
| 819 |
-
"final_category": "easy"
|
| 820 |
-
},
|
| 821 |
-
{
|
| 822 |
-
"id": "recall_196",
|
| 823 |
-
"image_path": "entity_recall/images/recall_196.jpg",
|
| 824 |
-
"image_name": "recall_196.jpg",
|
| 825 |
-
"difficulty": "hard",
|
| 826 |
-
"metrics": [
|
| 827 |
-
"exact_match",
|
| 828 |
-
"error_margin"
|
| 829 |
-
],
|
| 830 |
-
"question": "How many person are in the image?",
|
| 831 |
-
"answer": "13",
|
| 832 |
-
"final_category": "hard"
|
| 833 |
-
},
|
| 834 |
-
{
|
| 835 |
-
"id": "recall_197",
|
| 836 |
-
"image_path": "entity_recall/images/recall_197.jpg",
|
| 837 |
-
"image_name": "recall_197.jpg",
|
| 838 |
-
"difficulty": "easy",
|
| 839 |
-
"metrics": [
|
| 840 |
-
"exact_match",
|
| 841 |
-
"error_margin"
|
| 842 |
-
],
|
| 843 |
-
"question": "How many children are in the image?",
|
| 844 |
-
"answer": "2",
|
| 845 |
-
"final_category": "easy"
|
| 846 |
-
},
|
| 847 |
-
{
|
| 848 |
-
"id": "recall_202",
|
| 849 |
-
"image_path": "entity_recall/images/recall_202.jpg",
|
| 850 |
-
"image_name": "recall_202.jpg",
|
| 851 |
-
"difficulty": "easy",
|
| 852 |
-
"metrics": [
|
| 853 |
-
"exact_match",
|
| 854 |
-
"error_margin"
|
| 855 |
-
],
|
| 856 |
-
"question": "How many sachets are in the image?",
|
| 857 |
-
"answer": "3",
|
| 858 |
-
"final_category": "easy"
|
| 859 |
-
},
|
| 860 |
-
{
|
| 861 |
-
"id": "recall_206",
|
| 862 |
-
"image_path": "entity_recall/images/recall_206.jpg",
|
| 863 |
-
"image_name": "recall_206.jpg",
|
| 864 |
-
"difficulty": "medium",
|
| 865 |
-
"metrics": [
|
| 866 |
-
"exact_match",
|
| 867 |
-
"error_margin"
|
| 868 |
-
],
|
| 869 |
-
"question": "How many axes are in the image?",
|
| 870 |
-
"answer": "5",
|
| 871 |
-
"final_category": "medium"
|
| 872 |
-
},
|
| 873 |
-
{
|
| 874 |
-
"id": "recall_207",
|
| 875 |
-
"image_path": "entity_recall/images/recall_207.jpg",
|
| 876 |
-
"image_name": "recall_207.jpg",
|
| 877 |
-
"difficulty": "easy",
|
| 878 |
-
"metrics": [
|
| 879 |
-
"exact_match",
|
| 880 |
-
"error_margin"
|
| 881 |
-
],
|
| 882 |
-
"question": "How many bananas are in the image?",
|
| 883 |
-
"answer": "2",
|
| 884 |
-
"final_category": "easy"
|
| 885 |
-
},
|
| 886 |
-
{
|
| 887 |
-
"id": "recall_210",
|
| 888 |
-
"image_path": "entity_recall/images/recall_210.jpg",
|
| 889 |
-
"image_name": "recall_210.jpg",
|
| 890 |
-
"difficulty": "easy",
|
| 891 |
-
"metrics": [
|
| 892 |
-
"exact_match",
|
| 893 |
-
"error_margin"
|
| 894 |
-
],
|
| 895 |
-
"question": "How many axes are in the image?",
|
| 896 |
-
"answer": "1",
|
| 897 |
-
"final_category": "medium"
|
| 898 |
-
},
|
| 899 |
-
{
|
| 900 |
-
"id": "recall_211",
|
| 901 |
-
"image_path": "entity_recall/images/recall_211.jpg",
|
| 902 |
-
"image_name": "recall_211.jpg",
|
| 903 |
-
"difficulty": "medium",
|
| 904 |
-
"metrics": [
|
| 905 |
-
"exact_match",
|
| 906 |
-
"error_margin"
|
| 907 |
-
],
|
| 908 |
-
"question": "How many chairs are in the image?",
|
| 909 |
-
"answer": "3",
|
| 910 |
-
"final_category": "medium"
|
| 911 |
-
},
|
| 912 |
-
{
|
| 913 |
-
"id": "recall_212",
|
| 914 |
-
"image_path": "entity_recall/images/recall_212.jpg",
|
| 915 |
-
"image_name": "recall_212.jpg",
|
| 916 |
-
"difficulty": "hard",
|
| 917 |
-
"metrics": [
|
| 918 |
-
"exact_match",
|
| 919 |
-
"error_margin"
|
| 920 |
-
],
|
| 921 |
-
"question": "How many microscopes are in the image?",
|
| 922 |
-
"answer": "18",
|
| 923 |
-
"final_category": "hard"
|
| 924 |
-
},
|
| 925 |
-
{
|
| 926 |
-
"id": "recall_219",
|
| 927 |
-
"image_path": "entity_recall/images/recall_219.jpg",
|
| 928 |
-
"image_name": "recall_219.jpg",
|
| 929 |
-
"difficulty": "easy",
|
| 930 |
-
"metrics": [
|
| 931 |
-
"exact_match",
|
| 932 |
-
"error_margin"
|
| 933 |
-
],
|
| 934 |
-
"question": "How many chairs are in the image?",
|
| 935 |
-
"answer": "1",
|
| 936 |
-
"final_category": "easy"
|
| 937 |
-
},
|
| 938 |
-
{
|
| 939 |
-
"id": "recall_220",
|
| 940 |
-
"image_path": "entity_recall/images/recall_220.jpg",
|
| 941 |
-
"image_name": "recall_220.jpg",
|
| 942 |
-
"difficulty": "medium",
|
| 943 |
-
"metrics": [
|
| 944 |
-
"exact_match",
|
| 945 |
-
"error_margin"
|
| 946 |
-
],
|
| 947 |
-
"question": "How many mugs are in the image?",
|
| 948 |
-
"answer": "6",
|
| 949 |
-
"final_category": "medium"
|
| 950 |
-
},
|
| 951 |
-
{
|
| 952 |
-
"id": "recall_221",
|
| 953 |
-
"image_path": "entity_recall/images/recall_221.jpg",
|
| 954 |
-
"image_name": "recall_221.jpg",
|
| 955 |
-
"difficulty": "medium",
|
| 956 |
-
"metrics": [
|
| 957 |
-
"exact_match",
|
| 958 |
-
"error_margin"
|
| 959 |
-
],
|
| 960 |
-
"question": "How many paintings are in the image?",
|
| 961 |
-
"answer": "7",
|
| 962 |
-
"final_category": "easy"
|
| 963 |
-
},
|
| 964 |
-
{
|
| 965 |
-
"id": "recall_222",
|
| 966 |
-
"image_path": "entity_recall/images/recall_222.jpg",
|
| 967 |
-
"image_name": "recall_222.jpg",
|
| 968 |
-
"difficulty": "easy",
|
| 969 |
-
"metrics": [
|
| 970 |
-
"exact_match",
|
| 971 |
-
"error_margin"
|
| 972 |
-
],
|
| 973 |
-
"question": "How many plush toys are in the image?",
|
| 974 |
-
"answer": "2",
|
| 975 |
-
"final_category": "easy"
|
| 976 |
-
},
|
| 977 |
-
{
|
| 978 |
-
"id": "recall_224",
|
| 979 |
-
"image_path": "entity_recall/images/recall_224.jpg",
|
| 980 |
-
"image_name": "recall_224.jpg",
|
| 981 |
-
"difficulty": "easy",
|
| 982 |
-
"metrics": [
|
| 983 |
-
"exact_match",
|
| 984 |
-
"error_margin"
|
| 985 |
-
],
|
| 986 |
-
"question": "How many trees are in the image?",
|
| 987 |
-
"answer": "2",
|
| 988 |
-
"final_category": "medium"
|
| 989 |
-
},
|
| 990 |
-
{
|
| 991 |
-
"id": "recall_228",
|
| 992 |
-
"image_path": "entity_recall/images/recall_228.jpg",
|
| 993 |
-
"image_name": "recall_228.jpg",
|
| 994 |
-
"difficulty": "hard",
|
| 995 |
-
"metrics": [
|
| 996 |
-
"exact_match",
|
| 997 |
-
"error_margin"
|
| 998 |
-
],
|
| 999 |
-
"question": "How many figures in ancient costumes are in the image?",
|
| 1000 |
-
"answer": "28",
|
| 1001 |
-
"final_category": "medium"
|
| 1002 |
-
},
|
| 1003 |
-
{
|
| 1004 |
-
"id": "recall_231",
|
| 1005 |
-
"image_path": "entity_recall/images/recall_231.jpg",
|
| 1006 |
-
"image_name": "recall_231.jpg",
|
| 1007 |
-
"difficulty": "easy",
|
| 1008 |
-
"metrics": [
|
| 1009 |
-
"exact_match",
|
| 1010 |
-
"error_margin"
|
| 1011 |
-
],
|
| 1012 |
-
"question": "How many tape measures are in the image?",
|
| 1013 |
-
"answer": "2",
|
| 1014 |
-
"final_category": "easy"
|
| 1015 |
-
},
|
| 1016 |
-
{
|
| 1017 |
-
"id": "recall_233",
|
| 1018 |
-
"image_path": "entity_recall/images/recall_233.jpg",
|
| 1019 |
-
"image_name": "recall_233.jpg",
|
| 1020 |
-
"difficulty": "easy",
|
| 1021 |
-
"metrics": [
|
| 1022 |
-
"exact_match",
|
| 1023 |
-
"error_margin"
|
| 1024 |
-
],
|
| 1025 |
-
"question": "How many monitors are in the image?",
|
| 1026 |
-
"answer": "2",
|
| 1027 |
-
"final_category": "medium"
|
| 1028 |
-
},
|
| 1029 |
-
{
|
| 1030 |
-
"id": "recall_236",
|
| 1031 |
-
"image_path": "entity_recall/images/recall_236.jpg",
|
| 1032 |
-
"image_name": "recall_236.jpg",
|
| 1033 |
-
"difficulty": "easy",
|
| 1034 |
-
"metrics": [
|
| 1035 |
-
"exact_match",
|
| 1036 |
-
"error_margin"
|
| 1037 |
-
],
|
| 1038 |
-
"question": "How many cookies in duck shapes are in the image?",
|
| 1039 |
-
"answer": "3",
|
| 1040 |
-
"final_category": "medium"
|
| 1041 |
-
},
|
| 1042 |
-
{
|
| 1043 |
-
"id": "recall_238",
|
| 1044 |
-
"image_path": "entity_recall/images/recall_238.jpg",
|
| 1045 |
-
"image_name": "recall_238.jpg",
|
| 1046 |
-
"difficulty": "easy",
|
| 1047 |
-
"metrics": [
|
| 1048 |
-
"exact_match",
|
| 1049 |
-
"error_margin"
|
| 1050 |
-
],
|
| 1051 |
-
"question": "How many horses are in the image?",
|
| 1052 |
-
"answer": "3",
|
| 1053 |
-
"final_category": "easy"
|
| 1054 |
-
},
|
| 1055 |
-
{
|
| 1056 |
-
"id": "recall_240",
|
| 1057 |
-
"image_path": "entity_recall/images/recall_240.jpg",
|
| 1058 |
-
"image_name": "recall_240.jpg",
|
| 1059 |
-
"difficulty": "easy",
|
| 1060 |
-
"metrics": [
|
| 1061 |
-
"exact_match",
|
| 1062 |
-
"error_margin"
|
| 1063 |
-
],
|
| 1064 |
-
"question": "How many ships are in the image?",
|
| 1065 |
-
"answer": "10",
|
| 1066 |
-
"final_category": "medium"
|
| 1067 |
-
}
|
| 1068 |
-
]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
entity_recall/images/recall_1.jpg
DELETED
Git LFS Details
|
entity_recall/images/recall_10.jpg
DELETED
Git LFS Details
|
entity_recall/images/recall_100.jpg
DELETED
Git LFS Details
|
entity_recall/images/recall_101.jpg
DELETED
Git LFS Details
|
entity_recall/images/recall_104.jpg
DELETED
Git LFS Details
|
entity_recall/images/recall_107.jpg
DELETED
Git LFS Details
|
entity_recall/images/recall_108.jpg
DELETED
Git LFS Details
|
entity_recall/images/recall_109.jpg
DELETED
Git LFS Details
|
entity_recall/images/recall_111.jpg
DELETED
Git LFS Details
|
entity_recall/images/recall_112.jpg
DELETED
Git LFS Details
|
entity_recall/images/recall_113.jpg
DELETED
Git LFS Details
|
entity_recall/images/recall_114.jpg
DELETED
Git LFS Details
|
entity_recall/images/recall_115.jpg
DELETED
Git LFS Details
|
entity_recall/images/recall_116.jpg
DELETED
Git LFS Details
|
entity_recall/images/recall_117.jpg
DELETED
Git LFS Details
|
entity_recall/images/recall_119.jpg
DELETED
Git LFS Details
|
entity_recall/images/recall_120.jpg
DELETED
Git LFS Details
|
entity_recall/images/recall_122.jpg
DELETED
Git LFS Details
|
entity_recall/images/recall_124.jpg
DELETED
Git LFS Details
|
entity_recall/images/recall_126.jpg
DELETED
Git LFS Details
|
entity_recall/images/recall_127.jpg
DELETED
Git LFS Details
|
entity_recall/images/recall_129.jpg
DELETED
Git LFS Details
|
entity_recall/images/recall_130.jpg
DELETED
Git LFS Details
|
entity_recall/images/recall_131.jpg
DELETED
Git LFS Details
|
entity_recall/images/recall_132.jpg
DELETED
Git LFS Details
|
entity_recall/images/recall_134.jpg
DELETED
Git LFS Details
|
entity_recall/images/recall_135.jpg
DELETED
Git LFS Details
|
entity_recall/images/recall_137.jpg
DELETED
Git LFS Details
|
entity_recall/images/recall_138.jpg
DELETED
Git LFS Details
|
entity_recall/images/recall_139.jpg
DELETED
Git LFS Details
|
entity_recall/images/recall_140.jpg
DELETED
Git LFS Details
|
entity_recall/images/recall_142.jpg
DELETED
Git LFS Details
|
entity_recall/images/recall_143.jpg
DELETED
Git LFS Details
|
entity_recall/images/recall_147.jpg
DELETED
Git LFS Details
|