File size: 88,222 Bytes
8ce72f6 |
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 |
{
"set_type": "closeset",
"task": "multilanguage generation",
"data_source": "",
"type": "generation",
"modality": {
"in": [
"text"
],
"out": [
"image"
]
},
"version": "1.0",
"skill": "Image Denoising",
"domain": "General-domain",
"general_capability": [
"Creativity and Innovation"
],
"data": [
{
"id": "mlg_0",
"input": {
"prompt": "This is an alleviation from your Lord and a mercy.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_1",
"input": {
"prompt": "The Supreme Lord of the indescribable grace (Alekha) is worshiped.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_3",
"input": {
"prompt": "\"தாய் மீது சத்தியம் தமிழ் திரைப்படம்\" (in Tamil).",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_4",
"input": {
"prompt": "(Judge) 全民创意争霸赛 (评审) Giant Stars 2006 Giant 星光灿烂 2006 Where The Queue Starts 排排站,查查看 The Ultimate Comedian 爆笑新人王 What's Art?",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_8",
"input": {
"prompt": "He gave 8000 mutakas (measure) of grains to Visaladeva.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_10",
"input": {
"prompt": "The Dragon That Wasn't (Or Was He?)",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_13",
"input": {
"prompt": "Thus the Supreme Lord Himself taught how one should serve his guru.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_15",
"input": {
"prompt": "The TSA will continue to use other full body scanners.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_16",
"input": {
"prompt": "After the first year, however, most of the materials are reused, including dictionaries.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_17",
"input": {
"prompt": "International allies use is under consideration.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_18",
"input": {
"prompt": "At least one such star, HR 107, is known.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_21",
"input": {
"prompt": "On 15 November 2008 experts from UNESCO examined the stones to determine their condition.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_23",
"input": {
"prompt": "Iceland is in a unique position.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_24",
"input": {
"prompt": "\"Part 1 黃明志要見首相 Namewee wanna meet PM Malaysia!",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_26",
"input": {
"prompt": "ניפגש בכיכר .",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_27",
"input": {
"prompt": "From the very beginning, it was designed to be an automated rapid transit system.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_28",
"input": {
"prompt": "Have mindfulness whatever you do.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_30",
"input": {
"prompt": "سلام بر قدس / آغاز راهپیمایی در شیراز (in Persian).",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_32",
"input": {
"prompt": "I don't how it'll be in China, I hope it will be like in Russia.\"",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_33",
"input": {
"prompt": "developing countries and countries in transition.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_35",
"input": {
"prompt": "The official WebGL website offers a simple test page.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_36",
"input": {
"prompt": "I asked the Lord: \"O Lord!",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_38",
"input": {
"prompt": "And listen to your customers.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_39",
"input": {
"prompt": "When Harry Met Sally... grossed a total of US$92.8 million in North America.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_42",
"input": {
"prompt": "Murray Burnett called it \"true yesterday, true today, true tomorrow\".",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_43",
"input": {
"prompt": "You’re only borrowing them.\"",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_44",
"input": {
"prompt": "This transition in land use caused \"several decades of disruption and hardship.\"",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_45",
"input": {
"prompt": "The Board consisted of three presidentially appointed executives, and started with no budget, no staff, and no furniture.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_46",
"input": {
"prompt": "The second problem is that there is 0 dB directivity leading to very poor isolation between the output ports.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_47",
"input": {
"prompt": "Batman and Oracle trained her as the next Batgirl.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_48",
"input": {
"prompt": "Up to 99% of the remaining prisoners were murdered.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_50",
"input": {
"prompt": "Only the Middle East & North Africa (2.09) and Sub-Saharan Africa (2.61) would then have numbers greater than 2.05.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_51",
"input": {
"prompt": "Lincoln had a secretary named Kennedy who told him not to go to the theatre.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_52",
"input": {
"prompt": "She was no more a concubine, but a true, beloved wife.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_55",
"input": {
"prompt": "A typical example is: 00 48 1C 01.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_57",
"input": {
"prompt": "And he who has seen has testified, and his testimony is true; and he knows that he is telling the truth, so that you also may believe.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_58",
"input": {
"prompt": "These social clubs were important in establishing relationships among powerful leaders of American society.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_60",
"input": {
"prompt": "The company closed, however, when one of its top municipal clients terminated the contract in 1995.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_61",
"input": {
"prompt": "Furthermore, that which one does fear cannot be death itself, because one has never died.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_63",
"input": {
"prompt": "This can be considered an intermediate model between the EMP and the MP38.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_64",
"input": {
"prompt": "As a general rule, one should test the most promising candidates first.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_66",
"input": {
"prompt": "Then the infidels were defeated.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_67",
"input": {
"prompt": "However, the U.S. Department of Justice contends that U.S. law does not allow us to share information about some national security requests that we might receive.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_68",
"input": {
"prompt": "Ultimately, neither the 2006 nor 2007 immigration reform bill has become law.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_69",
"input": {
"prompt": "The Serbian campaign may have taken place between two distinct phases in the war against Hungary.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_70",
"input": {
"prompt": "In the February 2007 revised proposal the hospital also agreed to retain 15 percent of the land as green space.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_71",
"input": {
"prompt": "Yet, he says that this political activity did more for him than it did for the Salvadorans.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_72",
"input": {
"prompt": "Most importantly, it was found on both sides of the North Pacific.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_73",
"input": {
"prompt": "(Shall ye touch hands, cuts the bag volumes).",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_74",
"input": {
"prompt": "Grace Yap, \"Smells like team spirit\", TODAY, 23 December 2006.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_77",
"input": {
"prompt": "The report shows that the US makes the most demands for Google users' data, and Google said that it made 12,539 requests that affected some 22,000 accounts.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_80",
"input": {
"prompt": "The traditional drink of Russia is not coffee, but black tea.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_81",
"input": {
"prompt": "This has been referred to as the traditional or the Internet Explorer box model.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_84",
"input": {
"prompt": "For example, the barrier of the provinces which have 3 seats is 25%.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_86",
"input": {
"prompt": "An Asteroid (183287 Deisenstein) was named in his honor.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_92",
"input": {
"prompt": "There are also other occasions when he accompanied William back to Normandy.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_93",
"input": {
"prompt": "PM VNC server, remote control software.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_96",
"input": {
"prompt": "The \"most important\" product component is listed first.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_98",
"input": {
"prompt": "Only in this way can we obtain the living space we need.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_99",
"input": {
"prompt": "This is a profound mystery—but I am talking about Christ and the church.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_101",
"input": {
"prompt": "This debate was also brought to national television in September 1980, which was rare at that time.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_102",
"input": {
"prompt": "The first two national parks were founded in the 1930s by private organisations.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_103",
"input": {
"prompt": "Outside the EU is Norway and Switzerland.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_105",
"input": {
"prompt": "For a typical office of 20 people with average usage, 1 TB would be sufficient for about 1 to 4 years.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_106",
"input": {
"prompt": "He is one of the cleverest speakers I have ever heard.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_107",
"input": {
"prompt": "Meanwhile, Mari's unsuspecting parents prepare a surprise party for her.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_108",
"input": {
"prompt": "I only hope that kind-hearted people will be able to donate a few supplies to help build a home for these 200 dogs.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_109",
"input": {
"prompt": "It is also important to realize that the peoples of the Pacific islands may have come from more than one direction.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_111",
"input": {
"prompt": "On 23 March 2016 all services of Freenet6/Gogo6 were halted.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_115",
"input": {
"prompt": "Up until this time, a number of Christians were still part of the Jewish community.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_117",
"input": {
"prompt": "And Abraham planted a grove in Beersheba, and called there on the name of the LORD, the everlasting God.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_119",
"input": {
"prompt": "Instead, she went to an aunt's house, but around 15 officials followed her.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_120",
"input": {
"prompt": "This was partly revoked in 1235, but still no peace could be made.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_121",
"input": {
"prompt": "They're shooting me for the bread and chewing gum I stole when I was 12 years old.”",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_126",
"input": {
"prompt": "Stephen moves to London and writes a well-received first novel.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_127",
"input": {
"prompt": "During 1931, the New Party became increasingly influenced by Fascism.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_128",
"input": {
"prompt": "Since the requirement for such weapons still existed, the military quickly announced a follow-up project with similar goals.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_129",
"input": {
"prompt": "The council had 2,507 members, some of whom were elected.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_134",
"input": {
"prompt": "In 1996, Flash (originally known as FutureSplash) was developed.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_135",
"input": {
"prompt": "They have difficulty explaining what has frightened them: HARRY: There was nothing … but we were very scared.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_136",
"input": {
"prompt": "However, this information was quickly dismissed by Thai authorities.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_137",
"input": {
"prompt": "And then everything will be sweet.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_139",
"input": {
"prompt": "He makes a wish to be with Nui for just one day, and his wish comes true.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_140",
"input": {
"prompt": "In the above example, form1 contains the symbol +.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_141",
"input": {
"prompt": "The Quran refers to certain Scrolls of Abraham, which have alternatively been translated as the Books of Abraham.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_142",
"input": {
"prompt": "Their son, John M. Ackerman, is also an academic who lives and works in Mexico.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_143",
"input": {
"prompt": "The Union of Muslims of Kazakhstan invited Hamas leaders to Kazakhstan in 2006.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_145",
"input": {
"prompt": "Around 587 students escaped, but 79 were injured.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_147",
"input": {
"prompt": "It is my job to explain the beauties of the free market.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_148",
"input": {
"prompt": "Navigation and balance are also managed by the control system.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_149",
"input": {
"prompt": "R and R′ can be any carbon fragment.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_150",
"input": {
"prompt": "This was even considered by President McKinley at the beginning of the phase.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_151",
"input": {
"prompt": "They wait for their Master's return and resurrection.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_152",
"input": {
"prompt": "The Sixaxis controller was later phased out and replaced by the DualShock 3 controller completely and is no longer being produced in any region.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_153",
"input": {
"prompt": "The island's appellation \"Madagascar\" is not of local origin but rather was popularized in the Middle Ages by Europeans.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_154",
"input": {
"prompt": "However, the proposal has drawn substantial local opposition and the plan is currently under review.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_156",
"input": {
"prompt": "Both sorts of entities enter our conceptions only as cultural posits.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_160",
"input": {
"prompt": "These deportations from 1935 to 1936 affected tens of thousands of families.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_161",
"input": {
"prompt": "However, she was an alcoholic and often had to be brought home from Chicago bars by her husband.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_163",
"input": {
"prompt": "Liberia has begun exploration for offshore oil; unproven oil reserves may be in excess of one billion barrels.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_164",
"input": {
"prompt": "The inhabitants are all black, and the Jews also.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_165",
"input": {
"prompt": "He who belongs to God hears what God says.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_167",
"input": {
"prompt": "Lower elements represent incomplete knowledge or intermediate results.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_172",
"input": {
"prompt": "Here, too, however, he continued his astronomical work begun at Bologna, observing, for example, a lunar eclipse on the night of 5–6 November 1500.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_174",
"input": {
"prompt": "The terms public infrastructure or critical infrastructure are at times used interchangeably.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_175",
"input": {
"prompt": "Essentially, this is to obtain co-operation between the two parties, in order to ensure as much business as possible can be dealt with in each parliamentary session.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_178",
"input": {
"prompt": "(The PC and PC/XT may require maximum mode for other reasons, such as perhaps to support the DMA controller.)",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_179",
"input": {
"prompt": "The flooding also killed 25–30 head of livestock.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_182",
"input": {
"prompt": "In 1939, the age restriction for entering Social Security was eliminated.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_183",
"input": {
"prompt": "Assistance to criminal investigations: The NTSB has primary jurisdiction over civil transportation investigations, but not criminal investigations.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_184",
"input": {
"prompt": "A 2007 study compared total traveled kilometres and total estimated emissions.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_187",
"input": {
"prompt": "Until then, the EU had focused on surveillance and rescue operations.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_188",
"input": {
"prompt": "In January 2007 the developer Alex Ionescu announced that he had found a method that allows end users to bypass Vista's Protected Media Path.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_190",
"input": {
"prompt": "I used to be a bit embarrassed but now I can feel proud and nostalgic about those songs.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_192",
"input": {
"prompt": "For the next 300 years, the fountain survived without statues.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_195",
"input": {
"prompt": "New and more efficient ways to convert methane into methanol are also being developed.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_196",
"input": {
"prompt": "In January 1943, all photographic operations came under the jurisdiction of the National Film Board.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_197",
"input": {
"prompt": "The election campaign was limited to 90 days.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_200",
"input": {
"prompt": "\"Summer Belongs to You\".",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_201",
"input": {
"prompt": "After this apparition this comet was lost and was thus designated D/1892 T1.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_202",
"input": {
"prompt": "The London Library is located there.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_203",
"input": {
"prompt": "The construction site of FASR is not yet determined but it will be somewhere in the southwest United States.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_206",
"input": {
"prompt": "Vietnam and Cambodia rail news roundup",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_210",
"input": {
"prompt": "She has also said that America's lack of free health care drove her \"absolutely crazy\".",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_212",
"input": {
"prompt": "The Declaration lists a series of goals aimed at providing \"reliable, adequate and affordable\" energy supplies.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_214",
"input": {
"prompt": "Also known as the Partition Treaty of 1648.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_216",
"input": {
"prompt": "At a very young age, an infant does not know how to talk, therefore they express themselves in different ways.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_217",
"input": {
"prompt": "This election will determine who will become the next President of South Africa.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_219",
"input": {
"prompt": "The plan would use modern technology to create food security and would maintain political control.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_220",
"input": {
"prompt": "In most (but not all) countries, the allocation is channelized and may require special application.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_224",
"input": {
"prompt": "However, Russia was opposed to any nominee of France and Sweden.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_225",
"input": {
"prompt": "This implies immediately that cf(κ) ≤ κ.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_226",
"input": {
"prompt": "“And that was the last straw”, he later told a reporter.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_227",
"input": {
"prompt": "66-6 (2002): Introduced internal lock.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_229",
"input": {
"prompt": "A second attack in 1061 was successful.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_230",
"input": {
"prompt": "Albania and North Korea perhaps imposed the most extreme restrictions on emigration.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_231",
"input": {
"prompt": "He ordered them to repay the money.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_232",
"input": {
"prompt": "He tried to save her, but she had lost too much blood.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_233",
"input": {
"prompt": "Principal shooting was completed in 2008 in Germany and Morocco.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_234",
"input": {
"prompt": "The galactic community has since lived in fear of another possible invasion.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_235",
"input": {
"prompt": "Since 1949 China's political leaders have tried a variety of large-scale social experiments to boost agricultural production.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_239",
"input": {
"prompt": "USA Today wrote: \"It may not have been the most important debate of the 2012 presidential election season but it was certainly, so far, the most entertaining.\"",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_242",
"input": {
"prompt": "Google, for instance, does so.",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_244",
"input": {
"prompt": "一些財政援助顧問都提到了這個“8%的規則。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_248",
"input": {
"prompt": "社会影响力不一定是负面的。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_249",
"input": {
"prompt": "他支持Joe Parrino;然而,Parrino不久在一家餐館裏被槍殺而死。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_250",
"input": {
"prompt": "Babel 的核心版本目前每個月有超過 500 萬次下載。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_251",
"input": {
"prompt": "相比之下,德国的城市并没有得到同样的关注。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_253",
"input": {
"prompt": "乔治·华盛顿的密码数字是711。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_257",
"input": {
"prompt": "伊拉克的解放实际上是最罕见的事情 - 英国外交政策的成功。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_261",
"input": {
"prompt": "然而他们可以改变自身的财务使命,也就是他们在实际行为中如何表达自身的财务特性的方式。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_262",
"input": {
"prompt": "儘管有立法,社會對巴迪人的歧視仍在繼續。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_263",
"input": {
"prompt": "Mill认为它是一个词。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_265",
"input": {
"prompt": "在他们挂断电话前,罗杰斯警告他“你的明天再也不会是一样的”。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_266",
"input": {
"prompt": "里根总统说,它还会提醒美国人教师和教育在他们国家的重要作用。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_270",
"input": {
"prompt": "一伙吉尔吉斯人要求将一座以乌兹别克人为主的集体农场交给他们。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_271",
"input": {
"prompt": "然而,坎贝尔(2005)关注了1907-1914年的经济弱点,将公众需求与进步主义干预联系在一起。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_272",
"input": {
"prompt": "在宣布这一消息的时候,每天有200人申请在奥地利避难。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_273",
"input": {
"prompt": "Zameen.com也有一本房地产杂志。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_275",
"input": {
"prompt": "這些步槍從來沒有被修改為後期型的Ag m/42B版本。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_277",
"input": {
"prompt": "美国红十字会重组并专业化。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_278",
"input": {
"prompt": "除了大使之外,大使館還包括13個旨在加強美國和以色列之間關係的部門。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_279",
"input": {
"prompt": "(1999年以前为合成欧元XEU)。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_280",
"input": {
"prompt": "他们不明白任何其他语言”。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_281",
"input": {
"prompt": "在1947年和1951年之间,一个教育出版社和他的妻子和五个孩子使用它作为他们的家庭。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_284",
"input": {
"prompt": "第四世达赖喇嘛于1601年来到西藏。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_285",
"input": {
"prompt": "Adobe宣称没有制定PDF 1.8参考。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_287",
"input": {
"prompt": "邦尼国王(现今为尼日利亚)对此感到惊恐: 我们认为这一贸易必须继续下去。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_289",
"input": {
"prompt": "这是每一个没有得到救恩的人的最后命运,在那里他们将因罪而受到惩罚。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_291",
"input": {
"prompt": "11:至少有 PG(2,11),其他仍不知道,但有可能。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_293",
"input": {
"prompt": "博物馆将被命名为Munch/Stenersen。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_295",
"input": {
"prompt": "多形态:所有运输方式中的酒精和药物测试。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_297",
"input": {
"prompt": "2010年1月关于Icesave的争议成为一个问题。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_300",
"input": {
"prompt": "该游戏基于StepMania 5。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_301",
"input": {
"prompt": "長沙地方的領主,亦為偉大兵法家孫武後裔。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_303",
"input": {
"prompt": "在同一演讲中他还解释了为什么冰岛没有兴趣采纳欧元。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_305",
"input": {
"prompt": "他知道我喜歡的口味和東西。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_306",
"input": {
"prompt": "据估计,多达2万名生活在波兰的德裔居民参与了涉及各种形式的颠覆的组织。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_307",
"input": {
"prompt": "”这个事件的“日子和时间”是未知的。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_310",
"input": {
"prompt": "部分种植者失去了所有香蕉作物。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_311",
"input": {
"prompt": "大多数移民试图更进一步,尤其是到意大利。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_312",
"input": {
"prompt": "他仍然保持FreeDOS活跃,目前是该项目的协调员。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_313",
"input": {
"prompt": "2007年,他寫了《Fast Women: The Legendary Ladies of Racing》一書。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_314",
"input": {
"prompt": "她的第一次呼叫是在1908年1月15日,有一位男性掉出窗外。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_315",
"input": {
"prompt": "他展示了只提供有糖、橄榄油,或者只有黄油的食物,都导致了他的试验动物在30至40天内死亡。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_318",
"input": {
"prompt": "該立法使以色列成為採用“北歐模式”的第十個國家。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_320",
"input": {
"prompt": "这些构成英格兰6,955所基督教信仰学校的一大部分。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_321",
"input": {
"prompt": "然而,许多慈善机构抱怨说,他们认为奥斯本的2016年预算有利于大企业,而不是残疾人。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_322",
"input": {
"prompt": "希望明年战争将在叙利亚结束,和平将统治全世界。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_323",
"input": {
"prompt": "“独立的司法机构是法治的基石,对我们的宪法和自由至关重要,”她写道。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_324",
"input": {
"prompt": "西班牙:两年。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_325",
"input": {
"prompt": "1976年,它决定将其活动扩展到该国其他地区。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_327",
"input": {
"prompt": "他们对同化的缺乏也受到了攻击。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_331",
"input": {
"prompt": "犹太社区组织几乎在一夜之间消失。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_332",
"input": {
"prompt": "全波兰的报纸和杂志中约有半数是在华沙印刷的。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_333",
"input": {
"prompt": "PSA欢迎了他们,甚至还卖给他们航班和运营培训。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_334",
"input": {
"prompt": "2005: « Vous allez voir » (您將會看見)。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_335",
"input": {
"prompt": "在法国,最常见的拨号是“36 15”,而“36 17”被更昂贵的服务使用。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_336",
"input": {
"prompt": "随后,俄罗斯迅速过渡到了第三阶段。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_337",
"input": {
"prompt": "卫星对纯121.5 MHz版本的支持已在2009年初停止。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_339",
"input": {
"prompt": "它也是32年前ISIS II以来发射的第一颗加拿大科学卫星。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_340",
"input": {
"prompt": "穆巴拉克还任命了近30年来的第一位副总统。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_341",
"input": {
"prompt": "墨西哥要求朗姆酒的年龄至少为八个月;多米尼加共和国、巴拿马和委内瑞拉则需要两年时间。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_344",
"input": {
"prompt": "彼使聞已,悉詣城主,受其教令,各還本處。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_346",
"input": {
"prompt": "在接下来的几天里,我将为英国制定我的计划,我希望能够提供团结和变革。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_347",
"input": {
"prompt": "全部15台机车在最初都被漆以绿色涂装。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_348",
"input": {
"prompt": "尽管如此,中国政府一直对30万遇难者的估计保持强硬立场。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_350",
"input": {
"prompt": "我们还利用下列简单的观察。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_352",
"input": {
"prompt": "CAMFED(英语:CAMFED)是提供次撒哈拉非洲女孩教育的組織。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_355",
"input": {
"prompt": "这种前所未有的发展被归结于摩根的银行风格。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_357",
"input": {
"prompt": "它于2015年1月2日到达那里,移民乘坐巴士被分送意大利的其他地方。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_359",
"input": {
"prompt": "据报道,约翰在他42岁生日时曾租下整个楼层。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_360",
"input": {
"prompt": "2006年,约有400名柬埔寨人来支持和庆祝骄傲游行。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_361",
"input": {
"prompt": "他要了食物和火,并说:“我饿死了。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_362",
"input": {
"prompt": "他也设法在立陶宛找出更多的盟友。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_363",
"input": {
"prompt": "此外,日本政府也绝不会无视俄国问题。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_364",
"input": {
"prompt": "另一个问题出现在自由逻辑中。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_366",
"input": {
"prompt": "正如其它抵抗运动一样,当中存在恐怖主义。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_368",
"input": {
"prompt": "复其后世,畴其爵邑,世世毋有所与。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_370",
"input": {
"prompt": "這個編碼系統也被稱為Code Page 10029。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_372",
"input": {
"prompt": "進入朝鮮的任何飛機或船隻也被禁止在180天内进入美国。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_376",
"input": {
"prompt": "2007年的一項調查估計,孟加拉國有四分之一的非法移民在1989年4月之後抵達。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_377",
"input": {
"prompt": "在I-70的無名隧道就在附近。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_379",
"input": {
"prompt": "JRM被解散,每个创始团体都按照自己的政策继续运作。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_380",
"input": {
"prompt": "為了紀念他們的城市,他們命名的元素61“florentium的。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_381",
"input": {
"prompt": "波蘭的盟友很少。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_382",
"input": {
"prompt": "他们完全将这整个提案视为了对他们的自由的一次削减。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_384",
"input": {
"prompt": "1936年2月其他一些被告也被赦免。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_387",
"input": {
"prompt": "乔迪的爷爷到访。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_388",
"input": {
"prompt": "中国正在积极参与叙利亚的石油工业。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_389",
"input": {
"prompt": "史密斯對犯罪心軟。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_390",
"input": {
"prompt": "總之,我們已經履行了我們的義務,並宣誓效忠。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_392",
"input": {
"prompt": "尽管DDBJ主要是从日本研究者那里收到数据,但它可以接受来自任何其他国家的贡献者的数据。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_395",
"input": {
"prompt": "一旦有了概念,經驗就不再是必要的)。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_396",
"input": {
"prompt": "岛上的5间酒店中也有一间被毁。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_397",
"input": {
"prompt": "至少四隻其他的犬隻在1951年9月飛行,兩隻或以上喪生。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_399",
"input": {
"prompt": "第一起爆炸源于一辆车。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_400",
"input": {
"prompt": "列侬后来说:“那是他最好的歌。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_401",
"input": {
"prompt": "墨西哥还有其他电话公司,但他们未能成为Telmex的激烈竞争对手。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_402",
"input": {
"prompt": "它還非正式地支持許多其他格式,如ZIM。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_405",
"input": {
"prompt": "他说,“在医疗保健中有自然垄断,而患者的选择永远不会推动变化。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_407",
"input": {
"prompt": "在过去的四十年中,慕尼黑安全会议已成为国际安全政策决策者交换意见的最为重要的独立论坛。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_408",
"input": {
"prompt": "这可能是这些国家自杀率低的原因。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_411",
"input": {
"prompt": "二是使用某种形式的正规化。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_412",
"input": {
"prompt": "邻域系统是邻域滤子的另一个名字。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_413",
"input": {
"prompt": "John決定追擊那些活該損失金錢的人:私酒販。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_415",
"input": {
"prompt": "她也仅给了48个小时来决定是否签署合同,否则的话她将被取代。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_416",
"input": {
"prompt": "这也意味着埃杰维特在11年之后回到议会。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_418",
"input": {
"prompt": "2009年9月27日,国家民主与权利共同体成员同意废除其公民签证制度。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_419",
"input": {
"prompt": "在两天之内,86个人加入了他,他们挥舞着美国国旗和反憎恶的标牌。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_421",
"input": {
"prompt": "她写信给他说:“你会成为一个伟大的诗人”。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_422",
"input": {
"prompt": "公司自從 1947 年起一直生產彩票表格和彩票。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_424",
"input": {
"prompt": "潘菲利宮 多利亞·潘菲利美術館 多利亞·潘菲利別墅 The Telegraph - Who will inherit the Doria Pamphilj family's legacy?",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_425",
"input": {
"prompt": "这个例子还展示了为什么不总是自然的有一个最大元素。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_427",
"input": {
"prompt": "」對曰:「順帝亡國之主,雖山不崩,國亦必亡。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_429",
"input": {
"prompt": "截至2011年,该起案件被列为冷案。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_431",
"input": {
"prompt": "Sumatra是多语言的,有69种社区贡献的翻译。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_432",
"input": {
"prompt": "在1093年,他可能九岁左右。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_433",
"input": {
"prompt": "许多宪法支持环保的基本权利,许多国际条约承认在健康环境居住的权利。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_435",
"input": {
"prompt": "Internet Explorer for Mac不受这种非标准行为影响。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_436",
"input": {
"prompt": "澳大利亚在90多个地点都有外交代表。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_437",
"input": {
"prompt": "就在同一天,另一個重要城市羅斯拉夫爾亦被收復。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_439",
"input": {
"prompt": "1991年,蒙古建立了全新的两级银行体系。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_440",
"input": {
"prompt": "2000年和2003年,干旱限制了农业生产,2005年的洪灾也有相同的效果。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_441",
"input": {
"prompt": "共有数十家企业和超过300名员工参与了这个项目(截至2014年8月)。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_442",
"input": {
"prompt": "失业保险亦首次得以建立。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_443",
"input": {
"prompt": "其中,只有4和4T走完街的全长。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_444",
"input": {
"prompt": "3月17日风再次变得有利。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_445",
"input": {
"prompt": "1980 : 与日本和美国首次达成合作协议。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_447",
"input": {
"prompt": "最初是为捷克斯洛伐克军队设计的,有些还卖给了南斯拉夫。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_450",
"input": {
"prompt": "这一长度——他提议的名称是“标准”(standard)——将是994毫米。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_452",
"input": {
"prompt": "不久拜长安令。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_453",
"input": {
"prompt": "不是所有的HiPhone都是由制造商所标识的;一些只由软件版本w006或w009标识。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_454",
"input": {
"prompt": "因此,TRIPS是知识产权法律全球化中最重要的多边文书。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_459",
"input": {
"prompt": "他带回来了一些英国产的组件,加入到最终的设计中。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_460",
"input": {
"prompt": "BBP被欧洲化学局(ECB)列为有毒物质,因此其在欧洲的使用量迅速下降。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_461",
"input": {
"prompt": "比如,當我們看一個蘋果的時候,并且我們還可以分析出一個蘋果的形式。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_462",
"input": {
"prompt": "杰西·简就是其中一位接过圣经的女性。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_463",
"input": {
"prompt": "在目前累积排放量之上,本世纪内也会有将大量增加的排放量,即使是在最雄心勃勃的低排放情景。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_465",
"input": {
"prompt": "没有为能源部门设置具体的目标,让许多国家感到失望。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_466",
"input": {
"prompt": ",英语:Should We Kiss First?",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_468",
"input": {
"prompt": "他们强调从国民生产总值向个人幸福的转变。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_470",
"input": {
"prompt": "然而,一些欧洲影院从8月15日起就举行了一些预映会。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_472",
"input": {
"prompt": "昨天,我看見一隻鹿。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_473",
"input": {
"prompt": "明斯克的贡献占白俄罗斯预算的46%左右。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_475",
"input": {
"prompt": "憲章还宣布,音乐是国家的基本原则。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_478",
"input": {
"prompt": "Safari不支持MNG/JNG。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_480",
"input": {
"prompt": "— 你的电脑是不是有病毒? 和正統英語比較:Is your computer infected by a virus?",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_481",
"input": {
"prompt": "(英文)Mario Batali: Hello, Hong Kong!",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_483",
"input": {
"prompt": "这在IOC 之内引起了一次激烈的辩论。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_486",
"input": {
"prompt": "部分原因是由于这些家庭只能在中国有一个孩子的事实。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_487",
"input": {
"prompt": "这两个法律系统都受到加拿大宪法的约束。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_488",
"input": {
"prompt": "他再也没能找到那张照片的复印件。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_491",
"input": {
"prompt": "明年,当世界经济陷入衰退时,伊拉克可能享受10%的GDP增长。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_492",
"input": {
"prompt": "该组织从周一到周五每天两次提供自我监测空气质量报告,这甚至在政府释放空气质量数据之前。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_494",
"input": {
"prompt": "得利必須由所有澳大利亞人和所有地區分享”。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_496",
"input": {
"prompt": "他承认美国的普通法很难界定。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_497",
"input": {
"prompt": "(Evangelista Torricelli,1643)。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_498",
"input": {
"prompt": "穆斯林拥有自己的房子,用他们自己的方式管理自己。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
},
{
"id": "mlg_499",
"input": {
"prompt": "据说她拥有一个非洲省份。",
"instruction": "Please generate an image based on the prompt."
},
"output": {}
}
]
} |