File size: 112,948 Bytes
c620865 | 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 | [
{
"id": "6733515647147202006",
"prompt": "User Intent: What is the capital of Japan?\n\nAction History: 1: Tap point([y, x]): [0.7909, 0.6666]\n2: Tap point([y, x]): [0.1771, 0.7976]\n3: Tap point([y, x]): [0.1119, 0.9288]\n4: Type text: 'capital of japan?'\n5: Enter\n6: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/6733515647147202006_1.jpg",
"images/6733515647147202006_2.jpg",
"images/6733515647147202006_3.jpg",
"images/6733515647147202006_4.jpg",
"images/6733515647147202006_5.jpg",
"images/6733515647147202006_6.jpg"
],
"gt": "YES"
},
{
"id": "15426792676573898460",
"prompt": "User Intent: What is the speed of a train?\n\nAction History: 1: Tap point([y, x]): [0.0648, 0.4391]\n2: Type text: 'What is the speed of a train?'\n3: Tap point([y, x]): [0.0652, 0.7456]\n4: Tap point([y, x]): [0.1247, 0.4961]\n5: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/15426792676573898460_1.jpg",
"images/15426792676573898460_2.jpg",
"images/15426792676573898460_3.jpg",
"images/15426792676573898460_4.jpg",
"images/15426792676573898460_5.jpg"
],
"gt": "YES"
},
{
"id": "1144792202728212675",
"prompt": "User Intent: What's the weather like in Johannesburg?\n\nAction History: 1: Tap point([y, x]): [0.5196, 0.5075]\n2: Tap point([y, x]): [0.1224, 0.3799]\n3: Type text: 'What's the weather like in Johannesburg?'\n4: Enter\n5: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/1144792202728212675_1.jpg",
"images/1144792202728212675_2.jpg",
"images/1144792202728212675_3.jpg",
"images/1144792202728212675_4.jpg",
"images/1144792202728212675_5.jpg"
],
"gt": "YES"
},
{
"id": "15137914350342625386",
"prompt": "User Intent: What is the capital of China?\n\nAction History: 1: Tap point([y, x]): [0.4855, 0.8462]\n2: Tap point([y, x]): [0.1229, 0.6615]\n3: Tap point([y, x]): [0.0545, 0.9216]\n4: Type text: 'capital of China'\n5: Tap point([y, x]): [0.1337, 0.4399]\n6: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/15137914350342625386_1.jpg",
"images/15137914350342625386_2.jpg",
"images/15137914350342625386_3.jpg",
"images/15137914350342625386_4.jpg",
"images/15137914350342625386_5.jpg",
"images/15137914350342625386_6.jpg"
],
"gt": "YES"
},
{
"id": "14476935742879669859",
"prompt": "User Intent: Open a new Chrome tab\n\nAction History: 1: Tap point([y, x]): [0.354, 0.5249]\n2: Tap point([y, x]): [0.9177, 0.4807]\n3: Tap point([y, x]): [0.8821, 0.1351]\n4: Tap point([y, x]): [0.0549, 0.9352]\n5: Tap point([y, x]): [0.1173, 0.5802]\n6: Tap point([y, x]): [0.0608, 0.9526]\n7: Tap point([y, x]): [0.0646, 0.9219]\n8: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/14476935742879669859_1.jpg",
"images/14476935742879669859_2.jpg",
"images/14476935742879669859_3.jpg",
"images/14476935742879669859_4.jpg",
"images/14476935742879669859_5.jpg",
"images/14476935742879669859_6.jpg",
"images/14476935742879669859_7.jpg",
"images/14476935742879669859_8.jpg"
],
"gt": "YES"
},
{
"id": "8918662035387655551",
"prompt": "User Intent: Search for a new highlighter\n\nAction History: 1: Tap point([y, x]): [0.067, 0.2402]\n2: Type text: 'new highlighter'\n3: Tap point([y, x]): [0.687, 0.4372]\n4: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/8918662035387655551_1.jpg",
"images/8918662035387655551_2.jpg",
"images/8918662035387655551_3.jpg",
"images/8918662035387655551_4.jpg"
],
"gt": "YES"
},
{
"id": "2910236472918768889",
"prompt": "User Intent: How do I get to the nearest IKEA?\n\nAction History: 1: Tap point([y, x]): [0.0539, 0.5892]\n2: Type text: 'How do I get to the nearest IKEA?'\n3: Tap point([y, x]): [0.1299, 0.5498]\n4: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/2910236472918768889_1.jpg",
"images/2910236472918768889_2.jpg",
"images/2910236472918768889_3.jpg",
"images/2910236472918768889_4.jpg"
],
"gt": "YES"
},
{
"id": "9836350860012195299",
"prompt": "User Intent: What's the price of the Galaxy phone on eBay?\n\nAction History: 1: Tap point([y, x]): [0.0475, 0.413]\n2: Type text: 'ebay'\n3: Tap point([y, x]): [0.2123, 0.3631]\n4: Tap point([y, x]): [0.3712, 0.2302]\n5: Tap point([y, x]): [0.1967, 0.3403]\n6: Type text: 'galaxy phone'\n7: Tap point([y, x]): [0.1967, 0.8757]\n8: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/9836350860012195299_1.jpg",
"images/9836350860012195299_2.jpg",
"images/9836350860012195299_3.jpg",
"images/9836350860012195299_4.jpg",
"images/9836350860012195299_5.jpg",
"images/9836350860012195299_6.jpg",
"images/9836350860012195299_7.jpg",
"images/9836350860012195299_8.jpg"
],
"gt": "YES"
},
{
"id": "14448315368432423422",
"prompt": "User Intent: Where can I buy a nice beach towel?\n\nAction History: 1: scroll up\n2: Tap point([y, x]): [0.5916, 0.4001]\n3: scroll down\n4: scroll down\n5: Tap point([y, x]): [0.3664, 0.4707]\n6: Tap point([y, x]): [0.8492, 0.3005]\n7: GoBack\n8: GoBack\n9: Tap point([y, x]): [0.269, 0.4911]\n10: Tap point([y, x]): [0.0565, 0.8865]\n11: Tap point([y, x]): [0.0604, 0.5194]\n12: Type text: 'Where can I buy a nice beach towel? '\n13: Tap point([y, x]): [0.1333, 0.4956]\n14: scroll up\n15: Tap point([y, x]): [0.4053, 0.375]\n16: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/14448315368432423422_1.jpg",
"images/14448315368432423422_2.jpg",
"images/14448315368432423422_3.jpg",
"images/14448315368432423422_4.jpg",
"images/14448315368432423422_5.jpg",
"images/14448315368432423422_6.jpg",
"images/14448315368432423422_7.jpg",
"images/14448315368432423422_8.jpg",
"images/14448315368432423422_9.jpg",
"images/14448315368432423422_10.jpg",
"images/14448315368432423422_11.jpg",
"images/14448315368432423422_12.jpg",
"images/14448315368432423422_13.jpg",
"images/14448315368432423422_14.jpg",
"images/14448315368432423422_15.jpg",
"images/14448315368432423422_16.jpg"
],
"gt": "YES"
},
{
"id": "5414352756944941837",
"prompt": "User Intent: Search for a new nail polish\n\nAction History: 1: Tap point([y, x]): [0.747, 0.2916]\n2: Tap point([y, x]): [0.0882, 0.3441]\n3: Tap point([y, x]): [0.0866, 0.9201]\n4: Type text: 'new nail polish'\n5: Tap point([y, x]): [0.1908, 0.3441]\n6: Tap point([y, x]): [0.8034, 0.5002]\n7: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/5414352756944941837_1.jpg",
"images/5414352756944941837_2.jpg",
"images/5414352756944941837_3.jpg",
"images/5414352756944941837_4.jpg",
"images/5414352756944941837_5.jpg",
"images/5414352756944941837_6.jpg",
"images/5414352756944941837_7.jpg"
],
"gt": "YES"
},
{
"id": "9353133885879378953",
"prompt": "User Intent: What's on the menu at Olive Garden?\n\nAction History: 1: Tap point([y, x]): [0.0392, 0.5089]\n2: Type text: 'menu at Olive Garden?'\n3: Tap point([y, x]): [0.1204, 0.2806]\n4: scroll up\n5: Tap point([y, x]): [0.3797, 0.1857]\n6: GoBack\n7: scroll up\n8: scroll up\n9: scroll up\n10: Tap point([y, x]): [0.5028, 0.2414]\n11: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/9353133885879378953_1.jpg",
"images/9353133885879378953_2.jpg",
"images/9353133885879378953_3.jpg",
"images/9353133885879378953_4.jpg",
"images/9353133885879378953_5.jpg",
"images/9353133885879378953_6.jpg",
"images/9353133885879378953_7.jpg",
"images/9353133885879378953_8.jpg",
"images/9353133885879378953_9.jpg",
"images/9353133885879378953_10.jpg",
"images/9353133885879378953_11.jpg"
],
"gt": "YES"
},
{
"id": "2930232154902297266",
"prompt": "User Intent: How much does a 2 bedroom apartment rent for in Philadelphia?\n\nAction History: 1: Tap point([y, x]): [0.917, 0.5768]\n2: Type text: 'How much does a 2 bedroom apartment rent for in Philadelphia?'\n3: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/2930232154902297266_1.jpg",
"images/2930232154902297266_2.jpg",
"images/2930232154902297266_3.jpg"
],
"gt": "NO"
},
{
"id": "2213532747226313976",
"prompt": "User Intent: Play the new Katy Perry video on YouTube\n\nAction History: 1: Tap point([y, x]): [0.6343, 0.8427]\n2: Tap point([y, x]): [0.0595, 0.8308]\n3: Tap point([y, x]): [0.0478, 0.4502]\n4: Type text: 'Katy Perry '\n5: Tap point([y, x]): [0.1155, 0.3485]\n6: scroll up\n7: scroll up\n8: scroll right\n9: Tap point([y, x]): [0.2992, 0.5333]\n10: scroll up\n11: Tap point([y, x]): [0.498, 0.4587]\n12: Tap point([y, x]): [0.2376, 0.8264]\n13: Tap point([y, x]): [0.2335, 0.8458]\n14: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/2213532747226313976_1.jpg",
"images/2213532747226313976_2.jpg",
"images/2213532747226313976_3.jpg",
"images/2213532747226313976_4.jpg",
"images/2213532747226313976_5.jpg",
"images/2213532747226313976_6.jpg",
"images/2213532747226313976_7.jpg",
"images/2213532747226313976_8.jpg",
"images/2213532747226313976_9.jpg",
"images/2213532747226313976_10.jpg",
"images/2213532747226313976_11.jpg",
"images/2213532747226313976_12.jpg",
"images/2213532747226313976_13.jpg",
"images/2213532747226313976_14.jpg"
],
"gt": "YES"
},
{
"id": "11038467670941057370",
"prompt": "User Intent: What's the weather like in Chicago?\n\nAction History: 1: Tap point([y, x]): [0.9082, 0.3476]\n2: Tap point([y, x]): [0.8854, 0.439]\n3: Tap point([y, x]): [0.0666, 0.2781]\n4: Type text: 'What's the weather like in Chicago?'\n5: Tap point([y, x]): [0.1803, 0.4498]\n6: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/11038467670941057370_1.jpg",
"images/11038467670941057370_2.jpg",
"images/11038467670941057370_3.jpg",
"images/11038467670941057370_4.jpg",
"images/11038467670941057370_5.jpg",
"images/11038467670941057370_6.jpg"
],
"gt": "NO"
},
{
"id": "11610933341990180287",
"prompt": "User Intent: Open the calendar and show me this week's events?\n\nAction History: 1: GoHome\n2: scroll up\n3: Tap point([y, x]): [0.3669, 0.1076]\n4: Tap point([y, x]): [0.9168, 0.9351]\n5: Tap point([y, x]): [0.9168, 0.9351]\n6: Tap point([y, x]): [0.8793, 0.5467]\n7: GoBack\n8: Tap point([y, x]): [0.3721, 0.1158]\n9: scroll up\n10: Tap point([y, x]): [0.8963, 0.8549]\n11: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/11610933341990180287_1.jpg",
"images/11610933341990180287_2.jpg",
"images/11610933341990180287_3.jpg",
"images/11610933341990180287_4.jpg",
"images/11610933341990180287_5.jpg",
"images/11610933341990180287_6.jpg",
"images/11610933341990180287_7.jpg",
"images/11610933341990180287_8.jpg",
"images/11610933341990180287_9.jpg",
"images/11610933341990180287_10.jpg",
"images/11610933341990180287_11.jpg"
],
"gt": "NO"
},
{
"id": "2248712323411459953",
"prompt": "User Intent: What's a good restaurant in Chicago?\n\nAction History: 1: Tap point([y, x]): [0.3643, 0.4842]\n2: Tap point([y, x]): [0.065, 0.468]\n3: Type text: 'What's a good restaurant in Chicago?'\n4: Type text: 'Action Type: Type'\n5: Tap point([y, x]): [0.1414, 0.4356]\n6: Tap point([y, x]): [0.6042, 0.2889]\n7: scroll right\n8: Tap point([y, x]): [0.2661, 0.5474]\n9: Tap point([y, x]): [0.282, 0.3245]\n10: Tap point([y, x]): [0.4006, 0.3353]\n11: scroll left\n12: scroll left\n13: scroll left\n14: scroll left\n15: scroll left\n16: scroll left\n17: scroll left\n18: scroll left\n19: Tap point([y, x]): [0.1241, 0.0765]\n20: Tap point([y, x]): [0.1278, 0.0705]\n21: Tap point([y, x]): [0.1288, 0.1043]\n22: scroll up\n23: Tap point([y, x]): [0.3287, 0.2535]\n24: scroll up\n25: scroll up\n26: scroll up\n27: scroll up\n28: scroll up\n29: scroll left\n30: scroll left\n31: scroll left\n32: Tap point([y, x]): [0.5125, 0.3515]\n33: scroll up\n34: scroll up\n35: scroll up\n36: scroll up\n37: scroll up\n38: scroll up\n39: scroll up\n40: scroll down\n41: scroll down\n42: GoBack\n43: Tap point([y, x]): [0.9362, 0.3203]\n44: scroll up\n45: Tap point([y, x]): [0.7351, 0.4954]\n46: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/2248712323411459953_1.jpg",
"images/2248712323411459953_2.jpg",
"images/2248712323411459953_3.jpg",
"images/2248712323411459953_4.jpg",
"images/2248712323411459953_5.jpg",
"images/2248712323411459953_6.jpg",
"images/2248712323411459953_7.jpg",
"images/2248712323411459953_8.jpg",
"images/2248712323411459953_9.jpg",
"images/2248712323411459953_10.jpg",
"images/2248712323411459953_11.jpg",
"images/2248712323411459953_12.jpg",
"images/2248712323411459953_13.jpg",
"images/2248712323411459953_14.jpg",
"images/2248712323411459953_15.jpg",
"images/2248712323411459953_16.jpg",
"images/2248712323411459953_17.jpg",
"images/2248712323411459953_18.jpg",
"images/2248712323411459953_19.jpg",
"images/2248712323411459953_20.jpg",
"images/2248712323411459953_21.jpg",
"images/2248712323411459953_22.jpg",
"images/2248712323411459953_23.jpg",
"images/2248712323411459953_24.jpg",
"images/2248712323411459953_25.jpg",
"images/2248712323411459953_26.jpg",
"images/2248712323411459953_27.jpg",
"images/2248712323411459953_28.jpg",
"images/2248712323411459953_29.jpg",
"images/2248712323411459953_30.jpg",
"images/2248712323411459953_31.jpg",
"images/2248712323411459953_32.jpg",
"images/2248712323411459953_33.jpg",
"images/2248712323411459953_34.jpg",
"images/2248712323411459953_35.jpg",
"images/2248712323411459953_36.jpg",
"images/2248712323411459953_37.jpg",
"images/2248712323411459953_38.jpg",
"images/2248712323411459953_39.jpg",
"images/2248712323411459953_40.jpg",
"images/2248712323411459953_41.jpg",
"images/2248712323411459953_42.jpg",
"images/2248712323411459953_43.jpg",
"images/2248712323411459953_44.jpg",
"images/2248712323411459953_45.jpg",
"images/2248712323411459953_46.jpg"
],
"gt": "YES"
},
{
"id": "8617119289532735503",
"prompt": "User Intent: Search for hotels in London\n\nAction History: 1: Tap point([y, x]): [0.3638, 0.5133]\n2: scroll down\n3: scroll down\n4: Tap point([y, x]): [0.1987, 0.5964]\n5: Tap point([y, x]): [0.1292, 0.9152]\n6: Type text: 'Search for hotels in London'\n7: Tap point([y, x]): [0.319, 0.3069]\n8: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/8617119289532735503_1.jpg",
"images/8617119289532735503_2.jpg",
"images/8617119289532735503_3.jpg",
"images/8617119289532735503_4.jpg",
"images/8617119289532735503_5.jpg",
"images/8617119289532735503_6.jpg",
"images/8617119289532735503_7.jpg",
"images/8617119289532735503_8.jpg"
],
"gt": "YES"
},
{
"id": "6154939609294082580",
"prompt": "User Intent: What's the price of the LG TV?\n\nAction History: 1: scroll up\n2: Tap point([y, x]): [0.6304, 0.1376]\n3: Tap point([y, x]): [0.2009, 0.4985]\n4: Tap point([y, x]): [0.0578, 0.8948]\n5: Type text: 'What's the price of the LG TV?'\n6: Tap point([y, x]): [0.1331, 0.5413]\n7: Tap point([y, x]): [0.3912, 0.2456]\n8: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/6154939609294082580_1.jpg",
"images/6154939609294082580_2.jpg",
"images/6154939609294082580_3.jpg",
"images/6154939609294082580_4.jpg",
"images/6154939609294082580_5.jpg",
"images/6154939609294082580_6.jpg",
"images/6154939609294082580_7.jpg",
"images/6154939609294082580_8.jpg"
],
"gt": "NO"
},
{
"id": "11241837393536399335",
"prompt": "User Intent: What is the capital of Canada?\n\nAction History: 1: Type text: 'What is the capital of Canada?'\n2: Tap point([y, x]): [0.1328, 0.3952]\n3: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/11241837393536399335_1.jpg",
"images/11241837393536399335_2.jpg",
"images/11241837393536399335_3.jpg"
],
"gt": "YES"
},
{
"id": "17129690686390686761",
"prompt": "User Intent: How much does a 2 bedroom apartment rent for in Boston?\n\nAction History: 1: Tap point([y, x]): [0.6822, 0.8253]\n2: scroll up\n3: Tap point([y, x]): [0.3494, 0.5102]\n4: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/17129690686390686761_1.jpg",
"images/17129690686390686761_2.jpg",
"images/17129690686390686761_3.jpg",
"images/17129690686390686761_4.jpg"
],
"gt": "NO"
},
{
"id": "12574756959543319402",
"prompt": "User Intent: What's the news in Cambodia?\n\nAction History: 1: scroll up\n2: Tap point([y, x]): [0.4633, 0.7053]\n3: Tap point([y, x]): [0.2089, 0.3265]\n4: Type text: 'What's the news in Cambodia?'\n5: Tap point([y, x]): [0.1256, 0.5055]\n6: Tap point([y, x]): [0.1737, 0.1986]\n7: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/12574756959543319402_1.jpg",
"images/12574756959543319402_2.jpg",
"images/12574756959543319402_3.jpg",
"images/12574756959543319402_4.jpg",
"images/12574756959543319402_5.jpg",
"images/12574756959543319402_6.jpg",
"images/12574756959543319402_7.jpg"
],
"gt": "YES"
},
{
"id": "3260480337341432373",
"prompt": "User Intent: Open a new private window in Chrome\n\nAction History: 1: Tap point([y, x]): [0.3279, 0.5002]\n2: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/3260480337341432373_1.jpg",
"images/3260480337341432373_2.jpg"
],
"gt": "NO"
},
{
"id": "2986302526428311228",
"prompt": "User Intent: Search for flights from NYC to Mexico city\n\nAction History: 1: Tap point([y, x]): [0.0619, 0.278]\n2: Type text: 'flights from NYC to Mexico city'\n3: Tap point([y, x]): [0.1416, 0.4492]\n4: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/2986302526428311228_1.jpg",
"images/2986302526428311228_2.jpg",
"images/2986302526428311228_3.jpg",
"images/2986302526428311228_4.jpg"
],
"gt": "YES"
},
{
"id": "5139004035101995341",
"prompt": "User Intent: Search for flights from Barcelona to Mexico city\n\nAction History: 1: Tap point([y, x]): [0.7869, 0.7191]\n2: Tap point([y, x]): [0.8842, 0.3372]\n3: Tap point([y, x]): [0.8881, 0.9111]\n4: Tap point([y, x]): [0.3204, 0.6905]\n5: Type text: 'flights from Barcelona to Mexico city'\n6: Tap point([y, x]): [0.1191, 0.8289]\n7: Tap point([y, x]): [0.2644, 0.1712]\n8: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/5139004035101995341_0.jpg",
"images/5139004035101995341_1.jpg",
"images/5139004035101995341_2.jpg",
"images/5139004035101995341_3.jpg",
"images/5139004035101995341_4.jpg",
"images/5139004035101995341_5.jpg",
"images/5139004035101995341_6.jpg",
"images/5139004035101995341_7.jpg"
],
"gt": "YES"
},
{
"id": "8037370517515813589",
"prompt": "User Intent: What's US dollar exchange rate against the South Korean Won?\n\nAction History: 1: Tap point([y, x]): [0.7659, 0.681]\n2: Tap point([y, x]): [0.0658, 0.5089]\n3: Type text: 'us dollar exchange rate against the south korean won'\n4: Tap point([y, x]): [0.1296, 0.2297]\n5: scroll up\n6: scroll up\n7: scroll up\n8: scroll up\n9: scroll up\n10: Tap point([y, x]): [0.0683, 0.2958]\n11: scroll up\n12: Tap point([y, x]): [0.8163, 0.6083]\n13: scroll up\n14: Tap point([y, x]): [0.8609, 0.9675]\n15: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/8037370517515813589_1.jpg",
"images/8037370517515813589_2.jpg",
"images/8037370517515813589_3.jpg",
"images/8037370517515813589_4.jpg",
"images/8037370517515813589_5.jpg",
"images/8037370517515813589_6.jpg",
"images/8037370517515813589_7.jpg",
"images/8037370517515813589_8.jpg",
"images/8037370517515813589_9.jpg",
"images/8037370517515813589_10.jpg",
"images/8037370517515813589_11.jpg",
"images/8037370517515813589_12.jpg",
"images/8037370517515813589_13.jpg",
"images/8037370517515813589_14.jpg",
"images/8037370517515813589_15.jpg"
],
"gt": "YES"
},
{
"id": "16963995520493629950",
"prompt": "User Intent: What's the latest video from GameXplain?\n\nAction History: 1: Tap point([y, x]): [0.7834, 0.7008]\n2: Tap point([y, x]): [0.0524, 0.4374]\n3: Type text: 'latest video from gamexplain'\n4: Type text: 'Action Type: Type'\n5: Tap point([y, x]): [0.1412, 0.5515]\n6: Tap point([y, x]): [0.379, 0.4032]\n7: scroll up\n8: scroll up\n9: scroll up\n10: scroll up\n11: Tap point([y, x]): [0.6005, 0.5236]\n12: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/16963995520493629950_1.jpg",
"images/16963995520493629950_2.jpg",
"images/16963995520493629950_3.jpg",
"images/16963995520493629950_4.jpg",
"images/16963995520493629950_5.jpg",
"images/16963995520493629950_6.jpg",
"images/16963995520493629950_7.jpg",
"images/16963995520493629950_8.jpg",
"images/16963995520493629950_9.jpg",
"images/16963995520493629950_10.jpg",
"images/16963995520493629950_11.jpg",
"images/16963995520493629950_12.jpg"
],
"gt": "YES"
},
{
"id": "2408936673514476472",
"prompt": "User Intent: What is the capital of Mexico?\n\nAction History: 1: Tap point([y, x]): [0.8329, 0.549]\n2: Enter\n3: Type text: 'What is the capital of Mexico'\n4: Tap point([y, x]): [0.2336, 0.3635]\n5: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/2408936673514476472_1.jpg",
"images/2408936673514476472_2.jpg",
"images/2408936673514476472_3.jpg",
"images/2408936673514476472_4.jpg",
"images/2408936673514476472_5.jpg"
],
"gt": "YES"
},
{
"id": "6574722850961605311",
"prompt": "User Intent: How much does a 3 bedroom apartment rent for in Houston?\n\nAction History: 1: Tap point([y, x]): [0.1775, 0.5503]\n2: Tap point([y, x]): [0.1194, 0.9205]\n3: Type text: 'How much does a 3 bedroom apartment rent for in Houston?'\n4: Tap point([y, x]): [0.1824, 0.3495]\n5: Tap point([y, x]): [0.3657, 0.2078]\n6: Tap point([y, x]): [0.4504, 0.1993]\n7: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/6574722850961605311_1.jpg",
"images/6574722850961605311_2.jpg",
"images/6574722850961605311_3.jpg",
"images/6574722850961605311_4.jpg",
"images/6574722850961605311_5.jpg",
"images/6574722850961605311_6.jpg",
"images/6574722850961605311_7.jpg"
],
"gt": "NO"
},
{
"id": "3923696031910140523",
"prompt": "User Intent: What's on the menu at Papa Murphy's?\n\nAction History: 1: Tap point([y, x]): [0.8975, 0.3471]\n2: Type text: 'the menu at Papa Murphy's'\n3: Tap point([y, x]): [0.1201, 0.5487]\n4: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/3923696031910140523_1.jpg",
"images/3923696031910140523_2.jpg",
"images/3923696031910140523_3.jpg",
"images/3923696031910140523_4.jpg"
],
"gt": "NO"
},
{
"id": "8525382103150988931",
"prompt": "User Intent: Search for hotels in Las Vegas\n\nAction History: 1: Tap point([y, x]): [0.0602, 0.6404]\n2: Type text: 'hotel in las vegas'\n3: Tap point([y, x]): [0.1241, 0.3314]\n4: Tap point([y, x]): [0.3456, 0.3863]\n5: Tap point([y, x]): [0.7461, 0.3431]\n6: Tap point([y, x]): [0.7314, 0.4881]\n7: Tap point([y, x]): [0.7302, 0.4856]\n8: Tap point([y, x]): [0.7463, 0.4478]\n9: Tap point([y, x]): [0.6906, 0.9513]\n10: scroll up\n11: scroll up\n12: scroll up\n13: scroll up\n14: scroll up\n15: scroll up\n16: scroll up\n17: scroll up\n18: scroll up\n19: scroll up\n20: scroll up\n21: scroll down\n22: scroll down\n23: Tap point([y, x]): [0.2949, 0.5034]\n24: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/8525382103150988931_1.jpg",
"images/8525382103150988931_2.jpg",
"images/8525382103150988931_3.jpg",
"images/8525382103150988931_4.jpg",
"images/8525382103150988931_5.jpg",
"images/8525382103150988931_6.jpg",
"images/8525382103150988931_7.jpg",
"images/8525382103150988931_8.jpg",
"images/8525382103150988931_9.jpg",
"images/8525382103150988931_10.jpg",
"images/8525382103150988931_11.jpg",
"images/8525382103150988931_12.jpg",
"images/8525382103150988931_13.jpg",
"images/8525382103150988931_14.jpg",
"images/8525382103150988931_15.jpg",
"images/8525382103150988931_16.jpg",
"images/8525382103150988931_17.jpg",
"images/8525382103150988931_18.jpg",
"images/8525382103150988931_19.jpg",
"images/8525382103150988931_20.jpg",
"images/8525382103150988931_21.jpg",
"images/8525382103150988931_22.jpg",
"images/8525382103150988931_23.jpg",
"images/8525382103150988931_24.jpg"
],
"gt": "NO"
},
{
"id": "14608985355522990691",
"prompt": "User Intent: Open the calendar\n\nAction History: 1: Tap point([y, x]): [0.3856, 0.2173]\n2: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/14608985355522990691_1.jpg",
"images/14608985355522990691_2.jpg"
],
"gt": "YES"
},
{
"id": "15981673705104892611",
"prompt": "User Intent: What is the capital of Norway?\n\nAction History: 1: Tap point([y, x]): [0.8256, 0.5947]\n2: Tap point([y, x]): [0.8068, 0.5685]\n3: Tap point([y, x]): [0.0555, 0.4695]\n4: Type text: 'capital of norway'\n5: Tap point([y, x]): [0.1235, 0.4179]\n6: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/15981673705104892611_1.jpg",
"images/15981673705104892611_2.jpg",
"images/15981673705104892611_3.jpg",
"images/15981673705104892611_4.jpg",
"images/15981673705104892611_5.jpg",
"images/15981673705104892611_6.jpg"
],
"gt": "YES"
},
{
"id": "7780193626384470800",
"prompt": "User Intent: What's the news in India?\n\nAction History: 1: Type text: 'india news'\n2: Tap point([y, x]): [0.1138, 0.2074]\n3: Tap point([y, x]): [0.5483, 0.2379]\n4: Tap point([y, x]): [0.062, 0.4415]\n5: Type text: 'india news'\n6: Tap point([y, x]): [0.1267, 0.2638]\n7: Tap point([y, x]): [0.2447, 0.1803]\n8: Tap point([y, x]): [0.3626, 0.2263]\n9: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/7780193626384470800_1.jpg",
"images/7780193626384470800_2.jpg",
"images/7780193626384470800_3.jpg",
"images/7780193626384470800_4.jpg",
"images/7780193626384470800_5.jpg",
"images/7780193626384470800_6.jpg",
"images/7780193626384470800_7.jpg",
"images/7780193626384470800_8.jpg",
"images/7780193626384470800_9.jpg"
],
"gt": "YES"
},
{
"id": "7294114858628211248",
"prompt": "User Intent: What's the news in Peru?\n\nAction History: 1: Tap point([y, x]): [0.7138, 0.9081]\n2: Tap point([y, x]): [0.2337, 0.6673]\n3: Tap point([y, x]): [0.1277, 0.8634]\n4: Type text: 'news in Peru?'\n5: Tap point([y, x]): [0.2563, 0.5313]\n6: Tap point([y, x]): [0.3356, 0.3602]\n7: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/7294114858628211248_1.jpg",
"images/7294114858628211248_2.jpg",
"images/7294114858628211248_3.jpg",
"images/7294114858628211248_4.jpg",
"images/7294114858628211248_5.jpg",
"images/7294114858628211248_6.jpg",
"images/7294114858628211248_7.jpg"
],
"gt": "YES"
},
{
"id": "265098458029457182",
"prompt": "User Intent: Install the Twitter app\n\nAction History: 1: scroll up\n2: Tap point([y, x]): [0.176, 0.5007]\n3: Tap point([y, x]): [0.0623, 0.7804]\n4: Tap point([y, x]): [0.0584, 0.9211]\n5: Type text: 'twitter app'\n6: Tap point([y, x]): [0.1273, 0.2919]\n7: Tap point([y, x]): [0.1505, 0.8193]\n8: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/265098458029457182_1.jpg",
"images/265098458029457182_2.jpg",
"images/265098458029457182_3.jpg",
"images/265098458029457182_4.jpg",
"images/265098458029457182_5.jpg",
"images/265098458029457182_6.jpg",
"images/265098458029457182_7.jpg",
"images/265098458029457182_8.jpg"
],
"gt": "YES"
},
{
"id": "5508294638902225470",
"prompt": "User Intent: What's a good restaurant in Miami?\n\nAction History: 1: Tap point([y, x]): [0.2243, 0.5194]\n2: Tap point([y, x]): [0.0728, 0.4878]\n3: Type text: 'good restaurant in Miami'\n4: Type text: 'Action Type: Type'\n5: Enter\n6: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/5508294638902225470_1.jpg",
"images/5508294638902225470_2.jpg",
"images/5508294638902225470_3.jpg",
"images/5508294638902225470_4.jpg",
"images/5508294638902225470_5.jpg",
"images/5508294638902225470_6.jpg"
],
"gt": "YES"
},
{
"id": "1984020119331314999",
"prompt": "User Intent: Set an alarm for 6pm\n\nAction History: 1: scroll up\n2: Tap point([y, x]): [0.3811, 0.691]\n3: Tap point([y, x]): [0.0791, 0.1092]\n4: Tap point([y, x]): [0.8719, 0.5322]\n5: Tap point([y, x]): [0.6354, 0.4878]\n6: Tap point([y, x]): [0.4112, 0.4867]\n7: Tap point([y, x]): [0.7124, 0.7668]\n8: Tap point([y, x]): [0.1988, 0.6548]\n9: Tap point([y, x]): [0.2116, 0.6493]\n10: Tap point([y, x]): [0.5149, 0.197]\n11: Tap point([y, x]): [0.8059, 0.5277]\n12: Tap point([y, x]): [0.6496, 0.5171]\n13: Tap point([y, x]): [0.4032, 0.4912]\n14: Tap point([y, x]): [0.3139, 0.804]\n15: Tap point([y, x]): [0.7282, 0.7875]\n16: Tap point([y, x]): [0.5456, 0.8411]\n17: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/1984020119331314999_1.jpg",
"images/1984020119331314999_2.jpg",
"images/1984020119331314999_3.jpg",
"images/1984020119331314999_4.jpg",
"images/1984020119331314999_5.jpg",
"images/1984020119331314999_6.jpg",
"images/1984020119331314999_7.jpg",
"images/1984020119331314999_8.jpg",
"images/1984020119331314999_9.jpg",
"images/1984020119331314999_10.jpg",
"images/1984020119331314999_11.jpg",
"images/1984020119331314999_12.jpg",
"images/1984020119331314999_13.jpg",
"images/1984020119331314999_14.jpg",
"images/1984020119331314999_15.jpg",
"images/1984020119331314999_16.jpg",
"images/1984020119331314999_17.jpg"
],
"gt": "YES"
},
{
"id": "14258752676370775960",
"prompt": "User Intent: Search for top rated sushi restaurants on Maps\n\nAction History: 1: scroll up\n2: Tap point([y, x]): [0.6465, 0.394]\n3: Tap point([y, x]): [0.0645, 0.4183]\n4: Type text: 'top rated sushi restaurants'\n5: Enter\n6: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/14258752676370775960_1.jpg",
"images/14258752676370775960_2.jpg",
"images/14258752676370775960_3.jpg",
"images/14258752676370775960_4.jpg",
"images/14258752676370775960_5.jpg",
"images/14258752676370775960_6.jpg"
],
"gt": "YES"
},
{
"id": "7663898241962729268",
"prompt": "User Intent: Install the Google app\n\nAction History: 1: Tap point([y, x]): [0.18, 0.3304]\n2: Tap point([y, x]): [0.0615, 0.2635]\n3: Type text: 'google app'\n4: Tap point([y, x]): [0.1333, 0.2527]\n5: Tap point([y, x]): [0.123, 0.3016]\n6: Tap point([y, x]): [0.2457, 0.3245]\n7: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/7663898241962729268_1.jpg",
"images/7663898241962729268_2.jpg",
"images/7663898241962729268_3.jpg",
"images/7663898241962729268_4.jpg",
"images/7663898241962729268_5.jpg",
"images/7663898241962729268_6.jpg",
"images/7663898241962729268_7.jpg"
],
"gt": "YES"
},
{
"id": "4733458269145796509",
"prompt": "User Intent: What's the latest news in planetary science?\n\nAction History: 1: Tap point([y, x]): [0.0629, 0.7501]\n2: Tap point([y, x]): [0.0648, 0.6796]\n3: Tap point([y, x]): [0.0629, 0.9306]\n4: Tap point([y, x]): [0.0628, 0.4186]\n5: Type text: 'What's the latest news in planetary science?'\n6: Tap point([y, x]): [0.0666, 0.9198]\n7: Type text: ' latest news in planetary science'\n8: Tap point([y, x]): [0.1423, 0.5223]\n9: Tap point([y, x]): [0.1362, 0.4439]\n10: Tap point([y, x]): [0.1372, 0.3583]\n11: scroll up\n12: Tap point([y, x]): [0.8599, 0.1861]\n13: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/4733458269145796509_1.jpg",
"images/4733458269145796509_2.jpg",
"images/4733458269145796509_3.jpg",
"images/4733458269145796509_4.jpg",
"images/4733458269145796509_5.jpg",
"images/4733458269145796509_6.jpg",
"images/4733458269145796509_7.jpg",
"images/4733458269145796509_8.jpg",
"images/4733458269145796509_9.jpg",
"images/4733458269145796509_10.jpg",
"images/4733458269145796509_11.jpg",
"images/4733458269145796509_12.jpg",
"images/4733458269145796509_13.jpg"
],
"gt": "YES"
},
{
"id": "16913566896475782666",
"prompt": "User Intent: How do I get to the nearest Target?\n\nAction History: 1: Tap point([y, x]): [0.0401, 0.4589]\n2: Type text: 'nearest Target?'\n3: Tap point([y, x]): [0.1215, 0.202]\n4: scroll up\n5: scroll down\n6: Tap point([y, x]): [0.2658, 0.0849]\n7: Tap point([y, x]): [0.2658, 0.0849]\n8: scroll up\n9: scroll up\n10: Tap point([y, x]): [0.0758, 0.5215]\n11: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/16913566896475782666_1.jpg",
"images/16913566896475782666_2.jpg",
"images/16913566896475782666_3.jpg",
"images/16913566896475782666_4.jpg",
"images/16913566896475782666_5.jpg",
"images/16913566896475782666_6.jpg",
"images/16913566896475782666_7.jpg",
"images/16913566896475782666_8.jpg",
"images/16913566896475782666_9.jpg",
"images/16913566896475782666_10.jpg",
"images/16913566896475782666_11.jpg"
],
"gt": "NO"
},
{
"id": "9199214241637337474",
"prompt": "User Intent: check android version\n\nAction History: 1: scroll up\n2: Tap point([y, x]): [0.2232, 0.5935]\n3: scroll up\n4: scroll up\n5: scroll up\n6: scroll up\n7: Tap point([y, x]): [0.8621, 0.4616]\n8: scroll up\n9: Tap point([y, x]): [0.7491, 0.2166]\n10: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/9199214241637337474_1.jpg",
"images/9199214241637337474_2.jpg",
"images/9199214241637337474_3.jpg",
"images/9199214241637337474_4.jpg",
"images/9199214241637337474_5.jpg",
"images/9199214241637337474_6.jpg",
"images/9199214241637337474_7.jpg",
"images/9199214241637337474_8.jpg",
"images/9199214241637337474_9.jpg",
"images/9199214241637337474_10.jpg"
],
"gt": "YES"
},
{
"id": "7016198614002693753",
"prompt": "User Intent: see creations saved in the google photos\n\nAction History: 1: Tap point([y, x]): [0.7248, 0.1579]\n2: Tap point([y, x]): [0.8662, 0.6931]\n3: Tap point([y, x]): [0.3122, 0.2995]\n4: Tap point([y, x]): [0.9054, 0.6879]\n5: Tap point([y, x]): [0.5217, 0.6568]\n6: Tap point([y, x]): [0.9436, 0.8347]\n7: Tap point([y, x]): [0.9436, 0.8347]\n8: Tap point([y, x]): [0.9436, 0.8347]\n9: Tap point([y, x]): [0.9091, 0.3252]\n10: scroll up\n11: Tap point([y, x]): [0.856, 0.3038]\n12: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/7016198614002693753_1.jpg",
"images/7016198614002693753_2.jpg",
"images/7016198614002693753_3.jpg",
"images/7016198614002693753_4.jpg",
"images/7016198614002693753_5.jpg",
"images/7016198614002693753_6.jpg",
"images/7016198614002693753_7.jpg",
"images/7016198614002693753_8.jpg",
"images/7016198614002693753_9.jpg",
"images/7016198614002693753_10.jpg",
"images/7016198614002693753_11.jpg",
"images/7016198614002693753_12.jpg"
],
"gt": "YES"
},
{
"id": "11005846494131149143",
"prompt": "User Intent: Search for pizza restaurants on Maps\n\nAction History: 1: Tap point([y, x]): [0.0679, 0.3543]\n2: Tap point([y, x]): [0.6818, 0.2496]\n3: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/11005846494131149143_1.jpg",
"images/11005846494131149143_2.jpg",
"images/11005846494131149143_3.jpg"
],
"gt": "YES"
},
{
"id": "17168416443008145798",
"prompt": "User Intent: change the upload size in google photos\n\nAction History: 1: Tap point([y, x]): [0.7448, 0.6958]\n2: Tap point([y, x]): [0.5502, 0.7448]\n3: Tap point([y, x]): [0.258, 0.6826]\n4: Tap point([y, x]): [0.0529, 0.0674]\n5: Tap point([y, x]): [0.3765, 0.2054]\n6: Tap point([y, x]): [0.1565, 0.3014]\n7: Tap point([y, x]): [0.7048, 0.4923]\n8: Tap point([y, x]): [0.4296, 0.2292]\n9: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/17168416443008145798_1.jpg",
"images/17168416443008145798_2.jpg",
"images/17168416443008145798_3.jpg",
"images/17168416443008145798_4.jpg",
"images/17168416443008145798_5.jpg",
"images/17168416443008145798_6.jpg",
"images/17168416443008145798_7.jpg",
"images/17168416443008145798_8.jpg",
"images/17168416443008145798_9.jpg"
],
"gt": "YES"
},
{
"id": "6857123556253069916",
"prompt": "User Intent: Do I have any events tomorrow?\n\nAction History: 1: Tap point([y, x]): [0.3561, 0.902]\n2: Tap point([y, x]): [0.3623, 0.8892]\n3: Tap point([y, x]): [0.9119, 0.96]\n4: Tap point([y, x]): [0.9119, 0.96]\n5: Tap point([y, x]): [0.8901, 0.4836]\n6: Tap point([y, x]): [0.0598, 0.1804]\n7: Tap point([y, x]): [0.2815, 0.4993]\n8: Tap point([y, x]): [0.0506, 0.067]\n9: Tap point([y, x]): [0.1288, 0.1207]\n10: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/6857123556253069916_1.jpg",
"images/6857123556253069916_2.jpg",
"images/6857123556253069916_3.jpg",
"images/6857123556253069916_4.jpg",
"images/6857123556253069916_5.jpg",
"images/6857123556253069916_6.jpg",
"images/6857123556253069916_7.jpg",
"images/6857123556253069916_8.jpg",
"images/6857123556253069916_9.jpg",
"images/6857123556253069916_10.jpg"
],
"gt": "YES"
},
{
"id": "17321525298419401923",
"prompt": "User Intent: Open calendar and show me the second week of next month\n\nAction History: 1: Tap point([y, x]): [0.3571, 0.8829]\n2: Tap point([y, x]): [0.0481, 0.1516]\n3: scroll left\n4: Tap point([y, x]): [0.1897, 0.0802]\n5: Tap point([y, x]): [0.0609, 0.0604]\n6: Tap point([y, x]): [0.275, 0.1297]\n7: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/17321525298419401923_1.jpg",
"images/17321525298419401923_2.jpg",
"images/17321525298419401923_3.jpg",
"images/17321525298419401923_4.jpg",
"images/17321525298419401923_5.jpg",
"images/17321525298419401923_6.jpg",
"images/17321525298419401923_7.jpg"
],
"gt": "YES"
},
{
"id": "15143137709302013614",
"prompt": "User Intent: set the timer\n\nAction History: 1: Tap point([y, x]): [0.4384, 0.4987]\n2: Tap point([y, x]): [0.0376, 0.5686]\n3: Tap point([y, x]): [0.3235, 0.5007]\n4: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/15143137709302013614_1.jpg",
"images/15143137709302013614_2.jpg",
"images/15143137709302013614_3.jpg",
"images/15143137709302013614_4.jpg"
],
"gt": "YES"
},
{
"id": "15597139963021953565",
"prompt": "User Intent: Go to location settings\n\nAction History: 1: Tap point([y, x]): [0.8501, 0.4946]\n2: Tap point([y, x]): [0.7292, 0.1843]\n3: Tap point([y, x]): [0.1062, 0.9426]\n4: Tap point([y, x]): [0.0982, 0.926]\n5: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/15597139963021953565_1.jpg",
"images/15597139963021953565_2.jpg",
"images/15597139963021953565_3.jpg",
"images/15597139963021953565_4.jpg",
"images/15597139963021953565_5.jpg"
],
"gt": "YES"
},
{
"id": "9968607583468052976",
"prompt": "User Intent: Is it going to rain this weekend?\n\nAction History: 1: Tap point([y, x]): [0.9186, 0.3466]\n2: Tap point([y, x]): [0.1993, 0.2391]\n3: Tap point([y, x]): [0.4389, 0.6596]\n4: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/9968607583468052976_1.jpg",
"images/9968607583468052976_2.jpg",
"images/9968607583468052976_3.jpg",
"images/9968607583468052976_4.jpg"
],
"gt": "YES"
},
{
"id": "9522872345389500752",
"prompt": "User Intent: Is it going to rain today?\n\nAction History: 1: Tap point([y, x]): [0.1934, 0.2348]\n2: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/9522872345389500752_1.jpg",
"images/9522872345389500752_2.jpg"
],
"gt": "YES"
},
{
"id": "10493588129129558256",
"prompt": "User Intent: toggle notification dots\n\nAction History: 1: scroll up\n2: Tap point([y, x]): [0.8768, 0.5127]\n3: Tap point([y, x]): [0.4853, 0.2113]\n4: Tap point([y, x]): [0.4459, 0.3286]\n5: scroll up\n6: scroll right\n7: Tap point([y, x]): [0.8863, 0.1405]\n8: scroll up\n9: Tap point([y, x]): [0.7331, 0.9315]\n10: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/10493588129129558256_1.jpg",
"images/10493588129129558256_2.jpg",
"images/10493588129129558256_3.jpg",
"images/10493588129129558256_4.jpg",
"images/10493588129129558256_5.jpg",
"images/10493588129129558256_6.jpg",
"images/10493588129129558256_7.jpg",
"images/10493588129129558256_8.jpg",
"images/10493588129129558256_9.jpg",
"images/10493588129129558256_10.jpg"
],
"gt": "YES"
},
{
"id": "3583204985681103397",
"prompt": "User Intent: Check the weather\n\nAction History: 1: Type text: 'weather'\n2: Tap point([y, x]): [0.174, 0.1512]\n3: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/3583204985681103397_1.jpg",
"images/3583204985681103397_2.jpg",
"images/3583204985681103397_3.jpg"
],
"gt": "YES"
},
{
"id": "15994490773265478652",
"prompt": "User Intent: turn vacation reply on in the gmail app\n\nAction History: 1: scroll up\n2: Tap point([y, x]): [0.6997, 0.8816]\n3: Tap point([y, x]): [0.8602, 0.3589]\n4: Tap point([y, x]): [0.8088, 0.4838]\n5: Tap point([y, x]): [0.1288, 0.1753]\n6: scroll up\n7: scroll up\n8: Tap point([y, x]): [0.792, 0.3377]\n9: Tap point([y, x]): [0.3147, 0.3284]\n10: scroll up\n11: scroll up\n12: scroll up\n13: Tap point([y, x]): [0.4013, 0.4617]\n14: Tap point([y, x]): [0.1175, 0.7485]\n15: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/15994490773265478652_1.jpg",
"images/15994490773265478652_2.jpg",
"images/15994490773265478652_3.jpg",
"images/15994490773265478652_4.jpg",
"images/15994490773265478652_5.jpg",
"images/15994490773265478652_6.jpg",
"images/15994490773265478652_7.jpg",
"images/15994490773265478652_8.jpg",
"images/15994490773265478652_9.jpg",
"images/15994490773265478652_10.jpg",
"images/15994490773265478652_11.jpg",
"images/15994490773265478652_12.jpg",
"images/15994490773265478652_13.jpg",
"images/15994490773265478652_14.jpg",
"images/15994490773265478652_15.jpg"
],
"gt": "YES"
},
{
"id": "15198599076900317097",
"prompt": "User Intent: turn notification dots off\n\nAction History: 1: scroll up\n2: GoHome\n3: scroll up\n4: Tap point([y, x]): [0.2713, 0.7821]\n5: scroll down\n6: scroll down\n7: scroll down\n8: scroll down\n9: scroll down\n10: Tap point([y, x]): [0.7676, 0.5148]\n11: scroll up\n12: Tap point([y, x]): [0.2396, 0.384]\n13: scroll up\n14: scroll up\n15: scroll up\n16: scroll up\n17: Tap point([y, x]): [0.8872, 0.3535]\n18: scroll up\n19: Tap point([y, x]): [0.7802, 0.5026]\n20: scroll up\n21: scroll up\n22: Tap point([y, x]): [0.6028, 0.8339]\n23: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/15198599076900317097_1.jpg",
"images/15198599076900317097_2.jpg",
"images/15198599076900317097_3.jpg",
"images/15198599076900317097_4.jpg",
"images/15198599076900317097_5.jpg",
"images/15198599076900317097_6.jpg",
"images/15198599076900317097_7.jpg",
"images/15198599076900317097_8.jpg",
"images/15198599076900317097_9.jpg",
"images/15198599076900317097_10.jpg",
"images/15198599076900317097_11.jpg",
"images/15198599076900317097_12.jpg",
"images/15198599076900317097_13.jpg",
"images/15198599076900317097_14.jpg",
"images/15198599076900317097_15.jpg",
"images/15198599076900317097_16.jpg",
"images/15198599076900317097_17.jpg",
"images/15198599076900317097_18.jpg",
"images/15198599076900317097_19.jpg",
"images/15198599076900317097_20.jpg",
"images/15198599076900317097_21.jpg",
"images/15198599076900317097_22.jpg",
"images/15198599076900317097_23.jpg"
],
"gt": "YES"
},
{
"id": "15531212037920490488",
"prompt": "User Intent: empty trash in google photos\n\nAction History: 1: scroll up\n2: Tap point([y, x]): [0.8058, 0.5888]\n3: Tap point([y, x]): [0.4443, 0.6605]\n4: Tap point([y, x]): [0.5656, 0.2125]\n5: scroll up\n6: Tap point([y, x]): [0.7989, 0.9306]\n7: Tap point([y, x]): [0.4485, 0.7571]\n8: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/15531212037920490488_1.jpg",
"images/15531212037920490488_2.jpg",
"images/15531212037920490488_3.jpg",
"images/15531212037920490488_4.jpg",
"images/15531212037920490488_5.jpg",
"images/15531212037920490488_6.jpg",
"images/15531212037920490488_7.jpg",
"images/15531212037920490488_8.jpg"
],
"gt": "YES"
},
{
"id": "16879318970035502414",
"prompt": "User Intent: turn on showing notifications on the lock screen\n\nAction History: 1: Tap point([y, x]): [0.6834, 0.4991]\n2: GoHome\n3: Tap point([y, x]): [0.4244, 0.6133]\n4: Tap point([y, x]): [0.2952, 0.66]\n5: Tap point([y, x]): [0.647, 0.1287]\n6: scroll up\n7: Tap point([y, x]): [0.5315, 0.5024]\n8: scroll up\n9: scroll up\n10: Tap point([y, x]): [0.3064, 0.4235]\n11: scroll up\n12: scroll up\n13: scroll up\n14: scroll up\n15: Tap point([y, x]): [0.4559, 0.4073]\n16: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/16879318970035502414_1.jpg",
"images/16879318970035502414_2.jpg",
"images/16879318970035502414_3.jpg",
"images/16879318970035502414_4.jpg",
"images/16879318970035502414_5.jpg",
"images/16879318970035502414_6.jpg",
"images/16879318970035502414_7.jpg",
"images/16879318970035502414_8.jpg",
"images/16879318970035502414_9.jpg",
"images/16879318970035502414_10.jpg",
"images/16879318970035502414_11.jpg",
"images/16879318970035502414_12.jpg",
"images/16879318970035502414_13.jpg",
"images/16879318970035502414_14.jpg",
"images/16879318970035502414_15.jpg",
"images/16879318970035502414_16.jpg"
],
"gt": "YES"
},
{
"id": "4539246971272736697",
"prompt": "User Intent: Open calendar and show me the fourth week of next month\n\nAction History: 1: GoHome\n2: GoHome\n3: scroll up\n4: Tap point([y, x]): [0.4048, 0.8755]\n5: Tap point([y, x]): [0.8569, 0.8705]\n6: Tap point([y, x]): [0.8651, 0.9127]\n7: Tap point([y, x]): [0.81, 0.4756]\n8: Tap point([y, x]): [0.0722, 0.2885]\n9: scroll left\n10: scroll left\n11: scroll left\n12: Tap point([y, x]): [0.0779, 0.0865]\n13: Tap point([y, x]): [0.4146, 0.2196]\n14: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/4539246971272736697_1.jpg",
"images/4539246971272736697_2.jpg",
"images/4539246971272736697_3.jpg",
"images/4539246971272736697_4.jpg",
"images/4539246971272736697_5.jpg",
"images/4539246971272736697_6.jpg",
"images/4539246971272736697_7.jpg",
"images/4539246971272736697_8.jpg",
"images/4539246971272736697_9.jpg",
"images/4539246971272736697_10.jpg",
"images/4539246971272736697_11.jpg",
"images/4539246971272736697_12.jpg",
"images/4539246971272736697_13.jpg",
"images/4539246971272736697_14.jpg"
],
"gt": "NO"
},
{
"id": "2705857217797341481",
"prompt": "User Intent: turn on wifi\n\nAction History: 1: scroll up\n2: Tap point([y, x]): [0.2161, 0.8605]\n3: Tap point([y, x]): [0.1421, 0.6072]\n4: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/2705857217797341481_1.jpg",
"images/2705857217797341481_2.jpg",
"images/2705857217797341481_3.jpg",
"images/2705857217797341481_4.jpg"
],
"gt": "YES"
},
{
"id": "6319561250927980976",
"prompt": "User Intent: Open calendar and show me the first week of next month\n\nAction History: 1: Tap point([y, x]): [0.3448, 0.8241]\n2: Tap point([y, x]): [0.1916, 0.5082]\n3: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/6319561250927980976_1.jpg",
"images/6319561250927980976_2.jpg",
"images/6319561250927980976_3.jpg"
],
"gt": "YES"
},
{
"id": "14248885021570098016",
"prompt": "User Intent: turn pop-ups on in chrome\n\nAction History: 1: Tap point([y, x]): [0.0698, 0.9319]\n2: Tap point([y, x]): [0.8805, 0.4222]\n3: scroll up\n4: Tap point([y, x]): [0.5275, 0.3099]\n5: Tap point([y, x]): [0.8613, 0.3512]\n6: Tap point([y, x]): [0.1769, 0.8553]\n7: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/14248885021570098016_1.jpg",
"images/14248885021570098016_2.jpg",
"images/14248885021570098016_3.jpg",
"images/14248885021570098016_4.jpg",
"images/14248885021570098016_5.jpg",
"images/14248885021570098016_6.jpg",
"images/14248885021570098016_7.jpg"
],
"gt": "YES"
},
{
"id": "4144474049924509909",
"prompt": "User Intent: add a label to a message in the gmail app\n\nAction History: 1: Tap point([y, x]): [0.6326, 0.3287]\n2: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/4144474049924509909_1.jpg",
"images/4144474049924509909_2.jpg"
],
"gt": "NO"
},
{
"id": "6788812002681685432",
"prompt": "User Intent: turn on bluetooth scan\n\nAction History: 1: scroll up\n2: Tap point([y, x]): [0.2013, 0.6757]\n3: scroll up\n4: scroll up\n5: scroll up\n6: scroll up\n7: Tap point([y, x]): [0.7964, 0.2215]\n8: scroll up\n9: Tap point([y, x]): [0.5602, 0.3732]\n10: Tap point([y, x]): [0.5166, 0.8906]\n11: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/6788812002681685432_1.jpg",
"images/6788812002681685432_2.jpg",
"images/6788812002681685432_3.jpg",
"images/6788812002681685432_4.jpg",
"images/6788812002681685432_5.jpg",
"images/6788812002681685432_6.jpg",
"images/6788812002681685432_7.jpg",
"images/6788812002681685432_8.jpg",
"images/6788812002681685432_9.jpg",
"images/6788812002681685432_10.jpg",
"images/6788812002681685432_11.jpg"
],
"gt": "YES"
},
{
"id": "6163469911193256509",
"prompt": "User Intent: What's on my calendar today?\n\nAction History: 1: scroll up\n2: Tap point([y, x]): [0.3139, 0.8838]\n3: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/6163469911193256509_1.jpg",
"images/6163469911193256509_2.jpg",
"images/6163469911193256509_3.jpg"
],
"gt": "YES"
},
{
"id": "6666314447595146467",
"prompt": "User Intent: toggle data saver in the chrome app\n\nAction History: 1: Tap point([y, x]): [0.87, 0.2996]\n2: Tap point([y, x]): [0.868, 0.2973]\n3: Tap point([y, x]): [0.0499, 0.9557]\n4: Tap point([y, x]): [0.5959, 0.6809]\n5: Tap point([y, x]): [0.8269, 0.2503]\n6: Tap point([y, x]): [0.0963, 0.9299]\n7: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/6666314447595146467_1.jpg",
"images/6666314447595146467_2.jpg",
"images/6666314447595146467_3.jpg",
"images/6666314447595146467_4.jpg",
"images/6666314447595146467_5.jpg",
"images/6666314447595146467_6.jpg",
"images/6666314447595146467_7.jpg"
],
"gt": "YES"
},
{
"id": "11206232198184845677",
"prompt": "User Intent: change the clock display to analog\n\nAction History: 1: GoHome\n2: scroll up\n3: Tap point([y, x]): [0.1519, 0.5034]\n4: Tap point([y, x]): [0.06, 0.9478]\n5: Tap point([y, x]): [0.1057, 0.7992]\n6: Tap point([y, x]): [0.1684, 0.2268]\n7: Tap point([y, x]): [0.2136, 0.2603]\n8: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/11206232198184845677_1.jpg",
"images/11206232198184845677_2.jpg",
"images/11206232198184845677_3.jpg",
"images/11206232198184845677_4.jpg",
"images/11206232198184845677_5.jpg",
"images/11206232198184845677_6.jpg",
"images/11206232198184845677_7.jpg",
"images/11206232198184845677_8.jpg"
],
"gt": "YES"
},
{
"id": "4680440277491928516",
"prompt": "User Intent: toggle sleep mode\n\nAction History: 1: GoHome\n2: scroll up\n3: Tap point([y, x]): [0.1487, 0.8709]\n4: Tap point([y, x]): [0.3213, 0.288]\n5: Tap point([y, x]): [0.4434, 0.0464]\n6: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/4680440277491928516_1.jpg",
"images/4680440277491928516_2.jpg",
"images/4680440277491928516_3.jpg",
"images/4680440277491928516_4.jpg",
"images/4680440277491928516_5.jpg",
"images/4680440277491928516_6.jpg"
],
"gt": "NO"
},
{
"id": "335273218786699465",
"prompt": "User Intent: turn on the 24-hour format for clock\n\nAction History: 1: Tap point([y, x]): [0.1463, 0.6837]\n2: Tap point([y, x]): [0.0509, 0.9562]\n3: Tap point([y, x]): [0.1012, 0.8032]\n4: Tap point([y, x]): [0.4927, 0.4661]\n5: Tap point([y, x]): [0.5023, 0.9206]\n6: Tap point([y, x]): [0.5774, 0.9275]\n7: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/335273218786699465_1.jpg",
"images/335273218786699465_2.jpg",
"images/335273218786699465_3.jpg",
"images/335273218786699465_4.jpg",
"images/335273218786699465_5.jpg",
"images/335273218786699465_6.jpg",
"images/335273218786699465_7.jpg"
],
"gt": "YES"
},
{
"id": "16031871753371565392",
"prompt": "User Intent: turn off airplane mode\n\nAction History: 1: Tap point([y, x]): [0.1887, 0.0699]\n2: Tap point([y, x]): [0.241, 0.4148]\n3: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/16031871753371565392_1.jpg",
"images/16031871753371565392_2.jpg",
"images/16031871753371565392_3.jpg"
],
"gt": "YES"
},
{
"id": "2413512113211080392",
"prompt": "User Intent: create a new album in the google photos\n\nAction History: 1: scroll up\n2: Tap point([y, x]): [0.7993, 0.3671]\n3: Tap point([y, x]): [0.8032, 0.3774]\n4: Tap point([y, x]): [0.825, 0.4981]\n5: Tap point([y, x]): [0.943, 0.3699]\n6: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/2413512113211080392_1.jpg",
"images/2413512113211080392_2.jpg",
"images/2413512113211080392_3.jpg",
"images/2413512113211080392_4.jpg",
"images/2413512113211080392_5.jpg",
"images/2413512113211080392_6.jpg"
],
"gt": "NO"
},
{
"id": "2343820431857866066",
"prompt": "User Intent: Go to privacy settings\n\nAction History: 1: scroll up\n2: scroll down\n3: Tap point([y, x]): [0.7755, 0.3489]\n4: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/2343820431857866066_1.jpg",
"images/2343820431857866066_2.jpg",
"images/2343820431857866066_3.jpg",
"images/2343820431857866066_4.jpg"
],
"gt": "YES"
},
{
"id": "5253421277196604775",
"prompt": "User Intent: all mails in gmail\n\nAction History: 1: Tap point([y, x]): [0.1656, 0.4927]\n2: Tap point([y, x]): [0.0571, 0.0879]\n3: Tap point([y, x]): [0.6516, 0.2019]\n4: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/5253421277196604775_1.jpg",
"images/5253421277196604775_2.jpg",
"images/5253421277196604775_3.jpg",
"images/5253421277196604775_4.jpg"
],
"gt": "YES"
},
{
"id": "3976775663947526566",
"prompt": "User Intent: Go to settings\n\nAction History: 1: GoHome\n2: scroll up\n3: Tap point([y, x]): [0.1697, 0.3062]\n4: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/3976775663947526566_1.jpg",
"images/3976775663947526566_2.jpg",
"images/3976775663947526566_3.jpg",
"images/3976775663947526566_4.jpg"
],
"gt": "YES"
},
{
"id": "2042003494771557898",
"prompt": "User Intent: turn off translation in the chrome app\n\nAction History: 1: scroll up\n2: scroll up\n3: Tap point([y, x]): [0.099, 0.6786]\n4: Tap point([y, x]): [0.0565, 0.9693]\n5: Tap point([y, x]): [0.2829, 0.7867]\n6: Tap point([y, x]): [0.5537, 0.2087]\n7: Tap point([y, x]): [0.248, 0.9397]\n8: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/2042003494771557898_1.jpg",
"images/2042003494771557898_2.jpg",
"images/2042003494771557898_3.jpg",
"images/2042003494771557898_4.jpg",
"images/2042003494771557898_5.jpg",
"images/2042003494771557898_6.jpg",
"images/2042003494771557898_7.jpg",
"images/2042003494771557898_8.jpg"
],
"gt": "YES"
},
{
"id": "12133651911467814007",
"prompt": "User Intent: Open internet settings\n\nAction History: 1: scroll up\n2: Tap point([y, x]): [0.2347, 0.8297]\n3: scroll down\n4: scroll down\n5: scroll down\n6: scroll down\n7: scroll down\n8: scroll down\n9: Tap point([y, x]): [0.4387, 0.6485]\n10: Tap point([y, x]): [0.3932, 0.2829]\n11: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/12133651911467814007_1.jpg",
"images/12133651911467814007_2.jpg",
"images/12133651911467814007_3.jpg",
"images/12133651911467814007_4.jpg",
"images/12133651911467814007_5.jpg",
"images/12133651911467814007_6.jpg",
"images/12133651911467814007_7.jpg",
"images/12133651911467814007_8.jpg",
"images/12133651911467814007_9.jpg",
"images/12133651911467814007_10.jpg",
"images/12133651911467814007_11.jpg"
],
"gt": "NO"
},
{
"id": "15660518383894724592",
"prompt": "User Intent: Show me popular videos on Youtube\n\nAction History: 1: scroll up\n2: Tap point([y, x]): [0.8882, 0.8848]\n3: Tap point([y, x]): [0.9043, 0.0911]\n4: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/15660518383894724592_1.jpg",
"images/15660518383894724592_2.jpg",
"images/15660518383894724592_3.jpg",
"images/15660518383894724592_4.jpg"
],
"gt": "YES"
},
{
"id": "14943932378834549349",
"prompt": "User Intent: open chrome and create a bookmark for the current page\n\nAction History: 1: Tap point([y, x]): [0.1922, 0.8584]\n2: Tap point([y, x]): [0.4446, 0.2995]\n3: Tap point([y, x]): [0.4509, 0.308]\n4: scroll left\n5: scroll up\n6: Tap point([y, x]): [0.4043, 0.2807]\n7: scroll up\n8: Tap point([y, x]): [0.5607, 0.5314]\n9: scroll left\n10: Tap point([y, x]): [0.0731, 0.5425]\n11: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/14943932378834549349_1.jpg",
"images/14943932378834549349_2.jpg",
"images/14943932378834549349_3.jpg",
"images/14943932378834549349_4.jpg",
"images/14943932378834549349_5.jpg",
"images/14943932378834549349_6.jpg",
"images/14943932378834549349_7.jpg",
"images/14943932378834549349_8.jpg",
"images/14943932378834549349_9.jpg",
"images/14943932378834549349_10.jpg",
"images/14943932378834549349_11.jpg"
],
"gt": "NO"
},
{
"id": "5162832539500122967",
"prompt": "User Intent: Open Wikipedia\n\nAction History: 1: Tap point([y, x]): [0.4761, 0.3141]\n2: Tap point([y, x]): [0.0569, 0.3941]\n3: Tap point([y, x]): [0.055, 0.9396]\n4: Type text: ' Wikipedia'\n5: Tap point([y, x]): [0.1703, 0.2706]\n6: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/5162832539500122967_1.jpg",
"images/5162832539500122967_2.jpg",
"images/5162832539500122967_3.jpg",
"images/5162832539500122967_4.jpg",
"images/5162832539500122967_5.jpg",
"images/5162832539500122967_6.jpg"
],
"gt": "YES"
},
{
"id": "2038430512801370571",
"prompt": "User Intent: toggle wifi\n\nAction History: 1: Tap point([y, x]): [0.6319, 0.8793]\n2: Tap point([y, x]): [0.3387, 0.3852]\n3: Tap point([y, x]): [0.2554, 0.2814]\n4: Tap point([y, x]): [0.3431, 0.9019]\n5: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/2038430512801370571_1.jpg",
"images/2038430512801370571_2.jpg",
"images/2038430512801370571_3.jpg",
"images/2038430512801370571_4.jpg",
"images/2038430512801370571_5.jpg"
],
"gt": "YES"
},
{
"id": "14879211624515094699",
"prompt": "User Intent: Search for Italian restaurants on Maps\n\nAction History: 1: Tap point([y, x]): [0.7716, 0.8121]\n2: Tap point([y, x]): [0.1162, 0.1117]\n3: Tap point([y, x]): [0.123, 0.4012]\n4: Tap point([y, x]): [0.5298, 0.746]\n5: Tap point([y, x]): [0.2622, 0.423]\n6: Tap point([y, x]): [0.39, 0.2762]\n7: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/14879211624515094699_1.jpg",
"images/14879211624515094699_2.jpg",
"images/14879211624515094699_3.jpg",
"images/14879211624515094699_4.jpg",
"images/14879211624515094699_5.jpg",
"images/14879211624515094699_6.jpg",
"images/14879211624515094699_7.jpg"
],
"gt": "YES"
},
{
"id": "4190262103450289570",
"prompt": "User Intent: Clear the cart on newegg. Search for duracell triple a on newegg, select the first entry, add it to the cart, then select checkout.\n\nAction History: 1: GoHome\n2: scroll up\n3: Tap point([y, x]): [0.3623, 0.5014]\n4: Tap point([y, x]): [0.0658, 0.4539]\n5: Type text: 'newegg.com'\n6: Enter\n7: Tap point([y, x]): [0.1989, 0.9025]\n8: Tap point([y, x]): [0.189, 0.9094]\n9: Tap point([y, x]): [0.1162, 0.8074]\n10: Tap point([y, x]): [0.5466, 0.5587]\n11: Tap point([y, x]): [0.8489, 0.4762]\n12: Tap point([y, x]): [0.1712, 0.6404]\n13: Type text: 'duracell triple a'\n14: Enter\n15: Tap point([y, x]): [0.5338, 0.2803]\n16: Tap point([y, x]): [0.9116, 0.4935]\n17: Tap point([y, x]): [0.9123, 0.0652]\n18: scroll up\n19: Tap point([y, x]): [0.8273, 0.718]\n20: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/4190262103450289570_1.jpg",
"images/4190262103450289570_2.jpg",
"images/4190262103450289570_3.jpg",
"images/4190262103450289570_4.jpg",
"images/4190262103450289570_5.jpg",
"images/4190262103450289570_6.jpg",
"images/4190262103450289570_7.jpg",
"images/4190262103450289570_8.jpg",
"images/4190262103450289570_9.jpg",
"images/4190262103450289570_10.jpg",
"images/4190262103450289570_11.jpg",
"images/4190262103450289570_12.jpg",
"images/4190262103450289570_13.jpg",
"images/4190262103450289570_14.jpg",
"images/4190262103450289570_15.jpg",
"images/4190262103450289570_16.jpg",
"images/4190262103450289570_17.jpg",
"images/4190262103450289570_18.jpg",
"images/4190262103450289570_19.jpg",
"images/4190262103450289570_20.jpg"
],
"gt": "YES"
},
{
"id": "17336142419368255367",
"prompt": "User Intent: Add bose quietcomfort 35 to the cart on amazon.com\n\nAction History: 1: Tap point([y, x]): [0.7777, 0.6871]\n2: GoBack\n3: Tap point([y, x]): [0.1753, 0.5786]\n4: Tap point([y, x]): [0.1753, 0.5786]\n5: Type text: 'bose quietcomfort 35'\n6: Tap point([y, x]): [0.2084, 0.3302]\n7: Tap point([y, x]): [0.4383, 0.6561]\n8: scroll up\n9: scroll up\n10: Tap point([y, x]): [0.5967, 0.491]\n11: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/17336142419368255367_1.jpg",
"images/17336142419368255367_2.jpg",
"images/17336142419368255367_3.jpg",
"images/17336142419368255367_4.jpg",
"images/17336142419368255367_5.jpg",
"images/17336142419368255367_6.jpg",
"images/17336142419368255367_7.jpg",
"images/17336142419368255367_8.jpg",
"images/17336142419368255367_9.jpg",
"images/17336142419368255367_10.jpg",
"images/17336142419368255367_11.jpg"
],
"gt": "NO"
},
{
"id": "2541380179417144440",
"prompt": "User Intent: Add bose quietcomfort 35 to the cart on costco.com\n\nAction History: 1: Tap point([y, x]): [0.8312, 0.6195]\n2: Tap point([y, x]): [0.0623, 0.4978]\n3: Tap point([y, x]): [0.7569, 0.2005]\n4: Tap point([y, x]): [0.3995, 0.1382]\n5: Tap point([y, x]): [0.155, 0.4024]\n6: Type text: 'bose quietcomfort 35'\n7: Tap point([y, x]): [0.1532, 0.93]\n8: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/2541380179417144440_1.jpg",
"images/2541380179417144440_2.jpg",
"images/2541380179417144440_3.jpg",
"images/2541380179417144440_4.jpg",
"images/2541380179417144440_5.jpg",
"images/2541380179417144440_6.jpg",
"images/2541380179417144440_7.jpg",
"images/2541380179417144440_8.jpg"
],
"gt": "NO"
},
{
"id": "2685486353614958302",
"prompt": "User Intent: Add macbook pro to the cart on amazon.com\n\nAction History: 1: Tap point([y, x]): [0.6105, 0.1637]\n2: Tap point([y, x]): [0.1229, 0.3157]\n3: Tap point([y, x]): [0.0585, 0.9217]\n4: Tap point([y, x]): [0.409, 0.293]\n5: Tap point([y, x]): [0.5803, 0.6186]\n6: Tap point([y, x]): [0.405, 0.2331]\n7: Tap point([y, x]): [0.3094, 0.2791]\n8: Tap point([y, x]): [0.1669, 0.3513]\n9: Type text: ' macbook pro'\n10: Tap point([y, x]): [0.1661, 0.9248]\n11: Tap point([y, x]): [0.2086, 0.1753]\n12: Tap point([y, x]): [0.3822, 0.5216]\n13: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/2685486353614958302_1.jpg",
"images/2685486353614958302_2.jpg",
"images/2685486353614958302_3.jpg",
"images/2685486353614958302_4.jpg",
"images/2685486353614958302_5.jpg",
"images/2685486353614958302_6.jpg",
"images/2685486353614958302_7.jpg",
"images/2685486353614958302_8.jpg",
"images/2685486353614958302_9.jpg",
"images/2685486353614958302_10.jpg",
"images/2685486353614958302_11.jpg",
"images/2685486353614958302_12.jpg",
"images/2685486353614958302_13.jpg"
],
"gt": "NO"
},
{
"id": "7264469837780344330",
"prompt": "User Intent: Search for \"macbook pro 15 inch\" on walmart.com, select the first entry, and add it to the cart.\n\nAction History: 1: Type text: 'walmart'\n2: Tap point([y, x]): [0.2899, 0.3612]\n3: Tap point([y, x]): [0.5366, 0.0415]\n4: Tap point([y, x]): [0.1586, 0.4489]\n5: Type text: 'macbook pro 15'\n6: Tap point([y, x]): [0.2235, 0.2766]\n7: Tap point([y, x]): [0.774, 0.8106]\n8: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/7264469837780344330_1.jpg",
"images/7264469837780344330_2.jpg",
"images/7264469837780344330_3.jpg",
"images/7264469837780344330_4.jpg",
"images/7264469837780344330_5.jpg",
"images/7264469837780344330_6.jpg",
"images/7264469837780344330_7.jpg",
"images/7264469837780344330_8.jpg"
],
"gt": "YES"
},
{
"id": "8237496767212771050",
"prompt": "User Intent: Empty the shopping cart on newegg.com. Add jbl charge 4 to the cart on newegg.com, then select checkout.\n\nAction History: 1: Type text: 'newegg.com.'\n2: Tap point([y, x]): [0.47, 0.3747]\n3: Tap point([y, x]): [0.2939, 0.1895]\n4: Tap point([y, x]): [0.1497, 0.4463]\n5: GoBack\n6: Tap point([y, x]): [0.3478, 0.5053]\n7: Tap point([y, x]): [0.1487, 0.9465]\n8: Tap point([y, x]): [0.5258, 0.0782]\n9: Tap point([y, x]): [0.1309, 0.8284]\n10: Type text: 'jbl charge 4 '\n11: Tap point([y, x]): [0.1805, 0.2406]\n12: Tap point([y, x]): [0.6157, 0.1045]\n13: Tap point([y, x]): [0.9208, 0.5288]\n14: Tap point([y, x]): [0.8985, 0.0832]\n15: Tap point([y, x]): [0.8522, 0.5634]\n16: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/8237496767212771050_1.jpg",
"images/8237496767212771050_2.jpg",
"images/8237496767212771050_3.jpg",
"images/8237496767212771050_4.jpg",
"images/8237496767212771050_5.jpg",
"images/8237496767212771050_6.jpg",
"images/8237496767212771050_7.jpg",
"images/8237496767212771050_8.jpg",
"images/8237496767212771050_9.jpg",
"images/8237496767212771050_10.jpg",
"images/8237496767212771050_11.jpg",
"images/8237496767212771050_12.jpg",
"images/8237496767212771050_13.jpg",
"images/8237496767212771050_14.jpg",
"images/8237496767212771050_15.jpg",
"images/8237496767212771050_16.jpg"
],
"gt": "NO"
},
{
"id": "14168447555761109019",
"prompt": "User Intent: Add bose soundlink to the cart on amazon.com\n\nAction History: 1: Tap point([y, x]): [0.8897, 0.4821]\n2: Type text: 'amazon.com'\n3: scroll up\n4: Tap point([y, x]): [0.1721, 0.3008]\n5: Tap point([y, x]): [0.1721, 0.3008]\n6: Type text: ' bose soundlink '\n7: Tap point([y, x]): [0.1613, 0.8922]\n8: scroll up\n9: scroll up\n10: scroll down\n11: scroll down\n12: Tap point([y, x]): [0.3869, 0.5688]\n13: scroll up\n14: Tap point([y, x]): [0.3566, 0.623]\n15: scroll left\n16: Tap point([y, x]): [0.1294, 0.0498]\n17: scroll up\n18: scroll up\n19: scroll up\n20: scroll down\n21: scroll up\n22: Tap point([y, x]): [0.3921, 0.8189]\n23: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/14168447555761109019_1.jpg",
"images/14168447555761109019_2.jpg",
"images/14168447555761109019_3.jpg",
"images/14168447555761109019_4.jpg",
"images/14168447555761109019_5.jpg",
"images/14168447555761109019_6.jpg",
"images/14168447555761109019_7.jpg",
"images/14168447555761109019_8.jpg",
"images/14168447555761109019_9.jpg",
"images/14168447555761109019_10.jpg",
"images/14168447555761109019_11.jpg",
"images/14168447555761109019_12.jpg",
"images/14168447555761109019_13.jpg",
"images/14168447555761109019_14.jpg",
"images/14168447555761109019_15.jpg",
"images/14168447555761109019_16.jpg",
"images/14168447555761109019_17.jpg",
"images/14168447555761109019_18.jpg",
"images/14168447555761109019_19.jpg",
"images/14168447555761109019_20.jpg",
"images/14168447555761109019_21.jpg",
"images/14168447555761109019_22.jpg",
"images/14168447555761109019_23.jpg"
],
"gt": "NO"
},
{
"id": "3451393557643827237",
"prompt": "User Intent: Clear the shopping cart on costco.\n\nAction History: 1: Tap point([y, x]): [0.0542, 0.4129]\n2: Type text: 'costco'\n3: Tap point([y, x]): [0.1973, 0.4856]\n4: Tap point([y, x]): [0.4479, 0.3708]\n5: Tap point([y, x]): [0.117, 0.9188]\n6: Tap point([y, x]): [0.6808, 0.1307]\n7: Tap point([y, x]): [0.6808, 0.1307]\n8: Tap point([y, x]): [0.6808, 0.1307]\n9: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/3451393557643827237_1.jpg",
"images/3451393557643827237_2.jpg",
"images/3451393557643827237_3.jpg",
"images/3451393557643827237_4.jpg",
"images/3451393557643827237_5.jpg",
"images/3451393557643827237_6.jpg",
"images/3451393557643827237_7.jpg",
"images/3451393557643827237_8.jpg",
"images/3451393557643827237_9.jpg"
],
"gt": "YES"
},
{
"id": "3345195394181176352",
"prompt": "User Intent: Clear all items from cart on bestbuy.com. Search for usb-a on bestbuy.com, select the first entry, and add it to the cart.\n\nAction History: 1: Tap point([y, x]): [0.7191, 0.613]\n2: Tap point([y, x]): [0.0855, 0.4437]\n3: Tap point([y, x]): [0.4469, 0.269]\n4: Tap point([y, x]): [0.2689, 0.9121]\n5: scroll up\n6: scroll up\n7: scroll up\n8: scroll up\n9: Tap point([y, x]): [0.7806, 0.9166]\n10: scroll down\n11: scroll up\n12: scroll up\n13: Tap point([y, x]): [0.6988, 0.8133]\n14: Tap point([y, x]): [0.8318, 0.7434]\n15: scroll down\n16: Tap point([y, x]): [0.1627, 0.5633]\n17: Type text: 'usb-a '\n18: Tap point([y, x]): [0.1855, 0.7516]\n19: scroll up\n20: scroll up\n21: Tap point([y, x]): [0.7842, 0.7377]\n22: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/3345195394181176352_1.jpg",
"images/3345195394181176352_2.jpg",
"images/3345195394181176352_3.jpg",
"images/3345195394181176352_4.jpg",
"images/3345195394181176352_5.jpg",
"images/3345195394181176352_6.jpg",
"images/3345195394181176352_7.jpg",
"images/3345195394181176352_8.jpg",
"images/3345195394181176352_9.jpg",
"images/3345195394181176352_10.jpg",
"images/3345195394181176352_11.jpg",
"images/3345195394181176352_12.jpg",
"images/3345195394181176352_13.jpg",
"images/3345195394181176352_14.jpg",
"images/3345195394181176352_15.jpg",
"images/3345195394181176352_16.jpg",
"images/3345195394181176352_17.jpg",
"images/3345195394181176352_18.jpg",
"images/3345195394181176352_19.jpg",
"images/3345195394181176352_20.jpg",
"images/3345195394181176352_21.jpg",
"images/3345195394181176352_22.jpg"
],
"gt": "YES"
},
{
"id": "3297513937091546406",
"prompt": "User Intent: Clear the cart on target.com. Search for \"logitech g502\" on target.com, select the first entry, and add it to the cart.\n\nAction History: 1: GoHome\n2: Tap point([y, x]): [0.7984, 0.6784]\n3: Tap point([y, x]): [0.0605, 0.3747]\n4: Type text: 'TARGET'\n5: Tap point([y, x]): [0.1408, 0.2277]\n6: Tap point([y, x]): [0.2655, 0.9024]\n7: Tap point([y, x]): [0.2653, 0.622]\n8: Tap point([y, x]): [0.2623, 0.9056]\n9: Type text: 'logitech g502'\n10: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/3297513937091546406_0.jpg",
"images/3297513937091546406_1.jpg",
"images/3297513937091546406_2.jpg",
"images/3297513937091546406_3.jpg",
"images/3297513937091546406_4.jpg",
"images/3297513937091546406_5.jpg",
"images/3297513937091546406_6.jpg",
"images/3297513937091546406_7.jpg",
"images/3297513937091546406_8.jpg",
"images/3297513937091546406_9.jpg"
],
"gt": "NO"
},
{
"id": "10982787454098982346",
"prompt": "User Intent: Add macbook air to the cart on target\n\nAction History: 1: Type text: 'target'\n2: Tap point([y, x]): [0.5133, 0.2759]\n3: Tap point([y, x]): [0.4553, 0.2246]\n4: Tap point([y, x]): [0.2529, 0.2216]\n5: Type text: 'macbook air'\n6: Tap point([y, x]): [0.1378, 0.8023]\n7: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/10982787454098982346_1.jpg",
"images/10982787454098982346_2.jpg",
"images/10982787454098982346_3.jpg",
"images/10982787454098982346_4.jpg",
"images/10982787454098982346_5.jpg",
"images/10982787454098982346_6.jpg",
"images/10982787454098982346_7.jpg"
],
"gt": "NO"
},
{
"id": "267897483572783271",
"prompt": "User Intent: Clear the shopping cart on amazon.com. Search for razer blade on amazon.com, select the first entry, add it to the cart, then select checkout.\n\nAction History: 1: Tap point([y, x]): [0.0623, 0.4657]\n2: Tap point([y, x]): [0.2401, 0.2599]\n3: Tap point([y, x]): [0.234, 0.2576]\n4: Tap point([y, x]): [0.1255, 0.9143]\n5: Tap point([y, x]): [0.7324, 0.512]\n6: Tap point([y, x]): [0.1963, 0.3262]\n7: Type text: 'razer blade'\n8: Tap point([y, x]): [0.3835, 0.1641]\n9: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/267897483572783271_1.jpg",
"images/267897483572783271_2.jpg",
"images/267897483572783271_3.jpg",
"images/267897483572783271_4.jpg",
"images/267897483572783271_5.jpg",
"images/267897483572783271_6.jpg",
"images/267897483572783271_7.jpg",
"images/267897483572783271_8.jpg",
"images/267897483572783271_9.jpg"
],
"gt": "NO"
},
{
"id": "7280181524015588397",
"prompt": "User Intent: Show the shopping cart on ebay.com. Search for \"razer blackwidow\" on ebay.com, select the first entry, add it to the cart, then select checkout.\n\nAction History: 1: GoHome\n2: Tap point([y, x]): [0.8911, 0.5014]\n3: Type text: 'razer blackwinwow'\n4: Tap point([y, x]): [0.1844, 0.3609]\n5: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/7280181524015588397_1.jpg",
"images/7280181524015588397_2.jpg",
"images/7280181524015588397_3.jpg",
"images/7280181524015588397_4.jpg",
"images/7280181524015588397_5.jpg"
],
"gt": "NO"
},
{
"id": "16959193088896612380",
"prompt": "User Intent: View the shopping cart on bestbuy.com. Search for panasonic triple a on bestbuy.com, select the first entry, add it to the cart, then select checkout.\n\nAction History: 1: GoHome\n2: Tap point([y, x]): [0.8498, 0.3654]\n3: Type text: 'bestbuy.com'\n4: Type text: 'Action Type: Type'\n5: Tap point([y, x]): [0.2027, 0.5383]\n6: Tap point([y, x]): [0.2854, 0.6904]\n7: Tap point([y, x]): [0.1987, 0.3069]\n8: Type text: 'panasonic triple a'\n9: Type text: 'Action Type: Type'\n10: Tap point([y, x]): [0.2088, 0.7704]\n11: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/16959193088896612380_1.jpg",
"images/16959193088896612380_2.jpg",
"images/16959193088896612380_3.jpg",
"images/16959193088896612380_4.jpg",
"images/16959193088896612380_5.jpg",
"images/16959193088896612380_6.jpg",
"images/16959193088896612380_7.jpg",
"images/16959193088896612380_8.jpg",
"images/16959193088896612380_9.jpg",
"images/16959193088896612380_10.jpg",
"images/16959193088896612380_11.jpg"
],
"gt": "NO"
},
{
"id": "18374822343044060144",
"prompt": "User Intent: View the shopping cart on ebay. Search for \"usb-a\" on ebay, select the first entry, add it to the cart, then select checkout.\n\nAction History: 1: Tap point([y, x]): [0.7314, 0.6098]\n2: Tap point([y, x]): [0.079, 0.3688]\n3: Type text: 'ebay.com'\n4: Tap point([y, x]): [0.2027, 0.2639]\n5: scroll left\n6: Tap point([y, x]): [0.1681, 0.9603]\n7: scroll left\n8: Tap point([y, x]): [0.252, 0.2378]\n9: Type text: 'usb-a'\n10: scroll left\n11: Tap point([y, x]): [0.2398, 0.8203]\n12: scroll up\n13: scroll up\n14: Tap point([y, x]): [0.4395, 0.6591]\n15: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/18374822343044060144_1.jpg",
"images/18374822343044060144_2.jpg",
"images/18374822343044060144_3.jpg",
"images/18374822343044060144_4.jpg",
"images/18374822343044060144_5.jpg",
"images/18374822343044060144_6.jpg",
"images/18374822343044060144_7.jpg",
"images/18374822343044060144_8.jpg",
"images/18374822343044060144_9.jpg",
"images/18374822343044060144_10.jpg",
"images/18374822343044060144_11.jpg",
"images/18374822343044060144_12.jpg",
"images/18374822343044060144_13.jpg",
"images/18374822343044060144_14.jpg",
"images/18374822343044060144_15.jpg"
],
"gt": "NO"
},
{
"id": "1236578849845286544",
"prompt": "User Intent: Search for a 3d printer on aliexpress\n\nAction History: 1: Tap point([y, x]): [0.0753, 0.4106]\n2: Type text: 'aliexpress'\n3: Enter\n4: Tap point([y, x]): [0.4476, 0.1912]\n5: Tap point([y, x]): [0.1828, 0.4517]\n6: Tap point([y, x]): [0.1828, 0.4517]\n7: Type text: '3d printer'\n8: Enter\n9: Tap point([y, x]): [0.7776, 0.789]\n10: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/1236578849845286544_1.jpg",
"images/1236578849845286544_2.jpg",
"images/1236578849845286544_3.jpg",
"images/1236578849845286544_4.jpg",
"images/1236578849845286544_5.jpg",
"images/1236578849845286544_6.jpg",
"images/1236578849845286544_7.jpg",
"images/1236578849845286544_8.jpg",
"images/1236578849845286544_9.jpg",
"images/1236578849845286544_10.jpg"
],
"gt": "YES"
},
{
"id": "14016630151975453813",
"prompt": "User Intent: Clear the cart on newegg.com. Add usb-a to the cart on newegg.com, then select checkout.\n\nAction History: 1: Tap point([y, x]): [0.8732, 0.4462]\n2: Tap point([y, x]): [0.8732, 0.4462]\n3: Type text: 'newegg.com'\n4: Type text: 'Action Type: Type'\n5: Enter\n6: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/14016630151975453813_1.jpg",
"images/14016630151975453813_2.jpg",
"images/14016630151975453813_3.jpg",
"images/14016630151975453813_4.jpg",
"images/14016630151975453813_5.jpg",
"images/14016630151975453813_6.jpg"
],
"gt": "NO"
},
{
"id": "12776554429038080994",
"prompt": "User Intent: Search for \"corsair k70\" on target.com, select the first entry, add it to the cart, then select checkout.\n\nAction History: 1: Tap point([y, x]): [0.7931, 0.6977]\n2: Tap point([y, x]): [0.0679, 0.3627]\n3: Type text: 'target.com'\n4: Tap point([y, x]): [0.1545, 0.2598]\n5: Tap point([y, x]): [0.2633, 0.0814]\n6: Type text: 'corsair k70'\n7: Tap point([y, x]): [0.1431, 0.7811]\n8: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/12776554429038080994_1.jpg",
"images/12776554429038080994_2.jpg",
"images/12776554429038080994_3.jpg",
"images/12776554429038080994_4.jpg",
"images/12776554429038080994_5.jpg",
"images/12776554429038080994_6.jpg",
"images/12776554429038080994_7.jpg",
"images/12776554429038080994_8.jpg"
],
"gt": "NO"
},
{
"id": "5106857296340582598",
"prompt": "User Intent: Search for \"rayovac triple a\" on walmart, select the first entry, and add it to the cart.\n\nAction History: 1: Tap point([y, x]): [0.0559, 0.8538]\n2: Tap point([y, x]): [0.5342, 0.3367]\n3: Tap point([y, x]): [0.0528, 0.8557]\n4: scroll down\n5: Tap point([y, x]): [0.0526, 0.058]\n6: Tap point([y, x]): [0.2575, 0.1996]\n7: Tap point([y, x]): [0.1777, 0.1961]\n8: Tap point([y, x]): [0.9395, 0.1204]\n9: Tap point([y, x]): [0.1178, 0.6416]\n10: Type text: 'rayovac triple a'\n11: Tap point([y, x]): [0.2268, 0.377]\n12: Tap point([y, x]): [0.8572, 0.6959]\n13: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/5106857296340582598_1.jpg",
"images/5106857296340582598_2.jpg",
"images/5106857296340582598_3.jpg",
"images/5106857296340582598_4.jpg",
"images/5106857296340582598_5.jpg",
"images/5106857296340582598_6.jpg",
"images/5106857296340582598_7.jpg",
"images/5106857296340582598_8.jpg",
"images/5106857296340582598_9.jpg",
"images/5106857296340582598_10.jpg",
"images/5106857296340582598_11.jpg",
"images/5106857296340582598_12.jpg",
"images/5106857296340582598_13.jpg"
],
"gt": "YES"
},
{
"id": "4728163587486487640",
"prompt": "User Intent: Search for jbl flip 4 on ebay.com, select the first entry, add it to the cart, then select checkout.\n\nAction History: 1: Type text: 'ebay.com'\n2: Tap point([y, x]): [0.1556, 0.3684]\n3: Tap point([y, x]): [0.1785, 0.3496]\n4: Type text: 'jbl flip 4'\n5: Tap point([y, x]): [0.1814, 0.9446]\n6: Tap point([y, x]): [0.4739, 0.5041]\n7: scroll up\n8: Tap point([y, x]): [0.6081, 0.617]\n9: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/4728163587486487640_1.jpg",
"images/4728163587486487640_2.jpg",
"images/4728163587486487640_3.jpg",
"images/4728163587486487640_4.jpg",
"images/4728163587486487640_5.jpg",
"images/4728163587486487640_6.jpg",
"images/4728163587486487640_7.jpg",
"images/4728163587486487640_8.jpg",
"images/4728163587486487640_9.jpg"
],
"gt": "NO"
},
{
"id": "5685225839517688637",
"prompt": "User Intent: Search for acer predator on ebay.com, select the first entry, and add it to the cart.\n\nAction History: 1: Tap point([y, x]): [0.6297, 0.621]\n2: Tap point([y, x]): [0.7973, 0.4131]\n3: Tap point([y, x]): [0.7849, 0.2652]\n4: Tap point([y, x]): [0.6202, 0.4175]\n5: Type text: 'ebay.com'\n6: Enter\n7: Tap point([y, x]): [0.8002, 0.4895]\n8: Tap point([y, x]): [0.3772, 0.8527]\n9: Type text: 'acer predator'\n10: Enter\n11: scroll right\n12: scroll up\n13: scroll up\n14: scroll right\n15: scroll right\n16: Tap point([y, x]): [0.4306, 0.8711]\n17: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/5685225839517688637_1.jpg",
"images/5685225839517688637_2.jpg",
"images/5685225839517688637_3.jpg",
"images/5685225839517688637_4.jpg",
"images/5685225839517688637_5.jpg",
"images/5685225839517688637_6.jpg",
"images/5685225839517688637_7.jpg",
"images/5685225839517688637_8.jpg",
"images/5685225839517688637_9.jpg",
"images/5685225839517688637_10.jpg",
"images/5685225839517688637_11.jpg",
"images/5685225839517688637_12.jpg",
"images/5685225839517688637_13.jpg",
"images/5685225839517688637_14.jpg",
"images/5685225839517688637_15.jpg",
"images/5685225839517688637_16.jpg",
"images/5685225839517688637_17.jpg"
],
"gt": "NO"
},
{
"id": "11571030541275871613",
"prompt": "User Intent: Search for the best books on Goodreads\n\nAction History: 1: Tap point([y, x]): [0.9064, 0.5942]\n2: Type text: 'good reads'\n3: Tap point([y, x]): [0.1346, 0.3995]\n4: Tap point([y, x]): [0.2707, 0.2181]\n5: Tap point([y, x]): [0.2721, 0.2037]\n6: Tap point([y, x]): [0.2605, 0.0805]\n7: Tap point([y, x]): [0.3133, 0.1245]\n8: Type text: 'best books'\n9: Type text: 'Action Type: Type'\n10: scroll down\n11: scroll up\n12: scroll down\n13: scroll down\n14: Enter\n15: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/11571030541275871613_1.jpg",
"images/11571030541275871613_2.jpg",
"images/11571030541275871613_3.jpg",
"images/11571030541275871613_4.jpg",
"images/11571030541275871613_5.jpg",
"images/11571030541275871613_6.jpg",
"images/11571030541275871613_7.jpg",
"images/11571030541275871613_8.jpg",
"images/11571030541275871613_9.jpg",
"images/11571030541275871613_10.jpg",
"images/11571030541275871613_11.jpg",
"images/11571030541275871613_12.jpg",
"images/11571030541275871613_13.jpg",
"images/11571030541275871613_14.jpg",
"images/11571030541275871613_15.jpg"
],
"gt": "YES"
},
{
"id": "11915535415550625128",
"prompt": "User Intent: Search for the best books of all time on Goodreads\n\nAction History: 1: Enter\n2: Type text: 'goodreads'\n3: Tap point([y, x]): [0.1473, 0.4168]\n4: Tap point([y, x]): [0.3103, 0.3242]\n5: Tap point([y, x]): [0.2777, 0.0542]\n6: Type text: 'best books of all time'\n7: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/11915535415550625128_1.jpg",
"images/11915535415550625128_2.jpg",
"images/11915535415550625128_3.jpg",
"images/11915535415550625128_4.jpg",
"images/11915535415550625128_5.jpg",
"images/11915535415550625128_6.jpg",
"images/11915535415550625128_7.jpg"
],
"gt": "NO"
},
{
"id": "6466177257527532849",
"prompt": "User Intent: Show the shopping cart on amazon. Add dell alienware to the cart on amazon, then select checkout.\n\nAction History: 1: Tap point([y, x]): [0.6219, 0.5603]\n2: scroll down\n3: Tap point([y, x]): [0.1483, 0.1468]\n4: Tap point([y, x]): [0.5684, 0.4802]\n5: Tap point([y, x]): [0.5237, 0.3672]\n6: Tap point([y, x]): [0.8108, 0.4538]\n7: Tap point([y, x]): [0.3687, 0.3259]\n8: Type text: 'dell alienware'\n9: Tap point([y, x]): [0.4595, 0.514]\n10: scroll up\n11: scroll up\n12: Tap point([y, x]): [0.1365, 0.5686]\n13: Tap point([y, x]): [0.7362, 0.9004]\n14: scroll up\n15: scroll up\n16: scroll up\n17: Tap point([y, x]): [0.6501, 0.7224]\n18: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/6466177257527532849_1.jpg",
"images/6466177257527532849_2.jpg",
"images/6466177257527532849_3.jpg",
"images/6466177257527532849_4.jpg",
"images/6466177257527532849_5.jpg",
"images/6466177257527532849_6.jpg",
"images/6466177257527532849_7.jpg",
"images/6466177257527532849_8.jpg",
"images/6466177257527532849_9.jpg",
"images/6466177257527532849_10.jpg",
"images/6466177257527532849_11.jpg",
"images/6466177257527532849_12.jpg",
"images/6466177257527532849_13.jpg",
"images/6466177257527532849_14.jpg",
"images/6466177257527532849_15.jpg",
"images/6466177257527532849_16.jpg",
"images/6466177257527532849_17.jpg",
"images/6466177257527532849_18.jpg"
],
"gt": "NO"
},
{
"id": "17927085608344335106",
"prompt": "User Intent: Search for razer blade on bestbuy.com, select the first entry, and add it to the cart.\n\nAction History: 1: Type text: 'bestbuy.com'\n2: Tap point([y, x]): [0.1296, 0.3171]\n3: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/17927085608344335106_1.jpg",
"images/17927085608344335106_2.jpg",
"images/17927085608344335106_3.jpg"
],
"gt": "NO"
},
{
"id": "14184213674113144243",
"prompt": "User Intent: Clear the shopping cart on newegg.com. Search for \"razer naga\" on newegg.com, select the first entry, and add it to the cart.\n\nAction History: 1: scroll up\n2: Tap point([y, x]): [0.3503, 0.5055]\n3: Tap point([y, x]): [0.906, 0.5209]\n4: Tap point([y, x]): [0.9035, 0.8507]\n5: Tap point([y, x]): [0.2733, 0.6609]\n6: Type text: 'newegg.com'\n7: Tap point([y, x]): [0.186, 0.3029]\n8: Tap point([y, x]): [0.8371, 0.3342]\n9: Tap point([y, x]): [0.1505, 0.8359]\n10: Tap point([y, x]): [0.4843, 0.4721]\n11: Tap point([y, x]): [0.1515, 0.4656]\n12: Tap point([y, x]): [0.1518, 0.6896]\n13: Type text: 'razer naga'\n14: Tap point([y, x]): [0.1605, 0.193]\n15: Tap point([y, x]): [0.6594, 0.9571]\n16: Tap point([y, x]): [0.743, 0.2042]\n17: Tap point([y, x]): [0.926, 0.4808]\n18: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/14184213674113144243_1.jpg",
"images/14184213674113144243_2.jpg",
"images/14184213674113144243_3.jpg",
"images/14184213674113144243_4.jpg",
"images/14184213674113144243_5.jpg",
"images/14184213674113144243_6.jpg",
"images/14184213674113144243_7.jpg",
"images/14184213674113144243_8.jpg",
"images/14184213674113144243_9.jpg",
"images/14184213674113144243_10.jpg",
"images/14184213674113144243_11.jpg",
"images/14184213674113144243_12.jpg",
"images/14184213674113144243_13.jpg",
"images/14184213674113144243_14.jpg",
"images/14184213674113144243_15.jpg",
"images/14184213674113144243_16.jpg",
"images/14184213674113144243_17.jpg",
"images/14184213674113144243_18.jpg"
],
"gt": "NO"
},
{
"id": "5411767838323323778",
"prompt": "User Intent: Search for duracell triple a on costco.com, select the first entry, add it to the cart, then select checkout.\n\nAction History: 1: Tap point([y, x]): [0.0579, 0.3675]\n2: Type text: 'costco.com'\n3: Tap point([y, x]): [0.1228, 0.2089]\n4: Tap point([y, x]): [0.1835, 0.4277]\n5: Type text: 'duracell triple a'\n6: Tap point([y, x]): [0.1784, 0.8921]\n7: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/5411767838323323778_1.jpg",
"images/5411767838323323778_2.jpg",
"images/5411767838323323778_3.jpg",
"images/5411767838323323778_4.jpg",
"images/5411767838323323778_5.jpg",
"images/5411767838323323778_6.jpg",
"images/5411767838323323778_7.jpg"
],
"gt": "NO"
},
{
"id": "14817163193103208665",
"prompt": "User Intent: Clear all items from cart on costco. Search for bose quietcomfort 35 on costco, select the first entry, and add it to the cart.\n\nAction History: 1: Type text: 'costco'\n2: Tap point([y, x]): [0.1671, 0.2386]\n3: Tap point([y, x]): [0.8892, 0.4469]\n4: Tap point([y, x]): [0.4467, 0.2629]\n5: Tap point([y, x]): [0.2104, 0.5333]\n6: Type text: 'bose quietcomfort 35'\n7: Tap point([y, x]): [0.2103, 0.9142]\n8: scroll up\n9: Tap point([y, x]): [0.7514, 0.774]\n10: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/14817163193103208665_1.jpg",
"images/14817163193103208665_2.jpg",
"images/14817163193103208665_3.jpg",
"images/14817163193103208665_4.jpg",
"images/14817163193103208665_5.jpg",
"images/14817163193103208665_6.jpg",
"images/14817163193103208665_7.jpg",
"images/14817163193103208665_8.jpg",
"images/14817163193103208665_9.jpg",
"images/14817163193103208665_10.jpg"
],
"gt": "YES"
},
{
"id": "3251353656193044458",
"prompt": "User Intent: Add lg ultragear to the cart on bestbuy.com\n\nAction History: 1: Tap point([y, x]): [0.785, 0.6732]\n2: Tap point([y, x]): [0.0693, 0.3717]\n3: Tap point([y, x]): [0.3381, 0.1902]\n4: Tap point([y, x]): [0.1763, 0.4959]\n5: Type text: 'lg ultragear'\n6: Tap point([y, x]): [0.1962, 0.151]\n7: scroll up\n8: Tap point([y, x]): [0.5869, 0.7113]\n9: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/3251353656193044458_1.jpg",
"images/3251353656193044458_2.jpg",
"images/3251353656193044458_3.jpg",
"images/3251353656193044458_4.jpg",
"images/3251353656193044458_5.jpg",
"images/3251353656193044458_6.jpg",
"images/3251353656193044458_7.jpg",
"images/3251353656193044458_8.jpg",
"images/3251353656193044458_9.jpg"
],
"gt": "YES"
},
{
"id": "4505273522160455536",
"prompt": "User Intent: Search for duracell triple a on newegg.com, select the first entry, and add it to the cart.\n\nAction History: 1: Tap point([y, x]): [0.0607, 0.3885]\n2: Type text: 'newegg.com'\n3: Tap point([y, x]): [0.1268, 0.2392]\n4: Tap point([y, x]): [0.1737, 0.1895]\n5: Type text: 'duracell triple a'\n6: Tap point([y, x]): [0.1714, 0.1369]\n7: Tap point([y, x]): [0.5157, 0.2289]\n8: Tap point([y, x]): [0.4965, 0.0469]\n9: Tap point([y, x]): [0.4697, 0.1309]\n10: Tap point([y, x]): [0.9103, 0.4299]\n11: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/4505273522160455536_1.jpg",
"images/4505273522160455536_2.jpg",
"images/4505273522160455536_3.jpg",
"images/4505273522160455536_4.jpg",
"images/4505273522160455536_5.jpg",
"images/4505273522160455536_6.jpg",
"images/4505273522160455536_7.jpg",
"images/4505273522160455536_8.jpg",
"images/4505273522160455536_9.jpg",
"images/4505273522160455536_10.jpg",
"images/4505273522160455536_11.jpg"
],
"gt": "NO"
},
{
"id": "2131042839194310977",
"prompt": "User Intent: Search for a new 65\" TV at Best Buy\n\nAction History: 1: Tap point([y, x]): [0.2913, 0.3608]\n2: scroll up\n3: Tap point([y, x]): [0.5505, 0.2131]\n4: Tap point([y, x]): [0.1526, 0.4805]\n5: Type text: 'new 65\" TV'\n6: Tap point([y, x]): [0.2042, 0.2331]\n7: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/2131042839194310977_1.jpg",
"images/2131042839194310977_2.jpg",
"images/2131042839194310977_3.jpg",
"images/2131042839194310977_4.jpg",
"images/2131042839194310977_5.jpg",
"images/2131042839194310977_6.jpg",
"images/2131042839194310977_7.jpg"
],
"gt": "NO"
},
{
"id": "8855964711066539510",
"prompt": "User Intent: Clear the cart on target. Add \"usb-c to usb-a\" to the cart on target\n\nAction History: 1: Tap point([y, x]): [0.0603, 0.4525]\n2: Type text: 'target.com'\n3: Tap point([y, x]): [0.1201, 0.1705]\n4: Tap point([y, x]): [0.157, 0.8984]\n5: Tap point([y, x]): [0.1726, 0.9157]\n6: Tap point([y, x]): [0.159, 0.9012]\n7: Tap point([y, x]): [0.4903, 0.9438]\n8: Tap point([y, x]): [0.4903, 0.9438]\n9: Tap point([y, x]): [0.4903, 0.9438]\n10: Tap point([y, x]): [0.4903, 0.9438]\n11: Tap point([y, x]): [0.2257, 0.9054]\n12: Type text: 'usb-c to usb-a'\n13: Tap point([y, x]): [0.1163, 0.8207]\n14: scroll up\n15: Tap point([y, x]): [0.385, 0.3024]\n16: scroll up\n17: Tap point([y, x]): [0.8015, 0.5057]\n18: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/8855964711066539510_1.jpg",
"images/8855964711066539510_2.jpg",
"images/8855964711066539510_3.jpg",
"images/8855964711066539510_4.jpg",
"images/8855964711066539510_5.jpg",
"images/8855964711066539510_6.jpg",
"images/8855964711066539510_7.jpg",
"images/8855964711066539510_8.jpg",
"images/8855964711066539510_9.jpg",
"images/8855964711066539510_10.jpg",
"images/8855964711066539510_11.jpg",
"images/8855964711066539510_12.jpg",
"images/8855964711066539510_13.jpg",
"images/8855964711066539510_14.jpg",
"images/8855964711066539510_15.jpg",
"images/8855964711066539510_16.jpg",
"images/8855964711066539510_17.jpg",
"images/8855964711066539510_18.jpg"
],
"gt": "YES"
},
{
"id": "947982959524672628",
"prompt": "User Intent: Clear the shopping cart on target.com. Add macbook air to the cart on target.com, then select checkout.\n\nAction History: 1: Tap point([y, x]): [0.0429, 0.5095]\n2: Type text: 'target.com'\n3: Tap point([y, x]): [0.1181, 0.2151]\n4: Tap point([y, x]): [0.5248, 0.8253]\n5: Tap point([y, x]): [0.5248, 0.8253]\n6: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/947982959524672628_1.jpg",
"images/947982959524672628_2.jpg",
"images/947982959524672628_3.jpg",
"images/947982959524672628_4.jpg",
"images/947982959524672628_5.jpg",
"images/947982959524672628_6.jpg"
],
"gt": "NO"
},
{
"id": "10223382781952262133",
"prompt": "User Intent: Clear the cart on costco.com. Search for usb-c to usb-a on costco.com, select the first entry, and add it to the cart.\n\nAction History: 1: Tap point([y, x]): [0.6606, 0.5969]\n2: Tap point([y, x]): [0.105, 0.3828]\n3: Tap point([y, x]): [0.809, 0.4979]\n4: Tap point([y, x]): [0.3473, 0.5144]\n5: Type text: 'usb-c to udb-a'\n6: Tap point([y, x]): [0.3586, 0.9399]\n7: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/10223382781952262133_1.jpg",
"images/10223382781952262133_2.jpg",
"images/10223382781952262133_3.jpg",
"images/10223382781952262133_4.jpg",
"images/10223382781952262133_5.jpg",
"images/10223382781952262133_6.jpg",
"images/10223382781952262133_7.jpg"
],
"gt": "NO"
},
{
"id": "677862422756503971",
"prompt": "User Intent: Add \"dell xps\" to the cart on bestbuy, then select checkout.\n\nAction History: 1: Tap point([y, x]): [0.7982, 0.6737]\n2: Tap point([y, x]): [0.0577, 0.389]\n3: Tap point([y, x]): [0.2524, 0.1536]\n4: Tap point([y, x]): [0.1751, 0.424]\n5: Type text: 'dell xps'\n6: Tap point([y, x]): [0.1822, 0.0834]\n7: scroll up\n8: Tap point([y, x]): [0.7032, 0.7564]\n9: Tap point([y, x]): [0.0455, 0.0835]\n10: Tap point([y, x]): [0.767, 0.6942]\n11: Tap point([y, x]): [0.0543, 0.8674]\n12: Tap point([y, x]): [0.528, 0.4733]\n13: Tap point([y, x]): [0.1981, 0.9117]\n14: Tap point([y, x]): [0.5198, 0.4767]\n15: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/677862422756503971_1.jpg",
"images/677862422756503971_2.jpg",
"images/677862422756503971_3.jpg",
"images/677862422756503971_4.jpg",
"images/677862422756503971_5.jpg",
"images/677862422756503971_6.jpg",
"images/677862422756503971_7.jpg",
"images/677862422756503971_8.jpg",
"images/677862422756503971_9.jpg",
"images/677862422756503971_10.jpg",
"images/677862422756503971_11.jpg",
"images/677862422756503971_12.jpg",
"images/677862422756503971_13.jpg",
"images/677862422756503971_14.jpg",
"images/677862422756503971_15.jpg"
],
"gt": "YES"
},
{
"id": "7847291997620580710",
"prompt": "User Intent: Add \"sony triple a\" to the cart on amazon\n\nAction History: 1: Tap point([y, x]): [0.7806, 0.6352]\n2: Tap point([y, x]): [0.0615, 0.6206]\n3: Type text: 'amazon'\n4: Enter\n5: Tap point([y, x]): [0.3449, 0.3081]\n6: Tap point([y, x]): [0.1837, 0.4905]\n7: Type text: 'sony triple a'\n8: Enter\n9: scroll up\n10: Tap point([y, x]): [0.203, 0.1789]\n11: scroll up\n12: Tap point([y, x]): [0.8849, 0.6618]\n13: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/7847291997620580710_1.jpg",
"images/7847291997620580710_2.jpg",
"images/7847291997620580710_3.jpg",
"images/7847291997620580710_4.jpg",
"images/7847291997620580710_5.jpg",
"images/7847291997620580710_6.jpg",
"images/7847291997620580710_7.jpg",
"images/7847291997620580710_8.jpg",
"images/7847291997620580710_9.jpg",
"images/7847291997620580710_10.jpg",
"images/7847291997620580710_11.jpg",
"images/7847291997620580710_12.jpg",
"images/7847291997620580710_13.jpg"
],
"gt": "YES"
},
{
"id": "14839111507288363020",
"prompt": "User Intent: Add razer nari to the cart on target, then select checkout.\n\nAction History: 1: Tap point([y, x]): [0.7777, 0.7121]\n2: Tap point([y, x]): [0.047, 0.8714]\n3: Tap point([y, x]): [0.1665, 0.5628]\n4: Tap point([y, x]): [0.1157, 0.5156]\n5: Tap point([y, x]): [0.1199, 0.7292]\n6: Type text: 'razer nari'\n7: Tap point([y, x]): [0.1212, 0.2076]\n8: Type text: 'razer nari'\n9: Tap point([y, x]): [0.1169, 0.8091]\n10: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/14839111507288363020_1.jpg",
"images/14839111507288363020_2.jpg",
"images/14839111507288363020_3.jpg",
"images/14839111507288363020_4.jpg",
"images/14839111507288363020_5.jpg",
"images/14839111507288363020_6.jpg",
"images/14839111507288363020_7.jpg",
"images/14839111507288363020_8.jpg",
"images/14839111507288363020_9.jpg",
"images/14839111507288363020_10.jpg"
],
"gt": "NO"
},
{
"id": "1086553950271357621",
"prompt": "User Intent: Clear all items from cart on walmart.com. Add macbook pro to the cart on walmart.com, then select checkout.\n\nAction History: 1: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/1086553950271357621_1.jpg"
],
"gt": "NO"
},
{
"id": "2809924748283154535",
"prompt": "User Intent: View the shopping cart on bestbuy. Search for \"logitech g pro\" on bestbuy, select the first entry, add it to the cart, then select checkout.\n\nAction History: 1: Tap point([y, x]): [0.0639, 0.8413]\n2: Tap point([y, x]): [0.192, 0.7044]\n3: Tap point([y, x]): [0.1599, 0.4382]\n4: Type text: 'logitech g pro'\n5: Tap point([y, x]): [0.1731, 0.1813]\n6: scroll up\n7: Tap point([y, x]): [0.7561, 0.7802]\n8: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/2809924748283154535_1.jpg",
"images/2809924748283154535_2.jpg",
"images/2809924748283154535_3.jpg",
"images/2809924748283154535_4.jpg",
"images/2809924748283154535_5.jpg",
"images/2809924748283154535_6.jpg",
"images/2809924748283154535_7.jpg",
"images/2809924748283154535_8.jpg"
],
"gt": "NO"
},
{
"id": "559874442099825131",
"prompt": "User Intent: Look up the best gaming headphones on Best Buy\n\nAction History: 1: Tap point([y, x]): [0.8968, 0.1339]\n2: Type text: 'Best Buy'\n3: Tap point([y, x]): [0.0542, 0.2023]\n4: Enter\n5: Tap point([y, x]): [0.7689, 0.0862]\n6: Tap point([y, x]): [0.1606, 0.4976]\n7: Tap point([y, x]): [0.1142, 0.2479]\n8: Type text: 'gaming headphones'\n9: Tap point([y, x]): [0.1159, 0.2562]\n10: Enter\n11: TaskComplete\n\n\nthe second last state and the last state of the screen are shown in the images.",
"image_paths": [
"images/559874442099825131_1.jpg",
"images/559874442099825131_2.jpg",
"images/559874442099825131_3.jpg",
"images/559874442099825131_4.jpg",
"images/559874442099825131_5.jpg",
"images/559874442099825131_6.jpg",
"images/559874442099825131_7.jpg",
"images/559874442099825131_8.jpg",
"images/559874442099825131_9.jpg",
"images/559874442099825131_10.jpg",
"images/559874442099825131_11.jpg"
],
"gt": "YES"
}
] |