File size: 77,837 Bytes
eea6e39 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 |
[
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1543979.0",
"question": "Please answer the following question based on the image. How many individual cartons of strawberries are there in the wooden basket? Available options:\nA. eight\nB. ten\nC. four\nD. six\n",
"answer": "D",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1543979.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1543987.0",
"question": "Please answer the following question based on the image. Where is the number 45 located on the stamp? Available options:\nA. Near the right edge near the center\nB. Near the center on the bottom right quadrant\nC. In the top right corner\nD. In the bottom left corner\n",
"answer": "C",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1543987.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1544044.0",
"question": "Please answer the following question based on the image. How many different door bells are described in the image? Available options:\nA. 3\nB. 2\nC. 4\nD. 1\n",
"answer": "B",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1544044.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1544094.0",
"question": "Please answer the following question based on the image. Which vinyl record is located on the top left part of the shelf? Available options:\nA. A record with abstract art in yellow and orange\nB. A vinyl record by Oliver Sain\nC. A vinyl record by an artist called Flip Side\nD. A vinyl record by John Coltrane Quartet\n",
"answer": "C",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1544094.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1544098.0",
"question": "Please answer the following question based on the image. How many spotlights are on the side of the billboard facing us? Available options:\nA. Five\nB. Six\nC. Four\nD. Three\n",
"answer": "D",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1544098.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1544101.0",
"question": "Please answer the following question based on the image. How many letters are shown on the tall sign? Available options:\nA. Three\nB. Six\nC. Four\nD. Five\n",
"answer": "D",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1544101.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1544109.0",
"question": "Please answer the following question based on the image. How many buildings are described in the caption? Available options:\nA. Two\nB. Three\nC. One\nD. Four\n",
"answer": "A",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1544109.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1544121.0",
"question": "Please answer the following question based on the image. Where is the Victorian style building located relative to the trees and bushes? Available options:\nA. In front of the trees and bushes\nB. Behind the trees and bushes\nC. Beside the trees and bushes\nD. Above the trees and bushes\n",
"answer": "B",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1544121.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1544124.0",
"question": "Please answer the following question based on the image. What is the shape of all graves in the graveyard? Available options:\nA. Christian Cross\nB. Oval\nC. Round\nD. Square\n",
"answer": "A",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1544124.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1544131.0",
"question": "Please answer the following question based on the image. How many sailboats are there in the ocean as seen from the fort? Available options:\nA. approximately four\nB. approximately eight\nC. approximately fifteen\nD. approximately twelve\n",
"answer": "B",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1544131.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1544134.0",
"question": "Please answer the following question based on the image. Which building is located to the left in the described scene? Available options:\nA. Cube-shaped concrete and glass building\nB. Building with all glass pane walls\nC. Red brick building with many windows\nD. Cube-shaped concrete and glass building\n",
"answer": "C",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1544134.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1544147.0",
"question": "Please answer the following question based on the image. How many church steeples are present in the image? Available options:\nA. Three\nB. One\nC. Two\nD. Four\n",
"answer": "C",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1544147.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1544179.0",
"question": "Please answer the following question based on the image. How many clownfish are visibly mentioned as discernable in the middle of the image? Available options:\nA. Two\nB. Four\nC. Three\nD. One\n",
"answer": "A",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1544179.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1545028.0",
"question": "Please answer the following question based on the image. How many red safety stripes are visible on the bottom of the basket part of the machine? Available options:\nA. Four\nB. Two\nC. Five\nD. Three\n",
"answer": "A",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1545028.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1545062.0",
"question": "Please answer the following question based on the image. How many players are playing soccer on the field according to the caption? Available options:\nA. four\nB. seven\nC. five\nD. six\n",
"answer": "C",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1545062.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1545064.0",
"question": "Please answer the following question based on the image. How many boats are attached to the hooks along the walkway? Available options:\nA. none\nB. one\nC. several\nD. two\n",
"answer": "C",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1545064.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1545069.0",
"question": "Please answer the following question based on the image. What is the position of the red car in relation to the white truck? Available options:\nA. Next to the white truck\nB. In front of the white truck\nC. Across from the white truck\nD. Behind the white truck\n",
"answer": "B",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1545069.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1545076.0",
"question": "Please answer the following question based on the image. How many trees are mentioned as standing on the left side of the path? Available options:\nA. 1\nB. 2\nC. 4\nD. 3\n",
"answer": "B",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1545076.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1545099.0",
"question": "Please answer the following question based on the image. How many supports does the decorative structure have going down into the water? Available options:\nA. Ten\nB. Six\nC. Eight\nD. Four\n",
"answer": "B",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1545099.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1545100.0",
"question": "Please answer the following question based on the image. How many large signs are on the top of the building? Available options:\nA. Five\nB. Four\nC. Two\nD. Three\n",
"answer": "D",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1545100.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1545101.0",
"question": "Please answer the following question based on the image. How many chairs are there around the wooden table? Available options:\nA. two\nB. four\nC. three\nD. five\n",
"answer": "C",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1545101.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1545106.0",
"question": "Please answer the following question based on the image. How many cup holders are there in the center console? Available options:\nA. Four\nB. One\nC. Three\nD. Two\n",
"answer": "D",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1545106.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1545114.0",
"question": "Please answer the following question based on the image. What is the relative position of the blue domed smaller building in relation to the bigger church? Available options:\nA. Directly behind the bigger church\nB. Directly in front of the bigger church\nC. On the right side of the bigger church\nD. On the left side of the bigger church\n",
"answer": "D",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1545114.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1545139.0",
"question": "Please answer the following question based on the image. How many lanterns are allegedly hanging from the ceiling? Available options:\nA. Three\nB. Four\nC. One\nD. Two\n",
"answer": "D",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1545139.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1545165.0",
"question": "Please answer the following question based on the image. How many bicycles are parked on top of the roof of the cabin in the middle of the ship? Available options:\nA. two or three\nB. six or seven\nC. four or five\nD. eight or nine\n",
"answer": "C",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1545165.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1545177.0",
"question": "Please answer the following question based on the image. How many coins are not part of the stack behind the word 'BAKKT'? Available options:\nA. 5\nB. 3\nC. 2\nD. 4\n",
"answer": "C",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1545177.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1545201.0",
"question": "Please answer the following question based on the image. How many mushrooms are mentioned as growing out of the ground? Available options:\nA. Five\nB. Two\nC. Four\nD. Three\n",
"answer": "D",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1545201.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1545216.0",
"question": "Please answer the following question based on the image. Where is the man standing in relation to the sandy hill? Available options:\nA. In the middle of the hill\nB. Not on the hill\nC. Near the top of the hill\nD. At the bottom of the hill\n",
"answer": "C",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1545216.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1545237.0",
"question": "Please answer the following question based on the image. How many people in the image are observing others? Available options:\nA. Two\nB. Five\nC. Four\nD. Three\n",
"answer": "D",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1545237.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1545239.0",
"question": "Please answer the following question based on the image. What is the position of the other person in relation to the first person? Available options:\nA. To the right of the first person\nB. In front of the first person\nC. To the left of the first person\nD. Behind the first person\n",
"answer": "C",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1545239.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1545240.0",
"question": "Please answer the following question based on the image. Where is the FIFA logo located on the man's shirt? Available options:\nA. In the center of his chest\nB. On his right chest\nC. Above the shield logo\nD. On his left sleeve\n",
"answer": "A",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1545240.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1545258.0",
"question": "Please answer the following question based on the image. How many stained glass windows are located on the right side wall of the basilica? Available options:\nA. Four\nB. Five\nC. Three\nD. Six\n",
"answer": "B",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1545258.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1545290.0",
"question": "Please answer the following question based on the image. Where is the cable car door located in relation to the cable car? Available options:\nA. At the rear\nB. On the right side\nC. On the left side\nD. At the front\n",
"answer": "C",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1545290.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1545295.0",
"question": "Please answer the following question based on the image. What is the position of the man relative to the woman in the image? Available options:\nA. To the left\nB. In front\nC. Behind\nD. To the right\n",
"answer": "D",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1545295.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1545301.0",
"question": "Please answer the following question based on the image. How many people are observing the wrestling match in the close background? Available options:\nA. Three\nB. Two\nC. Four\nD. Five\n",
"answer": "A",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1545301.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1545338.0",
"question": "Please answer the following question based on the image. How many spider lilies are there in total in the image? Available options:\nA. 4\nB. 5\nC. 2\nD. 6\n",
"answer": "A",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1545338.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1545342.0",
"question": "Please answer the following question based on the image. How many large stone pillars are mentioned near the archway of the stone structure? Available options:\nA. One\nB. Four\nC. Two\nD. Three\n",
"answer": "C",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1545342.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1545349.0",
"question": "Please answer the following question based on the image. What is the location of the van relative to the building? Available options:\nA. The van is parked far from the building.\nB. The van is parked near the building.\nC. The van is parked behind the building.\nD. The van is parked inside the building.\n",
"answer": "B",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1545349.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1545362.0",
"question": "Please answer the following question based on the image. How many houses are there in the compound? Available options:\nA. Three\nB. Four\nC. One\nD. Two\n",
"answer": "D",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1545362.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1545394.0",
"question": "Please answer the following question based on the image. What is located directly left of the Missouri label in the image? Available options:\nA. green water section\nB. Last 4 of USA44\nC. First 4 of USA44\nD. left smoke from stack\n",
"answer": "C",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1545394.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1545436.0",
"question": "Please answer the following question based on the image. How many tires does the older well kept green car have? Available options:\nA. 4\nB. 2\nC. 3\nD. 6\n",
"answer": "A",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1545436.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1545446.0",
"question": "Please answer the following question based on the image. Where is the text 'République du Congo' located on the stamp? Available options:\nA. On the back\nB. Along the bottom\nC. Along the top left\nD. Along the top right\n",
"answer": "B",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1545446.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1545453.0",
"question": "Please answer the following question based on the image. How many windows does the building feature? Available options:\nA. eight\nB. four\nC. five\nD. six\n",
"answer": "D",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1545453.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1545460.0",
"question": "Please answer the following question based on the image. What is the positioning of the four metal rings logo in relation to the metal grate? Available options:\nA. The four metal rings logo is below the metal grate.\nB. The four metal rings logo is in the middle of the metal grate.\nC. The four metal rings logo is on the side of the metal grate.\nD. The four metal rings logo is above the metal grate.\n",
"answer": "B",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1545460.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1545472.0",
"question": "Please answer the following question based on the image. Where is the man with relation to the dome? Available options:\nA. Inside the dome\nB. Standing on the dome\nC. In front of the dome\nD. Behind the dome\n",
"answer": "B",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1545472.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1545488.0",
"question": "Please answer the following question based on the image. What is located to the right of the street sign? Available options:\nA. A red car\nB. A bus stop\nC. A place where cars are parked\nD. A large tree\n",
"answer": "C",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1545488.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1545515.0",
"question": "Please answer the following question based on the image. How many stone pillars are in front of the scenic background? Available options:\nA. Six\nB. Four\nC. Five\nD. Seven\n",
"answer": "C",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1545515.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1545526.0",
"question": "Please answer the following question based on the image. How many cones are mentioned as being used to line one of the race lanes? Available options:\nA. 8\nB. 4\nC. 6\nD. 2\n",
"answer": "D",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1545526.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1545540.0",
"question": "Please answer the following question based on the image. How many people are sitting and listening to the man reading the book in the dimly lit room? Available options:\nA. Four\nB. Two\nC. Three\nD. Five\n",
"answer": "C",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1545540.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1545543.0",
"question": "Please answer the following question based on the image. How many jeeps are visible in the background of the image? Available options:\nA. five\nB. four\nC. three\nD. two\n",
"answer": "C",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1545543.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1545558.0",
"question": "Please answer the following question based on the image. What is the relative position of the trash can to the decorated tree? Available options:\nA. In front of the decorated tree\nB. Behind the decorated tree\nC. Right of the decorated tree\nD. Left of the decorated tree\n",
"answer": "D",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1545558.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1545565.0",
"question": "Please answer the following question based on the image. What is the relative position of the building with respect to the people on the walkway? Available options:\nA. In front\nB. To the right\nC. To the left\nD. Behind\n",
"answer": "C",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1545565.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1545566.0",
"question": "Please answer the following question based on the image. What is directly above the red overhang mounted above a store front on the left side? Available options:\nA. A blue sky\nB. A row of Chinese lanterns\nC. A hanging sign\nD. A row of trees\n",
"answer": "B",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1545566.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1545571.0",
"question": "Please answer the following question based on the image. How many chairs are there in the seating area of the restaurant? Available options:\nA. 8\nB. 12\nC. 16\nD. 20\n",
"answer": "C",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1545571.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1545593.0",
"question": "Please answer the following question based on the image. What is located to the right of the large rock formation? Available options:\nA. A small bush\nB. A group of benches\nC. A boulder\nD. A large tree\n",
"answer": "D",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1545593.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1545603.0",
"question": "Please answer the following question based on the image. Where is the woman positioned in relation to the bushes? Available options:\nA. Between the bushes\nB. In front of the bushes\nC. To the right of the bushes\nD. To the left of the bushes\n",
"answer": "B",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1545603.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1545610.0",
"question": "Please answer the following question based on the image. What is the relative position of the leftmost tree with respect to the capital building? Available options:\nA. Left of the domed center\nB. Right of the domed center\nC. Directly in front of the capital building\nD. Behind the capital building\n",
"answer": "B",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1545610.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1545617.0",
"question": "Please answer the following question based on the image. What is located directly on top of the brown newspapers? Available options:\nA. Round sunglasses\nB. Brown wood\nC. Grey and white cat\nD. White studio background\n",
"answer": "A",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1545617.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1545652.0",
"question": "Please answer the following question based on the image. How many cords are extending outside the wooden bowl? Available options:\nA. Four\nB. One\nC. Three\nD. Two\n",
"answer": "D",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1545652.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1545667.0",
"question": "Please answer the following question based on the image. How many soda or beer can holders are stated to be on the girl's cap? Available options:\nA. 3\nB. 4\nC. 1\nD. 2\n",
"answer": "D",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1545667.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1545690.0",
"question": "Please answer the following question based on the image. How many windows are on the building in the background of the image? Available options:\nA. three\nB. six\nC. five\nD. four\n",
"answer": "D",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1545690.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1545717.0",
"question": "Please answer the following question based on the image. What is the relative position of the man to the board? Available options:\nA. The man is next to the board trying to get on it.\nB. The man is on the board\nC. The man is far from the board\nD. The man is under the board\n",
"answer": "A",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1545717.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1545741.0",
"question": "Please answer the following question based on the image. What is the location of the gas station in the image? Available options:\nA. Near the top-right corner\nB. In the middle of the scene\nC. On the left side of the scene\nD. Along the bottom edge\n",
"answer": "B",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1545741.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1545748.0",
"question": "Please answer the following question based on the image. How many tents are visible on the right side of the image? Available options:\nA. Two\nB. Four\nC. Three\nD. One\n",
"answer": "C",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1545748.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1545761.0",
"question": "Please answer the following question based on the image. How many arches are visible on the bridge? Available options:\nA. 3\nB. 6\nC. 5\nD. 4\n",
"answer": "C",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1545761.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1545779.0",
"question": "Please answer the following question based on the image. Where is the fancy silver utensil located in relation to the chocolate cake? Available options:\nA. On the lower left side\nB. Above the cake\nC. Directly under the cake\nD. On the upper right side\n",
"answer": "A",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1545779.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1545813.0",
"question": "Please answer the following question based on the image. How many flowers are there in the highlighted cluster? Available options:\nA. Three\nB. Five\nC. Six\nD. Four\n",
"answer": "D",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1545813.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1545851.0",
"question": "Please answer the following question based on the image. How many flags are on top of the big gray building? Available options:\nA. Five\nB. Four\nC. Three\nD. Two\n",
"answer": "C",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1545851.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1545852.0",
"question": "Please answer the following question based on the image. What object is located directly to the right of the center broken tower? Available options:\nA. A house with a red roof\nB. A piece of wall shaped like an L\nC. A large cloud cluster\nD. Another tree like bush\n",
"answer": "D",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1545852.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1545891.0",
"question": "Please answer the following question based on the image. How many metal dividers are there in the scooter rack? Available options:\nA. three\nB. four\nC. five\nD. six\n",
"answer": "C",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1545891.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1553150.0",
"question": "Please answer the following question based on the image. How many total glass bricks make up the window? Available options:\nA. 30\nB. 24\nC. 28\nD. 32\n",
"answer": "C",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1553150.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1553159.0",
"question": "Please answer the following question based on the image. Where are the stairs located in relation to the gold container? Available options:\nA. To the right of the container\nB. To the left of the container\nC. Behind the container and the building\nD. In front of the container\n",
"answer": "C",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1553159.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1553188.0",
"question": "Please answer the following question based on the image. How many flower pots are mentioned as being on the windowsill? Available options:\nA. Three\nB. Four\nC. Two\nD. One\n",
"answer": "C",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1553188.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1553191.0",
"question": "Please answer the following question based on the image. What is located directly to the right of the person wearing the red Nike sneakers? Available options:\nA. Yellow tag\nB. White brick\nC. Metal table legs\nD. Fur rug\n",
"answer": "C",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1553191.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1553245.0",
"question": "Please answer the following question based on the image. How many keys are identifiable to the right of the black phone? Available options:\nA. 4\nB. 5\nC. 2\nD. 3\n",
"answer": "A",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1553245.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1553281.0",
"question": "Please answer the following question based on the image. How many flowers are visible to the left of the insect? Available options:\nA. Four\nB. One\nC. Two or three\nD. Five\n",
"answer": "C",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1553281.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1553296.0",
"question": "Please answer the following question based on the image. How many water bottles are attached to the man's bike? Available options:\nA. three\nB. two\nC. one\nD. four\n",
"answer": "B",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1553296.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1553319.0",
"question": "Please answer the following question based on the image. How many windows are present on the rock building? Available options:\nA. two\nB. one\nC. three\nD. four\n",
"answer": "A",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1553319.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1553340.0",
"question": "Please answer the following question based on the image. What is located to the right of the blue van? Available options:\nA. A small garden\nB. A row of cars\nC. A row of motorbikes\nD. A bus stop\n",
"answer": "C",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1553340.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1553344.0",
"question": "Please answer the following question based on the image. How many characters are printed to the left of the letter 'O'? Available options:\nA. Two\nB. One\nC. Four\nD. Three\n",
"answer": "A",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1553344.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1553355.0",
"question": "Please answer the following question based on the image. What is located to the left of the door in the image? Available options:\nA. Black speaker\nB. Red mat\nC. Olympic sign\nD. Yellow pompom\n",
"answer": "A",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1553355.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1553364.0",
"question": "Please answer the following question based on the image. What is the relative position of the person carrying something to the man leaning on the boat? Available options:\nA. In front\nB. Behind\nC. Left side\nD. Right side\n",
"answer": "C",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1553364.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1553369.0",
"question": "Please answer the following question based on the image. What is the gnome holding in his left arm? Available options:\nA. a white fabric\nB. a platter\nC. a heart\nD. a sign\n",
"answer": "B",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1553369.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1553374.0",
"question": "Please answer the following question based on the image. What is the position of the tram relative to the building? Available options:\nA. In front of the building\nB. Left side of the building\nC. Right side of the building\nD. Behind the building\n",
"answer": "B",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1553374.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1553379.0",
"question": "Please answer the following question based on the image. How many cars can be seen parked in the background of the image? Available options:\nA. One\nB. Two\nC. Four\nD. Three\n",
"answer": "B",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1553379.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1553411.0",
"question": "Please answer the following question based on the image. What is located just in front of the entrance to the mall? Available options:\nA. A coffee shop\nB. An ice cream stand\nC. A clothing store\nD. A bookstore\n",
"answer": "B",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1553411.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1553415.0",
"question": "Please answer the following question based on the image. How many sets of doors are on the gate? Available options:\nA. Three\nB. Four\nC. Two\nD. Five\n",
"answer": "A",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1553415.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1553437.0",
"question": "Please answer the following question based on the image. How many lanes are on the road at the top of the image? Available options:\nA. Three\nB. Five\nC. Four\nD. Two\n",
"answer": "A",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1553437.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1553466.0",
"question": "Please answer the following question based on the image. How many chairlifts are mentioned in the image? Available options:\nA. 1\nB. 2\nC. 3\nD. 4\n",
"answer": "B",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1553466.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1553505.0",
"question": "Please answer the following question based on the image. How many rows of small black holes are on the bottom half of the heart monitor? Available options:\nA. Five\nB. Six\nC. Four\nD. Three\n",
"answer": "A",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1553505.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1553526.0",
"question": "Please answer the following question based on the image. How many lights are on the left wall of the stairwell? Available options:\nA. Three\nB. Six\nC. Four\nD. Five\n",
"answer": "C",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1553526.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1553597.0",
"question": "Please answer the following question based on the image. How many people are depicted in the picture? Available options:\nA. 3\nB. 2\nC. 4\nD. 1\n",
"answer": "B",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1553597.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1553604.0",
"question": "Please answer the following question based on the image. How many people are walking on the left sidewalk? Available options:\nA. four\nB. three\nC. one\nD. two\n",
"answer": "C",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1553604.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1553636.0",
"question": "Please answer the following question based on the image. How many rows of windows are there on the top level of the bus? Available options:\nA. Three\nB. Four\nC. Two\nD. One\n",
"answer": "D",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1553636.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1553680.0",
"question": "Please answer the following question based on the image. How many construction workers are on top of the skyscraper? Available options:\nA. Three\nB. Four\nC. One\nD. Two\n",
"answer": "D",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1553680.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1553718.0",
"question": "Please answer the following question based on the image. What is located directly to the right of the red circle at the top of the milk carton? Available options:\nA. Brown rectangle\nB. Blue box\nC. Ridged white cap\nD. Yellow label\n",
"answer": "B",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1553718.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1553753.0",
"question": "Please answer the following question based on the image. How many men are visible on the outside of the store in the image? Available options:\nA. One\nB. Three\nC. Two\nD. Four\n",
"answer": "C",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1553753.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1553763.0",
"question": "Please answer the following question based on the image. What structure is directly above the large clock in the image described? Available options:\nA. small art piece\nB. window pane with wooden frame\nC. green tower spire\nD. brick section\n",
"answer": "C",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1553763.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1553770.0",
"question": "Please answer the following question based on the image. How many buildings are mentioned as being alongside the canal? Available options:\nA. Two\nB. Three\nC. Four\nD. Five\n",
"answer": "B",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1553770.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1553773.0",
"question": "Please answer the following question based on the image. How many people are working on the building located in the middle of the image? Available options:\nA. 2\nB. 3\nC. 4\nD. 1\n",
"answer": "B",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1553773.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1553810.0",
"question": "Please answer the following question based on the image. How many posts connected by ropes separate the jousters? Available options:\nA. Two lines of posts\nB. A line of posts\nC. Three lines of posts\nD. Four lines of posts\n",
"answer": "B",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1553810.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1553824.0",
"question": "Please answer the following question based on the image. What is the position of the dragon logo relative to the ERDF text and circle of stars? Available options:\nA. Left\nB. Below\nC. Right\nD. Above\n",
"answer": "C",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1553824.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1553827.0",
"question": "Please answer the following question based on the image. What is positioned to the left of the Tiffany box? Available options:\nA. A meringue confection\nB. A white lace napkin\nC. A white gift box with a light blue ribbon\nD. A white demitasse with gold rim\n",
"answer": "D",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1553827.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1553848.0",
"question": "Please answer the following question based on the image. How many columns contain more than three metal pieces? Available options:\nA. Two\nB. Three\nC. Four\nD. One\n",
"answer": "A",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1553848.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1553860.0",
"question": "Please answer the following question based on the image. How many sesame seeds are on the yolk of the fried egg? Available options:\nA. Seven\nB. Five\nC. Eight\nD. Six\n",
"answer": "A",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1553860.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1553868.0",
"question": "Please answer the following question based on the image. How many buildings are attached together on the left side of the street? Available options:\nA. six\nB. five\nC. four\nD. three\n",
"answer": "C",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1553868.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1553879.0",
"question": "Please answer the following question based on the image. Where is the cannon located relative to the fence in the image? Available options:\nA. In front of the fence\nB. Beside the fence\nC. On top of the fence\nD. Behind the fence\n",
"answer": "A",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1553879.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1553885.0",
"question": "Please answer the following question based on the image. How many stories does the smallest green building have? Available options:\nA. Two\nB. Three\nC. One\nD. Four\n",
"answer": "A",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1553885.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1553888.0",
"question": "Please answer the following question based on the image. How many coins are mentioned as being on the wooden table? Available options:\nA. Two\nB. One\nC. Four\nD. Three\n",
"answer": "A",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1553888.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1553926.0",
"question": "Please answer the following question based on the image. How many vehicles are parked in the close parking lot? Available options:\nA. Twenty\nB. Twenty-five\nC. Fifteen\nD. Eighteen\n",
"answer": "A",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1553926.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1553943.0",
"question": "Please answer the following question based on the image. Which type of tree configuration can be seen in the image? Available options:\nA. A group of trees so closely grouped that they appear as one big bush\nB. A single tree with no leaves\nC. A circle of trees surrounding a fountain\nD. A row of evenly spaced trees\n",
"answer": "A",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1553943.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1553944.0",
"question": "Please answer the following question based on the image. Where is the green truck located in relation to the windowless car? Available options:\nA. Behind the windowless car\nB. To the left of the windowless car\nC. In front of the windowless car\nD. To the right of the windowless car\n",
"answer": "A",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1553944.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1553954.0",
"question": "Please answer the following question based on the image. Where is the giant bag of sugar located in relation to the woman? Available options:\nA. Behind the woman\nB. On the left of the woman\nC. In front of the woman\nD. On the right of the woman\n",
"answer": "B",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1553954.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1553958.0",
"question": "Please answer the following question based on the image. What is the location of the blue bucket mentioned in the caption? Available options:\nA. Next to a hole on the right side of the beach\nB. On the left side near the women\nC. At the center of the beach\nD. Under the beach chair\n",
"answer": "A",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1553958.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1553974.0",
"question": "Please answer the following question based on the image. How many windows are there on the right wall of the room? Available options:\nA. Two\nB. Three\nC. One\nD. Four\n",
"answer": "A",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1553974.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1553982.0",
"question": "Please answer the following question based on the image. Where is the white perforated board located in the picture? Available options:\nA. In the bottom right of the picture\nB. In the top right of the picture\nC. On the left side of the picture\nD. In the bottom left of the picture\n",
"answer": "A",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1553982.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1553983.0",
"question": "Please answer the following question based on the image. How many trees without leaves can be seen in the front of the image? Available options:\nA. Two\nB. Three\nC. Five\nD. Four\n",
"answer": "B",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1553983.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1553991.0",
"question": "Please answer the following question based on the image. How many soccer players are shown in the image? Available options:\nA. Three\nB. One\nC. Two\nD. Four\n",
"answer": "C",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1553991.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1554004.0",
"question": "Please answer the following question based on the image. How many white cables are mentioned as hanging from the ceiling? Available options:\nA. Four\nB. Three\nC. Two\nD. One\n",
"answer": "C",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1554004.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1554031.0",
"question": "Please answer the following question based on the image. How many arch shaped handicrafts are hung on the right wooden board? Available options:\nA. Eight\nB. Six\nC. Seven\nD. Five\n",
"answer": "C",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1554031.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1554045.0",
"question": "Please answer the following question based on the image. How many poles support the volleyball net? Available options:\nA. Three\nB. One\nC. Two\nD. Four\n",
"answer": "C",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1554045.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1554051.0",
"question": "Please answer the following question based on the image. How many women are directly involved in the eyelash application process? Available options:\nA. Four\nB. One\nC. Two\nD. Three\n",
"answer": "C",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1554051.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1554068.0",
"question": "Please answer the following question based on the image. What is located directly behind the blue blast fences? Available options:\nA. A green lawn\nB. A row of airport vehicles\nC. A runway\nD. A three story grey building\n",
"answer": "D",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1554068.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1554074.0",
"question": "Please answer the following question based on the image. How many yachts are mentioned as being equipped with masts? Available options:\nA. 5\nB. 3\nC. 4\nD. 6\n",
"answer": "C",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1554074.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1554081.0",
"question": "Please answer the following question based on the image. What is placed directly under the picture of Pope Francis on the stamp? Available options:\nA. A black fabric background\nB. A small bright blue crest\nC. A long thin rectangle with the Pope's name\nD. A flag\n",
"answer": "C",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1554081.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1554084.0",
"question": "Please answer the following question based on the image. How many lines of text are on the right side of the plaque? Available options:\nA. Ten lines\nB. Nine lines\nC. Eleven lines\nD. Twelve lines\n",
"answer": "C",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1554084.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1554085.0",
"question": "Please answer the following question based on the image. How many columns are visible behind the reclining Buddha statue? Available options:\nA. Two\nB. Three\nC. One\nD. Four\n",
"answer": "A",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1554085.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1554089.0",
"question": "Please answer the following question based on the image. How many legs does the drone have? Available options:\nA. Four\nB. Two\nC. Three\nD. Five\n",
"answer": "A",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1554089.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1554095.0",
"question": "Please answer the following question based on the image. How many men are described as wearing masks in the photo? Available options:\nA. Three\nB. Four\nC. One\nD. Two\n",
"answer": "D",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1554095.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1554134.0",
"question": "Please answer the following question based on the image. How many soldiers are described as wearing camo uniforms and located in front of the larger group of soldiers in green uniforms? Available options:\nA. four\nB. five\nC. three\nD. two\n",
"answer": "C",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1554134.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1554144.0",
"question": "Please answer the following question based on the image. Where is the statue located in the image? Available options:\nA. Near the edge of the land\nB. At the top of the wall\nC. Under the wooden bridge\nD. In the center of the land\n",
"answer": "A",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1554144.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1554172.0",
"question": "Please answer the following question based on the image. What is the position of the man in the image relative to the surrounding rice plants? Available options:\nA. On the far left\nB. At the top edge\nC. In the middle\nD. On the far right\n",
"answer": "C",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1554172.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1554191.0",
"question": "Please answer the following question based on the image. Where is the air control tower located in the image? Available options:\nA. Below the middle of the image\nB. At the top of the image\nC. On the far right of the image\nD. Near the middle of the image\n",
"answer": "D",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1554191.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1554193.0",
"question": "Please answer the following question based on the image. What is the position of the large bush in relation to the boat on the river? Available options:\nA. To the right on the bank of the river\nB. To the left on the bank of the river\nC. Directly in front of the boat\nD. Directly behind the boat\n",
"answer": "A",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1554193.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
},
{
"dataset": "SpatialEval",
"task": "spatialreal",
"split": "test",
"question_id": "spatialreal.vqa.sa_1554210.0",
"question": "Please answer the following question based on the image. How many cranes are involved in lifting the orange truck bed? Available options:\nA. Four\nB. Two\nC. One\nD. Three\n",
"answer": "B",
"image_path": [
"SpatialEval/spatialreal.vqa.sa_1554210.0.png"
],
"data_type": "image",
"problem_type": "multiple choice"
}
] |