File size: 90,662 Bytes
3d77dad |
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 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 |
[
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_38.jpg"
],
"doc_id": "visual_probe_medium_38",
"problem": "<image>\nWhat is the animal standing at the top of the picture?",
"solution": "a bird",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_72.jpg"
],
"doc_id": "visual_probe_medium_72",
"problem": "<image>\nWhat unit comes after 5000 on the label?",
"solution": "kg",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_8.jpg"
],
"doc_id": "visual_probe_medium_8",
"problem": "<image>\nWhat are the red and white and silver objects in the right corner?",
"solution": "Solar water heater.",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_10.jpg"
],
"doc_id": "visual_probe_medium_10",
"problem": "<image>\nHow many solar panels are there?",
"solution": "eight",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_103.jpg"
],
"doc_id": "visual_probe_medium_103",
"problem": "<image>\nwhat is written on the yellow bag?",
"solution": "AKADI",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_78.jpg"
],
"doc_id": "visual_probe_medium_78",
"problem": "<image>\nHow many H-shaped utility poles are there in the picture?",
"solution": "one",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_91.jpg"
],
"doc_id": "visual_probe_medium_91",
"problem": "<image>\nWhat is the first word on the left red poster?",
"solution": "Nasir",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_68.jpg"
],
"doc_id": "visual_probe_medium_68",
"problem": "<image>\nWhat shape is the pattern of the belt buckle of the rider closest to us?",
"solution": " cross shape",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_77.jpg"
],
"doc_id": "visual_probe_medium_77",
"problem": "<image>\nwhat is the license plate number of the car on the right?",
"solution": "42D1",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_62.jpg"
],
"doc_id": "visual_probe_medium_62",
"problem": "<image>\nHow much does a bottle of mineral water on the far right cost?",
"solution": " 3 yuan and 80 cents",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_6.jpg"
],
"doc_id": "visual_probe_medium_6",
"problem": "<image>\nWhat is the white English text below the flag on the right?",
"solution": "RESULTS",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_116.jpg"
],
"doc_id": "visual_probe_medium_116",
"problem": "<image>\nIs the parasol blue and yellow or red and yellow?",
"solution": "blue and yellow",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_210.jpg"
],
"doc_id": "visual_probe_medium_210",
"problem": "<image>\nHow many layers of clearly visible folds are there on the right horn of an antelope?",
"solution": "Twenty-one",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_63.jpg"
],
"doc_id": "visual_probe_medium_63",
"problem": "<image>\nWhat are the letters on the relief sculpture above the middle of the door under the flag ?",
"solution": "USA",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_135.jpg"
],
"doc_id": "visual_probe_medium_135",
"problem": "<image>\nDoes the woman in the picture at the top right of the cabinet have straight or curly hair?",
"solution": "curly hair.",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_83.jpg"
],
"doc_id": "visual_probe_medium_83",
"problem": "<image>\nWhat are the four letters vertically on the left side of the license plate?",
"solution": "CUBA",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_21.jpg"
],
"doc_id": "visual_probe_medium_21",
"problem": "<image>\nWhat kind of animal is the decoration on the central top of the building?",
"solution": "elephant",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_40.jpg"
],
"doc_id": "visual_probe_medium_40",
"problem": "<image>\nWhat animal is depicted in the tattoo on the woman's arm?",
"solution": "A butterfly.",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_99.jpg"
],
"doc_id": "visual_probe_medium_99",
"problem": "<image>\nHow many cars are parked in front of the fourth high-rise building from the left?",
"solution": "eight",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_5.jpg"
],
"doc_id": "visual_probe_medium_5",
"problem": "<image>\nWhat is the shape of the black object at the top of the flagpole?",
"solution": "sphere",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_56.jpg"
],
"doc_id": "visual_probe_medium_56",
"problem": "<image>\nWhat color is the text on the crane?",
"solution": "green",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_139.jpg"
],
"doc_id": "visual_probe_medium_139",
"problem": "<image>\nWhat is the license plate number of the first car on the left side of the picture?",
"solution": "ED-83-172",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_202.jpg"
],
"doc_id": "visual_probe_medium_202",
"problem": "<image>\nWhat animal is depicted at the end of the golden column against the wall below the image?",
"solution": " horse",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_150.jpg"
],
"doc_id": "visual_probe_medium_150",
"problem": "<image>\nIs the white object on the left under the bridge a human or an animal?",
"solution": "human",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_120.jpg"
],
"doc_id": "visual_probe_medium_120",
"problem": "<image>\nwhat is the license plate number of the car ahead?",
"solution": "T252 AAC",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_126.jpg"
],
"doc_id": "visual_probe_medium_126",
"problem": "<image>\nIs the person on the right of the man in red a man or a woman?",
"solution": "a man",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_112.jpg"
],
"doc_id": "visual_probe_medium_112",
"problem": "<image>\nWhat is the English word on the pink sign on the right side of the black partition?",
"solution": "Hello Kitty",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_42.jpg"
],
"doc_id": "visual_probe_medium_42",
"problem": "<image>\nWhat color are the trousers of the first person on the left of the green lawn in the lower right corner?",
"solution": "Khaki color",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_130.jpg"
],
"doc_id": "visual_probe_medium_130",
"problem": "<image>\nWhat is the first line of English on the white card in the middle?",
"solution": "Acetylene Room",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_100.jpg"
],
"doc_id": "visual_probe_medium_100",
"problem": "<image>\nWhat is English on the warning sign in the lower right corner?",
"solution": "IPELIGRO! PRECIPICIO",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_256.jpg"
],
"doc_id": "visual_probe_medium_256",
"problem": "<image>\nWhat is the phone number at the bottom of the white billboard?",
"solution": "(+237) 650 58 49 04",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_61.jpg"
],
"doc_id": "visual_probe_medium_61",
"problem": "<image>\nWhat color are the sleeves of the man on the roller coaster on the right?",
"solution": "red.",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_15.jpg"
],
"doc_id": "visual_probe_medium_15",
"problem": "<image>\nWhat is installed above the blue door?",
"solution": "light",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_107.jpg"
],
"doc_id": "visual_probe_medium_107",
"problem": "<image>\nWhich way is the person wearing pink pants, second from left to right in the top row, facing?",
"solution": "left",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_64.jpg"
],
"doc_id": "visual_probe_medium_64",
"problem": "<image>\nWhat kind of car is parked in front of the red truck?",
"solution": "pick-up truck",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_142.jpg"
],
"doc_id": "visual_probe_medium_142",
"problem": "<image>\nWhat color is the pattern on the left flag on the top of the yellow-walled building on the right side of the picture near the sea?",
"solution": "white",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_60.jpg"
],
"doc_id": "visual_probe_medium_60",
"problem": "<image>\nWhat was written on the ship directly beneath the clock tower?",
"solution": "CITY CRUISES",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_124.jpg"
],
"doc_id": "visual_probe_medium_124",
"problem": "<image>\nWhat is the company name of this house?",
"solution": "ShangHai Brigantine Dewell Co,Ltd",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_200.jpg"
],
"doc_id": "visual_probe_medium_200",
"problem": "<image>\nWhat color is the car on the far left?",
"solution": "Gray",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_31.jpg"
],
"doc_id": "visual_probe_medium_31",
"problem": "<image>\nWhat is the first word in the green square on the side of the building in the middle of the picture?",
"solution": "FRIDERICO",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_181.jpg"
],
"doc_id": "visual_probe_medium_181",
"problem": "<image>\nWhat is the first phone number on the red billboard to the right of the second tree from left to right in the picture?",
"solution": "136516073",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_89.jpg"
],
"doc_id": "visual_probe_medium_89",
"problem": "<image>\nWhat stall number is written on the address of the billboard?",
"solution": "287",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_182.jpg"
],
"doc_id": "visual_probe_medium_182",
"problem": "<image>\nWhat does the red sign affixed to the second silver case from the top say in English?",
"solution": "FLAMMABLE LIQUID",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_0.jpg"
],
"doc_id": "visual_probe_medium_0",
"problem": "<image>\nWhat is the number hanging above the bridge in the middle of the image?",
"solution": "2.3",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_186.jpg"
],
"doc_id": "visual_probe_medium_186",
"problem": "<image>\nWhat is the pink item on the lady's backpack in the lower left corner?",
"solution": " cup",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_58.jpg"
],
"doc_id": "visual_probe_medium_58",
"problem": "<image>\nWhat is the street name in the image?",
"solution": "Reclamation Street",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_70.jpg"
],
"doc_id": "visual_probe_medium_70",
"problem": "<image>\nWhat type of relief is above the sculpture on the right side of the arch?",
"solution": "character",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_236.jpg"
],
"doc_id": "visual_probe_medium_236",
"problem": "<image>\nWhat color is the scarf of the man who is leaning on the pillar and wearing yellow clothes?",
"solution": "white",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_9.jpg"
],
"doc_id": "visual_probe_medium_9",
"problem": "<image>\nWhat is English on the black disc-shaped object below the tower?",
"solution": "YTN",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_231.jpg"
],
"doc_id": "visual_probe_medium_231",
"problem": "<image>\nWhat color are the little people on the trash can?",
"solution": "green",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_190.jpg"
],
"doc_id": "visual_probe_medium_190",
"problem": "<image>\nWhat is the last line of the sign on the right?",
"solution": "87 B",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_36.jpg"
],
"doc_id": "visual_probe_medium_36",
"problem": "<image>\nWhat is the black object on the table directly above the chair on the right",
"solution": "glasses",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_108.jpg"
],
"doc_id": "visual_probe_medium_108",
"problem": "<image>\nWhat color is the coat of the man walking forward near the right side on the road?",
"solution": "pink",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_192.jpg"
],
"doc_id": "visual_probe_medium_192",
"problem": "<image>\nWhat's written on the Aunt left chest?",
"solution": "M\u00b75",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_224.jpg"
],
"doc_id": "visual_probe_medium_224",
"problem": "<image>\nHow many blackbirds are standing on the roof below and to the right of the giant flag?",
"solution": "one",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_153.jpg"
],
"doc_id": "visual_probe_medium_153",
"problem": "<image>\nWhat color coat is the man behind the fountain on the left wearing?",
"solution": "black and white",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_167.jpg"
],
"doc_id": "visual_probe_medium_167",
"problem": "<image>\nWhat does the black text on the white board on the triangle-like entity with a lamp next to it in the lower right corner of the picture say?",
"solution": "V1",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_86.jpg"
],
"doc_id": "visual_probe_medium_86",
"problem": "<image>\nHow many birds are flying on the upper right side of the clock?",
"solution": "one",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_254.jpg"
],
"doc_id": "visual_probe_medium_254",
"problem": "<image>\nWhat is the first word of the last line on the grey sign on the far right?",
"solution": "Balcons",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_20.jpg"
],
"doc_id": "visual_probe_medium_20",
"problem": "<image>\nWhat is the color of the backpack worn by the person riding the motorcycle to the right of the bus?",
"solution": "brown",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_18.jpg"
],
"doc_id": "visual_probe_medium_18",
"problem": "<image>\nWhat are the two black and white objects in the upper right corner of the building?",
"solution": "surveillance camera",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_177.jpg"
],
"doc_id": "visual_probe_medium_177",
"problem": "<image>\nWhat color is the dress worn by the person in the middle of the two people in red in the picture?",
"solution": "White",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_113.jpg"
],
"doc_id": "visual_probe_medium_113",
"problem": "<image>\nWhat is written in the red font on the sign on the ground in the lower left corner?",
"solution": "icebreaker",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_258.jpg"
],
"doc_id": "visual_probe_medium_258",
"problem": "<image>\nWhat animal is that with a bunch of flowers on its back in the gold-rimmed frame?",
"solution": "donkey",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_242.jpg"
],
"doc_id": "visual_probe_medium_242",
"problem": "<image>\nIs the flag in the center of the building facing left or right?",
"solution": "left",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_23.jpg"
],
"doc_id": "visual_probe_medium_23",
"problem": "<image>\nWhat kind of animal sculpture is in the tallest building?",
"solution": "leopard",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_157.jpg"
],
"doc_id": "visual_probe_medium_157",
"problem": "<image>\nWhat are the license plate numbers on trams?",
"solution": "58",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_73.jpg"
],
"doc_id": "visual_probe_medium_73",
"problem": "<image>\nWhat are the numbers on the green-backed label to the left of the top left shelf?",
"solution": "15.8",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_28.jpg"
],
"doc_id": "visual_probe_medium_28",
"problem": "<image>\nIs the person on the right side of the bottom screen in the middle of the picture male or female?",
"solution": "female",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_41.jpg"
],
"doc_id": "visual_probe_medium_41",
"problem": "<image>\nWhat does the shop sign say with the blue background?",
"solution": "LATVIJAS PASTS",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_176.jpg"
],
"doc_id": "visual_probe_medium_176",
"problem": "<image>\nIn the center of the area, at the stairs on the right side of the building, is the long-haired girl in pink clothes standing or sitting?",
"solution": "sitting",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_198.jpg"
],
"doc_id": "visual_probe_medium_198",
"problem": "<image>\n What is the number below the black and white label on the grey container on the third level to the left of the white container?",
"solution": "800.546.1050",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_46.jpg"
],
"doc_id": "visual_probe_medium_46",
"problem": "<image>\nWhat number is displayed on the horizontal bar above the bottommost gondola on the right side of the Ferris wheel?",
"solution": "25",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_66.jpg"
],
"doc_id": "visual_probe_medium_66",
"problem": "<image>\n What is the number of the train?",
"solution": "3343",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_27.jpg"
],
"doc_id": "visual_probe_medium_27",
"problem": "<image>\nWhat is the last word in the last line of the poster on the wall to the right?",
"solution": "word",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_75.jpg"
],
"doc_id": "visual_probe_medium_75",
"problem": "<image>\nWhat is written on the hull of the fourth ship in the lower right corner of the picture from right to left?",
"solution": "VS 1277",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_115.jpg"
],
"doc_id": "visual_probe_medium_115",
"problem": "<image>\nWhat is the word on the nearest white container on the right of the yellow container crane in the middle?",
"solution": "MAERSK",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_238.jpg"
],
"doc_id": "visual_probe_medium_238",
"problem": "<image>\nWhat color tops are the two people wearing in the courtyard of the lower right room?",
"solution": "pink and black",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_243.jpg"
],
"doc_id": "visual_probe_medium_243",
"problem": "<image>\n What is the license plate number of the tour bus on the left?",
"solution": "TAJ 342",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_98.jpg"
],
"doc_id": "visual_probe_medium_98",
"problem": "<image>\nWhat color is the curtain inside the window on the right side of the balcony entrance on the second floor of the white-gray house?",
"solution": "blue",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_114.jpg"
],
"doc_id": "visual_probe_medium_114",
"problem": "<image>\nHow many tilted bottles are on the top shelf in the back of the picture?",
"solution": "one",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_191.jpg"
],
"doc_id": "visual_probe_medium_191",
"problem": "<image>\nWhat is the number on the red container crane on the far right?",
"solution": "85",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_44.jpg"
],
"doc_id": "visual_probe_medium_44",
"problem": "<image>\nWhat color is the dress worn by the person pulling the child next to the stairs in the middle of the image?",
"solution": "violet",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_213.jpg"
],
"doc_id": "visual_probe_medium_213",
"problem": "<image>\nWhat color is the second car from left to right on the left coastal road in the picture?",
"solution": "blue",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_48.jpg"
],
"doc_id": "visual_probe_medium_48",
"problem": "<image>\nWhat number is written in the lower right corner of the badge at the top of the main entrance?",
"solution": "1829",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_29.jpg"
],
"doc_id": "visual_probe_medium_29",
"problem": "<image>\nWhat is the first line of English on the blue road sign in the bottom right corner of the picture?",
"solution": "TAKE YOUR SHOES OFF",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_239.jpg"
],
"doc_id": "visual_probe_medium_239",
"problem": "<image>\nWhere does the minute hand of the clock under the black roof in the middle of the picture point to?",
"solution": "Between ten and eleven",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_76.jpg"
],
"doc_id": "visual_probe_medium_76",
"problem": "<image>\n What is the shape below the right warning sign of the blue traffic warning sign on the road below?",
"solution": "An arrow pointing downwards.",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_80.jpg"
],
"doc_id": "visual_probe_medium_80",
"problem": "<image>\nWhat color are the letters on the left leg of the knight in the blue and white coat on the right?",
"solution": "red",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_246.jpg"
],
"doc_id": "visual_probe_medium_246",
"problem": "<image>\nHow many cars are there turning the corner?",
"solution": "one",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_118.jpg"
],
"doc_id": "visual_probe_medium_118",
"problem": "<image>\nIs the man pushing the stroller on the fourth floor standing or walking?",
"solution": "walking",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_160.jpg"
],
"doc_id": "visual_probe_medium_160",
"problem": "<image>\nWhat color is the sleeve of the person touching the child on the right?",
"solution": "red",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_216.jpg"
],
"doc_id": "visual_probe_medium_216",
"problem": "<image>\n What object is in the center of the semicircular sculpture above the second-floor window on the left side of the yellow house?",
"solution": " harp",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_185.jpg"
],
"doc_id": "visual_probe_medium_185",
"problem": "<image>\nThe position slightly to the right of the middle of the picture\uff0cwhat is the person in the billboard on the wall holding in their hand?",
"solution": "bottle",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_51.jpg"
],
"doc_id": "visual_probe_medium_51",
"problem": "<image>\nWhat is the English word on the white container in the upper right corner?",
"solution": "HIT",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_96.jpg"
],
"doc_id": "visual_probe_medium_96",
"problem": "<image>\nWhat is written in the first line of the black sign on the right door?",
"solution": "BAN",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_184.jpg"
],
"doc_id": "visual_probe_medium_184",
"problem": "<image>\nWhat color is the lampshade of the street lamp outside the wall?",
"solution": "black",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_90.jpg"
],
"doc_id": "visual_probe_medium_90",
"problem": "<image>\nWhat color is the license plate of the orange and dark blue car in the lower right corner?",
"solution": "White and blue",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_65.jpg"
],
"doc_id": "visual_probe_medium_65",
"problem": "<image>\nWhat is written on the bottom line of the sign on the right side of the main entrance?",
"solution": "No Smoking",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_50.jpg"
],
"doc_id": "visual_probe_medium_50",
"problem": "<image>\nIs the first statue on the right side of the roof male or female?",
"solution": "female",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_134.jpg"
],
"doc_id": "visual_probe_medium_134",
"problem": "<image>\nWhat is the number on the second row of the blue box on the right side of the picture?",
"solution": "742077",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_47.jpg"
],
"doc_id": "visual_probe_medium_47",
"problem": "<image>\nWhat fruit is on the price tag on the far right\uff1f",
"solution": "grapefruit",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_87.jpg"
],
"doc_id": "visual_probe_medium_87",
"problem": "<image>\nwhat is the number of the bus?",
"solution": "4509",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_148.jpg"
],
"doc_id": "visual_probe_medium_148",
"problem": "<image>\nHow many 9s are there on the wall?",
"solution": "4",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_155.jpg"
],
"doc_id": "visual_probe_medium_155",
"problem": "<image>\nWhat color is that tricycle?",
"solution": "dark blue",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_32.jpg"
],
"doc_id": "visual_probe_medium_32",
"problem": "<image>\nHow many birds are there in the sky?",
"solution": "one",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_170.jpg"
],
"doc_id": "visual_probe_medium_170",
"problem": "<image>\nWhat's on the tower window?",
"solution": "horn",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_57.jpg"
],
"doc_id": "visual_probe_medium_57",
"problem": "<image>\nWhat is the animal on the shop label on the second floor from the top on the left",
"solution": "monkey",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_144.jpg"
],
"doc_id": "visual_probe_medium_144",
"problem": "<image>\nWhat color is the hat worn by the man in the first blue Ferris wheel carriage on the right?",
"solution": "Brown",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_154.jpg"
],
"doc_id": "visual_probe_medium_154",
"problem": "<image>\nWhat color is the text on the road sign under the white sunshade umbrella at the bottom of the picture?",
"solution": "white",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_95.jpg"
],
"doc_id": "visual_probe_medium_95",
"problem": "<image>\nWhat is the house number under the tree on the left side of the picture?",
"solution": "735-A",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_223.jpg"
],
"doc_id": "visual_probe_medium_223",
"problem": "<image>\nwhat is the number on the white billboard?",
"solution": "21111211",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_132.jpg"
],
"doc_id": "visual_probe_medium_132",
"problem": "<image>\n Is the person wearing yellow clothes in the crowd under the tree in the lawn area on the lower right corner standing or sitting?",
"solution": "sitting",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_82.jpg"
],
"doc_id": "visual_probe_medium_82",
"problem": "<image>\nHow many pedestrians are there on the street?",
"solution": "three",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_67.jpg"
],
"doc_id": "visual_probe_medium_67",
"problem": "<image>\nHow many lines of text are there on the signboard below the light sign on the left side of the carousel??",
"solution": "four",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_221.jpg"
],
"doc_id": "visual_probe_medium_221",
"problem": "<image>\nHow many characters are there in the name of the tallest building in the picture?",
"solution": "three",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_178.jpg"
],
"doc_id": "visual_probe_medium_178",
"problem": "<image>\nThe person wearing a black short-sleeved shirt and carrying a backpack under the pillar on the far right of the picture has long hair or short hair?",
"solution": "short hair",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_140.jpg"
],
"doc_id": "visual_probe_medium_140",
"problem": "<image>\nWhat color of clothes is the person coming out of the shop on the right wearing?",
"solution": "blue",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_145.jpg"
],
"doc_id": "visual_probe_medium_145",
"problem": "<image>\n What is the shape of the red object on the front window of the orange bus facing the blue truck on the road on the right side of the picture?",
"solution": "triangle",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_149.jpg"
],
"doc_id": "visual_probe_medium_149",
"problem": "<image>\nStarting from the right and counting left, what is the maximum capacity displayed on the second red container from the bottom?",
"solution": "30.480 KGS",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_245.jpg"
],
"doc_id": "visual_probe_medium_245",
"problem": "<image>\nWhat's in the hand of the cherubic statue next to the blue relief column on the right side of the sixth floor of the central house?",
"solution": " violin",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_257.jpg"
],
"doc_id": "visual_probe_medium_257",
"problem": "<image>\nWhat is the pattern in the lower right corner of the blue block inside the blue box in the upper left corner of the living room?",
"solution": "bag",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_171.jpg"
],
"doc_id": "visual_probe_medium_171",
"problem": "<image>\nWhich direction does the arrow on the orange sign point?",
"solution": "Bottom left",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_136.jpg"
],
"doc_id": "visual_probe_medium_136",
"problem": "<image>\n What are the first four digits on the yellow sign in the upper left corner?",
"solution": "0322",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_121.jpg"
],
"doc_id": "visual_probe_medium_121",
"problem": "<image>\nHow many umbrellas are held up at the door of the noodle shop?",
"solution": "two",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_259.jpg"
],
"doc_id": "visual_probe_medium_259",
"problem": "<image>\nWhat are the last four digits of the phone number of this oil pressery?",
"solution": "1751",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_206.jpg"
],
"doc_id": "visual_probe_medium_206",
"problem": "<image>\nWhat are the letters on the first white box counting from top to bottom on the right?",
"solution": "TRITON",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_197.jpg"
],
"doc_id": "visual_probe_medium_197",
"problem": "<image>\nWhat is the white number on the Ferris wheel box in the upper left corner of the picture?",
"solution": "19",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_166.jpg"
],
"doc_id": "visual_probe_medium_166",
"problem": "<image>\nWhat are the white letters on the blue container in the upper left corner?",
"solution": "seaco",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_235.jpg"
],
"doc_id": "visual_probe_medium_235",
"problem": "<image>\nCount the first road sign from top to bottom next to the street lamp on the left, how many Chinese characters are there?",
"solution": "five",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_250.jpg"
],
"doc_id": "visual_probe_medium_250",
"problem": "<image>\nBetween which two numbers does the hour hand of the clock at the top of the tower stop?",
"solution": "11 and 12",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_43.jpg"
],
"doc_id": "visual_probe_medium_43",
"problem": "<image>\nIs the purple box on the cabinet above or below the red box?",
"solution": "below.",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_169.jpg"
],
"doc_id": "visual_probe_medium_169",
"problem": "<image>\nWhat is the color of the umbrella held by the person behind the white car?",
"solution": "pink",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_159.jpg"
],
"doc_id": "visual_probe_medium_159",
"problem": "<image>\nHow many people are next to the black car in the lower left corner?",
"solution": "one",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_97.jpg"
],
"doc_id": "visual_probe_medium_97",
"problem": "<image>\nWhich pumpkin is the largest in the second shop from the left",
"solution": "The one on the left",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_244.jpg"
],
"doc_id": "visual_probe_medium_244",
"problem": "<image>\nWhat is written in white text on the first row of the black board on the left?",
"solution": "Eat. Drink. Talk.",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_265.jpg"
],
"doc_id": "visual_probe_medium_265",
"problem": "<image>\nWhat is hanging on the balcony railing of the middle house?",
"solution": "pants",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_151.jpg"
],
"doc_id": "visual_probe_medium_151",
"problem": "<image>\nWhat color is the word \"MILK\"?",
"solution": "red",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_141.jpg"
],
"doc_id": "visual_probe_medium_141",
"problem": "<image>\nWhat color is the clothing worn by the person walking in the field in the picture?",
"solution": "blue",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_225.jpg"
],
"doc_id": "visual_probe_medium_225",
"problem": "<image>\nWhat's written on the front of the red fire truck on the right side of the road?",
"solution": "PAUL SIGNS",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_101.jpg"
],
"doc_id": "visual_probe_medium_101",
"problem": "<image>\nWhat's written on the white label above the green striped shirt?",
"solution": "NEW ARRIVALS",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_199.jpg"
],
"doc_id": "visual_probe_medium_199",
"problem": "<image>\nWhat is the highest floor that can be determined by the white glowing floor sign?",
"solution": "9",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_209.jpg"
],
"doc_id": "visual_probe_medium_209",
"problem": "<image>\nAre the pupils of a woman wearing yellow clothes brown?",
"solution": "no",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_255.jpg"
],
"doc_id": "visual_probe_medium_255",
"problem": "<image>\nWhat is written on the white rectangle at the bottom of the open door of the shipping container?",
"solution": "MCI",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_2.jpg"
],
"doc_id": "visual_probe_medium_2",
"problem": "<image>\nHow many trash cans along the roadside?",
"solution": "3",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_196.jpg"
],
"doc_id": "visual_probe_medium_196",
"problem": "<image>\nWhat are the red and black numbers on the bottom left glass?",
"solution": "50",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_215.jpg"
],
"doc_id": "visual_probe_medium_215",
"problem": "<image>\nWhat is the number after 114E on the label of the silver box?",
"solution": "0776",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_69.jpg"
],
"doc_id": "visual_probe_medium_69",
"problem": "<image>\nWhat is the white object on the building directly facing the steps at the back of the picture?",
"solution": "air conditioner outdoor unit",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_146.jpg"
],
"doc_id": "visual_probe_medium_146",
"problem": "<image>\nWhat are the English letters in the upper right corner of the building with a cross image in the lower left corner of the picture?",
"solution": "ecb",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_93.jpg"
],
"doc_id": "visual_probe_medium_93",
"problem": "<image>\nWhat the animal is on the top shelf of the first store on the right?",
"solution": "elephant",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_212.jpg"
],
"doc_id": "visual_probe_medium_212",
"problem": "<image>\nWhat is the red circular object on the damaged pier on the left bank of the river?",
"solution": "Lifebuoy",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_214.jpg"
],
"doc_id": "visual_probe_medium_214",
"problem": "<image>\nHow much is each package of those instant noodles on the middle shelf facing the camaera?",
"solution": "6.20",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_172.jpg"
],
"doc_id": "visual_probe_medium_172",
"problem": "<image>\nWhat is the price of the cherry Tomato\uff1f",
"solution": "2 pounds 18 yuan",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_179.jpg"
],
"doc_id": "visual_probe_medium_179",
"problem": "<image>\nWhat is the shape of the yellow pattern on the blue flag?",
"solution": "five-pointed star",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_205.jpg"
],
"doc_id": "visual_probe_medium_205",
"problem": "<image>\nWhat color are the things in front of the Mongolian yurt on the left?",
"solution": "black",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_110.jpg"
],
"doc_id": "visual_probe_medium_110",
"problem": "<image>\nWhat is the English under the red mark on the product in the customer's hand?",
"solution": "eben",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_137.jpg"
],
"doc_id": "visual_probe_medium_137",
"problem": "<image>\nWhat is the object lying alone on the first foam board?",
"solution": "longan seed",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_261.jpg"
],
"doc_id": "visual_probe_medium_261",
"problem": "<image>\nHow many red cars are there traveling from the lower left to the upper right in the middle section of the bridge?",
"solution": "One.",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_203.jpg"
],
"doc_id": "visual_probe_medium_203",
"problem": "<image>\nWhat number is on the lemon label in the lower left corner?",
"solution": "4958",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_117.jpg"
],
"doc_id": "visual_probe_medium_117",
"problem": "<image>\nHow many Chinese characters are there on the banner above the house on the right side?",
"solution": "four",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_111.jpg"
],
"doc_id": "visual_probe_medium_111",
"problem": "<image>\nWhat are the yellow English under the five-pointed star on the left side of the Ferris wheel?",
"solution": "ROCKSTAR",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_188.jpg"
],
"doc_id": "visual_probe_medium_188",
"problem": "<image>\nWhat is the second label on the top of the left shelf from left to right?",
"solution": "C42-03",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_248.jpg"
],
"doc_id": "visual_probe_medium_248",
"problem": "<image>\nHow many words are on the plaque in the center of the door of the house on the far left?",
"solution": "four.",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_12.jpg"
],
"doc_id": "visual_probe_medium_12",
"problem": "<image>\nWhat color is the handle of the shopping cart being pushed by the person in the gray hat and red dress?",
"solution": "red",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_104.jpg"
],
"doc_id": "visual_probe_medium_104",
"problem": "<image>\nWhat color is the coat that the person standing on the left of the person wearing purple clothes in the picture is wearing?",
"solution": "black",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_217.jpg"
],
"doc_id": "visual_probe_medium_217",
"problem": "<image>\nWhat time does the clock on the shelf show?",
"solution": "3:25",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_128.jpg"
],
"doc_id": "visual_probe_medium_128",
"problem": "<image>\nIs there anyone present here?",
"solution": "yes",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_156.jpg"
],
"doc_id": "visual_probe_medium_156",
"problem": "<image>\nWhat color are the small letters on the signboard?",
"solution": "yellow",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_52.jpg"
],
"doc_id": "visual_probe_medium_52",
"problem": "<image>\nWhat is the thing beside the leg of the person on the left?",
"solution": "a chair",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_165.jpg"
],
"doc_id": "visual_probe_medium_165",
"problem": "<image>\nWhat's under the black bag on the back left",
"solution": "shoes",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_263.jpg"
],
"doc_id": "visual_probe_medium_263",
"problem": "<image>\nWhat color is the graphic on the right side of the gate?",
"solution": "red",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_187.jpg"
],
"doc_id": "visual_probe_medium_187",
"problem": "<image>\nWhat is there on the door of the house on the farthest right?",
"solution": "couplet",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_45.jpg"
],
"doc_id": "visual_probe_medium_45",
"problem": "<image>\nWhat is written on the left side of the front edge of the parasol with the blue anchor design?",
"solution": "ANCORA",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_81.jpg"
],
"doc_id": "visual_probe_medium_81",
"problem": "<image>\n What is the number on the white notice on the left side of the car window closest to us?",
"solution": "23 25",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_92.jpg"
],
"doc_id": "visual_probe_medium_92",
"problem": "<image>\nWhat is in the yellow basin beside the tomatoes on the left?",
"solution": "broad bean",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_25.jpg"
],
"doc_id": "visual_probe_medium_25",
"problem": "<image>\nWhat color is the hair of the person in the glass window next to the steps on the right side of the picture?",
"solution": "gray",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_230.jpg"
],
"doc_id": "visual_probe_medium_230",
"problem": "<image>\nWhat is the blue English word on the air conditioner outdoor unit on the red shed on the left?",
"solution": "DAIKIN",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_173.jpg"
],
"doc_id": "visual_probe_medium_173",
"problem": "<image>\nwhat is the number above the yellow shop?",
"solution": "1946",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_125.jpg"
],
"doc_id": "visual_probe_medium_125",
"problem": "<image>\nIs the person in the light yellow shirt at the lower left corner of the picture a man or a woman?",
"solution": "A man.",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_33.jpg"
],
"doc_id": "visual_probe_medium_33",
"problem": "<image>\nWhat are the words on the truck on the far right\uff1f",
"solution": "RAUCH",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_55.jpg"
],
"doc_id": "visual_probe_medium_55",
"problem": "<image>\nWhat is the time on the white clock in the far left?",
"solution": "7:25",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_26.jpg"
],
"doc_id": "visual_probe_medium_26",
"problem": "<image>\nWhat are the letters on the rightmost wall of the second floor?",
"solution": "M Q C",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_59.jpg"
],
"doc_id": "visual_probe_medium_59",
"problem": "<image>\nWhat is the object hanging from the white wall above the small white house in the bottom left corner?",
"solution": "air conditioner",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_164.jpg"
],
"doc_id": "visual_probe_medium_164",
"problem": "<image>\nWhat is the text above the bottom window of the yellow house in the distance to the left?",
"solution": "HOTEL SOHIFF",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_85.jpg"
],
"doc_id": "visual_probe_medium_85",
"problem": "<image>\nWhat is the quality shown in the upper right corner of the yellow table?",
"solution": "one kilogram",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_189.jpg"
],
"doc_id": "visual_probe_medium_189",
"problem": "<image>\nWhat style is the hat worn by the man sitting fishing by the lake?",
"solution": "bucket hat",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_3.jpg"
],
"doc_id": "visual_probe_medium_3",
"problem": "<image>\nWhat is the number on the back of the cyclist's clothes?",
"solution": "4",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_11.jpg"
],
"doc_id": "visual_probe_medium_11",
"problem": "<image>\nWhat kind of paper is placed in the shelf besides the price tags",
"solution": "Certificate ",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_129.jpg"
],
"doc_id": "visual_probe_medium_129",
"problem": "<image>\nIs the hair of the white statue in the front of the middle of picture curly or straight\uff1f",
"solution": "curly",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_34.jpg"
],
"doc_id": "visual_probe_medium_34",
"problem": "<image>\nWhat floor does the floor sign on the far right indicate?",
"solution": "L6",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_74.jpg"
],
"doc_id": "visual_probe_medium_74",
"problem": "<image>\nOn the left side of the picture, how many spheres are there in the leftmost column of spherical objects on the second level?",
"solution": "seven",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_163.jpg"
],
"doc_id": "visual_probe_medium_163",
"problem": "<image>\nWhat is written on the yellow sign hanging above the first tower on the right in the bottom right corner of the image?",
"solution": "TC12",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_267.jpg"
],
"doc_id": "visual_probe_medium_267",
"problem": "<image>\nWhat is the date on the far right of the blue poster on the far right?",
"solution": "September 19th to September 20th",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_30.jpg"
],
"doc_id": "visual_probe_medium_30",
"problem": "<image>\nDoes the person wearing a red T-shirt in the yard of the house in the center of the photo have long or short hair?",
"solution": "long-haired",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_180.jpg"
],
"doc_id": "visual_probe_medium_180",
"problem": "<image>\nWhat is the number on the speed limit sign next to the yellow truck?",
"solution": "50",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_133.jpg"
],
"doc_id": "visual_probe_medium_133",
"problem": "<image>\nWhat is the name of the third store from right to left?",
"solution": "CHAPS",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_158.jpg"
],
"doc_id": "visual_probe_medium_158",
"problem": "<image>\nWhat is the man in the blue shirt doing on the left side of the river?",
"solution": "Cycling",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_249.jpg"
],
"doc_id": "visual_probe_medium_249",
"problem": "<image>\nFrom the sign at the top of the elevator, you can tell which floor this elevator leads to?",
"solution": "L3",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_218.jpg"
],
"doc_id": "visual_probe_medium_218",
"problem": "<image>\nWhat is the date on the right of the billboard in the upper left corner?",
"solution": "December 4",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_241.jpg"
],
"doc_id": "visual_probe_medium_241",
"problem": "<image>\nWhat are the blue characters on the white-backed billboard hanging on the red wall above the middle grass?",
"solution": "APTEKA",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_226.jpg"
],
"doc_id": "visual_probe_medium_226",
"problem": "<image>\nIs the person in black clothes on the left or right side of the person in white clothes?",
"solution": "right",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_207.jpg"
],
"doc_id": "visual_probe_medium_207",
"problem": "<image>\nWhat color is the sleeve of the person on the left sidewalk?",
"solution": "red",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_175.jpg"
],
"doc_id": "visual_probe_medium_175",
"problem": "<image>\nWhat is the price indicated in yellow on the first line of the blue poster?",
"solution": "a thousand",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_251.jpg"
],
"doc_id": "visual_probe_medium_251",
"problem": "<image>\nWhat color is the person on the far left wearing?",
"solution": "black",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_123.jpg"
],
"doc_id": "visual_probe_medium_123",
"problem": "<image>\nWhat is the girl holding in her hand beside the yellow table in the lower right corner of the picture?",
"solution": "a can",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_234.jpg"
],
"doc_id": "visual_probe_medium_234",
"problem": "<image>\nThe blue window in the middle of the picture is to the right or left of the red window",
"solution": "left",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_54.jpg"
],
"doc_id": "visual_probe_medium_54",
"problem": "<image>\nWhat is the number of the first label from right to left in the lower right corner?",
"solution": "18",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_16.jpg"
],
"doc_id": "visual_probe_medium_16",
"problem": "<image>\nWhat is the statue at the top of the tallest building holding in its hand?",
"solution": "torch",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_119.jpg"
],
"doc_id": "visual_probe_medium_119",
"problem": "<image>\nWhat is the color of the tag hanging from the clip on the basket the woman is holding?",
"solution": "red",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_219.jpg"
],
"doc_id": "visual_probe_medium_219",
"problem": "<image>\nWhat's in the hand of the woman in orange in the lower left corner?",
"solution": "backpack",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_7.jpg"
],
"doc_id": "visual_probe_medium_7",
"problem": "<image>\nIs there anyone on the window sill of the blue house in the upper right corner?",
"solution": " No",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_4.jpg"
],
"doc_id": "visual_probe_medium_4",
"problem": "<image>\nWhat is the phone number on the yellow billboard on the far right of the picture?",
"solution": "13806006741",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_247.jpg"
],
"doc_id": "visual_probe_medium_247",
"problem": "<image>\nWhat are the words on the rooftop of the second building from the right in the bottom right corner?",
"solution": "SOFITEL",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_37.jpg"
],
"doc_id": "visual_probe_medium_37",
"problem": "<image>\nWhat is the person wearing green clothes doing on the zebra crossing?",
"solution": "Wait for the green light",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_13.jpg"
],
"doc_id": "visual_probe_medium_13",
"problem": "<image>\nIs the cashier wearing a suit vest standing or sitting?",
"solution": " sitting",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_253.jpg"
],
"doc_id": "visual_probe_medium_253",
"problem": "<image>\nWhat color are the socks of the person on the left on the platform?",
"solution": "white",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_222.jpg"
],
"doc_id": "visual_probe_medium_222",
"problem": "<image>\nWhat are the letters under the white strip of light in the shop on the far right of the image?",
"solution": "onps",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_168.jpg"
],
"doc_id": "visual_probe_medium_168",
"problem": "<image>\n The screen on the left is red surrounding a white sphere. What is the English word on the TV?",
"solution": "L'OREAL PARIS",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_122.jpg"
],
"doc_id": "visual_probe_medium_122",
"problem": "<image>\nWhat's the leftmost item on the leftmost circular table?",
"solution": "Everbread",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_262.jpg"
],
"doc_id": "visual_probe_medium_262",
"problem": "<image>\nIs the person wearing a hat standing next to the green entertainment facility wearing sunglasses or glasses\uff1f",
"solution": "sunglasses",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_102.jpg"
],
"doc_id": "visual_probe_medium_102",
"problem": "<image>\nWhat is the word in the bottom left corner?",
"solution": "and",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_127.jpg"
],
"doc_id": "visual_probe_medium_127",
"problem": "<image>\nWhat color is the poster on the tree?",
"solution": "black and white",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_228.jpg"
],
"doc_id": "visual_probe_medium_228",
"problem": "<image>\nHow many cars are parked?",
"solution": "three",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_14.jpg"
],
"doc_id": "visual_probe_medium_14",
"problem": "<image>\nWhat is the first word of the article on the left?",
"solution": "life",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_109.jpg"
],
"doc_id": "visual_probe_medium_109",
"problem": "<image>\nWhat English words are printed on the box on the counter\uff1f",
"solution": "Trash Box",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_204.jpg"
],
"doc_id": "visual_probe_medium_204",
"problem": "<image>\nWhat is the price on the fifth label from the right in the top row of shelves?",
"solution": "three point five yuan",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_193.jpg"
],
"doc_id": "visual_probe_medium_193",
"problem": "<image>\nHow many polar bears are wearing sunglasses?",
"solution": "5",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_227.jpg"
],
"doc_id": "visual_probe_medium_227",
"problem": "<image>\nWhat is the black English word between the two red text on the second white billboard on the left?",
"solution": "Red Delicious",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_161.jpg"
],
"doc_id": "visual_probe_medium_161",
"problem": "<image>\nWhat is the first word under Editorial on the left side of the picture\uff1f",
"solution": "AS",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_266.jpg"
],
"doc_id": "visual_probe_medium_266",
"problem": "<image>\nwhat are the words on the orange ship on the right\uff1f",
"solution": "FRU INGER",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_152.jpg"
],
"doc_id": "visual_probe_medium_152",
"problem": "<image>\nWhat is the second line of English text to the right of the caveman in the lower right corner?",
"solution": "Hitweek",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_195.jpg"
],
"doc_id": "visual_probe_medium_195",
"problem": "<image>\nWhat is the first word of the first line of text below the words \"boe-vema\"?",
"solution": "Na",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_105.jpg"
],
"doc_id": "visual_probe_medium_105",
"problem": "<image>\n What is the name after \"photo\" in the lower right corner of the title of the picture above?",
"solution": "ALAN BECKER",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_183.jpg"
],
"doc_id": "visual_probe_medium_183",
"problem": "<image>\nWhat is the word on the left side of the moon sign on the tall building on the left side of the picture\uff1f",
"solution": "HOME",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_22.jpg"
],
"doc_id": "visual_probe_medium_22",
"problem": "<image>\nDoes the woman in the white hat stand in front of or behind the man in the gray hat?",
"solution": "behind",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_1.jpg"
],
"doc_id": "visual_probe_medium_1",
"problem": "<image>\nWhat is the price on the leftmost label on the third shelf from the bottom?",
"solution": "\u00a5 9.5",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_106.jpg"
],
"doc_id": "visual_probe_medium_106",
"problem": "<image>\nWhat are the two words on the sign in the upper right corner of the picture on the right side of the newspaper?",
"solution": "BRZEG NYSA",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_53.jpg"
],
"doc_id": "visual_probe_medium_53",
"problem": "<image>\nWhat are the yellow words on the blue column on the left?",
"solution": "PACIFIC PLUNGE",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_232.jpg"
],
"doc_id": "visual_probe_medium_232",
"problem": "<image>\nWhat is the color of the car parked beside the road?",
"solution": "white",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_211.jpg"
],
"doc_id": "visual_probe_medium_211",
"problem": "<image>\nWhat product is sold to the right of the chocolates?",
"solution": "WEDDING CANDY",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_229.jpg"
],
"doc_id": "visual_probe_medium_229",
"problem": "<image>\n In the third column and last line of the article, which word shows a location?",
"solution": "Hawaii",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_19.jpg"
],
"doc_id": "visual_probe_medium_19",
"problem": "<image>\nWhat is the word in the bottom left corner\uff1f",
"solution": "rate",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_79.jpg"
],
"doc_id": "visual_probe_medium_79",
"problem": "<image>\nHow much is a bottle of chic brand water on the left side of the fourth row?",
"solution": "28",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_220.jpg"
],
"doc_id": "visual_probe_medium_220",
"problem": "<image>\nHow many corners does the earring of the woman in black on the left side of the image have?",
"solution": "six",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_35.jpg"
],
"doc_id": "visual_probe_medium_35",
"problem": "<image>\nWhat is the word in the bottom left corner?",
"solution": "after",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_24.jpg"
],
"doc_id": "visual_probe_medium_24",
"problem": "<image>\n What color is the hat of the person to the left of the two people in the lower left corner?",
"solution": "red and white",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_162.jpg"
],
"doc_id": "visual_probe_medium_162",
"problem": "<image>\nWhat is the pattern of the lady's dress in the upper right corner?",
"solution": " circles",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_94.jpg"
],
"doc_id": "visual_probe_medium_94",
"problem": "<image>\nWhat color is the trash can at the threshold of the balcony recently?",
"solution": "pink",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_264.jpg"
],
"doc_id": "visual_probe_medium_264",
"problem": "<image>\nIn the nearest pile of baskets, what is the price on the label of the fourth basket from left to right?",
"solution": "6.98",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_84.jpg"
],
"doc_id": "visual_probe_medium_84",
"problem": "<image>\nIs the person in the second to last photo on the right showing his left or right face\uff1f",
"solution": "left face",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_49.jpg"
],
"doc_id": "visual_probe_medium_49",
"problem": "<image>\nWhat color are the pants of the first person on the left?",
"solution": "white",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_131.jpg"
],
"doc_id": "visual_probe_medium_131",
"problem": "<image>\n What animals are the four yellow patterns on the dark red box in the picture?",
"solution": "fish",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_39.jpg"
],
"doc_id": "visual_probe_medium_39",
"problem": "<image>\nHow many number 3s are on the license plate of the lower right car?",
"solution": "three",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_208.jpg"
],
"doc_id": "visual_probe_medium_208",
"problem": "<image>\nWhat is the first English word in the lower left corner of the white sign in the upper right corner of the picture?",
"solution": "new",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_201.jpg"
],
"doc_id": "visual_probe_medium_201",
"problem": "<image>\nWhat color is the English on the back of the woman in green on the left?",
"solution": "yellow",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_237.jpg"
],
"doc_id": "visual_probe_medium_237",
"problem": "<image>\nWhat is the first word of the last paragraph on the right?",
"solution": "even",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_194.jpg"
],
"doc_id": "visual_probe_medium_194",
"problem": "<image>\nWhat the lady with the yellow bag is doing at the bottom of the picture?",
"solution": "using a phone",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_138.jpg"
],
"doc_id": "visual_probe_medium_138",
"problem": "<image>\nWhat is the first word in the second to last line on the left of this page",
"solution": "not",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_17.jpg"
],
"doc_id": "visual_probe_medium_17",
"problem": "<image>\nIs the person in blue facing or backing to the shooting perspective?",
"solution": "Backing to us the shooting perspective",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_88.jpg"
],
"doc_id": "visual_probe_medium_88",
"problem": "<image>\nWhat color is the bag carried by a girl in a pink down jacket?",
"solution": "green",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_71.jpg"
],
"doc_id": "visual_probe_medium_71",
"problem": "<image>\nWhat is the discount number on the black billboard hanging on the roof in the middle of the picture?",
"solution": "eight point five",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_240.jpg"
],
"doc_id": "visual_probe_medium_240",
"problem": "<image>\nWhat mode of transportation did the person behind the vehicle on the right choose?",
"solution": "Ride a bicycle",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_174.jpg"
],
"doc_id": "visual_probe_medium_174",
"problem": "<image>\nWhat is the English word in the first row of the middle column?",
"solution": "PAID ADVERTISEMENT",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_252.jpg"
],
"doc_id": "visual_probe_medium_252",
"problem": "<image>\nThe woman standing in the middle of the bridge dressed in white and drinking water faces left or right",
"solution": "right",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_233.jpg"
],
"doc_id": "visual_probe_medium_233",
"problem": "<image>\nWhat is the English line below the 20% off on the blue sign on the right side of the picture?",
"solution": "SPRING COLLECTION 2019",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_147.jpg"
],
"doc_id": "visual_probe_medium_147",
"problem": "<image>\nWhat is the girl in black holding in her hands?",
"solution": "book",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_143.jpg"
],
"doc_id": "visual_probe_medium_143",
"problem": "<image>\nWhat are the numbers inside the circles on the triangular shaped roof on the right?",
"solution": "10",
"data_source": "visual_probe_medium"
},
{
"images": [
"VisualProbe_Medium/data/visual_probe_medium_260.jpg"
],
"doc_id": "visual_probe_medium_260",
"problem": "<image>\nWhat is the nearest price on the left of the middle red sign?",
"solution": "39 yuan",
"data_source": "visual_probe_medium"
}
] |