File size: 132,366 Bytes
066d4d6 | 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 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 | [
{
"task": "ADD",
"id": "1",
"prompt_en": "Add an Adidas logo to the side of the white truck box.",
"prompt_cn": "在卡车侧面的白色货厢上添加一个阿迪达斯标志。",
"source_image": "Part1/image/1.png"
},
{
"task": "ADD",
"id": "2",
"prompt_en": "Add a Los Angeles Lakers Kobe Bryant jersey inside the wooden frame.",
"prompt_cn": "在墙上挂着的木质画框内,添加一件洛杉矶湖人队科比·布莱恩特的球衣。 ",
"source_image": "Part1/image/2.jpg"
},
{
"task": "ADD",
"id": "2",
"prompt_en": "Place a silver metal pen holder containing several black pens to the left of the computer.",
"prompt_cn": "放置一只银色金属笔筒装几支黑笔在电脑的左边。",
"source_image": "Part1/image/2.jpg"
},
{
"task": "ADD",
"id": "8",
"prompt_en": "Add a pink balloon to the panda’s hand on the far right.",
"prompt_cn": "在最右边的熊猫手上加入一个粉色的气球。",
"source_image": "Part1/image/8.jpg"
},
{
"task": "ADD",
"id": "18",
"prompt_en": "Add a steaming ceramic mug of tea to the right of the book on the checkered tablecloth.",
"prompt_cn": "在格子桌布上的书右边添加一个冒着热气的陶瓷茶杯。",
"source_image": "Part1/image/18.jpg"
},
{
"task": "ADD",
"id": "19",
"prompt_en": "Add a happy, jumping golden retriever next to the worker.",
"prompt_cn": "在工人旁边添加一只快乐跳跃的金毛犬。",
"source_image": "Part1/image/19.jpg"
},
{
"task": "ADD",
"id": "20",
"prompt_en": "Add a light wood fruit basket containing fresh apples on the table.",
"prompt_cn": "在桌子上放置一个浅色木质水果篮装着新鲜苹果",
"source_image": "Part1/image/20.jpg"
},
{
"task": "ADD",
"id": "21",
"prompt_en": "Place a small coffee table on the rug in front of the sofa.",
"prompt_cn": "在沙发前面的地毯上放一个小茶几。",
"source_image": "Part1/image/21.png"
},
{
"task": "ADD",
"id": "23",
"prompt_en": "Place a desk in front of the left window against the wall",
"prompt_cn": "在左侧窗前放一张书桌",
"source_image": "Part1/image/23.jpg"
},
{
"task": "ADD",
"id": "23",
"prompt_en": "Hang a painting on the wall between the two central windows",
"prompt_cn": "在两扇窗之间的墙上挂一幅画",
"source_image": "Part1/image/23.jpg"
},
{
"task": "ADD",
"id": "1",
"prompt_en": "Add another identical coffee mug next to it.",
"prompt_cn": "在现有咖啡杯旁边再添加一个相同的咖啡杯。",
"source_image": "Part2/Add_Copy/1.png"
},
{
"task": "ADD",
"id": "2",
"prompt_en": "Place an identical armchair opposite the existing one.",
"prompt_cn": "在现有的扶手椅对面放置一把一模一样的扶手椅。",
"source_image": "Part2/Add_Copy/2.png"
},
{
"task": "ADD",
"id": "3",
"prompt_en": "Add another identical hot air balloon in the lower left area.",
"prompt_cn": "在图像的左下区域添加另一个相同的热气球。",
"source_image": "Part2/Add_Copy/3.png"
},
{
"task": "ADD",
"id": "4",
"prompt_en": "Add an identical streetlight on the other side of the road..",
"prompt_cn": "在道路的对面添加一盏相同的路灯。",
"source_image": "Part2/Add_Copy/4.png"
},
{
"task": "ADD",
"id": "6",
"prompt_en": "Add another identical picnic basket on the opposite corner.",
"prompt_cn": "在毯子对角的另一角落添加一个相同的野餐篮。",
"source_image": "Part2/Add_Copy/6.png"
},
{
"task": "ADD",
"id": "7",
"prompt_en": "Add another identical duck swimming behind the first one.",
"prompt_cn": "在第一只鸭子后面再添加一只完全相同的正在游泳的鸭子。",
"source_image": "Part2/Add_Copy/7.png"
},
{
"task": "ADD",
"id": "8",
"prompt_en": "Add an identical burger next to the existing one.",
"prompt_cn": "在现在的汉堡旁边加入一个和现在汉堡一模一样的汉堡。",
"source_image": "Part2/Add_Copy/8.png"
},
{
"task": "ADD",
"id": "9",
"prompt_en": "Add another identical pigeon perched on the other end of the bench.",
"prompt_cn": "在长椅的另一端再添加一只相同的鸽子栖息着。",
"source_image": "Part2/Add_Copy/9.png"
},
{
"task": "ADD",
"id": "10",
"prompt_en": "Place a pillow identical to the one on the left side of the sofa in the right corner of the sofa.”",
"prompt_cn": "在沙发右侧角落放置一个和沙发左侧相同的抱枕。",
"source_image": "Part2/Add_Copy/10.png"
},
{
"task": "ADD",
"id": "11",
"prompt_en": "Add another identical smartphone next to the first one.",
"prompt_cn": "在第一部智能手机旁边添加另一部相同的智能手机。",
"source_image": "Part2/Add_Copy/11.png"
},
{
"task": "Remove",
"id": "3",
"prompt_en": "Remove the blue overhead traffic sign from the image.",
"prompt_cn": "移除蓝色的交通指路牌。",
"source_image": "Part1/image/3.jpg"
},
{
"task": "Remove",
"id": "3",
"prompt_en": "Remove the rainbow from the sky.",
"prompt_cn": "移除天空中的彩虹。",
"source_image": "Part1/image/3.jpg"
},
{
"task": "Remove",
"id": "5",
"prompt_en": "Remove Golden Panda Sculpture.",
"prompt_cn": "移除金色熊猫雕塑",
"source_image": "Part1/image/5.jpg"
},
{
"task": "Remove",
"id": "10",
"prompt_en": "Remove the magnifying glass from the image.",
"prompt_cn": "移除图中的放大镜 ",
"source_image": "Part1/image/10.jpg"
},
{
"task": "Remove",
"id": "13",
"prompt_en": "Remove the green plant on the cabinet.",
"prompt_cn": "移除柜子上的绿色植物",
"source_image": "Part1/image/13.jpg"
},
{
"task": "Remove",
"id": "16",
"prompt_en": "Remove the robot figure on the right.",
"prompt_cn": "移除右边的机器人公仔",
"source_image": "Part1/image/16.jpg"
},
{
"task": "Remove",
"id": "25",
"prompt_en": "Delete the net in the image.",
"prompt_cn": "删除图像中的篮网。",
"source_image": "Part1/image/25.jpg"
},
{
"task": "Remove",
"id": "27",
"prompt_en": "Remove the heart from the image.",
"prompt_cn": "移除图像中的爱心。",
"source_image": "Part1/image/27.jpg"
},
{
"task": "Remove",
"id": "30",
"prompt_en": "Remove the umbrella in the air.",
"prompt_cn": "移除空中的雨伞。",
"source_image": "Part1/image/30.jpg"
},
{
"task": "Remove",
"id": "36",
"prompt_en": "Remove the framed artwork on the wall above the bed.",
"prompt_cn": "移除床头上方墙上的挂画。",
"source_image": "Part1/image/36.jpg"
},
{
"task": "Remove",
"id": "1",
"prompt_en": "Remove all red objects from the scene.",
"prompt_cn": "从场景中移除所有红色物体。",
"source_image": "Part2/Remove_attribute/1.png"
},
{
"task": "Remove",
"id": "4",
"prompt_en": "Take out all the glassware from the table.",
"prompt_cn": "将桌面上的所有玻璃器皿移除。",
"source_image": "Part2/Remove_attribute/4.png"
},
{
"task": "Remove",
"id": "6",
"prompt_en": "Remove all the blue cars.",
"prompt_cn": "移除所有蓝色的汽车。",
"source_image": "Part2/Remove_attribute/6.png"
},
{
"task": "Remove",
"id": "7",
"prompt_en": "Remove all writing instruments.",
"prompt_cn": "移除所有书写工具。",
"source_image": "Part2/Remove_attribute/7.png"
},
{
"task": "Remove",
"id": "8",
"prompt_en": "Remove all leather furniture.",
"prompt_cn": "移除所有皮革家具。",
"source_image": "Part2/Remove_attribute/8.png"
},
{
"task": "Remove",
"id": "10",
"prompt_en": "Remove all black items.",
"prompt_cn": "从图像中移除所有黑色物品。",
"source_image": "Part2/Remove_attribute/10.png"
},
{
"task": "Remove",
"id": "11",
"prompt_en": "Remove the broken cookies.",
"prompt_cn": "移除破碎的饼干。",
"source_image": "Part2/Remove_attribute/11.png"
},
{
"task": "Remove",
"id": "12",
"prompt_en": "Remove all spherical objects.",
"prompt_cn": "移除所有球形物体。",
"source_image": "Part2/Remove_attribute/12.png"
},
{
"task": "Remove",
"id": "13",
"prompt_en": "Remove all meat products.",
"prompt_cn": "移除所有肉类食品。",
"source_image": "Part2/Remove_attribute/13.png"
},
{
"task": "Remove",
"id": "14",
"prompt_en": "Remove all electronic devices.",
"prompt_cn": "移除所有电子设备。",
"source_image": "Part2/Remove_attribute/14.png"
},
{
"task": "Remove",
"id": "1",
"prompt_en": "Remove the armchair on the left side.",
"prompt_cn": "删除图像左侧的扶手椅。",
"source_image": "Part2/Remove_spatial/1.png"
},
{
"task": "Remove",
"id": "2",
"prompt_en": "Remove the ceramic vase located in the center of the image.",
"prompt_cn": "移除中间的陶瓷花瓶。",
"source_image": "Part2/Remove_spatial/2.png"
},
{
"task": "Remove",
"id": "3",
"prompt_en": "Remove the plant on the far right.",
"prompt_cn": "移除最右侧的那盆植物。",
"source_image": "Part2/Remove_spatial/3.png"
},
{
"task": "Remove",
"id": "4",
"prompt_en": "Remove the top book from the stack on the right side of the image.",
"prompt_cn": "移除右边最上面的那本书。",
"source_image": "Part2/Remove_spatial/4.png"
},
{
"task": "Remove",
"id": "6",
"prompt_en": "Remove the vehicle that is nearest to the traffic sign.",
"prompt_cn": "移除离交通指示牌最近的车辆。",
"source_image": "Part2/Remove_spatial/6.png"
},
{
"task": "Remove",
"id": "7",
"prompt_en": "Remove the vehicle that is farther away from the camera.",
"prompt_cn": "移除离镜头更远的车辆。",
"source_image": "Part2/Remove_spatial/7.png"
},
{
"task": "Remove",
"id": "8",
"prompt_en": "Remove the pillow on the right.",
"prompt_cn": "移除右侧的枕头。",
"source_image": "Part2/Remove_spatial/8.png"
},
{
"task": "Remove",
"id": "9",
"prompt_en": "Remove the sneaker on the left.",
"prompt_cn": "移除左侧的运动鞋。",
"source_image": "Part2/Remove_spatial/9.png"
},
{
"task": "Remove",
"id": "10",
"prompt_en": "Remove the plate closest to the camera.",
"prompt_cn": "移除距离相机最近的那个盘子。",
"source_image": "Part2/Remove_spatial/10.png"
},
{
"task": "Remove",
"id": "11",
"prompt_en": "Remove the water bottle on the right.",
"prompt_cn": "删除右侧的水瓶。",
"source_image": "Part2/Remove_spatial/11.png"
},
{
"task": "Replace",
"id": "28",
"prompt_en": "Replace the small beige pillow on the right side of the table with a vintage metal lantern.",
"prompt_cn": "将桌子右侧的米白色小抱枕换成一个复古金属小风灯",
"source_image": "Part1/image/28.jpg"
},
{
"task": "Replace",
"id": "42",
"prompt_en": "Replace the pink knitted baby booties with a pink knitted baby hat featuring a large bow or a pom-pom.",
"prompt_cn": "将粉色的针织婴儿鞋改为一顶带有大蝴蝶结或绒球的粉色针织婴儿帽 ",
"source_image": "Part1/image/42.jpg"
},
{
"task": "Replace",
"id": "73",
"prompt_en": "Replace the laptop with a rose-gold tablet computer showing a colorful home screen.",
"prompt_cn": "将笔记本电脑替换为一台玫瑰金色平板电脑,屏幕上显示彩色主界面。",
"source_image": "Part1/image/73.jpg"
},
{
"task": "Replace",
"id": "82",
"prompt_en": "Replace the light above the door with a surveillance camera.",
"prompt_cn": "将门上方的灯替换为一个监控摄像头。",
"source_image": "Part1/image/82.jpg"
},
{
"task": "Replace",
"id": "93",
"prompt_en": "Replace the trash can closest to the camera on the right side of the sidewalk with a vending machine.",
"prompt_cn": "把道路右边的人行道离镜头最近的垃圾桶替换成一个自动售货机。",
"source_image": "Part1/image/93.jpg"
},
{
"task": "Replace",
"id": "95",
"prompt_en": "Replace the mug with a DSLR camera.",
"prompt_cn": "将杯子替换为一台单反相机。",
"source_image": "Part1/image/95.jpg"
},
{
"task": "Replace",
"id": "97",
"prompt_en": "Replace the left painting with a world map.",
"prompt_cn": "将左侧画作换成一幅世界地图。",
"source_image": "Part1/image/97.jpg"
},
{
"task": "Replace",
"id": "99",
"prompt_en": "Replace the wooden bench with a bicycle.",
"prompt_cn": "将木长椅替换为一辆自行车。",
"source_image": "Part1/image/99.jpg"
},
{
"task": "Replace",
"id": "111",
"prompt_en": "Change the dog sitting next to the woman into a cat on the grass.",
"prompt_cn": "把紧挨女子身边的那只狗改成一只猫",
"source_image": "Part1/image/111.jpg"
},
{
"task": "Replace",
"id": "113",
"prompt_en": "Replace the pitcher on the windowsill with a desk lamp.",
"prompt_cn": "将窗台上的陶壶替换成一盏台灯。",
"source_image": "Part1/image/113.jpg"
},
{
"task": "Change_color_size",
"id": "100",
"prompt_en": "Resize the pigeon on the right to be the same size as the one on the left.",
"prompt_cn": "将右边的鸽子变得和左边一样大。",
"source_image": "Part1/image/100.jpg"
},
{
"task": "Change_color_size",
"id": "112",
"prompt_en": "Change the color of the wooden garage door to a dark navy blue.",
"prompt_cn": "将车库木门的颜色改为深海军蓝色。",
"source_image": "Part1/image/112.jpg"
},
{
"task": "Change_color_size",
"id": "113",
"prompt_en": "Change the curtain color from white to dark blue.",
"prompt_cn": "将窗帘的颜色从白色改为深蓝色。",
"source_image": "Part1/image/113.jpg"
},
{
"task": "Change_color_size",
"id": "121",
"prompt_en": "Change the jockey’s red helmet on the leading horse to bright neon green.",
"prompt_cn": "将前方赛马骑手的红色头盔改为鲜亮的荧光绿色。\n",
"source_image": "Part1/image/121.jpg"
},
{
"task": "Change_color_size",
"id": "122",
"prompt_en": "Resize the hot air balloon on the right to match the size of the one on the left.",
"prompt_cn": "将右侧的热气球调整为与左侧热气球相同的大小。",
"source_image": "Part1/image/122.jpg"
},
{
"task": "Change_color_size",
"id": "124",
"prompt_en": "Change the chair upholstery color from yellow-green to dark navy blue.",
"prompt_cn": "将椅子的布面颜色从黄绿色改为深海军蓝色。",
"source_image": "Part1/image/124.jpg"
},
{
"task": "Change_color_size",
"id": "137",
"prompt_en": "Make the stuffed bunny on the bed twice as large.",
"prompt_cn": "将床上的毛绒兔子尺寸放大为原来的两倍。\n",
"source_image": "Part1/image/137.jpg"
},
{
"task": "Change_color_size",
"id": "140",
"prompt_en": "Reduce the refrigerator to half of its current height while keeping its proportions.",
"prompt_cn": "把冰箱缩小到现在的一半高度,但保持比例不变。",
"source_image": "Part1/image/140.jpg"
},
{
"task": "Change_color_size",
"id": "142",
"prompt_en": "Change the color of the plant question-mark sculpture to bright yellow.",
"prompt_cn": "将植物问号雕塑的颜色改为亮黄色。",
"source_image": "Part1/image/142.jpg"
},
{
"task": "Change_color_size",
"id": "155",
"prompt_en": "Change the armchair on the right to light green.",
"prompt_cn": "将右边的扶手椅改为浅绿色。",
"source_image": "Part1/image/155.jpg"
},
{
"task": "Style_Transfer",
"id": "73",
"prompt_en": "Convert the scene into a vintage 1970s film photo with grain and warm tones.",
"prompt_cn": "将场景转换为带颗粒感和暖色调的 1970 年代复古胶片照片风格。",
"source_image": "Part1/image/73.jpg"
},
{
"task": "Style_Transfer",
"id": "75",
"prompt_en": "Convert the image into an 8-bit pixel art style.",
"prompt_cn": "将图像转换为 8 位像素画风格。",
"source_image": "Part1/image/75.webp"
},
{
"task": "Style_Transfer",
"id": "79",
"prompt_en": "Transform the image into a Fantasy Art style.",
"prompt_cn": "将图像改为奇幻艺术风格。",
"source_image": "Part1/image/79.jpg"
},
{
"task": "Style_Transfer",
"id": "82",
"prompt_en": "Transform the scene into a pencil sketch style.",
"prompt_cn": "将场景转换为铅笔素描风格。",
"source_image": "Part1/image/82.jpg"
},
{
"task": "Style_Transfer",
"id": "93",
"prompt_en": "Transform the image into a Cubism style.",
"prompt_cn": "将图像转化为立体主义风格。",
"source_image": "Part1/image/93.jpg"
},
{
"task": "Style_Transfer",
"id": "96",
"prompt_en": "Convert the image into a highly realistic, cinematic HDR style.",
"prompt_cn": "将图像转换为高度写实的电影级 HDR 风格。",
"source_image": "Part1/image/96.jpg"
},
{
"task": "Style_Transfer",
"id": "97",
"prompt_en": "Change the painting on the left side of the wall to a Cyberpunk style.",
"prompt_cn": "将墙上左面那幅画换为赛博朋克风格。",
"source_image": "Part1/image/97.jpg"
},
{
"task": "Style_Transfer",
"id": "98",
"prompt_en": "Transform the image into a minimalist flat illustration.",
"prompt_cn": "将图像转换为极简扁平插画风格。",
"source_image": "Part1/image/98.jpg"
},
{
"task": "Style_Transfer",
"id": "99",
"prompt_en": "Transform this image into a Pop Art style.",
"prompt_cn": "将这个图像改为波普艺术风格。",
"source_image": "Part1/image/99.jpg"
},
{
"task": "Style_Transfer",
"id": "101",
"prompt_en": "Transform the entire image into a 3D cartoon rendering style.",
"prompt_cn": "将整张图片转为3D卡通渲染风格。",
"source_image": "Part1/image/101.jpg"
},
{
"task": "Extract",
"id": "10",
"prompt_en": "Extract the airplane model from the image, keeping its position, orientation, and pose unchanged, and replace the background with pure white.",
"prompt_cn": "提取出图中的飞机模型,保持其位置、朝向和姿态不变,并将背景替换为纯白色。",
"source_image": "Part1/image/10.jpg"
},
{
"task": "Extract",
"id": "16",
"prompt_en": "Extract the robot figure on the left, keeping its position, orientation, and pose unchanged, and replace the background with pure white.",
"prompt_cn": "提取出左边的机器人公仔,保持其位置、朝向和姿态不变,并将背景替换为纯白色。",
"source_image": "Part1/image/16.jpg"
},
{
"task": "Extract",
"id": "38",
"prompt_en": "Extract the bench from the image, keeping its position, orientation, and pose unchanged, and replace the background with pure white.",
"prompt_cn": "提取出图像中的长椅,保持其位置、朝向和姿态不变,并将背景替换为纯白色。",
"source_image": "Part1/image/38.jpg"
},
{
"task": "Extract",
"id": "39",
"prompt_en": "Extract the boy riding the bicycle and his bicycle, keeping its position, orientation, and pose unchanged, and replace the background with pure white.",
"prompt_cn": "提取图像中骑自行车的男孩及其自行车,保持其位置、朝向和姿态不变,并将背景替换为纯白色。",
"source_image": "Part1/image/39.jpg"
},
{
"task": "Extract",
"id": "47",
"prompt_en": "Extract the hanging clock on the side of the building, keeping its position, orientation, and pose unchanged, and replace the background with pure white.",
"prompt_cn": "提取建筑物侧面的挂钟,保持其位置、朝向和姿态不变,并将背景替换为纯白色。 ",
"source_image": "Part1/image/47.jpg"
},
{
"task": "Extract",
"id": "53",
"prompt_en": "Extract the hat from the image, keeping its position, orientation, and pose unchanged, and replace the background with pure white.",
"prompt_cn": "提取图片中的帽子,保持其位置、朝向和姿态不变,并将背景替换为纯白色。",
"source_image": "Part1/image/53.jpg"
},
{
"task": "Extract",
"id": "59",
"prompt_en": "Extract the yellow lounge chair, keeping its position, orientation, and pose unchanged, and replace the background with pure white.",
"prompt_cn": "提取出这个黄色的躺椅,保持其位置、朝向和姿态不变,并将背景替换为纯白色。",
"source_image": "Part1/image/59.jpg"
},
{
"task": "Extract",
"id": "80",
"prompt_en": "Extract the metal lantern from the image, keeping its position, orientation, and pose unchanged, and replace the background with pure white.",
"prompt_cn": "提取出图像中的金属灯笼,保持其位置、朝向和姿态不变,并将背景替换为纯白色。",
"source_image": "Part1/image/80.jpg"
},
{
"task": "Extract",
"id": "84",
"prompt_en": "Extract the yellow motorcycle from the image, keeping its position, orientation, and pose unchanged, and replace the background with pure white.",
"prompt_cn": "提取出黄色的摩托车,保持其位置、朝向和姿态不变,并将背景替换为纯白色。",
"source_image": "Part1/image/84.jpg"
},
{
"task": "Extract",
"id": "85",
"prompt_en": "Extract the blue Easter egg and its egg holder in the center, keeping its position, orientation, and pose unchanged, and replace the background with pure white.",
"prompt_cn": "提取出中间的蓝色彩蛋和蛋托,保持其位置、朝向和姿态不变,并将背景替换为纯白色。",
"source_image": "Part1/image/85.jpg"
},
{
"task": "Change_Material",
"id": "1",
"prompt_en": "Change the sofa material to red velvet.",
"prompt_cn": "将沙发的材质更改为红色天鹅绒。",
"source_image": "Part2/Change_material/1.jpg"
},
{
"task": "Change_Material",
"id": "2",
"prompt_en": "Make the armchair made of brown leather.",
"prompt_cn": "将扶手椅的材质改为棕色皮革。",
"source_image": "Part2/Change_material/2.jpg"
},
{
"task": "Change_Material",
"id": "3",
"prompt_en": "Turn the dining chair into a wooden one.",
"prompt_cn": "将这把餐椅变成一把木制餐椅。",
"source_image": "Part2/Change_material/3.jpg"
},
{
"task": "Change_Material",
"id": "4",
"prompt_en": "Change the pillows to linen material.",
"prompt_cn": "将枕头更改为亚麻材质。",
"source_image": "Part2/Change_material/4.jpg"
},
{
"task": "Change_Material",
"id": "5",
"prompt_en": "Make the tablecloth silk.",
"prompt_cn": "将桌布的材质改为丝绸。",
"source_image": "Part2/Change_material/5.jpg"
},
{
"task": "Change_Material",
"id": "7",
"prompt_en": "Replace the curtains with blue ones made of cotton-linen.",
"prompt_cn": "把窗帘换成蓝色的棉麻材质。",
"source_image": "Part2/Change_material/7.jpg"
},
{
"task": "Change_Material",
"id": "8",
"prompt_en": "Change the material of the bean bag chair to leather.",
"prompt_cn": "将懒人沙发材质改为皮革材质。",
"source_image": "Part2/Change_material/8.jpg"
},
{
"task": "Change_Material",
"id": "9",
"prompt_en": "Change the carpet to woven velvet.",
"prompt_cn": "把地毯变成编织丝绒材质。",
"source_image": "Part2/Change_material/9.jpg"
},
{
"task": "Change_Material",
"id": "11",
"prompt_en": "Make the coffee table out of glass.",
"prompt_cn": "将咖啡桌改为玻璃材质。",
"source_image": "Part2/Change_material/11.jpg"
},
{
"task": "Change_Material",
"id": "12",
"prompt_en": "Change the table material to marble.",
"prompt_cn": "将桌子的材质更改为大理石。",
"source_image": "Part2/Change_material/12.jpg"
},
{
"task": "Change_Background",
"id": "144",
"prompt_en": "Keep the foreground rocks and nearby water unchanged, and change the background to polar glacier mountains covered in ice and snow.",
"prompt_cn": "保持前景岩石和近处水域不变,将背景改为被冰雪覆盖的极地冰川山脉。",
"source_image": "Part1/image/144.jpg"
},
{
"task": "Change_Background",
"id": "76",
"prompt_en": "Keep the globe and all dolls unchanged, and change the background to a night sky with a clear Milky Way and nebulae.",
"prompt_cn": "保持地球仪和所有玩偶不变,将背景改为夜晚星空,有清晰的银河和星云。",
"source_image": "Part1/image/76.jpg"
},
{
"task": "Change_Background",
"id": "81",
"prompt_en": "Keep the dog unchanged and change the background to the interior of a library filled with bookshelves.",
"prompt_cn": "保持狗不变,将背景改为书架林立的图书馆内部。",
"source_image": "Part1/image/81.jpg"
},
{
"task": "Change_Background",
"id": "92",
"prompt_en": "Keep the child, kite, and bicycle unchanged, and change the background to snow‑covered mountains under a clear blue sky.",
"prompt_cn": "保持小孩、风筝和自行车不变,将背景改为在晴朗蓝天下的雪山景色。",
"source_image": "Part1/image/92.jpg"
},
{
"task": "Change_Background",
"id": "98",
"prompt_en": "Keep the bicycle, flowers, and watering can unchanged, and change the background to a sandy beach with the ocean and blue sky.",
"prompt_cn": "保持自行车、花朵和浇水壶不变,将背景改为有海浪和蓝天的沙滩。",
"source_image": "Part1/image/98.jpg"
},
{
"task": "Change_Background",
"id": "105",
"prompt_en": "Keep the fruits and bowl unchanged, and change the background to an indoor kitchen countertop with cabinets.",
"prompt_cn": "保持水果和碗不变,将背景改为室内厨房料理台和橱柜。",
"source_image": "Part1/image/105.jpg"
},
{
"task": "Change_Background",
"id": "114",
"prompt_en": "Keep the man and buildings unchanged, and change the background sky to a starry night with the Milky Way visible.",
"prompt_cn": "保持男子和建筑不变,将背景天空改为可见银河的星空夜景。",
"source_image": "Part1/image/114.jpg"
},
{
"task": "Change_Background",
"id": "133",
"prompt_en": "Keep the car unchanged, and change the background to a city highway at night.",
"prompt_cn": "保持汽车不变,将背景改为夜晚的城市高速公路。",
"source_image": "Part1/image/133.jpg"
},
{
"task": "Change_Background",
"id": "156",
"prompt_en": "Keep the lighthouse unchanged, and change the background to a snowy Arctic landscape with icebergs.",
"prompt_cn": "保持灯塔不变,将背景改为带有冰山的北极雪景。",
"source_image": "Part1/image/156.jpg"
},
{
"task": "Change_Background",
"id": "158",
"prompt_en": "Keep the lighthouse unchanged and change the background to a busy modern harbor with container ships and cranes.",
"prompt_cn": "保持灯塔不变,将背景改为有集装箱船和起重机的繁忙现代港口。",
"source_image": "Part1/image/158.jpg"
},
{
"task": "Action",
"id": "2",
"prompt_en": "Make the cat open its eyes.",
"prompt_cn": "让这只猫把眼睛睁开。",
"source_image": "Part2/Action/2.jpg"
},
{
"task": "Action",
"id": "3",
"prompt_en": "Set the bicycle upright.",
"prompt_cn": "将自行车摆放成直立状态。",
"source_image": "Part2/Action/3.jpg"
},
{
"task": "Action",
"id": "4",
"prompt_en": "Make the Minion hold a bouquet of flowers.",
"prompt_cn": "让小黄人拿着一束花。",
"source_image": "Part2/Action/4.png"
},
{
"task": "Action",
"id": "5",
"prompt_en": "Make the boy look like he is talking on the phone.",
"prompt_cn": "让男孩看起来好像正在打电话。",
"source_image": "Part2/Action/5.png"
},
{
"task": "Action",
"id": "6",
"prompt_en": "Make this Pikachu jump up to pick the fruit.",
"prompt_cn": "让这只皮卡丘跳起来去摘水果。",
"source_image": "Part2/Action/6.png"
},
{
"task": "Action",
"id": "7",
"prompt_en": "Have the girl who is taking the phone photo make a peace sign with her free hand.",
"prompt_cn": "让正在用手机拍照的女生,用另一只空着的手做出一个“耶”的手势。",
"source_image": "Part2/Action/7.png"
},
{
"task": "Action",
"id": "8",
"prompt_en": "Have the dog place its paws on the computer and work hard.",
"prompt_cn": "让这只狗把爪子放在电脑上,看起来在努力工作。",
"source_image": "Part2/Action/8.jpg"
},
{
"task": "Action",
"id": "9",
"prompt_en": "Position the girl lying on the chair.",
"prompt_cn": "让女孩躺在椅子上。",
"source_image": "Part2/Action/9.png"
},
{
"task": "Action",
"id": "10",
"prompt_en": "Make the girl pull the machine downward.",
"prompt_cn": "让这个女孩把器械向下拉。",
"source_image": "Part2/Action/10.png"
},
{
"task": "Action",
"id": "11",
"prompt_en": "Have the girl grip the lat pulldown machine with her hands.",
"prompt_cn": "让这个女孩用手握住高位下拉的器械。",
"source_image": "Part2/Action/11.png"
},
{
"task": "Move",
"id": "1",
"prompt_en": "Move the letter V to the right of the letter E, move the letter O to the right of V, and move the letter L to the right of O.",
"prompt_cn": "将字母 V 移动到字母 E 的右侧,然后将字母 O 移动到 V 的右侧,再将字母 L 移动到 O 的右侧。",
"source_image": "Part2/Move/1.jpg"
},
{
"task": "Move",
"id": "2",
"prompt_en": "Move the single cherry tomato onto the spoon.”",
"prompt_cn": "将那颗单独的樱桃番茄移到勺子上。",
"source_image": "Part2/Move/2.jpg"
},
{
"task": "Move",
"id": "3",
"prompt_en": "Move the candies outside the jar into the box.",
"prompt_cn": "将罐子外面的糖果移入盒子中。",
"source_image": "Part2/Move/3.jpg"
},
{
"task": "Move",
"id": "4",
"prompt_en": "Move the chair to the right side of the sofa.",
"prompt_cn": "将椅子移动到沙发的右侧。",
"source_image": "Part2/Move/4.jpg"
},
{
"task": "Move",
"id": "5",
"prompt_en": "Move the robot to the left.",
"prompt_cn": "将机器人移动到左侧。",
"source_image": "Part2/Move/5.jpg"
},
{
"task": "Move",
"id": "6",
"prompt_en": "Move the SIM card into the slot.",
"prompt_cn": "将这张 SIM 卡移动到插槽中。",
"source_image": "Part2/Move/6.jpg"
},
{
"task": "Move",
"id": "7",
"prompt_en": "Move the coffee cup to the bottom-right corner of the image.",
"prompt_cn": "将咖啡杯移动到右下角。",
"source_image": "Part2/Move/7.jpg"
},
{
"task": "Move",
"id": "8",
"prompt_en": "Move the soccer ball to the other foot.",
"prompt_cn": "将足球移动到另一只脚上。",
"source_image": "Part2/Move/8.jpg"
},
{
"task": "Move",
"id": "9",
"prompt_en": "Move the paper clip to the right.",
"prompt_cn": "将纸夹移动到右侧。",
"source_image": "Part2/Move/9.jpg"
},
{
"task": "Move",
"id": "10",
"prompt_en": "Move the cards to the correct positions to complete the puzzle.",
"prompt_cn": "将这些拼图块移动到正确的位置以完成拼图。",
"source_image": "Part2/Move/10.jpg"
},
{
"task": "Swap",
"id": "1",
"prompt_en": "Swap the positions of the cup and the spoon.",
"prompt_cn": "交换杯子和勺子的的位置。",
"source_image": "Part2/Swap/1.jpg"
},
{
"task": "Swap",
"id": "2",
"prompt_en": "Swap the positions of the J card and the Q card.",
"prompt_cn": "交换 J 牌和 Q 牌的位置。",
"source_image": "Part2/Swap/2.png"
},
{
"task": "Swap",
"id": "3",
"prompt_en": "Swap the positions of the pen and the headphones.",
"prompt_cn": "交换笔和耳机的位置。",
"source_image": "Part2/Swap/3.jpg"
},
{
"task": "Swap",
"id": "4",
"prompt_en": "Swap the positions of the coffee cup and the vase.",
"prompt_cn": "将咖啡杯和花瓶的位置互相对调。",
"source_image": "Part2/Swap/4.jpg"
},
{
"task": "Swap",
"id": "5",
"prompt_en": "Swap the positions of the two people.",
"prompt_cn": "交换这两个人的位置。",
"source_image": "Part2/Swap/5.jpg"
},
{
"task": "Swap",
"id": "6",
"prompt_en": "Exchange the cup of coffee with the glass of water.",
"prompt_cn": "将咖啡杯与玻璃水杯互相对调。",
"source_image": "Part2/Swap/6.png"
},
{
"task": "Swap",
"id": "7",
"prompt_en": "Swap the fork and the knife.",
"prompt_cn": "交换叉子和刀子的摆放位置。",
"source_image": "Part2/Swap/7.png"
},
{
"task": "Swap",
"id": "8",
"prompt_en": "Swap the positions of the red apple and the green pear.",
"prompt_cn": "交换红色苹果和绿色梨的位置。",
"source_image": "Part2/Swap/8.png"
},
{
"task": "Swap",
"id": "9",
"prompt_en": "Switch the positions of the salt shaker and the pepper shaker.",
"prompt_cn": "交换盐瓶和胡椒瓶的位置。",
"source_image": "Part2/Swap/9.png"
},
{
"task": "Swap",
"id": "10",
"prompt_en": "Swap the chocolate cake and the donut.",
"prompt_cn": "交换巧克力蛋糕和甜甜圈的位置。",
"source_image": "Part2/Swap/10.png"
},
{
"task": "Object_Interaction",
"id": "1",
"prompt_en": "Have the boy perform a bicep curl with the dumbbells next to him.",
"prompt_cn": "让男孩用他旁边的哑铃做一个二头肌弯举动作。",
"source_image": "Part2/Obj_interaction/1.jpg"
},
{
"task": "Object_Interaction",
"id": "2",
"prompt_en": "Have the girl pick up the two dumbbells at her feet and perform a chest press.",
"prompt_cn": "让女孩捡起脚边的两个哑铃并进行卧推动作。",
"source_image": "Part2/Obj_interaction/2.png"
},
{
"task": "Object_Interaction",
"id": "3",
"prompt_en": "Have the girl practice lat pulldowns.",
"prompt_cn": "让这个女孩做高位下拉动作。",
"source_image": "Part2/Obj_interaction/3.png"
},
{
"task": "Object_Interaction",
"id": "4",
"prompt_en": "Have this girl practice seated hip abduction.",
"prompt_cn": "让这个女孩做坐姿髋外展训练。",
"source_image": "Part2/Obj_interaction/4.png"
},
{
"task": "Object_Interaction",
"id": "5",
"prompt_en": "Make the man and woman hug each other tightly.",
"prompt_cn": "让这名男子和女子紧紧拥抱在一起。",
"source_image": "Part2/Obj_interaction/5.jpg"
},
{
"task": "Object_Interaction",
"id": "6",
"prompt_en": "Make the bride and groom kiss.",
"prompt_cn": "让新娘和新郎亲吻。",
"source_image": "Part2/Obj_interaction/6.jpg"
},
{
"task": "Object_Interaction",
"id": "7",
"prompt_en": "Make the boy and girl hold hands.",
"prompt_cn": "让这个男孩和这个女孩牵着手。",
"source_image": "Part2/Obj_interaction/7.jpg"
},
{
"task": "Object_Interaction",
"id": "9",
"prompt_en": "Have the boy hold the nearby bottle of Coke in his right hand and make him appear to be drinking it.",
"prompt_cn": "让这个男孩右手拿着旁边的可乐,并做出正在喝的动作。",
"source_image": "Part2/Obj_interaction/9.png"
},
{
"task": "Object_Interaction",
"id": "10",
"prompt_en": "Make the two boys bump fists.",
"prompt_cn": "让两个男生正在进行碰拳的动作。",
"source_image": "Part2/Obj_interaction/10.jpg"
},
{
"task": "Object_Interaction",
"id": "11",
"prompt_en": "Make the two players high five.",
"prompt_cn": "让这两名球员互相击掌。",
"source_image": "Part2/Obj_interaction/11.jpg"
},
{
"task": "Emotion_Change",
"id": "2",
"prompt_en": "Replace the smiling balloon with a frowning one.",
"prompt_cn": "将微笑的气球替换为一个皱眉的气球。",
"source_image": "Part2/emotion_change/2.jpg"
},
{
"task": "Emotion_Change",
"id": "3",
"prompt_en": "Make the cat look very fierce.”",
"prompt_cn": "让这只猫看起来非常凶猛。",
"source_image": "Part2/emotion_change/3.jpg"
},
{
"task": "Emotion_Change",
"id": "4",
"prompt_en": "Make the boy sink into deep thought.",
"prompt_cn": "让这个男孩看起来正在深思。",
"source_image": "Part2/emotion_change/4.jpg"
},
{
"task": "Emotion_Change",
"id": "5",
"prompt_en": "Make him smiling broadly.",
"prompt_cn": "让他开怀大笑,露出灿烂的笑容。",
"source_image": "Part2/emotion_change/5.jpg"
},
{
"task": "Emotion_Change",
"id": "6",
"prompt_en": "Make the baby laughing happily.",
"prompt_cn": "让婴儿开心地笑起来。",
"source_image": "Part2/emotion_change/6.jpg"
},
{
"task": "Emotion_Change",
"id": "7",
"prompt_en": "Make the cat look happy and smiling.",
"prompt_cn": "让这只猫看起来开心并带着微笑。",
"source_image": "Part2/emotion_change/7.jpg"
},
{
"task": "Emotion_Change",
"id": "9",
"prompt_en": "Make her laughing with her mouth open.",
"prompt_cn": "让她张开嘴笑出来。",
"source_image": "Part2/emotion_change/9.jpg"
},
{
"task": "Emotion_Change",
"id": "13",
"prompt_en": "Make him look relieved and happy.",
"prompt_cn": "让他看起来放松、如释重负并且开心。",
"source_image": "Part2/emotion_change/13.jpg"
},
{
"task": "Emotion_Change",
"id": "16",
"prompt_en": "Make her look disappointed and frowning.",
"prompt_cn": "让她看起来很失望,并且皱着眉头。",
"source_image": "Part2/emotion_change/16.jpg"
},
{
"task": "Emotion_Change",
"id": "20",
"prompt_en": "Make the baby about to cry.",
"prompt_cn": "让这名婴儿看起来好像快要哭出来。",
"source_image": "Part2/emotion_change/20.jpg"
},
{
"task": "Casual_Aware",
"id": "1",
"prompt_en": "Remove the first book beneath the telescope.",
"prompt_cn": "移除望远镜下方最上面的那本书。",
"source_image": "Part2/Casual_Reason/1.jpg"
},
{
"task": "Casual_Aware",
"id": "2",
"prompt_en": "Remove the toys from the box.",
"prompt_cn": "将玩具从盒子中移除。",
"source_image": "Part2/Casual_Reason/2.jpg"
},
{
"task": "Casual_Aware",
"id": "3",
"prompt_en": "Break the horizontally placed can of cola.",
"prompt_cn": "把水平放置的可乐罐弄破。",
"source_image": "Part2/Casual_Reason/3.jpg"
},
{
"task": "Casual_Aware",
"id": "4",
"prompt_en": "What will happen to this blood pressure monitor if the person has low blood pressure?",
"prompt_cn": "如果这个人患有低血压,这个血压监测仪会发生什么情况?",
"source_image": "Part2/Casual_Reason/4.jpg"
},
{
"task": "Casual_Aware",
"id": "5",
"prompt_en": "Pour water from the teapot held in the hand into the teacup shown in the image.",
"prompt_cn": "使用图片中手握着的茶壶向图中的茶碗倒水。",
"source_image": "Part2/Casual_Reason/5.jpg"
},
{
"task": "Casual_Aware",
"id": "6",
"prompt_en": "What will happen if you place a book on top of the bag?",
"prompt_cn": "如果你把一本书放在这个袋子上面,会发生什么情况?",
"source_image": "Part2/Casual_Reason/6.jpg"
},
{
"task": "Casual_Aware",
"id": "7",
"prompt_en": "What will happen if you push the yellow button on the tape measure upward?",
"prompt_cn": "如果你向上推卷尺上的黄色按钮,会发生什么?",
"source_image": "Part2/Casual_Reason/7.jpg"
},
{
"task": "Casual_Aware",
"id": "8",
"prompt_en": "Close the lighter’s lid.",
"prompt_cn": "合上打火机盖。",
"source_image": "Part2/Casual_Reason/8.jpg"
},
{
"task": "Casual_Aware",
"id": "9",
"prompt_en": "What will happen if you poke the balloon with a needle?",
"prompt_cn": "如果你用针扎气球会发生什么?",
"source_image": "Part2/Casual_Reason/9.jpg"
},
{
"task": "Casual_Aware",
"id": "10",
"prompt_en": "What will happen if you cut the kite’s tether line?",
"prompt_cn": "如果你剪断风筝的系绳,会发生什么?",
"source_image": "Part2/Casual_Reason/10.jpg"
},
{
"task": "Time_Aware",
"id": "tr_001",
"prompt_en": "What happens to a banana after one month?",
"prompt_cn": "展示这根香蕉在一个月后会变成什么样子。",
"source_image": "Part2/Time_Reason/tr_001.png"
},
{
"task": "Time_Aware",
"id": "tr_002",
"prompt_en": "What will happen to this tire after it has been driven for 50,000 miles?",
"prompt_cn": "这条轮胎在行驶了 50,000 英里之后会发生什么情况?",
"source_image": "Part2/Time_Reason/tr_002.png"
},
{
"task": "Time_Aware",
"id": "tr_003",
"prompt_en": "Show the potato after being left forgotten for one month in a room at room temperature.",
"prompt_cn": "展示这个土豆在常温的房子中被遗忘一个月后的样子",
"source_image": "Part2/Time_Reason/tr_003.png"
},
{
"task": "Time_Aware",
"id": "tr_004",
"prompt_en": "Show the bread after being left in a damp room for a week.",
"prompt_cn": "将面包展示为在潮湿房间里放置一周之后的样子。",
"source_image": "Part2/Time_Reason/tr_004.png"
},
{
"task": "Time_Aware",
"id": "tr_006",
"prompt_en": "Show the flowers after being neglected for two months..",
"prompt_cn": "展示这些花在被忽视两月之后的样子。",
"source_image": "Part2/Time_Reason/tr_006.png"
},
{
"task": "Time_Aware",
"id": "tr_007",
"prompt_en": "Show the appearance of this idle room after being neglected for many years.",
"prompt_cn": "展示这间闲置房间在被忽视多年之后会变成什么样子。",
"source_image": "Part2/Time_Reason/tr_007.png"
},
{
"task": "Time_Aware",
"id": "tr_009",
"prompt_en": "Show what he will look like thirty years from now.",
"prompt_cn": "再过三十年他会变成什么样?",
"source_image": "Part2/Time_Reason/tr_009.png"
},
{
"task": "Time_Aware",
"id": "tr_010",
"prompt_en": "Show the man after he stopped shaving for two months.",
"prompt_cn": "展示这个男人在两个月没有刮胡子之后的样子。",
"source_image": "Part2/Time_Reason/tr_010.png"
},
{
"task": "Time_Aware",
"id": "tr_011",
"prompt_en": "Show how her hair would look after not being cut for one year.",
"prompt_cn": "如果她一年没剪头发会怎么样?",
"source_image": "Part2/Time_Reason/tr_011.png"
},
{
"task": "Time_Aware",
"id": "tr_012",
"prompt_en": "What happens to this candle after it burns for two hours?",
"prompt_cn": "这支蜡烛燃烧两个小时后会发生什么?",
"source_image": "Part2/Time_Reason/tr_012.png"
},
{
"task": "Chemical_Aware",
"id": "1",
"prompt_en": "Based on the blackboard hints, complete the equation for the reaction between phenol and metallic sodium.",
"prompt_cn": "根据黑板上的提示,完成苯酚与金属钠反应的化学方程式。",
"source_image": "Part2/Chemical_Reason/1.png"
},
{
"task": "Chemical_Aware",
"id": "2",
"prompt_en": "Utilize the clues on the board to finish the equation for the reaction of phenol with formaldehyde.",
"prompt_cn": "使用黑板上的线索来完成苯酚与甲醛反应的方程式。",
"source_image": "Part2/Chemical_Reason/2.png"
},
{
"task": "Chemical_Aware",
"id": "3",
"prompt_en": "Complete the chemical equation depicting the catalytic oxidation of isopropanol, following the blackboard notes.",
"prompt_cn": "按照黑板上写的注释,补全表示异丙醇催化氧化的化学方程式。",
"source_image": "Part2/Chemical_Reason/3.png"
},
{
"task": "Chemical_Aware",
"id": "4",
"prompt_en": "Deduce the missing products from the reactants and complete the equation on the blackboard.",
"prompt_cn": "根据反应物推断缺失的生成物,并在黑板上补全该化学方程式。",
"source_image": "Part2/Chemical_Reason/4.png"
},
{
"task": "Chemical_Aware",
"id": "5",
"prompt_en": "As suggested by the blackboard prompt, provide the completed equation for the hydrogenation of toluene.",
"prompt_cn": "如黑板提示所示,请给出甲苯加氢反应的完整化学方程式。",
"source_image": "Part2/Chemical_Reason/5.png"
},
{
"task": "Chemical_Aware",
"id": "6",
"prompt_en": "Fill in the blanks to complete the reaction equation between acetylene and water, using the board's hints.",
"prompt_cn": "根据写在黑板上的提示,填写空格,补全乙炔与水的反应方程式。",
"source_image": "Part2/Chemical_Reason/6.png"
},
{
"task": "Chemical_Aware",
"id": "7",
"prompt_en": "Finish the equation for the reduction reaction of nitrobenzene as indicated by the blackboard.",
"prompt_cn": "根据黑板上的提示,完成硝基苯还原反应的化学方程式。",
"source_image": "Part2/Chemical_Reason/7.png"
},
{
"task": "Chemical_Aware",
"id": "8",
"prompt_en": "Refer to the blackboard hints to complete the given chemical equation.",
"prompt_cn": "请参考黑板上的提示,完成给定的化学方程式。",
"source_image": "Part2/Chemical_Reason/8.png"
},
{
"task": "Chemical_Aware",
"id": "10",
"prompt_en": "Follow the guidance on the blackboard to complete the chemical equation.",
"prompt_cn": "根据黑板上的指导完成该化学方程式。",
"source_image": "Part2/Chemical_Reason/10.png"
},
{
"task": "Chemical_Aware",
"id": "11",
"prompt_en": "Based on the clues provided on the board, fill in the missing parts of the chemical equation.",
"prompt_cn": "根据黑板上提供的线索,补全化学方程式中缺失的部分。",
"source_image": "Part2/Chemical_Reason/11.png"
},
{
"task": "Math_Aware",
"id": "1",
"prompt_en": "Map the 8-bit binary code of the number 62 to the letters of the English word in the image, and remove the letters corresponding to the 0s in the binary code.",
"prompt_cn": "将数字 62 的 8 位二进制编码与图中的英文单词的字母对应,将二进制中为 0 的位置对应的字母删除。",
"source_image": "Part2/Math_Reason/1.png"
},
{
"task": "Math_Aware",
"id": "2",
"prompt_en": "Replace all the dumbbells on the left with a single dumbbell whose weight equals the total weight of all the dumbbells in the picture.",
"prompt_cn": "将左侧所有哑铃替换为一个哑铃,其重量等于图中所有哑铃的总重量。",
"source_image": "Part2/Math_Reason/2.jpg"
},
{
"task": "Math_Aware",
"id": "3",
"prompt_en": "Reorder the lettered blocks from smallest to largest according to the numbers in the bottom right corner.",
"prompt_cn": "根据右下角的数字,由小到大重新排列这些带字母的方块。",
"source_image": "Part2/Math_Reason/3.png"
},
{
"task": "Math_Aware",
"id": "4",
"prompt_en": "Remove one quarter of the pizza.",
"prompt_cn": "移除披萨的四分之一。",
"source_image": "Part2/Math_Reason/4.png"
},
{
"task": "Math_Aware",
"id": "5",
"prompt_en": "Change the number of apples to the square of the current number.",
"prompt_cn": "将苹果的数量更改为当前数量的平方。",
"source_image": "Part2/Math_Reason/5.jpg"
},
{
"task": "Math_Aware",
"id": "6",
"prompt_en": "Add the minimum number of pencils to make the total the smallest two-digit number.",
"prompt_cn": "添加最少数量的铅笔,使铅笔总数变为最小的两位数。",
"source_image": "Part2/Math_Reason/6.jpg"
},
{
"task": "Math_Aware",
"id": "7",
"prompt_en": "Remove one-third of the sparrows.",
"prompt_cn": "移除三分之一的麻雀。",
"source_image": "Part2/Math_Reason/7.jpg"
},
{
"task": "Math_Aware",
"id": "8",
"prompt_en": "Divide these coins equally into 2 piles and show the remaining coins.",
"prompt_cn": "将这些硬币平均分成两堆,并展示剩下的硬币。",
"source_image": "Part2/Math_Reason/8.jpg"
},
{
"task": "Math_Aware",
"id": "9",
"prompt_en": "Add the minimum number of marbles to make the total a prime number.",
"prompt_cn": "添加最少数量的弹珠,使弹珠的总数变为一个质数。",
"source_image": "Part2/Math_Reason/9.jpg"
},
{
"task": "Math_Aware",
"id": "10",
"prompt_en": "Increase the number of ducks to make it a multiple of 3.",
"prompt_cn": "增加鸭子的数量,使它们的总数变为 3 的倍数。",
"source_image": "Part2/Math_Reason/10.jpg"
},
{
"task": "Game_Aware",
"id": "1",
"prompt_en": "Change the minimum number of cards to make it a “Three of a Kind” in Zha Jin Hua.",
"prompt_cn": "改变最少的牌,让他成为炸金花中的豹子。",
"source_image": "Part2/Game/1.png"
},
{
"task": "Game_Aware",
"id": "3",
"prompt_en": "Change the minimum number of cards while keeping the ranks unchanged to make it a “Flush” in Zha Jin Hua.",
"prompt_cn": "改变最少的牌并且保持点数不变,让他成为炸金花中的金花。",
"source_image": "Part2/Game/3.png"
},
{
"task": "Game_Aware",
"id": "4",
"prompt_en": "Change the cards in the image to make it a “Rocket” (pair of jokers) in Dou Di Zhu.",
"prompt_cn": "改变图中的牌,让他变为斗地主中的王炸。",
"source_image": "Part2/Game/4.png"
},
{
"task": "Game_Aware",
"id": "5",
"prompt_en": "Add a third card to make the total score exactly 21.",
"prompt_cn": "添加第三张牌,使牌的总点数正好为21。",
"source_image": "Part2/Game/5.png"
},
{
"task": "Game_Aware",
"id": "6",
"prompt_en": "Replace the 2 of Diamonds with a card that makes the hand bust.",
"prompt_cn": "将方块2替换为一张会使这手牌爆点的纸牌。",
"source_image": "Part2/Game/6.jpg"
},
{
"task": "Game_Aware",
"id": "8",
"prompt_en": "Change the minimum number of cards to make it a “Flush” in Texas Hold’em.",
"prompt_cn": "改变最少数量的牌,使得它成为德州扑克中的同花。",
"source_image": "Part2/Game/8.png"
},
{
"task": "Game_Aware",
"id": "9",
"prompt_en": "Add a fifth card to this set to form the highest possible straight in Texas Hold’em.",
"prompt_cn": "在这组牌中添加第五张牌,使其组成一个在德州扑克中尽可能大的顺子。",
"source_image": "Part2/Game/9.jpg"
},
{
"task": "Game_Aware",
"id": "10",
"prompt_en": "Add a card to this set to form the highest possible straight in Texas Hold’em.",
"prompt_cn": "添加牌,使这手牌成为一副尽可能大的葫芦牌型在德州扑克中。",
"source_image": "Part2/Game/10.jpg"
},
{
"task": "Game_Aware",
"id": "11",
"prompt_en": "Update the right hand to numerically beat the left hand.",
"prompt_cn": "将左手中的牌更新为在点数上击败右手中的牌。",
"source_image": "Part2/Game/11.jpg"
},
{
"task": "Game_Aware",
"id": "12",
"prompt_en": "Change the dice faces so they sum up to 7.",
"prompt_cn": "将骰子表面的点数修改为两个数之和等于 7。",
"source_image": "Part2/Game/12.jpg"
},
{
"task": "Bag",
"id": "knap_000",
"prompt_en": "Given a capacity of 10, highlight the items in green that maximize total value without exceeding the weight limit.",
"prompt_cn": "给定背包容量为 10,请将总价值最大且不超过重量限制的物品高亮为绿色。",
"source_image": "Part4/Bag/knap_000_input.jpg"
},
{
"task": "Bag",
"id": "knap_002",
"prompt_en": "Given a capacity of 11, highlight the items in green that maximize total value without exceeding the weight limit.",
"prompt_cn": "给定背包容量为 11,请将总价值最大且不超过重量限制的物品高亮为绿色。",
"source_image": "Part4/Bag/knap_002_input.jpg"
},
{
"task": "Bag",
"id": "knap_004",
"prompt_en": "Given a capacity of 17, highlight the items in green that maximize total value without exceeding the weight limit.",
"prompt_cn": "给定背包容量为 17,请将总价值最大且不超过重量限制的物品高亮为绿色。",
"source_image": "Part4/Bag/knap_004_input.jpg"
},
{
"task": "Bag",
"id": "knap_006",
"prompt_en": "Given a capacity of 20, highlight the items in green that maximize total value without exceeding the weight limit.",
"prompt_cn": "给定背包容量为 20,请将总价值最大且不超过重量限制的物品高亮为绿色。",
"source_image": "Part4/Bag/knap_006_input.jpg"
},
{
"task": "Bag",
"id": "knap_008",
"prompt_en": "Given a capacity of 12, highlight the items in green that maximize total value without exceeding the weight limit.",
"prompt_cn": "给定背包容量为 12,请将总价值最大且不超过重量限制的物品高亮为绿色。",
"source_image": "Part4/Bag/knap_008_input.jpg"
},
{
"task": "Bag",
"id": "knap_010",
"prompt_en": "Given a capacity of 15, highlight the items in green that maximize total value without exceeding the weight limit.",
"prompt_cn": "给定背包容量为 15,请将总价值最大且不超过重量限制的物品高亮为绿色。",
"source_image": "Part4/Bag/knap_010_input.jpg"
},
{
"task": "Bag",
"id": "knap_012",
"prompt_en": "Given a capacity of 16, highlight the items in green that maximize total value without exceeding the weight limit.",
"prompt_cn": "给定背包容量为 16,请将总价值最大且不超过重量限制的物品高亮为绿色。",
"source_image": "Part4/Bag/knap_012_input.jpg"
},
{
"task": "Bag",
"id": "knap_014",
"prompt_en": "Given a capacity of 16, highlight the items in green that maximize total value without exceeding the weight limit.",
"prompt_cn": "给定背包容量为 16,请将总价值最大且不超过重量限制的物品高亮为绿色。",
"source_image": "Part4/Bag/knap_014_input.jpg"
},
{
"task": "Bag",
"id": "knap_016",
"prompt_en": "Given a capacity of 15, highlight the items in green that maximize total value without exceeding the weight limit.",
"prompt_cn": "给定背包容量为 15,请将总价值最大且不超过重量限制的物品高亮为绿色。",
"source_image": "Part4/Bag/knap_016_input.jpg"
},
{
"task": "Bag",
"id": "knap_018",
"prompt_en": "Given a capacity of 17, highlight the items in green that maximize total value without exceeding the weight limit.",
"prompt_cn": "给定背包容量为 17,请将总价值最大且不超过重量限制的物品高亮为绿色。",
"source_image": "Part4/Bag/knap_018_input.jpg"
},
{
"task": "Convex_Hull",
"id": "hull_000",
"prompt_en": "Connect the outermost points to form the minimum convex polygon that encloses all points in the image.",
"prompt_cn": "连接图中最外侧的点,形成一个包围所有点的最小凸多边形",
"source_image": "Part4/dataset_convex_hull/hull_000_input.jpg"
},
{
"task": "Convex_Hull",
"id": "hull_002",
"prompt_en": "Connect the outermost points to form the minimum convex polygon that encloses all points in the image.",
"prompt_cn": "连接图中最外侧的点,形成一个包围所有点的最小凸多边形",
"source_image": "Part4/dataset_convex_hull/hull_002_input.jpg"
},
{
"task": "Convex_Hull",
"id": "hull_004",
"prompt_en": "Connect the outermost points to form the minimum convex polygon that encloses all points in the image.",
"prompt_cn": "连接图中最外侧的点,形成一个包围所有点的最小凸多边形",
"source_image": "Part4/dataset_convex_hull/hull_004_input.jpg"
},
{
"task": "Convex_Hull",
"id": "hull_006",
"prompt_en": "Connect the outermost points to form the minimum convex polygon that encloses all points in the image.",
"prompt_cn": "连接图中最外侧的点,形成一个包围所有点的最小凸多边形",
"source_image": "Part4/dataset_convex_hull/hull_006_input.jpg"
},
{
"task": "Convex_Hull",
"id": "hull_008",
"prompt_en": "Connect the outermost points to form the minimum convex polygon that encloses all points in the image.",
"prompt_cn": "连接图中最外侧的点,形成一个包围所有点的最小凸多边形",
"source_image": "Part4/dataset_convex_hull/hull_008_input.jpg"
},
{
"task": "Convex_Hull",
"id": "hull_010",
"prompt_en": "Connect the outermost points to form the minimum convex polygon that encloses all points in the image.",
"prompt_cn": "连接图中最外侧的点,形成一个包围所有点的最小凸多边形",
"source_image": "Part4/dataset_convex_hull/hull_010_input.jpg"
},
{
"task": "Convex_Hull",
"id": "hull_012",
"prompt_en": "Connect the outermost points to form the minimum convex polygon that encloses all points in the image.",
"prompt_cn": "连接图中最外侧的点,形成一个包围所有点的最小凸多边形",
"source_image": "Part4/dataset_convex_hull/hull_012_input.jpg"
},
{
"task": "Convex_Hull",
"id": "hull_014",
"prompt_en": "Connect the outermost points to form the minimum convex polygon that encloses all points in the image.",
"prompt_cn": "连接图中最外侧的点,形成一个包围所有点的最小凸多边形",
"source_image": "Part4/dataset_convex_hull/hull_014_input.jpg"
},
{
"task": "Convex_Hull",
"id": "hull_016",
"prompt_en": "Connect the outermost points to form the minimum convex polygon that encloses all points in the image.",
"prompt_cn": "连接图中最外侧的点,形成一个包围所有点的最小凸多边形",
"source_image": "Part4/dataset_convex_hull/hull_016_input.jpg"
},
{
"task": "Convex_Hull",
"id": "hull_018",
"prompt_en": "Connect the outermost points to form the minimum convex polygon that encloses all points in the image.",
"prompt_cn": "连接图中最外侧的点,形成一个包围所有点的最小凸多边形",
"source_image": "Part4/dataset_convex_hull/hull_018_input.jpg"
},
{
"task": "Max_Submatrix",
"id": "conv_000",
"prompt_en": "Find the 2x4 rectangular region in the image with the highest sum of values and highlight this region in yellow.",
"prompt_cn": "找到图中 2x4 的矩形区域,使其中的数值总和最大,并将该区域用黄色高亮显示。",
"source_image": "Part4/dataset_max_submatrix/conv_000_input.jpg"
},
{
"task": "Max_Submatrix",
"id": "conv_002",
"prompt_en": "Find the 4x3 rectangular region in the image with the highest sum of values and highlight this region in yellow.",
"prompt_cn": "找到图中 4x3 的矩形区域,使其中的数值总和最大,并将该区域用黄色高亮显示。",
"source_image": "Part4/dataset_max_submatrix/conv_002_input.jpg"
},
{
"task": "Max_Submatrix",
"id": "conv_004",
"prompt_en": "Find the 4x2 rectangular region in the image with the highest sum of values and highlight this region in yellow.",
"prompt_cn": "找到图中 4x2 的矩形区域,使其中的数值总和最大,并将该区域用黄色高亮显示。",
"source_image": "Part4/dataset_max_submatrix/conv_004_input.jpg"
},
{
"task": "Max_Submatrix",
"id": "conv_006",
"prompt_en": "Find the 4x4 rectangular region in the image with the highest sum of values and highlight this region in yellow.",
"prompt_cn": "找到图中 4x4 的矩形区域,使其中的数值总和最大,并将该区域用黄色高亮显示。",
"source_image": "Part4/dataset_max_submatrix/conv_006_input.jpg"
},
{
"task": "Max_Submatrix",
"id": "conv_008",
"prompt_en": "Find the 2x2 rectangular region in the image with the highest sum of values and highlight this region in yellow.",
"prompt_cn": "找到图中 2x2 的矩形区域,使其中的数值总和最大,并将该区域用黄色高亮显示。",
"source_image": "Part4/dataset_max_submatrix/conv_008_input.jpg"
},
{
"task": "Max_Submatrix",
"id": "conv_010",
"prompt_en": "Find the 4x3 rectangular region in the image with the highest sum of values and highlight this region in yellow.",
"prompt_cn": "找到图中 4x3 的矩形区域,使其中的数值总和最大,并将该区域用黄色高亮显示。",
"source_image": "Part4/dataset_max_submatrix/conv_010_input.jpg"
},
{
"task": "Max_Submatrix",
"id": "conv_012",
"prompt_en": "Find the 3x2 rectangular region in the image with the highest sum of values and highlight this region in yellow.",
"prompt_cn": "找到图中 3x2 的矩形区域,使其中的数值总和最大,并将该区域用黄色高亮显示。",
"source_image": "Part4/dataset_max_submatrix/conv_012_input.jpg"
},
{
"task": "Max_Submatrix",
"id": "conv_014",
"prompt_en": "Find the 3x4 rectangular region in the image with the highest sum of values and highlight this region in yellow.",
"prompt_cn": "找到图中 3x4 的矩形区域,使其中的数值总和最大,并将该区域用黄色高亮显示。",
"source_image": "Part4/dataset_max_submatrix/conv_014_input.jpg"
},
{
"task": "Max_Submatrix",
"id": "conv_016",
"prompt_en": "Find the 2x3 rectangular region in the image with the highest sum of values and highlight this region in yellow.",
"prompt_cn": "找到图中 2x3 的矩形区域,使其中的数值总和最大,并将该区域用黄色高亮显示。",
"source_image": "Part4/dataset_max_submatrix/conv_016_input.jpg"
},
{
"task": "Max_Submatrix",
"id": "conv_018",
"prompt_en": "Find the 3x4 rectangular region in the image with the highest sum of values and highlight this region in yellow.",
"prompt_cn": "找到图中 3x4 的矩形区域,使其中的数值总和最大,并将该区域用黄色高亮显示。",
"source_image": "Part4/dataset_max_submatrix/conv_018_input.jpg"
},
{
"task": "Longest_Word_No_Start",
"id": "global_000",
"prompt_en": "Help me find the longest word in this image. It can only go down or right. Please highlight the path in green.",
"prompt_cn": "帮我找一下图像里面最长的单词,只能向下或向右走,把路径染成绿色。",
"source_image": "Part4/Longest_Word_no_start/global_000_input.jpg"
},
{
"task": "Longest_Word_No_Start",
"id": "global_002",
"prompt_en": "Help me find the longest word in this image. It can only go down or right. Please highlight the path in green.",
"prompt_cn": "帮我找一下图像里面最长的单词,只能向下或向右走,把路径染成绿色。",
"source_image": "Part4/Longest_Word_no_start/global_002_input.jpg"
},
{
"task": "Longest_Word_No_Start",
"id": "global_004",
"prompt_en": "Help me find the longest word in this image. It can only go down or right. Please highlight the path in green.",
"prompt_cn": "帮我找一下图像里面最长的单词,只能向下或向右走,把路径染成绿色。",
"source_image": "Part4/Longest_Word_no_start/global_004_input.jpg"
},
{
"task": "Longest_Word_No_Start",
"id": "global_006",
"prompt_en": "Help me find the longest word in this image. It can only go down or right. Please highlight the path in green.",
"prompt_cn": "帮我找一下图像里面最长的单词,只能向下或向右走,把路径染成绿色。",
"source_image": "Part4/Longest_Word_no_start/global_006_input.jpg"
},
{
"task": "Longest_Word_No_Start",
"id": "global_008",
"prompt_en": "Help me find the longest word in this image. It can only go down or right. Please highlight the path in green.",
"prompt_cn": "帮我找一下图像里面最长的单词,只能向下或向右走,把路径染成绿色。",
"source_image": "Part4/Longest_Word_no_start/global_008_input.jpg"
},
{
"task": "Longest_Word_No_Start",
"id": "global_010",
"prompt_en": "Help me find the longest word in this image. It can only go down or right. Please highlight the path in green.",
"prompt_cn": "帮我找一下图像里面最长的单词,只能向下或向右走,把路径染成绿色。",
"source_image": "Part4/Longest_Word_no_start/global_010_input.jpg"
},
{
"task": "Longest_Word_No_Start",
"id": "global_012",
"prompt_en": "Help me find the longest word in this image. It can only go down or right. Please highlight the path in green.",
"prompt_cn": "帮我找一下图像里面最长的单词,只能向下或向右走,把路径染成绿色。",
"source_image": "Part4/Longest_Word_no_start/global_012_input.jpg"
},
{
"task": "Longest_Word_No_Start",
"id": "global_014",
"prompt_en": "Help me find the longest word in this image. It can only go down or right. Please highlight the path in green.",
"prompt_cn": "帮我找一下图像里面最长的单词,只能向下或向右走,把路径染成绿色。",
"source_image": "Part4/Longest_Word_no_start/global_014_input.jpg"
},
{
"task": "Longest_Word_No_Start",
"id": "global_016",
"prompt_en": "Help me find the longest word in this image. It can only go down or right. Please highlight the path in green.",
"prompt_cn": "帮我找一下图像里面最长的单词,只能向下或向右走,把路径染成绿色。",
"source_image": "Part4/Longest_Word_no_start/global_016_input.jpg"
},
{
"task": "Longest_Word_No_Start",
"id": "global_018",
"prompt_en": "Help me find the longest word in this image. It can only go down or right. Please highlight the path in green.",
"prompt_cn": "帮我找一下图像里面最长的单词,只能向下或向右走,把路径染成绿色。",
"source_image": "Part4/Longest_Word_no_start/global_018_input.jpg"
},
{
"task": "Longest_Word_With_Start",
"id": "task_start_001",
"prompt_en": "Starting from the yellow cell, find the longest valid English word by moving only Down or Right, and highlight its path in yellow.",
"prompt_cn": "从黄色方块出发,通过仅向下或向右移动找到最长的有效英语单词,并将其路径高亮为黄色。",
"source_image": "Part4/Longest_Word_with_start/task_start_001_input.jpg"
},
{
"task": "Longest_Word_With_Start",
"id": "task_start_003",
"prompt_en": "Starting from the yellow cell, find the longest valid English word by moving only Down or Right, and highlight its path in yellow.",
"prompt_cn": "从黄色方块出发,通过仅向下或向右移动找到最长的有效英语单词,并将其路径高亮为黄色。",
"source_image": "Part4/Longest_Word_with_start/task_start_003_input.jpg"
},
{
"task": "Longest_Word_With_Start",
"id": "task_start_005",
"prompt_en": "Starting from the yellow cell, find the longest valid English word by moving only Down or Right, and highlight its path in yellow.",
"prompt_cn": "从黄色方块出发,通过仅向下或向右移动找到最长的有效英语单词,并将其路径高亮为黄色。",
"source_image": "Part4/Longest_Word_with_start/task_start_005_input.jpg"
},
{
"task": "Longest_Word_With_Start",
"id": "task_start_007",
"prompt_en": "Starting from the yellow cell, find the longest valid English word by moving only Down or Right, and highlight its path in yellow.",
"prompt_cn": "从黄色方块出发,通过仅向下或向右移动找到最长的有效英语单词,并将其路径高亮为黄色。",
"source_image": "Part4/Longest_Word_with_start/task_start_007_input.jpg"
},
{
"task": "Longest_Word_With_Start",
"id": "task_start_009",
"prompt_en": "Starting from the yellow cell, find the longest valid English word by moving only Down or Right, and highlight its path in yellow.",
"prompt_cn": "从黄色方块出发,通过仅向下或向右移动找到最长的有效英语单词,并将其路径高亮为黄色。",
"source_image": "Part4/Longest_Word_with_start/task_start_009_input.jpg"
},
{
"task": "Longest_Word_With_Start",
"id": "task_start_011",
"prompt_en": "Starting from the yellow cell, find the longest valid English word by moving only Down or Right, and highlight its path in yellow.",
"prompt_cn": "从黄色方块出发,通过仅向下或向右移动找到最长的有效英语单词,并将其路径高亮为黄色。",
"source_image": "Part4/Longest_Word_with_start/task_start_011_input.jpg"
},
{
"task": "Longest_Word_With_Start",
"id": "task_start_013",
"prompt_en": "Starting from the yellow cell, find the longest valid English word by moving only Down or Right, and highlight its path in yellow.",
"prompt_cn": "从黄色方块出发,通过仅向下或向右移动找到最长的有效英语单词,并将其路径高亮为黄色。",
"source_image": "Part4/Longest_Word_with_start/task_start_013_input.jpg"
},
{
"task": "Longest_Word_With_Start",
"id": "task_start_015",
"prompt_en": "Starting from the yellow cell, find the longest valid English word by moving only Down or Right, and highlight its path in yellow.",
"prompt_cn": "从黄色方块出发,通过仅向下或向右移动找到最长的有效英语单词,并将其路径高亮为黄色。",
"source_image": "Part4/Longest_Word_with_start/task_start_015_input.jpg"
},
{
"task": "Longest_Word_With_Start",
"id": "task_start_017",
"prompt_en": "Starting from the yellow cell, find the longest valid English word by moving only Down or Right, and highlight its path in yellow.",
"prompt_cn": "从黄色方块出发,通过仅向下或向右移动找到最长的有效英语单词,并将其路径高亮为黄色。",
"source_image": "Part4/Longest_Word_with_start/task_start_017_input.jpg"
},
{
"task": "Longest_Word_With_Start",
"id": "task_start_019",
"prompt_en": "Starting from the yellow cell, find the longest valid English word by moving only Down or Right, and highlight its path in yellow.",
"prompt_cn": "从黄色方块出发,通过仅向下或向右移动找到最长的有效英语单词,并将其路径高亮为黄色。",
"source_image": "Part4/Longest_Word_with_start/task_start_019_input.jpg"
},
{
"task": "Max_Bonus",
"id": "flex_000",
"prompt_en": "Color a path from the blue 'S' to the red 'E' in yellow. You can only move down or right. Passing through each square acquires the number inside it. The goal is to maximize the sum of all numbers collected along the path.",
"prompt_cn": "用黄色染出一条从蓝色'S'到红色'E'的路径,只能向下或向右移动,经过每个点将会获得方格中的数字,目标是使路径上收集到的所有数字之和最大。",
"source_image": "Part4/max_bonus/flex_000_input.jpg"
},
{
"task": "Max_Bonus",
"id": "flex_004",
"prompt_en": "Color a path from the blue 'S' to the red 'E' in yellow. You can only move down or right. Passing through each square acquires the number inside it. The goal is to maximize the sum of all numbers collected along the path.",
"prompt_cn": "用黄色染出一条从蓝色'S'到红色'E'的路径,只能向下或向右移动,经过每个点将会获得方格中的数字,目标是使路径上收集到的所有数字之和最大。",
"source_image": "Part4/max_bonus/flex_004_input.jpg"
},
{
"task": "Max_Bonus",
"id": "flex_008",
"prompt_en": "Color a path from the blue 'S' to the red 'E' in yellow. You can only move down or right. Passing through each square acquires the number inside it. The goal is to maximize the sum of all numbers collected along the path.",
"prompt_cn": "用黄色染出一条从蓝色'S'到红色'E'的路径,只能向下或向右移动,经过每个点将会获得方格中的数字,目标是使路径上收集到的所有数字之和最大。",
"source_image": "Part4/max_bonus/flex_008_input.jpg"
},
{
"task": "Max_Bonus",
"id": "flex_012",
"prompt_en": "Color a path from the blue 'S' to the red 'E' in yellow. You can only move down or right. Passing through each square acquires the number inside it. The goal is to maximize the sum of all numbers collected along the path.",
"prompt_cn": "用黄色染出一条从蓝色'S'到红色'E'的路径,只能向下或向右移动,经过每个点将会获得方格中的数字,目标是使路径上收集到的所有数字之和最大。",
"source_image": "Part4/max_bonus/flex_012_input.jpg"
},
{
"task": "Max_Bonus",
"id": "flex_016",
"prompt_en": "Color a path from the blue 'S' to the red 'E' in yellow. You can only move down or right. Passing through each square acquires the number inside it. The goal is to maximize the sum of all numbers collected along the path.",
"prompt_cn": "用黄色染出一条从蓝色'S'到红色'E'的路径,只能向下或向右移动,经过每个点将会获得方格中的数字,目标是使路径上收集到的所有数字之和最大。",
"source_image": "Part4/max_bonus/flex_016_input.jpg"
},
{
"task": "Max_Bonus",
"id": "flex_020",
"prompt_en": "Color a path from the blue 'S' to the red 'E' in yellow. You can only move down or right. Passing through each square acquires the number inside it. The goal is to maximize the sum of all numbers collected along the path.",
"prompt_cn": "用黄色染出一条从蓝色'S'到红色'E'的路径,只能向下或向右移动,经过每个点将会获得方格中的数字,目标是使路径上收集到的所有数字之和最大。",
"source_image": "Part4/max_bonus/flex_020_input.jpg"
},
{
"task": "Max_Bonus",
"id": "flex_024",
"prompt_en": "Color a path from the blue 'S' to the red 'E' in yellow. You can only move down or right. Passing through each square acquires the number inside it. The goal is to maximize the sum of all numbers collected along the path.",
"prompt_cn": "用黄色染出一条从蓝色'S'到红色'E'的路径,只能向下或向右移动,经过每个点将会获得方格中的数字,目标是使路径上收集到的所有数字之和最大。",
"source_image": "Part4/max_bonus/flex_024_input.jpg"
},
{
"task": "Max_Bonus",
"id": "flex_028",
"prompt_en": "Color a path from the blue 'S' to the red 'E' in yellow. You can only move down or right. Passing through each square acquires the number inside it. The goal is to maximize the sum of all numbers collected along the path.",
"prompt_cn": "用黄色染出一条从蓝色'S'到红色'E'的路径,只能向下或向右移动,经过每个点将会获得方格中的数字,目标是使路径上收集到的所有数字之和最大。",
"source_image": "Part4/max_bonus/flex_028_input.jpg"
},
{
"task": "Max_Bonus",
"id": "flex_032",
"prompt_en": "Color a path from the blue 'S' to the red 'E' in yellow. You can only move down or right. Passing through each square acquires the number inside it. The goal is to maximize the sum of all numbers collected along the path.",
"prompt_cn": "用黄色染出一条从蓝色'S'到红色'E'的路径,只能向下或向右移动,经过每个点将会获得方格中的数字,目标是使路径上收集到的所有数字之和最大。",
"source_image": "Part4/max_bonus/flex_032_input.jpg"
},
{
"task": "Max_Bonus",
"id": "flex_036",
"prompt_en": "Color a path from the blue 'S' to the red 'E' in yellow. You can only move down or right. Passing through each square acquires the number inside it. The goal is to maximize the sum of all numbers collected along the path.",
"prompt_cn": "用黄色染出一条从蓝色'S'到红色'E'的路径,只能向下或向右移动,经过每个点将会获得方格中的数字,目标是使路径上收集到的所有数字之和最大。",
"source_image": "Part4/max_bonus/flex_036_input.jpg"
},
{
"task": "Number_Link",
"id": "flow_visual_000",
"prompt_en": "Connect circles of the same color. Paths may move only horizontally or vertically, and each line must match the color of its circles. Paths of different colors must not intersect.",
"prompt_cn": "连接颜色相同的圆点,路径只能进行水平或垂直移动,线条颜色需与圆点一致。不同颜色的线条路径不得交叉。",
"source_image": "Part4/numberlink/flow_visual_000_input.jpg"
},
{
"task": "Number_Link",
"id": "flow_visual_002",
"prompt_en": "Connect circles of the same color. Paths may move only horizontally or vertically, and each line must match the color of its circles. Paths of different colors must not intersect.",
"prompt_cn": "连接颜色相同的圆点,路径只能进行水平或垂直移动,线条颜色需与圆点一致。不同颜色的线条路径不得交叉。",
"source_image": "Part4/numberlink/flow_visual_002_input.jpg"
},
{
"task": "Number_Link",
"id": "flow_visual_004",
"prompt_en": "Connect circles of the same color. Paths may move only horizontally or vertically, and each line must match the color of its circles. Paths of different colors must not intersect.",
"prompt_cn": "连接颜色相同的圆点,路径只能进行水平或垂直移动,线条颜色需与圆点一致。不同颜色的线条路径不得交叉。",
"source_image": "Part4/numberlink/flow_visual_004_input.jpg"
},
{
"task": "Number_Link",
"id": "flow_visual_006",
"prompt_en": "Connect circles of the same color. Paths may move only horizontally or vertically, and each line must match the color of its circles. Paths of different colors must not intersect.",
"prompt_cn": "连接颜色相同的圆点,路径只能进行水平或垂直移动,线条颜色需与圆点一致。不同颜色的线条路径不得交叉。",
"source_image": "Part4/numberlink/flow_visual_006_input.jpg"
},
{
"task": "Number_Link",
"id": "flow_visual_008",
"prompt_en": "Connect circles of the same color. Paths may move only horizontally or vertically, and each line must match the color of its circles. Paths of different colors must not intersect.",
"prompt_cn": "连接颜色相同的圆点,路径只能进行水平或垂直移动,线条颜色需与圆点一致。不同颜色的线条路径不得交叉。",
"source_image": "Part4/numberlink/flow_visual_008_input.jpg"
},
{
"task": "Number_Link",
"id": "flow_visual_010",
"prompt_en": "Connect circles of the same color. Paths may move only horizontally or vertically, and each line must match the color of its circles. Paths of different colors must not intersect.",
"prompt_cn": "连接颜色相同的圆点,路径只能进行水平或垂直移动,线条颜色需与圆点一致。不同颜色的线条路径不得交叉。",
"source_image": "Part4/numberlink/flow_visual_010_input.jpg"
},
{
"task": "Number_Link",
"id": "flow_visual_012",
"prompt_en": "Connect circles of the same color. Paths may move only horizontally or vertically, and each line must match the color of its circles. Paths of different colors must not intersect.",
"prompt_cn": "连接颜色相同的圆点,路径只能进行水平或垂直移动,线条颜色需与圆点一致。不同颜色的线条路径不得交叉。",
"source_image": "Part4/numberlink/flow_visual_012_input.jpg"
},
{
"task": "Number_Link",
"id": "flow_visual_014",
"prompt_en": "Connect circles of the same color. Paths may move only horizontally or vertically, and each line must match the color of its circles. Paths of different colors must not intersect.",
"prompt_cn": "连接颜色相同的圆点,路径只能进行水平或垂直移动,线条颜色需与圆点一致。不同颜色的线条路径不得交叉。",
"source_image": "Part4/numberlink/flow_visual_014_input.jpg"
},
{
"task": "Number_Link",
"id": "flow_visual_016",
"prompt_en": "Connect circles of the same color. Paths may move only horizontally or vertically, and each line must match the color of its circles. Paths of different colors must not intersect.",
"prompt_cn": "连接颜色相同的圆点,路径只能进行水平或垂直移动,线条颜色需与圆点一致。不同颜色的线条路径不得交叉。",
"source_image": "Part4/numberlink/flow_visual_016_input.jpg"
},
{
"task": "Number_Link",
"id": "flow_visual_018",
"prompt_en": "Connect circles of the same color. Paths may move only horizontally or vertically, and each line must match the color of its circles. Paths of different colors must not intersect.",
"prompt_cn": "连接颜色相同的圆点,路径只能进行水平或垂直移动,线条颜色需与圆点一致。不同颜色的线条路径不得交叉。",
"source_image": "Part4/numberlink/flow_visual_018_input.jpg"
},
{
"task": "Shortest_Path2",
"id": "rpg_000",
"prompt_en": "Draw a lowest-cost path from S to E using red arrows. Movement is restricted to horizontal or vertical directions only, and the path may pass only through gray, green, and blue cells. The cost is 1 for gray cells, 3 for green cells, and 8 for blue cells.",
"prompt_cn": "使用红色箭头绘制一条从起点 S 到终点 E 的最低成本路径。路径只能进行水平或垂直移动,且仅可经过灰色、绿色和蓝色方格,其中灰色方格的成本为 1 元,绿色方格为 3 元,蓝色方格的成本为 8 元。",
"source_image": "Part4/Shortest_path2/rpg_000_input.jpg"
},
{
"task": "Shortest_Path2",
"id": "rpg_001",
"prompt_en": "Draw a lowest-cost path from S to E using red arrows. Movement is restricted to horizontal or vertical directions only, and the path may pass only through gray, green, and blue cells. The cost is 1 for gray cells, 3 for green cells, and 8 for blue cells.",
"prompt_cn": "使用红色箭头绘制一条从起点 S 到终点 E 的最低成本路径。路径只能进行水平或垂直移动,且仅可经过灰色、绿色和蓝色方格,其中灰色方格的成本为 1 元,绿色方格为 3 元,蓝色方格的成本为 8 元。",
"source_image": "Part4/Shortest_path2/rpg_001_input.jpg"
},
{
"task": "Shortest_Path2",
"id": "rpg_002",
"prompt_en": "Draw a lowest-cost path from S to E using red arrows. Movement is restricted to horizontal or vertical directions only, and the path may pass only through gray, green, and blue cells. The cost is 1 for gray cells, 3 for green cells, and 8 for blue cells.",
"prompt_cn": "使用红色箭头绘制一条从起点 S 到终点 E 的最低成本路径。路径只能进行水平或垂直移动,且仅可经过灰色、绿色和蓝色方格,其中灰色方格的成本为 1 元,绿色方格为 3 元,蓝色方格的成本为 8 元。",
"source_image": "Part4/Shortest_path2/rpg_002_input.jpg"
},
{
"task": "Shortest_Path2",
"id": "rpg_003",
"prompt_en": "Draw a lowest-cost path from S to E using red arrows. Movement is restricted to horizontal or vertical directions only, and the path may pass only through gray, green, and blue cells. The cost is 1 for gray cells, 3 for green cells, and 8 for blue cells.",
"prompt_cn": "使用红色箭头绘制一条从起点 S 到终点 E 的最低成本路径。路径只能进行水平或垂直移动,且仅可经过灰色、绿色和蓝色方格,其中灰色方格的成本为 1 元,绿色方格为 3 元,蓝色方格的成本为 8 元。",
"source_image": "Part4/Shortest_path2/rpg_003_input.jpg"
},
{
"task": "Shortest_Path2",
"id": "rpg_004",
"prompt_en": "Draw a lowest-cost path from S to E using red arrows. Movement is restricted to horizontal or vertical directions only, and the path may pass only through gray, green, and blue cells. The cost is 1 for gray cells, 3 for green cells, and 8 for blue cells.",
"prompt_cn": "使用红色箭头绘制一条从起点 S 到终点 E 的最低成本路径。路径只能进行水平或垂直移动,且仅可经过灰色、绿色和蓝色方格,其中灰色方格的成本为 1 元,绿色方格为 3 元,蓝色方格的成本为 8 元。",
"source_image": "Part4/Shortest_path2/rpg_004_input.jpg"
},
{
"task": "Shortest_Path2",
"id": "rpg_005",
"prompt_en": "Draw a lowest-cost path from S to E using red arrows. Movement is restricted to horizontal or vertical directions only, and the path may pass only through gray, green, and blue cells. The cost is 1 for gray cells, 3 for green cells, and 8 for blue cells.",
"prompt_cn": "使用红色箭头绘制一条从起点 S 到终点 E 的最低成本路径。路径只能进行水平或垂直移动,且仅可经过灰色、绿色和蓝色方格,其中灰色方格的成本为 1 元,绿色方格为 3 元,蓝色方格的成本为 8 元。",
"source_image": "Part4/Shortest_path2/rpg_005_input.jpg"
},
{
"task": "Shortest_Path2",
"id": "rpg_006",
"prompt_en": "Draw a lowest-cost path from S to E using red arrows. Movement is restricted to horizontal or vertical directions only, and the path may pass only through gray, green, and blue cells. The cost is 1 for gray cells, 3 for green cells, and 8 for blue cells.",
"prompt_cn": "使用红色箭头绘制一条从起点 S 到终点 E 的最低成本路径。路径只能进行水平或垂直移动,且仅可经过灰色、绿色和蓝色方格,其中灰色方格的成本为 1 元,绿色方格为 3 元,蓝色方格的成本为 8 元。",
"source_image": "Part4/Shortest_path2/rpg_006_input.jpg"
},
{
"task": "Shortest_Path2",
"id": "rpg_007",
"prompt_en": "Draw a lowest-cost path from S to E using red arrows. Movement is restricted to horizontal or vertical directions only, and the path may pass only through gray, green, and blue cells. The cost is 1 for gray cells, 3 for green cells, and 8 for blue cells.",
"prompt_cn": "使用红色箭头绘制一条从起点 S 到终点 E 的最低成本路径。路径只能进行水平或垂直移动,且仅可经过灰色、绿色和蓝色方格,其中灰色方格的成本为 1 元,绿色方格为 3 元,蓝色方格的成本为 8 元。",
"source_image": "Part4/Shortest_path2/rpg_007_input.jpg"
},
{
"task": "Shortest_Path2",
"id": "rpg_008",
"prompt_en": "Draw a lowest-cost path from S to E using red arrows. Movement is restricted to horizontal or vertical directions only, and the path may pass only through gray, green, and blue cells. The cost is 1 for gray cells, 3 for green cells, and 8 for blue cells.",
"prompt_cn": "使用红色箭头绘制一条从起点 S 到终点 E 的最低成本路径。路径只能进行水平或垂直移动,且仅可经过灰色、绿色和蓝色方格,其中灰色方格的成本为 1 元,绿色方格为 3 元,蓝色方格的成本为 8 元。",
"source_image": "Part4/Shortest_path2/rpg_008_input.jpg"
},
{
"task": "Shortest_Path2",
"id": "rpg_009",
"prompt_en": "Draw a lowest-cost path from S to E using red arrows. Movement is restricted to horizontal or vertical directions only, and the path may pass only through gray, green, and blue cells. The cost is 1 for gray cells, 3 for green cells, and 8 for blue cells.",
"prompt_cn": "使用红色箭头绘制一条从起点 S 到终点 E 的最低成本路径。路径只能进行水平或垂直移动,且仅可经过灰色、绿色和蓝色方格,其中灰色方格的成本为 1 元,绿色方格为 3 元,蓝色方格的成本为 8 元。",
"source_image": "Part4/Shortest_path2/rpg_009_input.jpg"
},
{
"task": "Find_Word_No_Start",
"id": "task_001",
"prompt_en": "Find the word 'DOG'. Highlight its characters in red. Note: The word flows only Down or Right.",
"prompt_cn": "找到单词 'DOG' 并将其字符高亮为红色。注意:单词流向仅限向下或向右。",
"source_image": "Part4/word_no_start/task_001_DOG_input.jpg"
},
{
"task": "Find_Word_No_Start",
"id": "task_003",
"prompt_en": "Find the word 'MAP'. Highlight its characters in red. Note: The word flows only Down or Right.",
"prompt_cn": "找到单词 'MAP' 并将其字符高亮为红色。注意:单词流向仅限向下或向右。",
"source_image": "Part4/word_no_start/task_003_MAP_input.jpg"
},
{
"task": "Find_Word_No_Start",
"id": "task_005",
"prompt_en": "Find the word 'BOX'. Highlight its characters in red. Note: The word flows only Down or Right.",
"prompt_cn": "找到单词 'BOX' 并将其字符高亮为红色。注意:单词流向仅限向下或向右。",
"source_image": "Part4/word_no_start/task_005_BOX_input.jpg"
},
{
"task": "Find_Word_No_Start",
"id": "task_007",
"prompt_en": "Find the word 'EYE'. Highlight its characters in red. Note: The word flows only Down or Right.",
"prompt_cn": "找到单词 'EYE' 并将其字符高亮为红色。注意:单词流向仅限向下或向右。",
"source_image": "Part4/word_no_start/task_007_EYE_input.jpg"
},
{
"task": "Find_Word_No_Start",
"id": "task_009",
"prompt_en": "Find the word 'TEA'. Highlight its characters in red. Note: The word flows only Down or Right.",
"prompt_cn": "找到单词 'TEA' 并将其字符高亮为红色。注意:单词流向仅限向下或向右。",
"source_image": "Part4/word_no_start/task_009_TEA_input.jpg"
},
{
"task": "Find_Word_No_Start",
"id": "task_011",
"prompt_en": "Find the word 'FISH'. Highlight its characters in red. Note: The word flows only Down or Right.",
"prompt_cn": "找到单词 'FISH' 并将其字符高亮为红色。注意:单词流向仅限向下或向右。",
"source_image": "Part4/word_no_start/task_011_FISH_input.jpg"
},
{
"task": "Find_Word_No_Start",
"id": "task_013",
"prompt_en": "Find the word 'MILK'. Highlight its characters in red. Note: The word flows only Down or Right.",
"prompt_cn": "找到单词 'MILK' 并将其字符高亮为红色。注意:单词流向仅限向下或向右。",
"source_image": "Part4/word_no_start/task_013_MILK_input.jpg"
},
{
"task": "Find_Word_No_Start",
"id": "task_015",
"prompt_en": "Find the word 'DUCK'. Highlight its characters in red. Note: The word flows only Down or Right.",
"prompt_cn": "找到单词 'DUCK' 并将其字符高亮为红色。注意:单词流向仅限向下或向右。",
"source_image": "Part4/word_no_start/task_015_DUCK_input.jpg"
},
{
"task": "Find_Word_No_Start",
"id": "task_017",
"prompt_en": "Find the word 'GOAT'. Highlight its characters in red. Note: The word flows only Down or Right.",
"prompt_cn": "找到单词 'GOAT' 并将其字符高亮为红色。注意:单词流向仅限向下或向右。",
"source_image": "Part4/word_no_start/task_017_GOAT_input.jpg"
},
{
"task": "Find_Word_No_Start",
"id": "task_019",
"prompt_en": "Find the word 'CODE'. Highlight its characters in red. Note: The word flows only Down or Right.",
"prompt_cn": "找到单词 'CODE' 并将其字符高亮为红色。注意:单词流向仅限向下或向右。",
"source_image": "Part4/word_no_start/task_019_CODE_input.jpg"
},
{
"task": "Find_Word_With_Start",
"id": "task_001",
"prompt_en": "Complete the red path for the word 'DOG' starting from the red cell. Move only Down or Right.",
"prompt_cn": "从红色方块开始,补全单词 'DOG' 的红色路径。只能向右或向下移动。",
"source_image": "Part4/word_with_start/task_001_DOG_input.jpg"
},
{
"task": "Find_Word_With_Start",
"id": "task_003",
"prompt_en": "Complete the red path for the word 'MAP' starting from the red cell. Move only Down or Right.",
"prompt_cn": "从红色方块开始,补全单词 'MAP' 的红色路径。只能向右或向下移动。",
"source_image": "Part4/word_with_start/task_003_MAP_input.jpg"
},
{
"task": "Find_Word_With_Start",
"id": "task_005",
"prompt_en": "Complete the red path for the word 'BOX' starting from the red cell. Move only Down or Right.",
"prompt_cn": "从红色方块开始,补全单词 'BOX' 的红色路径。只能向右或向下移动。",
"source_image": "Part4/word_with_start/task_005_BOX_input.jpg"
},
{
"task": "Find_Word_With_Start",
"id": "task_007",
"prompt_en": "Complete the red path for the word 'EYE' starting from the red cell. Move only Down or Right.",
"prompt_cn": "从红色方块开始,补全单词 'EYE' 的红色路径。只能向右或向下移动。",
"source_image": "Part4/word_with_start/task_007_EYE_input.jpg"
},
{
"task": "Find_Word_With_Start",
"id": "task_009",
"prompt_en": "Complete the red path for the word 'TEA' starting from the red cell. Move only Down or Right.",
"prompt_cn": "从红色方块开始,补全单词 'TEA' 的红色路径。只能向右或向下移动。",
"source_image": "Part4/word_with_start/task_009_TEA_input.jpg"
},
{
"task": "Find_Word_With_Start",
"id": "task_011",
"prompt_en": "Complete the red path for the word 'FISH' starting from the red cell. Move only Down or Right.",
"prompt_cn": "从红色方块开始,补全单词 'FISH' 的红色路径。只能向右或向下移动。",
"source_image": "Part4/word_with_start/task_011_FISH_input.jpg"
},
{
"task": "Find_Word_With_Start",
"id": "task_013",
"prompt_en": "Complete the red path for the word 'MILK' starting from the red cell. Move only Down or Right.",
"prompt_cn": "从红色方块开始,补全单词 'MILK' 的红色路径。只能向右或向下移动。",
"source_image": "Part4/word_with_start/task_013_MILK_input.jpg"
},
{
"task": "Find_Word_With_Start",
"id": "task_015",
"prompt_en": "Complete the red path for the word 'DUCK' starting from the red cell. Move only Down or Right.",
"prompt_cn": "从红色方块开始,补全单词 'DUCK' 的红色路径。只能向右或向下移动。",
"source_image": "Part4/word_with_start/task_015_DUCK_input.jpg"
},
{
"task": "Find_Word_With_Start",
"id": "task_017",
"prompt_en": "Complete the red path for the word 'GOAT' starting from the red cell. Move only Down or Right.",
"prompt_cn": "从红色方块开始,补全单词 'GOAT' 的红色路径。只能向右或向下移动。",
"source_image": "Part4/word_with_start/task_017_GOAT_input.jpg"
},
{
"task": "Find_Word_With_Start",
"id": "task_019",
"prompt_en": "Complete the red path for the word 'CODE' starting from the red cell. Move only Down or Right.",
"prompt_cn": "从红色方块开始,补全单词 'CODE' 的红色路径。只能向右或向下移动。",
"source_image": "Part4/word_with_start/task_019_CODE_input.jpg"
},
{
"task": "Multi_Image_Aware",
"id": 1,
"prompt_en": "Adjust the color and shine of the green apple in the fruit bowl in image 1 to match the apple in image 2.",
"prompt_cn": "调整第一张图像中水果盘中青苹果的颜色和光泽,使其与第二张图像中的苹果一致。",
"source_image": "Part5/Multi_Image_Aware/1/source_1.png",
"reference_image_path": [
"Part5/Multi_Image_Aware/1/ref_1.png"
]
},
{
"task": "Multi_Image_Aware",
"id": 2,
"prompt_en": "Adjust the texture of the white plastic cup on the blanket in image 1 to match the texture of the mug in image 2.",
"prompt_cn": "将第一张图像中毯子上的白色塑料杯的纹理和第二张图像中马克杯的纹理保持一致。",
"source_image": "Part5/Multi_Image_Aware/2/source_1.png",
"reference_image_path": [
"Part5/Multi_Image_Aware/2/ref_1.png"
]
},
{
"task": "Multi_Image_Aware",
"id": 3,
"prompt_en": "Align the orientation of the slippers in image 1 with the orientation of the leather shoes in image 2.",
"prompt_cn": "将第一张图像中拖鞋的朝向和第二张图像中皮鞋的朝向保持一致。",
"source_image": "Part5/Multi_Image_Aware/3/source_1.png",
"reference_image_path": [
"Part5/Multi_Image_Aware/3/ref_1.png"
]
},
{
"task": "Multi_Image_Aware",
"id": 4,
"prompt_en": "Align the time on the clock in image 1 with the time on the clock in image 2.",
"prompt_cn": "将第一张图像中时钟的时间和第二张图像中的时钟对齐。",
"source_image": "Part5/Multi_Image_Aware/4/source_1.png",
"reference_image_path": [
"Part5/Multi_Image_Aware/4/ref_1.png"
]
},
{
"task": "Multi_Image_Aware",
"id": 5,
"prompt_en": "Adjust the material of the ring on the hand in image 1 to match the material of the bracelet in image 2.",
"prompt_cn": "将第一张图像中手上的戒指的材质和第二张图像中镯子的材质保持一致。",
"source_image": "Part5/Multi_Image_Aware/5/source_1.png",
"reference_image_path": [
"Part5/Multi_Image_Aware/5/ref_1.png"
]
},
{
"task": "Multi_Image_Aware",
"id": 6,
"prompt_en": "Align the balloons that share the same color in image 1 with the state of the balloons in image 2.",
"prompt_cn": "将第一张图像和第二张图像中颜色一样的气球变为相同的状态。",
"source_image": "Part5/Multi_Image_Aware/6/source_1.png",
"reference_image_path": [
"Part5/Multi_Image_Aware/6/ref_1.png"
]
},
{
"task": "Multi_Image_Aware",
"id": 7,
"prompt_en": "Adjust the light in image 1 to match the state of the light in image 2, and remove from image 1 any objects that serve the same function as those in image 3.",
"prompt_cn": "将第一张图像中的灯调整为与第二张图像中的状态一致,并移除第一张图像中与第三张图像中功能相同的物体。",
"source_image": "Part5/Multi_Image_Aware/7/source_1.png",
"reference_image_path": [
"Part5/Multi_Image_Aware/7/ref_1.png",
"Part5/Multi_Image_Aware/7/ref_2.png"
]
},
{
"task": "Multi_Image_Aware",
"id": 8,
"prompt_en": "Remove the objects in image 1 that serve the same function as those in image 2.",
"prompt_cn": "移除第一张图像和第二张图像功能相同的物体",
"source_image": "Part5/Multi_Image_Aware/8/source_1.png",
"reference_image_path": [
"Part5/Multi_Image_Aware/8/ref_1.png"
]
},
{
"task": "Multi_Image_Aware",
"id": 9,
"prompt_en": "Change the state of the cake in image 1 to match the cake in image 2.",
"prompt_cn": "将第一张图像中蛋糕的状态变为和第二张图像中的蛋糕一致。",
"source_image": "Part5/Multi_Image_Aware/9/source_1.png",
"reference_image_path": [
"Part5/Multi_Image_Aware/9/ref_1.png"
]
},
{
"task": "Multi_Image_Aware",
"id": 10,
"prompt_en": "Remove the objects in image 1 that serve the same function as those in image 2.",
"prompt_cn": "移除第一张图像中与第二张图像中功能相同的物体。",
"source_image": "Part5/Multi_Image_Aware/10/source_1.png",
"reference_image_path": [
"Part5/Multi_Image_Aware/10/ref_1.png"
]
},
{
"task": "Multi_Ref",
"id": 19,
"prompt_en": "Have the man in image 1 hold the object from image 2.",
"prompt_cn": "让第一张图像中的男人抱着第二张图像中的物体。",
"source_image": "Part5/Multi_pos/19/source_1.png",
"reference_image_path": [
"Part5/Multi_pos/19/ref_1.png"
]
},
{
"task": "Multi_Ref",
"id": 21,
"prompt_en": "Have the boy in image 1 hold the object from image 2.",
"prompt_cn": "让第一张图像中的男孩拿着第二张图像中的物体",
"source_image": "Part5/Multi_pos/21/source_1.png",
"reference_image_path": [
"Part5/Multi_pos/21/ref_1.png"
]
},
{
"task": "Multi_Ref",
"id": 22,
"prompt_en": "Insert the object from image 2 into the cake in image 1 and light it.",
"prompt_cn": "把第二张图像中的物体插入第一张图像的蛋糕上并点燃",
"source_image": "Part5/Multi_pos/22/source_1.png",
"reference_image_path": [
"Part5/Multi_pos/22/ref_1.png"
]
},
{
"task": "Multi_Ref",
"id": 23,
"prompt_en": "Tie the object from image 2 around the woman’s neck in image 1.",
"prompt_cn": "在第一张图像中女人脖子上系上第二张图像中的物体",
"source_image": "Part5/Multi_pos/23/source_1.png",
"reference_image_path": [
"Part5/Multi_pos/23/ref_1.png"
]
},
{
"task": "Multi_Ref",
"id": 24,
"prompt_en": "Replace the toy car in image 1 with the object from image 2.",
"prompt_cn": "把第一张图像中的玩具车换成第二张图像中的物体",
"source_image": "Part5/Multi_pos/24/source_1.png",
"reference_image_path": [
"Part5/Multi_pos/24/ref_1.png"
]
},
{
"task": "Multi_Ref",
"id": 25,
"prompt_en": "Put the glasses from image 2 onto the woman in image 1",
"prompt_cn": "给第一张图像中的女性戴上第二张图像中的眼镜",
"source_image": "Part5/Multi_pos/25/1.png",
"reference_image_path": [
"Part5/Multi_pos/25/2.png"
]
},
{
"task": "Multi_Ref",
"id": 26,
"prompt_en": "Wear the watch from image 2 on the right wrist of the person in image 1.",
"prompt_cn": "将第二张图像中的手表戴在第一张图像中的右手手腕上",
"source_image": "Part5/Multi_pos/26/1.png",
"reference_image_path": [
"Part5/Multi_pos/26/2.png"
]
},
{
"task": "Multi_Ref",
"id": 27,
"prompt_en": "Tie the scarf from image 2 around the woman's neck in image 1.",
"prompt_cn": "在第一张图像中女性的脖子上系上第二张图像中的丝巾",
"source_image": "Part5/Multi_pos/27/1.png",
"reference_image_path": [
"Part5/Multi_pos/27/2.png"
]
},
{
"task": "Multi_Ref",
"id": 28,
"prompt_en": "Have the woman in image 1 hold the folding fan from image 2.",
"prompt_cn": "让第一张图像中的女性手里拿着第二张图像中的折扇",
"source_image": "Part5/Multi_pos/28/1.png",
"reference_image_path": [
"Part5/Multi_pos/28/2.png"
]
},
{
"task": "Multi_Ref",
"id": 29,
"prompt_en": "Have the man in image 1 carry the bag from image 2 over his shoulder.",
"prompt_cn": "让第一张图像中的男性肩上挎着第二张图像中的包。",
"source_image": "Part5/Multi_pos/29/1.png",
"reference_image_path": [
"Part5/Multi_pos/29/2.png"
]
},
{
"task": "Virtual_Try_On",
"id": 1,
"prompt_en": "Change the man’s outfit in image 1 to the T-shirt from image 2 and the jeans from image 3.",
"prompt_cn": "让第一张图像中的男子换上第二张图像的T恤和第三张图像的牛仔裤。",
"source_image": "Part5/Virtual_Try_On/1/source.png",
"reference_image_path": [
"Part5/Virtual_Try_On/1/ref_1.png",
"Part5/Virtual_Try_On/1/ref_2.png"
]
},
{
"task": "Virtual_Try_On",
"id": 2,
"prompt_en": "Dress the girl in image 1 in the dress shown in image 2.",
"prompt_cn": "将第一张图像中女生的衣服换成第二张图像的这条裙子",
"source_image": "Part5/Virtual_Try_On/2/source.png",
"reference_image_path": [
"Part5/Virtual_Try_On/2/ref_1.png"
]
},
{
"task": "Virtual_Try_On",
"id": 3,
"prompt_en": "Replace the man’s outfit in image 1 with the leather jacket from image 2 and the jeans from image 3.",
"prompt_cn": "给第一张图像中的男子换上第二张图像的皮夹克和第三张图像的牛仔裤。",
"source_image": "Part5/Virtual_Try_On/3/source.png",
"reference_image_path": [
"Part5/Virtual_Try_On/3/ref_1.png",
"Part5/Virtual_Try_On/3/ref_2.png"
]
},
{
"task": "Virtual_Try_On",
"id": 4,
"prompt_en": "Replace the model’s outfit in image 1 with the shirt from image 2 and the skirt from image 3.",
"prompt_cn": "将第一张图像中的模特的服装换成第二张图像的衬衫和第三张图像的裙子。",
"source_image": "Part5/Virtual_Try_On/4/source.png",
"reference_image_path": [
"Part5/Virtual_Try_On/4/ref_1.png",
"Part5/Virtual_Try_On/4/ref_2.png"
]
},
{
"task": "Virtual_Try_On",
"id": 5,
"prompt_en": "Change the clothing of the businessman in image 1 to the suit from image 2 and the tie from image 3.",
"prompt_cn": "让第一张图像中的商务男士换上第二张图像的西装和第三张图像的领带。",
"source_image": "Part5/Virtual_Try_On/5/source.png",
"reference_image_path": [
"Part5/Virtual_Try_On/5/ref_1.png",
"Part5/Virtual_Try_On/5/ref_2.png"
]
},
{
"task": "Virtual_Try_On",
"id": 6,
"prompt_en": "Change the clothing of the seated girl in image 1 to the hoodie from image 2 and the pants from image 3.",
"prompt_cn": "让第一张图像中坐着的女孩换上第二张图像的连帽衫和第三张图像中的裤子。",
"source_image": "Part5/Virtual_Try_On/6/source.png",
"reference_image_path": [
"Part5/Virtual_Try_On/6/ref_1.png",
"Part5/Virtual_Try_On/6/ref_2.png"
]
},
{
"task": "Virtual_Try_On",
"id": 7,
"prompt_en": "Dress the girl in image 1 with the beige trench coat from image 2.",
"prompt_cn": "给第一张图像中的女生穿上第二张图像中的米色风衣",
"source_image": "Part5/Virtual_Try_On/7/source.png",
"reference_image_path": [
"Part5/Virtual_Try_On/7/ref_1.png"
]
},
{
"task": "Virtual_Try_On",
"id": 8,
"prompt_en": "Replace the girl’s outfit in image 1 with the tank top from image 2 and the wide-leg pants from image 3.",
"prompt_cn": "把第一张图像中女生的衣服换成第二张图像的背心和第三张图像的阔腿裤。",
"source_image": "Part5/Virtual_Try_On/8/source.png",
"reference_image_path": [
"Part5/Virtual_Try_On/8/ref_1.png",
"Part5/Virtual_Try_On/8/ref_2.png"
]
},
{
"task": "Virtual_Try_On",
"id": 9,
"prompt_en": "Change the clothing of the girl in image 1 to the top from image 2 and the yoga pants from image 3.",
"prompt_cn": "给第一张图像中的女孩穿上第二张图像中的上衣和第三张图像中的瑜伽裤。",
"source_image": "Part5/Virtual_Try_On/9/source.png",
"reference_image_path": [
"Part5/Virtual_Try_On/9/ref_1.png",
"Part5/Virtual_Try_On/9/ref_2.png"
]
},
{
"task": "Virtual_Try_On",
"id": 10,
"prompt_en": "Replace the dancer’s outfit in image 1 with the ballet tutu from image 2.",
"prompt_cn": "将第一张图像中的舞者换上第二张图像中的芭蕾舞裙。",
"source_image": "Part5/Virtual_Try_On/10/source.png",
"reference_image_path": [
"Part5/Virtual_Try_On/10/ref_1.png"
]
},
{
"task": "Complex",
"id": "200",
"prompt_en": "Remove the chair on the left, hang a black suit jacket on the chair on the right, replace the flowers in the vase with roses, and remove the fruits and fruit plate from the image.",
"prompt_cn": "移除左侧的椅子,在右侧的椅子上挂一件黑色西装外套,将花瓶里的花替换为玫瑰花,移除图像中的水果和水果盘。",
"source_image": "Part1/image/200.jpg"
},
{
"task": "Complex",
"id": "201",
"prompt_en": "Remove the 'Stop' sign and the pink helmet, and add a skateboard on the road.",
"prompt_cn": "移除‘Stop’的标志和粉色的头盔,在路上加入一个滑板。",
"source_image": "Part1/image/201.jpg"
},
{
"task": "Complex",
"id": "205",
"prompt_en": "Add the black text 'Machine Learning' in the center of the laptop screen, remove the circular ornament on the left, place an open heavy dictionary in front of the laptop, and remove the stone in the lower-left corner of the desk.",
"prompt_cn": "在笔记本电脑屏幕中央添加一句黑色文字‘Machine Learning’,将左侧圆环形摆件移除,在笔记本电脑前面加入一本翻开的厚重词典,移除桌面左前方的石头。",
"source_image": "Part1/image/205.jpg"
},
{
"task": "Complex",
"id": "219",
"prompt_en": "Add a cyclist on the road in front of the house, place a fire extinguisher below the 'HUS N2' sign and then remove the sign, and remove the streetlight from the image.",
"prompt_cn": "在房子前的道路上添加一名骑行者,在‘HUS N2’牌子下面加入灭火器,并删除‘HUS N2’的牌子,删除图像中的路灯。",
"source_image": "Part1/image/219.jpg"
},
{
"task": "Complex",
"id": "229",
"prompt_en": "Add a small digital timer on the floor in front of the two yoga mats, with the display text changed to ‘00:30 HOLD’. Have the two boys look up at the timer. Replace the purple yoga mat with a green one. Add a yoga instructor wearing a bright orange top behind the two characters.",
"prompt_cn": "在两张瑜伽垫前面的地板上添加一个小型数字计时器,并将显示文字改为‘00:30 HOLD’。让两个男孩抬头看向计时器。把紫色的瑜伽垫换成绿色的。在两个角色身后添加一位穿着亮橙色上衣的瑜伽教练。",
"source_image": "Part1/image/229.jpg"
},
{
"task": "Complex",
"id": "235",
"prompt_en": "Turn on the TV on the wall, showing a Tom and Jerry cartoon. Write 'Successful' on the wall above the TV. Remove the clock in the image, and change all the stools to blue.",
"prompt_cn": "打开墙上的电视,显示猫和老鼠的动画片,在电视上方的墙上写上‘Successful’,移除图中的时钟,将所有凳子改为蓝色。",
"source_image": "Part1/image/235.jpg"
},
{
"task": "Complex",
"id": "303",
"prompt_en": "Have the girl pick up the water bottle in the center and drink from it, change the pants to the same color as the top, and add a white towel around her neck.",
"prompt_cn": "让这个女生拿起中间的水瓶喝水,将裤子改为与上衣相同的颜色,并在脖子上挂一条白色毛巾。",
"source_image": "Part1/image/303.jpg"
},
{
"task": "Complex",
"id": "304",
"prompt_en": "Add a red scarf to the boy, place a sticky note on the table with the cola, have him pick up the cola, and change his short-sleeved shirt to white.",
"prompt_cn": "给这个男孩戴上一条红领巾,在放可乐的桌子上添加一个便利贴,让他拿起桌子上的可乐,并将短袖改为白色。",
"source_image": "Part1/image/304.jpg"
},
{
"task": "Complex",
"id": "305",
"prompt_en": "Swap the blue cup with the red cup, add a roll of tape next to the highlighter, remove the cup with tea, and change the pink desktop to white.",
"prompt_cn": "交换蓝色杯子和红色杯子,在荧光笔旁边添加一卷胶带,移除装有茶叶水的杯子,并将粉色桌面改为白色。",
"source_image": "Part1/image/305.jpg"
},
{
"task": "Complex",
"id": "306",
"prompt_en": "Add a blue sailboat and a yellow small boat on the lake, and add a glowing golden text 'Lake Observatory' in the sky area at the top of the image.",
"prompt_cn": "在湖面上添加一艘蓝色帆船和一艘黄色小艇,在图像上方的天空区域添加一行金黄色发光的文字‘Lake Observatory’。",
"source_image": "Part1/image/306.jpg"
},
{
"task": "Complex",
"id": "1",
"prompt_en": "",
"prompt_cn": "",
"source_image": "Part2/Complex_paint/CN/1.png"
},
{
"task": "Complex",
"id": "2",
"prompt_en": "",
"prompt_cn": "",
"source_image": "Part2/Complex_paint/CN/2.png"
},
{
"task": "Complex",
"id": "3",
"prompt_en": "",
"prompt_cn": "",
"source_image": "Part2/Complex_paint/CN/3.png"
},
{
"task": "Complex",
"id": "4",
"prompt_en": "",
"prompt_cn": "",
"source_image": "Part2/Complex_paint/CN/4.png"
},
{
"task": "Complex",
"id": "5",
"prompt_en": "",
"prompt_cn": "",
"source_image": "Part2/Complex_paint/CN/5.png"
},
{
"task": "Complex",
"id": "6",
"prompt_en": "",
"prompt_cn": "",
"source_image": "Part2/Complex_paint/CN/6.png"
},
{
"task": "Complex",
"id": "7",
"prompt_en": "",
"prompt_cn": "",
"source_image": "Part2/Complex_paint/CN/7.png"
},
{
"task": "Complex",
"id": "8",
"prompt_en": "",
"prompt_cn": "",
"source_image": "Part2/Complex_paint/CN/8.png"
},
{
"task": "Complex",
"id": "9",
"prompt_en": "",
"prompt_cn": "",
"source_image": "Part2/Complex_paint/CN/9.png"
},
{
"task": "Complex",
"id": "10",
"prompt_en": "",
"prompt_cn": "",
"source_image": "Part2/Complex_paint/CN/10.png"
},
{
"task": "Complex",
"id": "1",
"prompt_en": "",
"prompt_cn": "",
"source_image": "Part2/Complex_paint/EN/1.png"
},
{
"task": "Complex",
"id": "2",
"prompt_en": "",
"prompt_cn": "",
"source_image": "Part2/Complex_paint/EN/2.png"
},
{
"task": "Complex",
"id": "3",
"prompt_en": "",
"prompt_cn": "",
"source_image": "Part2/Complex_paint/EN/3.png"
},
{
"task": "Complex",
"id": "4",
"prompt_en": "",
"prompt_cn": "",
"source_image": "Part2/Complex_paint/EN/4.png"
},
{
"task": "Complex",
"id": "5",
"prompt_en": "",
"prompt_cn": "",
"source_image": "Part2/Complex_paint/EN/5.png"
},
{
"task": "Complex",
"id": "6",
"prompt_en": "",
"prompt_cn": "",
"source_image": "Part2/Complex_paint/EN/6.png"
},
{
"task": "Complex",
"id": "7",
"prompt_en": "",
"prompt_cn": "",
"source_image": "Part2/Complex_paint/EN/7.png"
},
{
"task": "Complex",
"id": "8",
"prompt_en": "",
"prompt_cn": "",
"source_image": "Part2/Complex_paint/EN/8.png"
},
{
"task": "Complex",
"id": "9",
"prompt_en": "",
"prompt_cn": "",
"source_image": "Part2/Complex_paint/EN/9.png"
},
{
"task": "Complex",
"id": "10",
"prompt_en": "",
"prompt_cn": "",
"source_image": "Part2/Complex_paint/EN/10.png"
},
{
"task": "Visual_Text_CN",
"id": "2",
"prompt_en": "Remove the small black Chinese credits text near the bottom between the two swordsmen.",
"prompt_cn": "移除下方两名剑客之间靠近底边的小号黑色中文演职员信息",
"source_image": "Part3/Text_cn/1.jpg"
},
{
"task": "Visual_Text_CN",
"id": "3",
"prompt_en": "Change the title '江湖往事' to '剑影萍踪'",
"prompt_cn": "将标题文字“江湖往事”更改为“剑影萍踪”。",
"source_image": "Part3/Text_cn/1.jpg"
},
{
"task": "Visual_Text_CN",
"id": "4",
"prompt_en": "Delete the large pink-bordered Chinese text “2月14日 情人节上映” at the bottom center.",
"prompt_cn": "删除画面底部中央粉色描边的中文“2月14日 情人节上映”文字",
"source_image": "Part3/Text_cn/2.jpg"
},
{
"task": "Visual_Text_CN",
"id": "5",
"prompt_en": "Change the date '2月14日 情人节上映' to '七夕佳节 甜蜜上映'",
"prompt_cn": "将文字“2月14日 情人节上映”修改为“七夕佳节 甜蜜上映”。",
"source_image": "Part3/Text_cn/2.jpg"
},
{
"task": "Visual_Text_CN",
"id": "8",
"prompt_en": "Change the actor name '吴京' to '沈腾'",
"prompt_cn": "将演员姓名“吴京”更改为“沈腾”。",
"source_image": "Part3/Text_cn/3.jpg"
},
{
"task": "Visual_Text_CN",
"id": "10",
"prompt_en": "Erase the red dripping Chinese title characters “背后有人” from the top center of the poster.",
"prompt_cn": "擦除顶部中央滴血效果的红色中文标题“背后有人”文字",
"source_image": "Part3/Text_cn/4.jpg"
},
{
"task": "Visual_Text_CN",
"id": "11",
"prompt_en": "Change the title '背后有人' to '午夜凶铃'",
"prompt_cn": "将标题文字从“背后有人”修改为“午夜凶铃”。",
"source_image": "Part3/Text_cn/4.jpg"
},
{
"task": "Visual_Text_CN",
"id": "12",
"prompt_en": "Remove the brown Chinese title text “暑期档合家欢” from the central white banner.",
"prompt_cn": "移除中央白色横幅上棕色的“暑期档合家欢”中文标题文字",
"source_image": "Part3/Text_cn/5.jpg"
},
{
"task": "Visual_Text_CN",
"id": "13",
"prompt_en": "Change the slogan '暑期档合家欢' to '寒假必看动画'",
"prompt_cn": "将标语“暑期档合家欢”更改为“寒假必看动画”。",
"source_image": "Part3/Text_cn/5.jpg"
},
{
"task": "Visual_Text_CN",
"id": "14",
"prompt_en": "Erase the large white Chinese title text in the sky area near the top.",
"prompt_cn": "擦除上方天空中大的白色中文标题“青藏高原:世界屋脊”文字",
"source_image": "Part3/Text_cn/6.jpg"
},
{
"task": "Visual_Text_EN",
"id": "1",
"prompt_en": "Remove the large metallic silver English title text “CYBER HUNT” at the top of the poster.",
"prompt_cn": "移除画面顶部巨大的银色英文标题“CYBER HUNT”文字效果",
"source_image": "Part3/Text_en/1.jpg"
},
{
"task": "Visual_Text_EN",
"id": "3",
"prompt_en": "Erase the blood-red English title text “THE GHOST” from the upper center of the image.",
"prompt_cn": "擦除画面上方中央血红色的英文标题“THE GHOST”文字",
"source_image": "Part3/Text_en/2.jpg"
},
{
"task": "Visual_Text_EN",
"id": "4",
"prompt_en": "Change the title 'THE GHOST' to 'THE ALIEN'.",
"prompt_cn": "将标题文字从“THE GHOST”更改为“THE ALIEN”。",
"source_image": "Part3/Text_en/2.jpg"
},
{
"task": "Visual_Text_EN",
"id": "5",
"prompt_en": "Add light-gold text reading 'Coming Soon' in the lower-right corner of the image.",
"prompt_cn": "在画面右下方添加淡金色“Coming Soon”字样。",
"source_image": "Part3/Text_en/3.jpg"
},
{
"task": "Visual_Text_EN",
"id": "9",
"prompt_en": "Remove the large white uppercase slogan text “A FLUFFY ADVENTURE - COMING SOON” at the bottom center.",
"prompt_cn": "移除底部中央白色大写英文标语“A FLUFFY ADVENTURE - COMING SOON”",
"source_image": "Part3/Text_en/5.jpg"
},
{
"task": "Visual_Text_EN",
"id": "10",
"prompt_en": "Change the title 'OCEAN' to 'DESERT'.",
"prompt_cn": "将标题“OCEAN”更改为“DESERT”。",
"source_image": "Part3/Text_en/6.jpg"
},
{
"task": "Visual_Text_EN",
"id": "13",
"prompt_en": "Remove the large yellow English text and numbers “5 STARS” at the lower left corner.",
"prompt_cn": "移除左下角大号的黄色英文数字与单词“5 STARS”",
"source_image": "Part3/Text_en/8.jpg"
},
{
"task": "Visual_Text_EN",
"id": "14",
"prompt_en": "Remove the large yellow English title text “THE GRIP OF TERROR!” in the lower right.",
"prompt_cn": "删除右下角大号黄色英文标题“THE GRIP OF TERROR!”文字",
"source_image": "Part3/Text_en/9.jpg"
},
{
"task": "Visual_Text_EN",
"id": "20",
"prompt_en": "Add the light brown English phrase 'Music for the soul' in the lower-left corner.",
"prompt_cn": "在左下角添加浅棕色英文短句“Music for the soul”。",
"source_image": "Part3/Text_en/15.jpg"
},
{
"task": "Visual_Text_EN",
"id": "21",
"prompt_en": "Remove the text 'SYMPHONY ORCHESTRA'.",
"prompt_cn": "移除“SYMPHONY ORCHESTRA” 字体。",
"source_image": "Part3/Text_en/15.jpg"
}
] |