File size: 153,957 Bytes
48603cd |
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 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 |
[
{
"id": 0,
"object": "the third car in the row closest to the viewer, from right to left",
"prompt": "Please point out the the third car in the row closest to the viewer, from right to left.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/0.jpg",
"mask_path": "mask/0.png",
"category": "location",
"step": 2,
"scene": "outdoor"
},
{
"id": 1,
"object": "the brown car in the row closest to the viewer",
"prompt": "Please point out the the brown car in the row closest to the viewer.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/1.jpg",
"mask_path": "mask/1.png",
"category": "location",
"step": 2,
"scene": "outdoor"
},
{
"id": 2,
"object": "the fifth car in the row closest to the viewer, from right to left",
"prompt": "Please point out the the fifth car in the row closest to the viewer, from right to left.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/2.jpg",
"mask_path": "mask/2.png",
"category": "location",
"step": 2,
"scene": "outdoor"
},
{
"id": 3,
"object": "the furthest brown car",
"prompt": "Please point out the the furthest brown car.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/3.jpg",
"mask_path": "mask/3.png",
"category": "location",
"step": 1,
"scene": "outdoor"
},
{
"id": 4,
"object": "the car which is below the traffic light",
"prompt": "Please point out the the car which is below the traffic light.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/4.jpg",
"mask_path": "mask/4.png",
"category": "location",
"step": 2,
"scene": "outdoor"
},
{
"id": 5,
"object": "the car which is closest to the yellow bus",
"prompt": "Please point out the the car which is closest to the yellow bus.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/5.jpg",
"mask_path": "mask/5.png",
"category": "location",
"step": 2,
"scene": "outdoor"
},
{
"id": 6,
"object": "the car which is facing the yellow bus",
"prompt": "Please point out the the car which is facing the yellow bus.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/6.jpg",
"mask_path": "mask/6.png",
"category": "location",
"step": 2,
"scene": "outdoor"
},
{
"id": 7,
"object": "the car which is oriented in the same direction as the yellow bus",
"prompt": "Please point out the the car which is oriented in the same direction as the yellow bus.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/7.jpg",
"mask_path": "mask/7.png",
"category": "location",
"step": 2,
"scene": "outdoor"
},
{
"id": 8,
"object": "the building on the right which is the third building from the front to back",
"prompt": "Please point out the the building on the right which is the third building from the front to back.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/8.jpg",
"mask_path": "mask/8.png",
"category": "location",
"step": 2,
"scene": "outdoor"
},
{
"id": 9,
"object": "the white car on the left",
"prompt": "Please point out the the white car on the left.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/9.jpg",
"mask_path": "mask/9.png",
"category": "location",
"step": 1,
"scene": "outdoor"
},
{
"id": 10,
"object": "the people who is closest to the car",
"prompt": "Please point out the the people who is closest to the car.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/10.jpg",
"mask_path": "mask/10.png",
"category": "location",
"step": 2,
"scene": "outdoor"
},
{
"id": 11,
"object": "the furthest tree",
"prompt": "Please point out the the furthest tree.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/11.jpg",
"mask_path": "mask/11.png",
"category": "location",
"step": 1,
"scene": "outdoor"
},
{
"id": 12,
"object": "the tree which is closest to the car",
"prompt": "Please point out the the tree which is closest to the car.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/12.jpg",
"mask_path": "mask/12.png",
"category": "location",
"step": 2,
"scene": "outdoor"
},
{
"id": 13,
"object": "the second closest tree to the car",
"prompt": "Please point out the the second closest tree to the car.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/13.jpg",
"mask_path": "mask/13.png",
"category": "location",
"step": 2,
"scene": "outdoor"
},
{
"id": 14,
"object": "the people who is facing the window of the shop",
"prompt": "Please point out the the people who is facing the window of the shop.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/14.jpg",
"mask_path": "mask/14.png",
"category": "location",
"step": 2,
"scene": "outdoor"
},
{
"id": 15,
"object": "the people who is pushing strollers",
"prompt": "Please point out the the people who is pushing strollers.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/15.jpg",
"mask_path": "mask/15.png",
"category": "location",
"step": 2,
"scene": "outdoor"
},
{
"id": 16,
"object": "the woman who is next to a man pushing a strollers",
"prompt": "Please point out the the woman who is next to a man pushing a strollers.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/16.jpg",
"mask_path": "mask/16.png",
"category": "location",
"step": 3,
"scene": "outdoor"
},
{
"id": 17,
"object": "the man who is carrying a briefcase",
"prompt": "Please point out the the man who is carrying a briefcase.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/17.jpg",
"mask_path": "mask/17.png",
"category": "location",
"step": 2,
"scene": "outdoor"
},
{
"id": 18,
"object": "the window that the white car is facing",
"prompt": "Please point out the the window that the white car is facing.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/18.jpg",
"mask_path": "mask/18.png",
"category": "location",
"step": 2,
"scene": "outdoor"
},
{
"id": 19,
"object": "the window that the black car is facing",
"prompt": "Please point out the the window that the black car is facing.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/19.jpg",
"mask_path": "mask/19.png",
"category": "location",
"step": 2,
"scene": "outdoor"
},
{
"id": 20,
"object": "the window from which a pipe protrudes",
"prompt": "Please point out the the window from which a pipe protrudes.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/20.jpg",
"mask_path": "mask/20.png",
"category": "location",
"step": 2,
"scene": "outdoor"
},
{
"id": 21,
"object": "the tree which is next to the red car",
"prompt": "Please point out the the tree which is next to the red car.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/21.jpg",
"mask_path": "mask/21.png",
"category": "location",
"step": 2,
"scene": "outdoor"
},
{
"id": 22,
"object": "the tree on the right which is closest to the viewer",
"prompt": "Please point out the the tree on the right which is closest to the viewer.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/22.jpg",
"mask_path": "mask/22.png",
"category": "location",
"step": 1,
"scene": "outdoor"
},
{
"id": 23,
"object": "the second tree on the right which is closest to the viewer",
"prompt": "Please point out the the second tree on the right which is closest to the viewer.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/23.jpg",
"mask_path": "mask/23.png",
"category": "location",
"step": 1,
"scene": "outdoor"
},
{
"id": 24,
"object": "the person who is sitting under the shed",
"prompt": "Please point out the the person who is sitting under the shed.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/24.jpg",
"mask_path": "mask/24.png",
"category": "location",
"step": 2,
"scene": "outdoor"
},
{
"id": 25,
"object": "the person who is not under the shed",
"prompt": "Please point out the the person who is not under the shed.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/25.jpg",
"mask_path": "mask/25.png",
"category": "location",
"step": 2,
"scene": "outdoor"
},
{
"id": 26,
"object": "the person of the two talking women, the one on the left",
"prompt": "Please point out the the person of the two talking women, the one on the left.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/26.jpg",
"mask_path": "mask/26.png",
"category": "location",
"step": 2,
"scene": "outdoor"
},
{
"id": 27,
"object": "the car coming from the opposite direction",
"prompt": "Please point out the the car coming from the opposite direction.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/27.jpg",
"mask_path": "mask/27.png",
"category": "location",
"step": 1,
"scene": "outdoor"
},
{
"id": 28,
"object": "the truck on the double yellow lines",
"prompt": "Please point out the the truck on the double yellow lines.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/28.jpg",
"mask_path": "mask/28.png",
"category": "location",
"step": 2,
"scene": "outdoor"
},
{
"id": 29,
"object": "the tree next to the orange bus",
"prompt": "Please point out the the tree next to the orange bus.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/29.jpg",
"mask_path": "mask/29.png",
"category": "location",
"step": 2,
"scene": "outdoor"
},
{
"id": 30,
"object": "the tree next to the black car",
"prompt": "Please point out the the tree next to the black car.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/30.jpg",
"mask_path": "mask/30.png",
"category": "location",
"step": 2,
"scene": "outdoor"
},
{
"id": 31,
"object": "the store sign above the traffic light",
"prompt": "Please point out the the store sign above the traffic light.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/31.jpg",
"mask_path": "mask/31.png",
"category": "location",
"step": 2,
"scene": "outdoor"
},
{
"id": 32,
"object": "the white car which is facing the viewer",
"prompt": "Please point out the the white car which is facing the viewer.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/32.jpg",
"mask_path": "mask/32.png",
"category": "location",
"step": 1,
"scene": "outdoor"
},
{
"id": 33,
"object": "the black car which is facing the viewer",
"prompt": "Please point out the the black car which is facing the viewer.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/33.jpg",
"mask_path": "mask/33.png",
"category": "location",
"step": 1,
"scene": "outdoor"
},
{
"id": 34,
"object": "the black car which is under the traffic light",
"prompt": "Please point out the the black car which is under the traffic light.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/34.jpg",
"mask_path": "mask/34.png",
"category": "location",
"step": 2,
"scene": "outdoor"
},
{
"id": 35,
"object": "the car closest to the black car which is under the traffic light",
"prompt": "Please point out the the car closest to the black car which is under the traffic light.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/35.jpg",
"mask_path": "mask/35.png",
"category": "location",
"step": 3,
"scene": "outdoor"
},
{
"id": 36,
"object": "the truck closest to the fence on the left",
"prompt": "Please point out the the truck closest to the fence on the left.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/36.jpg",
"mask_path": "mask/36.png",
"category": "location",
"step": 2,
"scene": "outdoor"
},
{
"id": 37,
"object": "the third car in the closest row from left to right",
"prompt": "Please point out the the third car in the closest row from left to right.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/37.jpg",
"mask_path": "mask/37.png",
"category": "location",
"step": 2,
"scene": "outdoor"
},
{
"id": 38,
"object": "the fifth car in the closest row from left to right",
"prompt": "Please point out the the fifth car in the closest row from left to right.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/38.jpg",
"mask_path": "mask/38.png",
"category": "location",
"step": 2,
"scene": "outdoor"
},
{
"id": 39,
"object": "the first car to the right of the tree",
"prompt": "Please point out the the first car to the right of the tree.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/39.jpg",
"mask_path": "mask/39.png",
"category": "location",
"step": 2,
"scene": "outdoor"
},
{
"id": 40,
"object": "the third car to the right of the tree",
"prompt": "Please point out the the third car to the right of the tree.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/40.jpg",
"mask_path": "mask/40.png",
"category": "location",
"step": 2,
"scene": "outdoor"
},
{
"id": 41,
"object": "the second car to the right of the tree",
"prompt": "Please point out the the second car to the right of the tree.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/41.jpg",
"mask_path": "mask/41.png",
"category": "location",
"step": 2,
"scene": "outdoor"
},
{
"id": 42,
"object": "the bench which is closest to the tree",
"prompt": "Please point out the the bench which is closest to the tree.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/42.jpg",
"mask_path": "mask/42.png",
"category": "location",
"step": 2,
"scene": "outdoor"
},
{
"id": 43,
"object": "the car on the right which is the third car from the front",
"prompt": "Please point out the the car on the right which is the third car from the front.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/43.jpg",
"mask_path": "mask/43.png",
"category": "location",
"step": 1,
"scene": "outdoor"
},
{
"id": 44,
"object": "the car on the right which is the forth car from the front",
"prompt": "Please point out the the car on the right which is the forth car from the front.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/44.jpg",
"mask_path": "mask/44.png",
"category": "location",
"step": 1,
"scene": "outdoor"
},
{
"id": 45,
"object": "the car on the right which is the second car from the front",
"prompt": "Please point out the the car on the right which is the second car from the front.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/45.jpg",
"mask_path": "mask/45.png",
"category": "location",
"step": 1,
"scene": "outdoor"
},
{
"id": 46,
"object": "the second building from the front on the right",
"prompt": "Please point out the the second building from the front on the right.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/46.jpg",
"mask_path": "mask/46.png",
"category": "location",
"step": 1,
"scene": "outdoor"
},
{
"id": 47,
"object": "the car that is turning",
"prompt": "Please point out the the car that is turning.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/47.jpg",
"mask_path": "mask/47.png",
"category": "location",
"step": 1,
"scene": "outdoor"
},
{
"id": 48,
"object": "the closest car to the viewer that is parked on the right half of the road",
"prompt": "Please point out the the closest car to the viewer that is parked on the right half of the road.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/48.jpg",
"mask_path": "mask/48.png",
"category": "location",
"step": 3,
"scene": "outdoor"
},
{
"id": 49,
"object": "the car in the parking lot closest to the viewer",
"prompt": "Please point out the the car in the parking lot closest to the viewer.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/49.jpg",
"mask_path": "mask/49.png",
"category": "location",
"step": 2,
"scene": "outdoor"
},
{
"id": 50,
"object": "the oncoming vehicle that is closest to the viewer",
"prompt": "Please point out the the oncoming vehicle that is closest to the viewer.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/50.jpg",
"mask_path": "mask/50.png",
"category": "location",
"step": 1,
"scene": "outdoor"
},
{
"id": 51,
"object": "the tree with a sign next to it",
"prompt": "Please point out the the tree with a sign next to it.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/51.jpg",
"mask_path": "mask/51.png",
"category": "location",
"step": 2,
"scene": "outdoor"
},
{
"id": 52,
"object": "the middle car of the three closest to the viewer",
"prompt": "Please point out the the middle car of the three closest to the viewer.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/52.jpg",
"mask_path": "mask/52.png",
"category": "location",
"step": 3,
"scene": "outdoor"
},
{
"id": 53,
"object": "the rightmost car of the three closest to the viewer",
"prompt": "Please point out the the rightmost car of the three closest to the viewer.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/53.jpg",
"mask_path": "mask/53.png",
"category": "location",
"step": 3,
"scene": "outdoor"
},
{
"id": 54,
"object": "the leftmost car of the three closest to the viewer",
"prompt": "Please point out the the leftmost car of the three closest to the viewer.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/54.jpg",
"mask_path": "mask/54.png",
"category": "location",
"step": 3,
"scene": "outdoor"
},
{
"id": 55,
"object": "the store on the left of the leftmost car",
"prompt": "Please point out the the store on the left of the leftmost car.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/55.jpg",
"mask_path": "mask/55.png",
"category": "location",
"step": 2,
"scene": "outdoor"
},
{
"id": 56,
"object": "the object immediately to the left of the parking sign",
"prompt": "Please point out the the object immediately to the left of the parking sign.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/56.jpg",
"mask_path": "mask/56.png",
"category": "location",
"step": 2,
"scene": "outdoor"
},
{
"id": 57,
"object": "the first window at the back of the person who is walking",
"prompt": "Please point out the the first window at the back of the person who is walking.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/57.jpg",
"mask_path": "mask/57.png",
"category": "location",
"step": 2,
"scene": "outdoor"
},
{
"id": 58,
"object": "the first window directly above the person who is walking",
"prompt": "Please point out the the first window directly above the person who is walking.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/58.jpg",
"mask_path": "mask/58.png",
"category": "location",
"step": 2,
"scene": "outdoor"
},
{
"id": 59,
"object": "the first window ahead of the person who is walking",
"prompt": "Please point out the the first window ahead of the person who is walking.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/59.jpg",
"mask_path": "mask/59.png",
"category": "location",
"step": 2,
"scene": "outdoor"
},
{
"id": 60,
"object": "the tree beside the person who is walking",
"prompt": "Please point out the the tree beside the person who is walking.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/60.jpg",
"mask_path": "mask/60.png",
"category": "location",
"step": 2,
"scene": "outdoor"
},
{
"id": 61,
"object": "the car which is the closest car to the traffic light",
"prompt": "Please point out the the car which is the closest car to the traffic light.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/61.jpg",
"mask_path": "mask/61.png",
"category": "location",
"step": 2,
"scene": "outdoor"
},
{
"id": 62,
"object": "the green sign immediately next to the tree",
"prompt": "Please point out the the green sign immediately next to the tree.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/62.jpg",
"mask_path": "mask/62.png",
"category": "location",
"step": 2,
"scene": "outdoor"
},
{
"id": 63,
"object": "the green sign",
"prompt": "Please point out the the green sign.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/63.jpg",
"mask_path": "mask/63.png",
"category": "location",
"step": 1,
"scene": "outdoor"
},
{
"id": 64,
"object": "the bule sign",
"prompt": "Please point out the the bule sign.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/64.jpg",
"mask_path": "mask/64.png",
"category": "location",
"step": 1,
"scene": "outdoor"
},
{
"id": 65,
"object": "the tree which is at the back of the person",
"prompt": "Please point out the the tree which is at the back of the person.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/65.jpg",
"mask_path": "mask/65.png",
"category": "location",
"step": 2,
"scene": "outdoor"
},
{
"id": 66,
"object": "the person who is wearing blue clothes and red pants and facing viewer",
"prompt": "Please point out the the person who is wearing blue clothes and red pants and facing viewer.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/66.jpg",
"mask_path": "mask/66.png",
"category": "location",
"step": 1,
"scene": "outdoor"
},
{
"id": 67,
"object": "the person on the right who is wearing blue and facing left",
"prompt": "Please point out the the person on the right who is wearing blue and facing left.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/67.jpg",
"mask_path": "mask/67.png",
"category": "location",
"step": 1,
"scene": "outdoor"
},
{
"id": 68,
"object": "the man in black with a woman in brown standing beside him",
"prompt": "Please point out the the man in black with a woman in brown standing beside him.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/68.jpg",
"mask_path": "mask/68.png",
"category": "location",
"step": 2,
"scene": "outdoor"
},
{
"id": 69,
"object": "the woman holding the hand of a child in blue",
"prompt": "Please point out the the woman holding the hand of a child in blue.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/69.jpg",
"mask_path": "mask/69.png",
"category": "location",
"step": 2,
"scene": "outdoor"
},
{
"id": 70,
"object": "the child in blue whose hand is being held by a woman",
"prompt": "Please point out the the child in blue whose hand is being held by a woman.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/70.jpg",
"mask_path": "mask/70.png",
"category": "location",
"step": 2,
"scene": "outdoor"
},
{
"id": 71,
"object": "the man looking to the right",
"prompt": "Please point out the the man looking to the right.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/71.jpg",
"mask_path": "mask/71.png",
"category": "location",
"step": 1,
"scene": "outdoor"
},
{
"id": 72,
"object": "the man looking to the left",
"prompt": "Please point out the the man looking to the left.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/72.jpg",
"mask_path": "mask/72.png",
"category": "location",
"step": 1,
"scene": "outdoor"
},
{
"id": 73,
"object": "the person sitting on the wooden play structure",
"prompt": "Please point out the the person sitting on the wooden play structure.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/73.jpg",
"mask_path": "mask/73.png",
"category": "location",
"step": 2,
"scene": "outdoor"
},
{
"id": 74,
"object": "the person who is directly behind the red bicycle",
"prompt": "Please point out the the person who is directly behind the red bicycle.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/74.jpg",
"mask_path": "mask/74.png",
"category": "location",
"step": 2,
"scene": "outdoor"
},
{
"id": 75,
"object": "the person sitting closest to the strollers",
"prompt": "Please point out the the person sitting closest to the strollers.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/75.jpg",
"mask_path": "mask/75.png",
"category": "location",
"step": 2,
"scene": "outdoor"
},
{
"id": 76,
"object": "the closest door of the building",
"prompt": "Please point out the the closest door of the building.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/76.jpg",
"mask_path": "mask/76.png",
"category": "location",
"step": 2,
"scene": "outdoor"
},
{
"id": 77,
"object": "the furthest door of the building",
"prompt": "Please point out the the furthest door of the building.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/77.jpg",
"mask_path": "mask/77.png",
"category": "location",
"step": 2,
"scene": "outdoor"
},
{
"id": 78,
"object": "the third door of the building's doors from the left ",
"prompt": "Please point out the the third door of the building's doors from the left .",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/78.jpg",
"mask_path": "mask/78.png",
"category": "location",
"step": 3,
"scene": "outdoor"
},
{
"id": 79,
"object": "the person standing closest to the woman wearing burgundy",
"prompt": "Please point out the the person standing closest to the woman wearing burgundy.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/79.jpg",
"mask_path": "mask/79.png",
"category": "location",
"step": 2,
"scene": "outdoor"
},
{
"id": 80,
"object": "the man who the woman in burgundy is facing",
"prompt": "Please point out the the man who the woman in burgundy is facing.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/80.jpg",
"mask_path": "mask/80.png",
"category": "location",
"step": 2,
"scene": "outdoor"
},
{
"id": 81,
"object": "the building with a dome",
"prompt": "Please point out the the building with a dome.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/81.jpg",
"mask_path": "mask/81.png",
"category": "location",
"step": 1,
"scene": "outdoor"
},
{
"id": 82,
"object": "the green space in front of and to the right of the building with the dome",
"prompt": "Please point out the the green space in front of and to the right of the building with the dome.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/82.jpg",
"mask_path": "mask/82.png",
"category": "location",
"step": 2,
"scene": "outdoor"
},
{
"id": 83,
"object": "the closest car to the giant building",
"prompt": "Please point out the the closest car to the giant building.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/83.jpg",
"mask_path": "mask/83.png",
"category": "location",
"step": 2,
"scene": "outdoor"
},
{
"id": 84,
"object": "the boat paddle the man is holding",
"prompt": "Please point out the the boat paddle the man is holding.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/84.jpg",
"mask_path": "mask/84.png",
"category": "location",
"step": 2,
"scene": "outdoor"
},
{
"id": 85,
"object": "the boat paddle the woman is holding",
"prompt": "Please point out the the boat paddle the woman is holding.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/85.jpg",
"mask_path": "mask/85.png",
"category": "location",
"step": 2,
"scene": "outdoor"
},
{
"id": 86,
"object": "the people in the bule car",
"prompt": "Please point out the the people in the bule car.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/86.jpg",
"mask_path": "mask/86.png",
"category": "location",
"step": 2,
"scene": "outdoor"
},
{
"id": 87,
"object": "the window behind the man standing in the street",
"prompt": "Please point out the the window behind the man standing in the street.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/87.jpg",
"mask_path": "mask/87.png",
"category": "location",
"step": 2,
"scene": "outdoor"
},
{
"id": 88,
"object": "the window behind the woman standing in the street",
"prompt": "Please point out the the window behind the woman standing in the street.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/88.jpg",
"mask_path": "mask/88.png",
"category": "location",
"step": 2,
"scene": "outdoor"
},
{
"id": 89,
"object": "the car the man in orange is facing",
"prompt": "Please point out the the car the man in orange is facing.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/89.jpg",
"mask_path": "mask/89.png",
"category": "location",
"step": 2,
"scene": "outdoor"
},
{
"id": 90,
"object": "the kangaroo that is facing the haystack",
"prompt": "Please point out the the kangaroo that is facing the haystack.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/90.jpg",
"mask_path": "mask/90.png",
"category": "location",
"step": 2,
"scene": "outdoor"
},
{
"id": 91,
"object": "the woman sitting on a red chair on the sand",
"prompt": "Please point out the the woman sitting on a red chair on the sand.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/91.jpg",
"mask_path": "mask/91.png",
"category": "location",
"step": 3,
"scene": "outdoor"
},
{
"id": 92,
"object": "the woman standing next to the white object on the beach",
"prompt": "Please point out the the woman standing next to the white object on the beach.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/92.jpg",
"mask_path": "mask/92.png",
"category": "location",
"step": 3,
"scene": "outdoor"
},
{
"id": 93,
"object": "the woman on the beach with her back directly to the viewer",
"prompt": "Please point out the the woman on the beach with her back directly to the viewer.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/93.jpg",
"mask_path": "mask/93.png",
"category": "location",
"step": 2,
"scene": "outdoor"
},
{
"id": 94,
"object": "the man holding a megaphone",
"prompt": "Please point out the the man holding a megaphone.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/94.jpg",
"mask_path": "mask/94.png",
"category": "location",
"step": 2,
"scene": "outdoor"
},
{
"id": 95,
"object": "the man who is sitting in a high place and wearing white",
"prompt": "Please point out the the man who is sitting in a high place and wearing white.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/95.jpg",
"mask_path": "mask/95.png",
"category": "location",
"step": 1,
"scene": "outdoor"
},
{
"id": 96,
"object": "the white cylinder that has some orange objects on top of it",
"prompt": "Please point out the the white cylinder that has some orange objects on top of it.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/96.jpg",
"mask_path": "mask/96.png",
"category": "location",
"step": 2,
"scene": "outdoor"
},
{
"id": 97,
"object": "the object immediately to the right of the white cylinder with an orange object on top",
"prompt": "Please point out the the object immediately to the right of the white cylinder with an orange object on top.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/97.jpg",
"mask_path": "mask/97.png",
"category": "location",
"step": 3,
"scene": "outdoor"
},
{
"id": 98,
"object": "the top window which is among the windows facing left",
"prompt": "Please point out the the top window which is among the windows facing left.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/98.jpg",
"mask_path": "mask/98.png",
"category": "location",
"step": 2,
"scene": "outdoor"
},
{
"id": 99,
"object": "the bottom window which is among the windows facing left",
"prompt": "Please point out the the bottom window which is among the windows facing left.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/99.jpg",
"mask_path": "mask/99.png",
"category": "location",
"step": 2,
"scene": "outdoor"
},
{
"id": 100,
"object": "the man in black carrying a gray bag in one hand and pulling a suitcase with the other",
"prompt": "Please point out the the man in black carrying a gray bag in one hand and pulling a suitcase with the other.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/100.jpg",
"mask_path": "mask/100.png",
"category": "location",
"step": 3,
"scene": "outdoor"
},
{
"id": 101,
"object": "the person being faced by the woman in brown who is standing next to the train",
"prompt": "Please point out the the person being faced by the woman in brown who is standing next to the train.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/101.jpg",
"mask_path": "mask/101.png",
"category": "location",
"step": 3,
"scene": "outdoor"
},
{
"id": 102,
"object": "the man in blue standing with his arms crossed next to the nearest airplane",
"prompt": "Please point out the the man in blue standing with his arms crossed next to the nearest airplane.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/102.jpg",
"mask_path": "mask/102.png",
"category": "location",
"step": 2,
"scene": "outdoor"
},
{
"id": 103,
"object": "the woman with a brown shoulder bag next to the nearest airplane",
"prompt": "Please point out the the woman with a brown shoulder bag next to the nearest airplane.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/103.jpg",
"mask_path": "mask/103.png",
"category": "location",
"step": 3,
"scene": "outdoor"
},
{
"id": 104,
"object": "the shipping container directly on top of the orange one",
"prompt": "Please point out the the shipping container directly on top of the orange one.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/104.jpg",
"mask_path": "mask/104.png",
"category": "location",
"step": 2,
"scene": "outdoor"
},
{
"id": 105,
"object": "the shipping container immediately to the right of the orange one",
"prompt": "Please point out the the shipping container immediately to the right of the orange one.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/105.jpg",
"mask_path": "mask/105.png",
"category": "location",
"step": 2,
"scene": "outdoor"
},
{
"id": 106,
"object": "the shipping container immediately to the left of the orange one",
"prompt": "Please point out the the shipping container immediately to the left of the orange one.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/106.jpg",
"mask_path": "mask/106.png",
"category": "location",
"step": 2,
"scene": "outdoor"
},
{
"id": 107,
"object": "the red container directly above the word 'CHINA'",
"prompt": "Please point out the the red container directly above the word 'CHINA'.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/107.jpg",
"mask_path": "mask/107.png",
"category": "location",
"step": 2,
"scene": "outdoor"
},
{
"id": 108,
"object": "the tree next to the tea picker",
"prompt": "Please point out the the tree next to the tea picker.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/108.jpg",
"mask_path": "mask/108.png",
"category": "location",
"step": 2,
"scene": "outdoor"
},
{
"id": 109,
"object": "the first woman in black from the left sitting on the grass",
"prompt": "Please point out the the first woman in black from the left sitting on the grass.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/109.jpg",
"mask_path": "mask/109.png",
"category": "location",
"step": 2,
"scene": "outdoor"
},
{
"id": 110,
"object": "the person in black sitting on the bench",
"prompt": "Please point out the the person in black sitting on the bench.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/110.jpg",
"mask_path": "mask/110.png",
"category": "location",
"step": 2,
"scene": "outdoor"
},
{
"id": 111,
"object": "the person in white sitting on the bench",
"prompt": "Please point out the the person in white sitting on the bench.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/111.jpg",
"mask_path": "mask/111.png",
"category": "location",
"step": 2,
"scene": "outdoor"
},
{
"id": 112,
"object": "the person in red on the rightmost boat",
"prompt": "Please point out the the person in red on the rightmost boat.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/112.jpg",
"mask_path": "mask/112.png",
"category": "location",
"step": 2,
"scene": "outdoor"
},
{
"id": 113,
"object": "the person in blue on the middle boat",
"prompt": "Please point out the the person in blue on the middle boat.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/113.jpg",
"mask_path": "mask/113.png",
"category": "location",
"step": 2,
"scene": "outdoor"
},
{
"id": 114,
"object": "the person in black on the middle boat",
"prompt": "Please point out the the person in black on the middle boat.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/114.jpg",
"mask_path": "mask/114.png",
"category": "location",
"step": 2,
"scene": "outdoor"
},
{
"id": 115,
"object": "the gondola to the left of the red one",
"prompt": "Please point out the the gondola to the left of the red one.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/115.jpg",
"mask_path": "mask/115.png",
"category": "location",
"step": 2,
"scene": "outdoor"
},
{
"id": 116,
"object": "the person the elderly man in black is facing",
"prompt": "Please point out the the person the elderly man in black is facing.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/116.jpg",
"mask_path": "mask/116.png",
"category": "location",
"step": 2,
"scene": "outdoor"
},
{
"id": 117,
"object": "the man in red on the same boat as the man in yellow closest to the viewer",
"prompt": "Please point out the the man in red on the same boat as the man in yellow closest to the viewer.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/117.jpg",
"mask_path": "mask/117.png",
"category": "location",
"step": 3,
"scene": "outdoor"
},
{
"id": 118,
"object": "the person sitting on the brown horse with a black tail",
"prompt": "Please point out the the person sitting on the brown horse with a black tail.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/118.jpg",
"mask_path": "mask/118.png",
"category": "location",
"step": 2,
"scene": "outdoor"
},
{
"id": 119,
"object": "the person sitting on the brown horse with a brown tail",
"prompt": "Please point out the the person sitting on the brown horse with a brown tail.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/119.jpg",
"mask_path": "mask/119.png",
"category": "location",
"step": 3,
"scene": "outdoor"
},
{
"id": 120,
"object": "the window closest to the walking person",
"prompt": "Please point out the the window closest to the walking person.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/120.jpg",
"mask_path": "mask/120.png",
"category": "location",
"step": 2,
"scene": "outdoor"
},
{
"id": 121,
"object": "the woman wearing red shoes",
"prompt": "Please point out the the woman wearing red shoes.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/121.jpg",
"mask_path": "mask/121.png",
"category": "location",
"step": 2,
"scene": "outdoor"
},
{
"id": 122,
"object": "the dirver of the car",
"prompt": "Please point out the the dirver of the car.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/122.jpg",
"mask_path": "mask/122.png",
"category": "location",
"step": 2,
"scene": "outdoor"
},
{
"id": 123,
"object": "the man in black closest to the car",
"prompt": "Please point out the the man in black closest to the car.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/123.jpg",
"mask_path": "mask/123.png",
"category": "location",
"step": 2,
"scene": "outdoor"
},
{
"id": 124,
"object": "the man wearing green shoes",
"prompt": "Please point out the the man wearing green shoes.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/124.jpg",
"mask_path": "mask/124.png",
"category": "location",
"step": 2,
"scene": "outdoor"
},
{
"id": 125,
"object": "the green sofa on the right that is furthest from the viewer",
"prompt": "Please point out the the green sofa on the right that is furthest from the viewer.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/125.jpg",
"mask_path": "mask/125.png",
"category": "location",
"step": 1,
"scene": "outdoor"
},
{
"id": 126,
"object": "the orange box",
"prompt": "Please point out the orange box.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/126.png",
"mask_path": "mask/126.png",
"category": "location",
"step": 1,
"scene": "indoor"
},
{
"id": 127,
"object": "the box with the person logo",
"prompt": "Please point out the box with the person logo.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/127.png",
"mask_path": "mask/127.png",
"category": "location",
"step": 1,
"scene": "indoor"
},
{
"id": 128,
"object": "the monitor closest to the viewer",
"prompt": "Please point out the monitor closest to the viewer.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/128.png",
"mask_path": "mask/128.png",
"category": "location",
"step": 1,
"scene": "indoor"
},
{
"id": 129,
"object": "the farthest white cabinet",
"prompt": "Please point to the farthest white cabinet.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/129.png",
"mask_path": "mask/129.png",
"category": "location",
"step": 1,
"scene": "indoor"
},
{
"id": 130,
"object": "the brown box on the shelf",
"prompt": "Please point out the brown box on the shelf.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/130.png",
"mask_path": "mask/130.png",
"category": "location",
"step": 2,
"scene": "indoor"
},
{
"id": 131,
"object": "the gray clothes",
"prompt": "Please point out the gray clothes.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/131.png",
"mask_path": "mask/131.png",
"category": "location",
"step": 1,
"scene": "indoor"
},
{
"id": 132,
"object": "the brown vase on the bookshelf",
"prompt": "Please point out the brown vase on the bookshelf.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/132.png",
"mask_path": "mask/132.png",
"category": "location",
"step": 2,
"scene": "indoor"
},
{
"id": 133,
"object": "the black card",
"prompt": "Please point to the black card.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/133.png",
"mask_path": "mask/133.png",
"category": "location",
"step": 1,
"scene": "indoor"
},
{
"id": 134,
"object": "the top piece of paper on the white table",
"prompt": "Please point to the top piece of paper on the white table.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/134.png",
"mask_path": "mask/134.png",
"category": "location",
"step": 2,
"scene": "indoor"
},
{
"id": 135,
"object": "the left pillow on the sofa",
"prompt": "Please point to the left pillow on the sofa.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/135.png",
"mask_path": "mask/135.png",
"category": "location",
"step": 2,
"scene": "indoor"
},
{
"id": 136,
"object": "the white bottle on the table that is closest to the green bottle on the left",
"prompt": "Please point to the white bottle on the table that is closest to the green bottle on the left.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/136.png",
"mask_path": "mask/136.png",
"category": "location",
"step": 3,
"scene": "indoor"
},
{
"id": 137,
"object": "the computer",
"prompt": "Please point out the computer.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/137.png",
"mask_path": "mask/137.png",
"category": "location",
"step": 1,
"scene": "indoor"
},
{
"id": 138,
"object": "the blue power strip",
"prompt": "Please point out the blue power strip.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/138.png",
"mask_path": "mask/138.png",
"category": "location",
"step": 1,
"scene": "indoor"
},
{
"id": 139,
"object": "the third object from left to right on the closest platform",
"prompt": "Please point out the third object from left to right on the closest platform.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/139.png",
"mask_path": "mask/139.png",
"category": "location",
"step": 2,
"scene": "indoor"
},
{
"id": 140,
"object": "the thinnest paper towel on the counter",
"prompt": "Please point out the thinnest paper towel on the counter.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/140.png",
"mask_path": "mask/140.png",
"category": "location",
"step": 2,
"scene": "indoor"
},
{
"id": 141,
"object": "the gray-black object hanging on the right of the blue bottle",
"prompt": "Please point out the gray-black object hanging on the right of the blue bottle.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/141.png",
"mask_path": "mask/141.png",
"category": "location",
"step": 2,
"scene": "indoor"
},
{
"id": 142,
"object": "the second object from the left to the right on the nearest platform",
"prompt": "Please point out the second object from the left to the right on the nearest platform.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/142.png",
"mask_path": "mask/142.png",
"category": "location",
"step": 2,
"scene": "indoor"
},
{
"id": 143,
"object": "the object on the right of the shovels",
"prompt": "Please point out the object on the right of the shovels.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/143.png",
"mask_path": "mask/143.png",
"category": "location",
"step": 2,
"scene": "indoor"
},
{
"id": 144,
"object": "the yellow five-pointed star",
"prompt": "Please point out the yellow five-pointed star.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/144.png",
"mask_path": "mask/144.png",
"category": "location",
"step": 1,
"scene": "indoor"
},
{
"id": 145,
"object": "the blue object on the second level of the wooden shelf",
"prompt": "Please point out the blue object on the second level of the wooden shelf.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/145.png",
"mask_path": "mask/145.png",
"category": "location",
"step": 3,
"scene": "indoor"
},
{
"id": 146,
"object": "the white object that is the second closest to the wooden shelf",
"prompt": "Please point out the white object that is the second closest to the wooden shelf.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/146.png",
"mask_path": "mask/146.png",
"category": "location",
"step": 2,
"scene": "indoor"
},
{
"id": 147,
"object": "the gray object behind the wall where the fire extinguisher is located",
"prompt": "Please point to the gray object behind the wall where the fire extinguisher is located.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/147.png",
"mask_path": "mask/147.png",
"category": "location",
"step": 3,
"scene": "indoor"
},
{
"id": 148,
"object": "the blue object on the same platform as the microwave oven",
"prompt": "Please point out the blue object on the same platform as the microwave oven.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/148.png",
"mask_path": "mask/148.png",
"category": "location",
"step": 3,
"scene": "indoor"
},
{
"id": 149,
"object": "the white box on the refrigerator",
"prompt": "Please point out the white box on the refrigerator.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/149.png",
"mask_path": "mask/149.png",
"category": "location",
"step": 2,
"scene": "indoor"
},
{
"id": 150,
"object": "the leftmost black object on the same platform as the micro-wave oven",
"prompt": "Please point out the leftmost black object on the same platform as the micro-wave oven.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/150.png",
"mask_path": "mask/150.png",
"category": "location",
"step": 3,
"scene": "indoor"
},
{
"id": 151,
"object": "the blue glove that is farthest from the viewer",
"prompt": "Please point to the blue glove that is farthest from the viewer.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/151.png",
"mask_path": "mask/151.png",
"category": "location",
"step": 1,
"scene": "indoor"
},
{
"id": 152,
"object": "the second card from the top in the second column from the left, among those hanging on the wall",
"prompt": "Please point out the second card from the top in the second column from the left, among those hanging on the wall.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/152.png",
"mask_path": "mask/152.png",
"category": "location",
"step": 3,
"scene": "indoor"
},
{
"id": 153,
"object": "the gray box on the far right of the first shelf of the white bookshelf",
"prompt": "Please point out the gray box on the far right of the first shelf of the white bookshelf.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/153.png",
"mask_path": "mask/153.png",
"category": "location",
"step": 3,
"scene": "indoor"
},
{
"id": 154,
"object": "the orange box on the white table on the left",
"prompt": "Please point out the orange box on the white table on the left.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/154.png",
"mask_path": "mask/154.png",
"category": "location",
"step": 2,
"scene": "indoor"
},
{
"id": 155,
"object": "the leftmost gray box on the first shelf of the white bookshelf",
"prompt": "Please point out the leftmost gray box on the first shelf of the white bookshelf.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/155.png",
"mask_path": "mask/155.png",
"category": "location",
"step": 3,
"scene": "indoor"
},
{
"id": 156,
"object": "the notebook under the black monitor",
"prompt": "Please point out the notebook under the black monitor.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/156.png",
"mask_path": "mask/156.png",
"category": "location",
"step": 3,
"scene": "indoor"
},
{
"id": 157,
"object": "the object under the table",
"prompt": "Please point out the object under the table.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/157.png",
"mask_path": "mask/157.png",
"category": "location",
"step": 3,
"scene": "indoor"
},
{
"id": 158,
"object": "the white cup on the shelf behind the chair",
"prompt": "Please point out the white cup on the shelf behind the chair.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/158.png",
"mask_path": "mask/158.png",
"category": "location",
"step": 3,
"scene": "indoor"
},
{
"id": 159,
"object": "the rightmost blue box on the refrigerator",
"prompt": "Please point to the rightmost blue box on the refrigerator.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/159.png",
"mask_path": "mask/159.png",
"category": "location",
"step": 2,
"scene": "indoor"
},
{
"id": 160,
"object": "the rightmost box",
"prompt": "Please point to the rightmost box.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/160.png",
"mask_path": "mask/160.png",
"category": "location",
"step": 1,
"scene": "indoor"
},
{
"id": 161,
"object": "the silver box closest to the gray bottle",
"prompt": "Please point out the silver box closest to the gray bottle.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/161.png",
"mask_path": "mask/161.png",
"category": "location",
"step": 2,
"scene": "indoor"
},
{
"id": 162,
"object": "the second silver box from left to right",
"prompt": "Please point out the second silver box from left to right.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/162.png",
"mask_path": "mask/162.png",
"category": "location",
"step": 1,
"scene": "indoor"
},
{
"id": 163,
"object": "the cardboard box under the bed which is closest box to the viewer",
"prompt": "Please point out the cardboard box under the bed which is closest box to the viewer.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/163.png",
"mask_path": "mask/163.png",
"category": "location",
"step": 3,
"scene": "indoor"
},
{
"id": 164,
"object": "the blue object on the table",
"prompt": "Please point out the blue object on the table.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/164.png",
"mask_path": "mask/164.png",
"category": "location",
"step": 2,
"scene": "indoor"
},
{
"id": 165,
"object": "the white bottle which is farthest from the viewer",
"prompt": "Please point out the white bottle which is farthest from the viewer.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/165.png",
"mask_path": "mask/165.png",
"category": "location",
"step": 1,
"scene": "indoor"
},
{
"id": 166,
"object": "the leftmost white bottle on the third shelf of the white shelf",
"prompt": "Please point out the leftmost white bottle on the third shelf of the white shelf.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/166.png",
"mask_path": "mask/166.png",
"category": "location",
"step": 3,
"scene": "indoor"
},
{
"id": 167,
"object": "the pillow closest to the right nightstand",
"prompt": "Please point to the pillow closest to the right nightstand.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/167.png",
"mask_path": "mask/167.png",
"category": "location",
"step": 2,
"scene": "indoor"
},
{
"id": 168,
"object": "the pillow closest to the remote controller",
"prompt": "Please point to the pillow closest to the remote controller.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/168.png",
"mask_path": "mask/168.png",
"category": "location",
"step": 2,
"scene": "indoor"
},
{
"id": 169,
"object": "the white box closest to the remote control",
"prompt": "Please point to the white box closest to the remote control.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/169.png",
"mask_path": "mask/169.png",
"category": "location",
"step": 2,
"scene": "indoor"
},
{
"id": 170,
"object": "the wooden plate on the far left",
"prompt": "Please point to the wooden plate on the far left.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/170.png",
"mask_path": "mask/170.png",
"category": "location",
"step": 1,
"scene": "indoor"
},
{
"id": 171,
"object": "the painting closest to the lamp",
"prompt": "Please point to the painting closest to the lamp.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/171.png",
"mask_path": "mask/171.png",
"category": "location",
"step": 2,
"scene": "indoor"
},
{
"id": 172,
"object": "the third chair from the left to the right",
"prompt": "Please point out the third chair from the left to the right.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/172.png",
"mask_path": "mask/172.png",
"category": "location",
"step": 1,
"scene": "indoor"
},
{
"id": 173,
"object": "the black framed painting on the right of the lamp",
"prompt": "Please point out the black framed painting on the right of the lamp.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/173.png",
"mask_path": "mask/173.png",
"category": "location",
"step": 3,
"scene": "indoor"
},
{
"id": 174,
"object": "the sofa on the right side that is closest to the viewer",
"prompt": "Please point out the sofa on the right side that is closest to the viewer.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/174.png",
"mask_path": "mask/174.png",
"category": "location",
"step": 1,
"scene": "indoor"
},
{
"id": 175,
"object": "the sofa farthest from the viewer",
"prompt": "Please point out the sofa farthest from the viewer.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/175.png",
"mask_path": "mask/175.png",
"category": "location",
"step": 1,
"scene": "indoor"
},
{
"id": 176,
"object": "the painting hanging on the wall",
"prompt": "Please point out the painting hanging on the wall.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/176.png",
"mask_path": "mask/176.png",
"category": "location",
"step": 2,
"scene": "indoor"
},
{
"id": 177,
"object": "the pot on the second shelf farthest from the viewer",
"prompt": "Please point out the pot on the second shelf farthest from the viewer.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/177.png",
"mask_path": "mask/177.png",
"category": "location",
"step": 3,
"scene": "indoor"
},
{
"id": 178,
"object": "the object between the white box and the farthest black pot",
"prompt": "Please point out the object between the white box and the farthest black pot.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/178.png",
"mask_path": "mask/178.png",
"category": "location",
"step": 3,
"scene": "indoor"
},
{
"id": 179,
"object": "the black object in the upper right corner",
"prompt": "Please point out the black object in the upper right corner.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/179.png",
"mask_path": "mask/179.png",
"category": "location",
"step": 1,
"scene": "indoor"
},
{
"id": 180,
"object": "the rightmost shoe",
"prompt": "Please point to the rightmost shoe.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/180.png",
"mask_path": "mask/180.png",
"category": "location",
"step": 1,
"scene": "indoor"
},
{
"id": 181,
"object": "the black object that is on the same platform as the TV",
"prompt": "Please point out the black object that is on the same platform as the TV.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/181.png",
"mask_path": "mask/181.png",
"category": "location",
"step": 3,
"scene": "indoor"
},
{
"id": 182,
"object": "the vase closest to the TV",
"prompt": "Please point out the vase closest to the TV.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/182.png",
"mask_path": "mask/182.png",
"category": "location",
"step": 2,
"scene": "indoor"
},
{
"id": 183,
"object": "the rightmost box at the bottom of the shelf",
"prompt": "Please point to the rightmost box at the bottom of the shelf.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/183.png",
"mask_path": "mask/183.png",
"category": "location",
"step": 3,
"scene": "indoor"
},
{
"id": 184,
"object": "the remote control on the right side",
"prompt": "Please point out the remote control on the right side.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/184.png",
"mask_path": "mask/184.png",
"category": "location",
"step": 1,
"scene": "indoor"
},
{
"id": 185,
"object": "the blue toothbrush farthest from the faucet",
"prompt": "Please point out the blue toothbrush farthest from the faucet.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/185.png",
"mask_path": "mask/185.png",
"category": "location",
"step": 2,
"scene": "indoor"
},
{
"id": 186,
"object": "the chair which is the third chair from the front",
"prompt": "Please point to the chair which is the third chair from the front.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/186.png",
"mask_path": "mask/186.png",
"category": "location",
"step": 1,
"scene": "indoor"
},
{
"id": 187,
"object": "the chair closest from the viewer",
"prompt": "Please point out the chair closest from the viewer.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/187.png",
"mask_path": "mask/187.png",
"category": "location",
"step": 1,
"scene": "indoor"
},
{
"id": 188,
"object": "the white object on the first shelf of the cabinet",
"prompt": "Please point out the white object on the first shelf of the cabinet.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/188.png",
"mask_path": "mask/188.png",
"category": "location",
"step": 3,
"scene": "indoor"
},
{
"id": 189,
"object": "the plant on the far left of the second shelf of the cabinet",
"prompt": "Please point out the plant on the far left of the second shelf of the cabinet.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/189.png",
"mask_path": "mask/189.png",
"category": "location",
"step": 3,
"scene": "indoor"
},
{
"id": 190,
"object": "the card closest to the wooden door",
"prompt": "Please point out the card closest to the wooden door.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/190.png",
"mask_path": "mask/190.png",
"category": "location",
"step": 2,
"scene": "indoor"
},
{
"id": 191,
"object": "the third card from right to left on the cabinet",
"prompt": "Please point to the third card from right to left on the cabinet.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/191.png",
"mask_path": "mask/191.png",
"category": "location",
"step": 2,
"scene": "indoor"
},
{
"id": 192,
"object": "the green plant farthest from the viewer",
"prompt": "Please point out the green plant farthest from the viewer.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/192.png",
"mask_path": "mask/192.png",
"category": "location",
"step": 1,
"scene": "indoor"
},
{
"id": 193,
"object": "the fourth toy from the left to the right on the lower shelf of the wooden cabinet",
"prompt": "Please point out the fourth toy from the left to the right on the lower shelf of the wooden cabinet.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/193.png",
"mask_path": "mask/193.png",
"category": "location",
"step": 3,
"scene": "indoor"
},
{
"id": 194,
"object": "the brown object farthest from the viewer",
"prompt": "Please point out the brown object farthest from the viewer.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/194.png",
"mask_path": "mask/194.png",
"category": "location",
"step": 1,
"scene": "indoor"
},
{
"id": 195,
"object": "the brown object closest from the viewer",
"prompt": "Please point out the brown object closest from the viewer.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/195.png",
"mask_path": "mask/195.png",
"category": "location",
"step": 1,
"scene": "indoor"
},
{
"id": 196,
"object": "the white object on the cabinet farthest from the viewer",
"prompt": "Please point out the white object on the cabinet farthest from the viewer.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/196.png",
"mask_path": "mask/196.png",
"category": "location",
"step": 2,
"scene": "indoor"
},
{
"id": 197,
"object": "the white object adjacent to the left side of the picture frame on the cabinet",
"prompt": "Please point out the white object adjacent to the left side of the picture frame on the cabinet.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/197.png",
"mask_path": "mask/197.png",
"category": "location",
"step": 3,
"scene": "indoor"
},
{
"id": 198,
"object": "the purple object farthest to the socket",
"prompt": "Please point out the purple object farthest to the socket.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/198.png",
"mask_path": "mask/198.png",
"category": "location",
"step": 2,
"scene": "indoor"
},
{
"id": 199,
"object": "the green towel on the upper right with yellow object on top",
"prompt": "Please point out the green towel on the upper right with yellow object on top.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/199.png",
"mask_path": "mask/199.png",
"category": "location",
"step": 2,
"scene": "indoor"
},
{
"id": 200,
"object": "the brown sofa, which is the closest sofa to the viewer",
"prompt": "Please point out the brown sofa, which is the closest sofa to the viewer.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/200.png",
"mask_path": "mask/200.png",
"category": "location",
"step": 1,
"scene": "indoor"
},
{
"id": 201,
"object": "the rightmost object on the top of the white shelf which is against the wall",
"prompt": "Please point out the rightmost object on the top of the white shelf which is against the wall.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/201.png",
"mask_path": "mask/201.png",
"category": "location",
"step": 3,
"scene": "indoor"
},
{
"id": 202,
"object": "the object on the windowsill farthest from the viewer",
"prompt": "Please point out the object on the windowsill farthest from the viewer.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/202.png",
"mask_path": "mask/202.png",
"category": "location",
"step": 2,
"scene": "indoor"
},
{
"id": 203,
"object": "the black object which is farthest from the shelf",
"prompt": "Please point out the black object which is farthest from the shelf.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/203.png",
"mask_path": "mask/203.png",
"category": "location",
"step": 2,
"scene": "indoor"
},
{
"id": 204,
"object": "the paper tube closest to the viewer",
"prompt": "Please point out the paper tube closest to the viewer.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/204.png",
"mask_path": "mask/204.png",
"category": "location",
"step": 1,
"scene": "indoor"
},
{
"id": 205,
"object": "the picture that is third from the top in the second column from the left on the wall",
"prompt": "Please point out the picture that is third from the top in the second column from the left on the wall.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/205.png",
"mask_path": "mask/205.png",
"category": "location",
"step": 3,
"scene": "indoor"
},
{
"id": 206,
"object": "the leftmost purple object on the second shelf on the white shelf",
"prompt": "Please point out the leftmost purple object on the second shelf on the white shelf.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/206.png",
"mask_path": "mask/206.png",
"category": "location",
"step": 3,
"scene": "indoor"
},
{
"id": 207,
"object": "the farthest chair from the viewer",
"prompt": "Please point out the farthest chair from the viewer.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/207.png",
"mask_path": "mask/207.png",
"category": "location",
"step": 1,
"scene": "indoor"
},
{
"id": 208,
"object": "the farthest chair from the viewer",
"prompt": "Please point out the farthest chair from the viewer.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/208.png",
"mask_path": "mask/208.png",
"category": "location",
"step": 1,
"scene": "indoor"
},
{
"id": 209,
"object": "the white object closest to the faucet",
"prompt": "Please point out the white object closest to the faucet.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/209.png",
"mask_path": "mask/209.png",
"category": "location",
"step": 2,
"scene": "indoor"
},
{
"id": 210,
"object": "the closest red box to the blue box",
"prompt": "Please point out the closest red box to the blue box.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/210.png",
"mask_path": "mask/210.png",
"category": "location",
"step": 2,
"scene": "indoor"
},
{
"id": 211,
"object": "the black remote control closest to the black table lamp",
"prompt": "Please point out the black remote control closest to the black table lamp.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/211.png",
"mask_path": "mask/211.png",
"category": "location",
"step": 2,
"scene": "indoor"
},
{
"id": 212,
"object": "the second bottle from the right on the windowsill",
"prompt": "Please point out the second bottle from the right on the windowsill.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/212.png",
"mask_path": "mask/212.png",
"category": "location",
"step": 2,
"scene": "indoor"
},
{
"id": 213,
"object": "the second closest cup to the viewer",
"prompt": "Please point out the second closest cup to the viewer.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/213.png",
"mask_path": "mask/213.png",
"category": "location",
"step": 1,
"scene": "indoor"
},
{
"id": 214,
"object": "the stool which is farthest from the white table",
"prompt": "Please point out the stool which is farthest from the white table.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/214.png",
"mask_path": "mask/214.png",
"category": "location",
"step": 2,
"scene": "indoor"
},
{
"id": 215,
"object": "the white card hanging on the wall, which is the closest white card to the viewer",
"prompt": "Please point out the white card hanging on the wall, which is the closest white card to the viewer.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/215.png",
"mask_path": "mask/215.png",
"category": "location",
"step": 2,
"scene": "indoor"
},
{
"id": 216,
"object": "the white object which is the closest white object to the green bottle",
"prompt": "Please point to the white object which is the closest white object to the green bottle.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/216.png",
"mask_path": "mask/216.png",
"category": "location",
"step": 2,
"scene": "indoor"
},
{
"id": 217,
"object": "the first gray bottle from left to right on the second shelf from top to bottom",
"prompt": "Please point to the first gray bottle from left to right on the second shelf from top to bottom.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/217.png",
"mask_path": "mask/217.png",
"category": "location",
"step": 3,
"scene": "indoor"
},
{
"id": 218,
"object": "the second object from right to left on the platform with the banana",
"prompt": "Please point out the second object from right to left on the platform with the banana.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/218.png",
"mask_path": "mask/218.png",
"category": "location",
"step": 3,
"scene": "indoor"
},
{
"id": 219,
"object": "the tallest bottle on the black table",
"prompt": "Please point out the tallest bottle on the black table.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/219.png",
"mask_path": "mask/219.png",
"category": "location",
"step": 2,
"scene": "indoor"
},
{
"id": 220,
"object": "the blue object on the second level of the wooden shelf",
"prompt": "Please point out the blue object on the second level of the wooden shelf.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/220.png",
"mask_path": "mask/220.png",
"category": "location",
"step": 3,
"scene": "indoor"
},
{
"id": 221,
"object": "the rightmost green bottle on the top of the shelf",
"prompt": "Please point to the rightmost green bottle on the top of the shelf.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/221.png",
"mask_path": "mask/221.png",
"category": "location",
"step": 3,
"scene": "indoor"
},
{
"id": 222,
"object": "the silver bottle on the right edge of the sink",
"prompt": "Please point out the silver bottle on the right edge of the sink.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/222.png",
"mask_path": "mask/222.png",
"category": "location",
"step": 3,
"scene": "indoor"
},
{
"id": 223,
"object": "the second card from right to left on the cabinet",
"prompt": "Please point to the second card from right to left on the cabinet.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/223.png",
"mask_path": "mask/223.png",
"category": "location",
"step": 2,
"scene": "indoor"
},
{
"id": 224,
"object": "the leftmost toy on the lower shelf of the wooden cabinet",
"prompt": "Please point out the leftmost toy on the lower shelf of the wooden cabinet.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/224.png",
"mask_path": "mask/224.png",
"category": "location",
"step": 3,
"scene": "indoor"
},
{
"id": 225,
"object": "the rightmost toy on the lower shelf of the wooden cabinet",
"prompt": "Please point out the rightmost toy on the lower shelf of the wooden cabinet.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/225.png",
"mask_path": "mask/225.png",
"category": "location",
"step": 3,
"scene": "indoor"
},
{
"id": 226,
"object": "the person on the right who is holding a blue bag",
"prompt": "Please point out the the person on the right who is holding a blue bag.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/226.jpg",
"mask_path": "mask/226.png",
"category": "location",
"step": 2,
"scene": "indoor"
},
{
"id": 227,
"object": "the person on the right of the woman who is holding a blue bag",
"prompt": "Please point out the the person on the right of the woman who is holding a blue bag.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/227.jpg",
"mask_path": "mask/227.png",
"category": "location",
"step": 3,
"scene": "indoor"
},
{
"id": 228,
"object": "the metal container to the left of the red bottle on the countertop closest to the viewer",
"prompt": "Please point out the the metal container to the left of the red bottle on the countertop closest to the viewer.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/228.jpg",
"mask_path": "mask/228.png",
"category": "location",
"step": 3,
"scene": "indoor"
},
{
"id": 229,
"object": "the closest cup to the viewer which is among the cups on the top layer of the stack",
"prompt": "Please point out the the closest cup to the viewer which is among the cups on the top layer of the stack.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/229.jpg",
"mask_path": "mask/229.png",
"category": "location",
"step": 3,
"scene": "indoor"
},
{
"id": 230,
"object": "the man walking alone",
"prompt": "Please point out the the man walking alone.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/230.jpg",
"mask_path": "mask/230.png",
"category": "location",
"step": 1,
"scene": "indoor"
},
{
"id": 231,
"object": "the man at the checkout counter",
"prompt": "Please point out the the man at the checkout counter.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/231.jpg",
"mask_path": "mask/231.png",
"category": "location",
"step": 2,
"scene": "indoor"
},
{
"id": 232,
"object": "the black display stand next to the mammoth",
"prompt": "Please point out the the black display stand next to the mammoth.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/232.jpg",
"mask_path": "mask/232.png",
"category": "location",
"step": 2,
"scene": "indoor"
},
{
"id": 233,
"object": "the 7th movie poster from the right in the top row on the nearest screen",
"prompt": "Please point out the the 7th movie poster from the right in the top row on the nearest screen.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/233.jpg",
"mask_path": "mask/233.png",
"category": "location",
"step": 3,
"scene": "indoor"
},
{
"id": 234,
"object": "the forth movie poster from the left in the top row on the nearest screen",
"prompt": "Please point out the the forth movie poster from the left in the top row on the nearest screen.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/234.jpg",
"mask_path": "mask/234.png",
"category": "location",
"step": 3,
"scene": "indoor"
},
{
"id": 235,
"object": "the second movie poster from the left in the top row on the nearest screen",
"prompt": "Please point out the the second movie poster from the left in the top row on the nearest screen.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/235.jpg",
"mask_path": "mask/235.png",
"category": "location",
"step": 3,
"scene": "indoor"
},
{
"id": 236,
"object": "the second movie poster from the left in the bottom row on the nearest screen",
"prompt": "Please point out the the second movie poster from the left in the bottom row on the nearest screen.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/236.jpg",
"mask_path": "mask/236.png",
"category": "location",
"step": 3,
"scene": "indoor"
},
{
"id": 237,
"object": "the third movie poster from the left in the bottom row on the nearest screen",
"prompt": "Please point out the the third movie poster from the left in the bottom row on the nearest screen.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/237.jpg",
"mask_path": "mask/237.png",
"category": "location",
"step": 3,
"scene": "indoor"
},
{
"id": 238,
"object": "the forth movie poster from the left in the bottom row on the nearest screen",
"prompt": "Please point out the the forth movie poster from the left in the bottom row on the nearest screen.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/238.jpg",
"mask_path": "mask/238.png",
"category": "location",
"step": 3,
"scene": "indoor"
},
{
"id": 239,
"object": "the fifth bottle from the left on the top shelf",
"prompt": "Please point out the the fifth bottle from the left on the top shelf.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/239.jpg",
"mask_path": "mask/239.png",
"category": "location",
"step": 3,
"scene": "indoor"
},
{
"id": 240,
"object": "the door behind the two people",
"prompt": "Please point out the the door behind the two people.",
"suffix": "Your answer should be formatted as a list of tuples, i.e. [(x1, y1)], where each tuple contains the x and y coordinates of a point satisfying the conditions above. The coordinates should be between 0 and 1, indicating the normalized pixel locations of the points in the image.",
"rgb_path": "image/240.jpg",
"mask_path": "mask/240.png",
"category": "location",
"step": 3,
"scene": "indoor"
}
] |