Datasets:
File size: 299,245 Bytes
711b43b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 | {
"0": {
"id": "",
"video": "ADT_Lite_release_recognition_GreenDecorationTall_seq032_61283_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk straight for a few steps, pick up the cactus, observe it for a moment, put it down and return to the starting point."
},
"1": {
"id": "",
"video": "ADT_Lite_release_recognition_RedClock_seq032_61283_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk a few steps straight ahead, pick up the alarm clock, observe it for a moment, put it down and return to the starting point."
},
"2": {
"id": "",
"video": "ADT_Lite_release_recognition_DinoToy_seq033_61283_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk straight for a few steps, pick up the dinosaur toy and observe it for a moment, then put it down and return to the starting point."
},
"3": {
"id": "",
"video": "ADT_Lite_release_recognition_Flask_seq033_61283_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Straighten up a few steps, pick up the water bottle, observe for a moment, put it down, and return to the starting point."
},
"4": {
"id": "",
"video": "ADT_Lite_release_recognition_Flask_seq031_61283_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Straighten up a few steps and pick up the light green water bottle and observe it for a moment, then put it down and return to the starting point."
},
"5": {
"id": "",
"video": "ADT_Lite_release_recognition_BirdHouseToy_seq030_61283_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk a few steps straight ahead, pick up the toy birdhouse and observe it for a moment, then put it down and return to the starting point. "
},
"6": {
"id": "",
"video": "ADT_Lite_release_recognition_DinoToy_seq031_61283_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk straight for a few steps, pick up the dinosaur toy and observe it for a moment, then put it down and return to the starting point."
},
"7": {
"id": "",
"video": "ADT_Lite_release_recognition_BirdHouseToy_seq031_61283_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk a few steps straight ahead, pick up the toy birdhouse and observe it for a moment, then put it down and return to the starting point. "
},
"8": {
"id": "",
"video": "ADT_Lite_release_recognition_GreenDecorationTall_seq033_61283_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk straight for a few steps, pick up the cactus and observe it for a moment, then put it down and return to the starting point."
},
"9": {
"id": "",
"video": "ADT_Lite_release_recognition_DinoToy_seq030_61283_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk straight for a few steps, pick up the dinosaur toy and observe it for a moment, then put it down and return to the starting point."
},
"10": {
"id": "",
"video": "ADT_Lite_release_recognition_DinoToy_seq032_61283_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk a few steps straight ahead pick up the dinosaur toy and observe it for a moment, put it down and return to the starting point"
},
"11": {
"id": "",
"video": "ADT_Lite_release_recognition_GreenDecorationTall_seq030_61283_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk a few steps straight ahead pick up the cactus ball and observe it for a moment, put it down and return to the starting point"
},
"12": {
"id": "",
"video": "ADT_Lite_release_recognition_BlackCeramicMug_seq031_61283_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk straight ahead a few steps pick up the black water glass and observe for a moment, put it down and return to the starting point"
},
"13": {
"id": "",
"video": "ADT_Lite_release_recognition_RedClock_seq033_61283_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk a few steps straight ahead pick up the alarm clock and observe it for a moment, put it down and return to the starting point"
},
"14": {
"id": "",
"video": "ADT_Lite_release_recognition_RedClock_seq031_61283_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk a few steps straight ahead pick up the alarm clock and observe it for a moment, put it down and return to the starting point"
},
"15": {
"id": "",
"video": "ADT_Lite_release_recognition_Flask_seq030_61283_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Go straight ahead a few steps pick up the light green water bottle and observe for a moment, put it down and return to the starting point"
},
"16": {
"id": "",
"video": "ADT_Lite_release_recognition_Flask_seq032_61283_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Go straight ahead a few steps pick up the light green water bottle and observe for a moment, put it down and return to the starting point"
},
"17": {
"id": "",
"video": "ADT_Lite_release_recognition_BirdHouseToy_seq032_61283_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Go straight ahead a few steps pick up the toy birdhouse and observe it for a moment, put it down and return to the starting point"
},
"18": {
"id": "",
"video": "ADT_Lite_release_recognition_Mug_2_seq030_61283_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk straight ahead a few steps pick up the white water glass and observe for a moment, put it down and return to the starting point"
},
"19": {
"id": "",
"video": "ADT_Lite_release_recognition_WoodenFork_seq032_61283_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk straight for a few steps pick up the fork and observe for a moment, put down the fork and return to the starting point"
},
"20": {
"id": "",
"video": "ADT_Lite_release_recognition_Mug_2_seq032_61283_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk straight ahead a few steps pick up the white water glass and observe for a moment, put it down and return to the starting point"
},
"21": {
"id": "",
"video": "ADT_Lite_release_recognition_BlackCeramicMug_seq032_61283_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk straight for a few steps pick up the black water glass and observe for a moment, put it down and return to the starting point"
},
"22": {
"id": "",
"video": "ADT_Lite_release_recognition_BlackCeramicMug_seq030_61283_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk straight for a few steps pick up the black water glass and observe for a moment, put it down and return to the starting point"
},
"23": {
"id": "",
"video": "ADT_Lite_release_recognition_WoodenFork_seq031_61283_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk straight for a few steps pick up the fork and observe for a moment, put down the fork and return to the starting point"
},
"24": {
"id": "",
"video": "ADT_Lite_release_recognition_BirdHouseToy_seq033_61283_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Go straight ahead a few steps pick up the toy birdhouse and observe it for a moment, put it down and return to the starting point"
},
"25": {
"id": "",
"video": "ADT_Lite_release_recognition_WoodenFork_seq030_61283_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk straight for a few steps pick up the fork and observe for a moment, put down the fork and return to the starting point"
},
"26": {
"id": "",
"video": "ADT_Lite_release_recognition_BlackCeramicBowl_seq033_61283_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk straight ahead a few steps pick up the black bowl and observe for a moment, put it down and return to the starting point"
},
"27": {
"id": "",
"video": "ADT_Lite_release_recognition_WoodenBoxSmall_seq032_61283_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk a few steps straight ahead pick up the crate and observe for a moment, drop the crate and return to the starting point"
},
"28": {
"id": "",
"video": "ADT_Lite_release_recognition_WoodenBoxSmall_seq031_61283_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk a few steps straight ahead pick up the crate and observe for a moment, drop the crate and return to the starting point"
},
"29": {
"id": "",
"video": "ADT_Lite_release_recognition_Mug_2_seq031_61283_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk straight ahead a few steps pick up the white water glass and observe for a moment, put it down and return to the starting point"
},
"30": {
"id": "",
"video": "ADT_Lite_release_recognition_WoodenSpoon_seq035_61283_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk a few steps straight ahead pick up the wooden spoon and observe for a moment, put it down and return to the starting point"
},
"31": {
"id": "",
"video": "ADT_Lite_release_recognition_WoodenSpoon_seq033_61283_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk a few steps straight ahead pick up the wooden spoon and observe for a moment, put it down and return to the starting point"
},
"32": {
"id": "",
"video": "ADT_Lite_release_recognition_BookDeepLearning_seq031_61283_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk a few steps straight ahead pick up the deep learning book and observe for a moment, put down the deep learning book and return to the starting point"
},
"33": {
"id": "",
"video": "ADT_Lite_release_recognition_ChoppingBoard_seq031_61283_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk a few steps straight ahead pick up the board and observe for a moment, drop the board and return to the starting point"
},
"34": {
"id": "",
"video": "ADT_Lite_release_recognition_WoodenBoxSmall_seq033_61283_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk a few steps straight ahead pick up the crate and observe for a moment, drop the crate and return to the starting point"
},
"35": {
"id": "",
"video": "ADT_Lite_release_recognition_BlackCeramicDishSmall_seq031_61283_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Go straight ahead a few steps pick up the black plate and observe for a moment, put down the black plate and return to the starting point"
},
"36": {
"id": "",
"video": "ADT_Lite_release_recognition_BambooPlate_seq032_61283_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk straight for a few steps, pick up the bamboo tray and observe it for a moment, put it down and return to the starting point"
},
"37": {
"id": "",
"video": "ADT_Lite_release_recognition_BlackCeramicDishSmall_seq034_61283_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Go straight ahead a few steps pick up the black plate and observe for a moment, put down the black plate and return to the starting point"
},
"38": {
"id": "",
"video": "ADT_Lite_release_recognition_ChoppingBoard_seq033_61283_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk a few steps straight ahead pick up the board and observe for a moment, drop the board and return to the starting point"
},
"39": {
"id": "",
"video": "ADT_Lite_release_recognition_BookDeepLearning_seq030_61283_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk a few steps straight ahead pick up the deep learning book and observe for a moment, put down the deep learning book and return to the starting point"
},
"40": {
"id": "",
"video": "ADT_Lite_release_recognition_WoodenSpoon_seq034_61283_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk a few steps straight ahead pick up the wooden spoon and observe for a moment, put it down and return to the starting point"
},
"41": {
"id": "",
"video": "ADT_Lite_release_recognition_WoodenBoxSmall_seq030_61283_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk a few steps straight ahead pick up the crate and observe for a moment, drop the crate and return to the starting point"
},
"42": {
"id": "",
"video": "ADT_Lite_release_recognition_RedClock_seq030_61283_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk a few steps straight ahead pick up the alarm clock and observe it for a moment, put it down and return to the starting point"
},
"43": {
"id": "",
"video": "ADT_Lite_release_recognition_WoodenBoxSmall_seq030_61283_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk a few steps straight ahead pick up the crate and observe for a moment, drop the crate and return to the starting point"
},
"44": {
"id": "",
"video": "ADT_Lite_release_recognition_BlackCeramicBowl_seq032_61283_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk straight ahead a few steps pick up the black bowl and observe for a moment, put it down and return to the starting point"
},
"45": {
"id": "",
"video": "ADT_Lite_release_recognition_BookDeepLearning_seq032_61283_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk a few steps straight ahead pick up the deep learning book and observe for a moment, put down the deep learning book and return to the starting point"
},
"46": {
"id": "",
"video": "ADT_Lite_release_recognition_BlackCeramicDishSmall_seq032_61283_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Go straight ahead a few steps pick up the black plate and observe for a moment, put down the black plate and return to the starting point"
},
"47": {
"id": "",
"video": "ADT_Lite_release_recognition_BambooPlate_seq031_61283_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk straight for a few steps pick up the bamboo tray and observe it for a moment, put it down and return to the starting point"
},
"48": {
"id": "",
"video": "ADT_Lite_release_recognition_WoodenBowl_seq032_61283_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk a few steps straight ahead pick up the wooden bowl and observe it for a moment, put it down and return to the starting point"
},
"49": {
"id": "",
"video": "ADT_Lite_release_recognition_BlackCeramicBowl_seq031_61283_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Go straight ahead a few steps pick up the black plate and observe for a moment, put down the black plate and return to the starting point"
},
"50": {
"id": "",
"video": "ADT_Lite_release_recognition_BlackCeramicBowl_seq030_61283_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Go straight ahead a few steps pick up the black plate and observe for a moment, put down the black plate and return to the starting point"
},
"51": {
"id": "",
"video": "ADT_Lite_release_recognition_BambooPlate_seq030_61283_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk straight for a few steps pick up the bamboo tray and observe it for a moment, put it down and return to the starting point"
},
"52": {
"id": "",
"video": "ADT_Lite_release_recognition_GreenDecorationTall_seq031_61283_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk a few steps straight ahead pick up the cactus and observe it for a moment, put it down and return to the starting point"
},
"53": {
"id": "",
"video": "ADT_Apartment_release_multiskeleton_party_seq123_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Talk to your companion then stand up and turn left to reach the yellow table to fiddle with the tomato molds, the alarm clock, then back up and return to the starting point"
},
"54": {
"id": "",
"video": "ADT_Apartment_release_multiuser_cook_seq119_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "turn right to reach table, turn left to return near start, turn right to reach table, fiddle with table items, turn left to return to start"
},
"55": {
"id": "",
"video": "ADT_Apartment_release_multiuser_meal_seq137_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Wash dishes at sink turn around and take to companion, pick up two black dinner plates on yellow table turn around and wash them, turn left a few steps then right one step then right two steps to reach black dining table, put down black dinner plates, turn right and go back to start"
},
"56": {
"id": "",
"video": "ADT_Apartment_release_multiuser_meal_seq131_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "clean black bowl, turn around and hand to partner, pick up yellow board and clean it turn around and put it down, pick up black plate and clean it turn around and put it down, pick up and clean it turn around and put it down, turn right and go back to start"
},
"57": {
"id": "",
"video": "ADT_Apartment_release_meal_seq149_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Take a few steps back to reach the yellow table eat the cereal, drink the juice, pick up the dinner plate with the fruit take a few steps right then one step left to reach the black table put down the fruit and plate, turn backward to return to the start"
},
"58": {
"id": "",
"video": "ADT_Apartment_release_meal_seq145_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Advance a few steps to reach the black table pick up the wooden bowl turn right then left to the yellow table make a salad pick up the banana and pear turn around to reach the black table turn left then right back to the start"
},
"59": {
"id": "",
"video": "ADT_Apartment_release_multiuser_cook_seq145_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Turn right to reach the yellow table to interact with your friend, turn left to return to the starting point after facing the yellow table"
},
"60": {
"id": "",
"video": "ADT_Apartment_release_meal_seq146_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Go back a few steps turn right then left to reach black table, turn left pick up water bottle turn right and put in black table wooden bowl, turn left pick up cereal turn right and put in black table wooden bowl, pick up yellow table wooden fork and put on black table, pick up water bottle and water glass and drink, turn backward to return to starting point"
},
"61": {
"id": "",
"video": "ADT_Apartment_release_meal_seq142_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Back up to the black table, eat the fruit, pick up the item and turn left to place it on the yellow table turn right to the black table and turn left to go back to the start"
},
"62": {
"id": "",
"video": "ADT_Apartment_release_multiuser_cook_seq118_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Go backwards to the black table to finish cutting the cake, turn backwards to the black table, put down the plate, turn backwards to the yellow plate, turn left to go back to the start"
},
"63": {
"id": "",
"video": "ADT_Apartment_release_multiuser_cook_seq142_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Turn right to reach the yellow table to interact with your friend, turn left to return to the starting point after facing the yellow table"
},
"64": {
"id": "",
"video": "ADT_Apartment_release_multiuser_cook_seq143_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Back up and then turn left to reach the yellow table, start cooking, then turn left one step and then right to return to the start"
},
"65": {
"id": "",
"video": "ADT_Apartment_release_multiuser_cook_seq149_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Turn back a few steps to reach the yellow table, turn right to cut the fruit and talk to your companion, then turn left to return to the starting point"
},
"66": {
"id": "",
"video": "ADT_Apartment_release_multiuser_clean_seq120_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk towards the black table and turn in place between the yellow table, turn left and turn left again to reach the yellow table,"
},
"67": {
"id": "",
"video": "ADT_Apartment_release_meal_skeleton_seq137_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Turn right to reach the yellow table to pick up the black bowl, front right to reach the coffee table to put down the black bowl, turn backward to return to the yellow table, cut the fruit, turn right and then left to reach the black table, turn left to dye across the yellow table to return to the starting point"
},
"68": {
"id": "",
"video": "ADT_Apartment_release_multiuser_cook_seq147_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk backward to reach yellow table, pick up water bottle and pour water to drink, wander in place, turn around and return to starting point after handing black table items to companion"
},
"69": {
"id": "",
"video": "ADT_Apartment_release_multiuser_cook_seq147_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "turn right to reach table, turn left to return near start, turn right to reach table, fiddle with table items, turn left to return to start"
},
"70": {
"id": "",
"video": "ADT_Apartment_release_multiuser_clean_seq112_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk towards the black table and turn in place between the yellow table, turn left and turn left again to reach the yellow table,"
},
"71": {
"id": "",
"video": "ADT_Apartment_release_multiuser_cook_seq116_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk backward to reach yellow table, pick up water bottle and pour water to drink, wander in place, turn around and return to starting point after handing black table items to companion"
},
"72": {
"id": "",
"video": "ADT_Apartment_release_work_skeleton_seq107_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk towards the black table and turn in place between the yellow table, turn left and turn left again to reach the yellow table"
},
"73": {
"id": "",
"video": "ADT_Apartment_release_multiuser_cook_seq120_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "walk towards the yellow table to interact with peers to cook and then return to the starting point"
},
"74": {
"id": "",
"video": "ADT_Apartment_release_multiuser_clean_seq117_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk backward to reach yellow table, pick up water bottle and pour water to drink, wander in place, turn around and return to starting point after handing black table items to companion"
},
"75": {
"id": "",
"video": "ADT_Apartment_release_work_skeleton_seq110_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "turn back to reach black table, sit down for a drink, pick up cup turn back to reach black coffee table put down cup, turn back to return to black table, turn left at yellow table take cup and put it on the black table, play with tablet and read a book then turn around and go back to the start"
},
"76": {
"id": "",
"video": "ADT_Apartment_release_work_seq139_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Turn backward to black dining table, read book and play with tablet, pour water to drink, pick cup up and turn around to black coffee table to put cup down, turn around and return to black dining table then turn left to return to starting point"
},
"77": {
"id": "",
"video": "ADT_Apartment_release_work_skeleton_seq109_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "turn back to reach black table, sit down for a drink, pick up cup turn back to reach black coffee table put down cup, turn back to return to black table, turn left at yellow table take cup and put it on the black table, play with tablet and read a book then turn around and go back to the start"
},
"78": {
"id": "",
"video": "ADT_Apartment_release_recognition_seq136_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Turn backward to black dining table, read book and play with tablet, pour water to drink, pick cup up and turn around to black coffee table to put cup down, turn around and return to black dining table then turn left to return to starting point"
},
"79": {
"id": "",
"video": "ADT_Apartment_release_work_seq138_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Reach backward to black dining table, play with tablet and read book, get up and turn left to set yellow dining table items, turn right to return to black dining table, pick up book and tablet and turn forward to black coffee table put down book and tablet and turn back to black dining table after which turn left to return to starting point"
},
"80": {
"id": "",
"video": "ADT_Apartment_release_multiuser_cook_seq150_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Turn backward to black dining table, read book and play with tablet, pour water to drink, pick cup up and turn around to black coffee table to put cup down, turn around and return to black dining table then turn left to return to starting point"
},
"81": {
"id": "",
"video": "ADT_Apartment_release_multiuser_cook_seq117_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "turn back to reach black table, sit down for a drink, pick up cup turn back to reach black coffee table put down cup, turn back to return to black table, turn left at yellow table take cup and put it on the black table, play with tablet and read a book then turn around and go back to the start"
},
"82": {
"id": "",
"video": "ADT_Apartment_release_meal_skeleton_seq133_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk to the black table, turn left a few steps and then right to reach the yellow table, put down the fruit, pick up the plate and turn right and then left to return to the black table, put down the green fruit, turn around and go back to the start"
},
"83": {
"id": "",
"video": "ADT_Apartment_release_multiuser_clean_seq118_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "turn back to reach black table, sit down for a drink, pick up cup turn back to reach black coffee table put down cup, turn back to return to black table, turn left at yellow table take cup and put it on the black table, play with tablet and read a book then turn around and go back to the start"
},
"84": {
"id": "",
"video": "ADT_Apartment_release_multiuser_meal_seq140_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Turn left to reach the yellow table then talk to your friend, fiddle with the turn items, turn left and right then right to reach the sink, start to take the plate from your friend and wash the dishes, turn right and left again to reach the black table to eat, after that return to the starting point"
},
"85": {
"id": "",
"video": "ADT_Apartment_release_multiuser_meal_seq139_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Advance to the black table, turn right and left then right again to reach the yellow table for cleaning items, after that turn left and right again to reach the black table to put down the plates and finally return to the starting point"
},
"86": {
"id": "",
"video": "ADT_Apartment_release_multiuser_meal_seq133_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Turn left to reach the yellow table then talk to your friend, fiddle with the turn items, turn left and right then right to reach the sink, start to take the plate from your friend and wash the dishes, turn right and left again to reach the black table to eat, after that return to the starting point"
},
"87": {
"id": "",
"video": "ADT_Apartment_release_multiuser_clean_seq119_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Advance to the black table, turn right and left then right again to reach the yellow table for cleaning items, after that turn left and right again to reach the black table to put down the plates and finally return to the starting point"
},
"88": {
"id": "",
"video": "ADT_Apartment_release_work_seq106_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Advance to the black table, turn right and left then right again to reach the yellow table for cleaning items, after that turn left and right again to reach the black table to put down the plates and finally return to the starting point"
},
"89": {
"id": "",
"video": "ADT_Apartment_release_work_skeleton_seq134_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "turn back to reach black table, sit down for a drink, pick up cup turn back to reach black coffee table put down cup, turn back to return to black table, turn left at yellow table take cup and put it on the black table, play with tablet and read a book then turn around and go back to the start"
},
"90": {
"id": "",
"video": "ADT_Apartment_release_multiuser_clean_seq111_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Reach backward to black dining table, play with tablet and read book, get up and turn left to set yellow dining table items, turn right to go back to black dining table, pick up book and tablet and turn forward to black coffee table put down book and tablet and turn back to black dining table after that turn left to go back to the start"
},
"91": {
"id": "",
"video": "ADT_Apartment_release_multiuser_cook_seq111_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Turn backward to black dining table, read book and play with tablet, pour water to drink, pick cup up and turn around to black coffee table to put cup down, turn around and return to black dining table then turn left to return to starting point"
},
"92": {
"id": "",
"video": "ADT_Apartment_release_work_skeleton_seq140_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Advance a few steps then turn right to reach the black table, play with the tablet, pick up the water glass and turn left to set it down at the yellow table, turn right to return to the black table, turn backward toward the black coffee table, and afterward walk straight back to the starting point"
},
"93": {
"id": "",
"video": "ADT_Apartment_release_multiuser_meal_seq135_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk straight to the black table pick up the wooden plate, turn around and walk to the sink to clean it and pick up the yellow table items to clean them, after that turn left and then right to place them on the black table, return to the yellow table pick up the kettle to the sink to clean it, pick up the yellow table black molds and the kettle and place them on the black table, return to the yellow table again to pick up the plate and observe it, put it down and walk straight back to the Starting Point"
},
"94": {
"id": "",
"video": "ADT_Apartment_release_multiuser_cook_seq112_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Turn backward, then right to reach the yellow table, work with your partner to cook, then turn right and then left to return to the starting point"
},
"95": {
"id": "",
"video": "ADT_Apartment_release_multiuser_clean_seq116_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk straight to the black table pick up the wooden plate, turn around and walk to the sink to clean it and pick up the yellow table items to clean them, after that turn left and then right to place them on the black table, return to the yellow table pick up the kettle to the sink to clean it, pick up the yellow table black molds and the kettle and place them on the black table, return to the yellow table again to pick up the plate and observe it, put it down and walk straight back to the Starting Point"
},
"96": {
"id": "",
"video": "ADT_Apartment_release_meal_seq143_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk to the yellow table pick up the cereal and place it in front of the black table and pick up the plate and fruit from the black table turn around and place it on the black coffee table, turn left and then right to return to the starting point"
},
"97": {
"id": "",
"video": "ADT_Apartment_release_meal_skeleton_seq131_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Advance a few steps then turn right to reach the black table, play with the tablet, pick up the water glass and turn left to set it down at the yellow table, turn right to return to the black table, turn backward toward the black coffee table, and afterward walk straight back to the starting point"
},
"98": {
"id": "",
"video": "ADT_Apartment_release_multiuser_meal_seq138_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Reach the sink to clean the wooden bowl, after that take the bowl to the yellow table, have a drink, then walk towards the black table, then return to the sink and start cleaning the items, after that turn left and then right to return to the black table to eat, and finally walk straight back to the starting point"
},
"99": {
"id": "",
"video": "ADT_Apartment_release_recognition_seq140_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Turn left and walk to the yellow table, then go around to the other side pick up the wooden spoon turn right and walk towards the black table turn right again and walk towards the black coffee table, keep watching the wooden spoon, put it down, go around the coffee table once and then pick up the wooden spoon and put it back on the black table and walk straight back to the starting point"
},
"100": {
"id": "",
"video": "ADT_Apartment_release_meal_skeleton_seq140_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "walk past the yellow table to the black coffee table and sit on the couch to eat, then turn right to the yellow table to eat a banana and soak cereal, turn left to the black table to pour and drink water, put the kettle back on the yellow table, and return to the starting point afterwards"
},
"101": {
"id": "",
"video": "ADT_Apartment_release_multiuser_cook_seq115_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Turn backward, then right to reach the yellow table, work with your partner to cook, then turn right and then left to return to the starting point"
},
"102": {
"id": "",
"video": "ADT_Apartment_release_multiuser_meal_seq134_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk to the yellow table pick up the cereal and place it in front of the black table and pick up the plate and fruit from the black table turn around and place it on the black coffee table, turn left and then right to return to the starting point"
},
"103": {
"id": "",
"video": "ADT_Apartment_release_multiuser_cook_seq114_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Turn left to reach the yellow table, eat the cereal, put the black bowl back on the black table, go around the yellow table and back to the other side"
},
"104": {
"id": "",
"video": "ADT_Apartment_release_recognition_seq133_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Turn left and walk to the yellow table, then go around to the other side pick up the wooden spoon turn right and walk towards the black table turn right again and walk towards the black coffee table, keep watching the wooden spoon, put it down, go around the coffee table once and then pick up the wooden spoon and put it back on the black table and walk straight back to the starting point"
},
"105": {
"id": "",
"video": "ADT_Apartment_release_work_skeleton_seq135_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "walk past the yellow table to the black coffee table and sit on the couch to eat, then turn right to the yellow table to eat a banana and soak cereal, turn left to the black table to pour and drink water, put the kettle back on the yellow table, and return to the starting point afterwards"
},
"106": {
"id": "",
"video": "ADT_Apartment_release_meal_skeleton_seq139_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "walk past the yellow table to the black coffee table and sit on the couch to eat, then turn right to the yellow table to eat a banana and soak cereal, turn left to the black table to pour and drink water, put the kettle back on the yellow table, and return to the starting point afterwards"
},
"107": {
"id": "",
"video": "ADT_Apartment_release_multiuser_party_seq147_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Turn right to the black table, talk to a friend for a drink, pick up a sandwich and go back to the yellow table and cut the fruit then turn right to return to the start"
},
"108": {
"id": "",
"video": "ADT_Apartment_release_multiuser_cook_seq148_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "From the starting point go to the yellow table, eat the food, turn backward to reach the black table, turn right a few more steps and then turn right back to the starting point"
},
"109": {
"id": "",
"video": "ADT_Apartment_release_work_skeleton_seq133_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "walk past the yellow table to the black coffee table and sit on the couch to eat, then turn right to the yellow table to eat a banana and soak cereal, turn left to the black table to pour and drink water, put the kettle back on the yellow table, and return to the starting point afterwards"
},
"110": {
"id": "",
"video": "ADT_Apartment_release_meal_seq147_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk to the yellow table pick up the cereal and place it in front of the black table and pick up the plate and fruit from the black table turn around and place it on the black coffee table, turn left and then right to return to the starting point"
},
"111": {
"id": "",
"video": "ADT_Apartment_release_multiuser_clean_seq114_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk straight to the black table pick up the wooden plate, turn around and walk to the sink to clean it and pick up the yellow table items to clean them, after that turn left and then right to place them on the black table, return to the yellow table pick up the kettle to the sink to clean it, pick up the yellow table black molds and the kettle and place them on the black table, return to the yellow table again pick up the plate and observe it, put it down and walk straight back to the Starting point"
},
"112": {
"id": "",
"video": "ADT_Apartment_release_multiuser_meal_seq132_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk to the yellow table pick up the cereal and place it in front of the black table and pick up the plate and fruit from the black table turn around and place it on the black coffee table, turn left and then right to return to the starting point"
},
"113": {
"id": "",
"video": "ADT_Apartment_release_work_skeleton_seq108_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "walk past the yellow table to the black coffee table and sit on the couch to eat, then turn right to the yellow table to eat a banana and soak cereal, turn left to the black table to pour and drink water, put the kettle back on the yellow table, and return to the starting point afterwards"
},
"114": {
"id": "",
"video": "ADT_Apartment_release_meal_seq144_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Turn left to reach the yellow table then talk to your friend, fiddle with the turn items, turn left and right then right to reach the sink, start to take the plate from your friend and wash the dishes, turn right and left again to reach the black table to eat, after that return to the starting point"
},
"115": {
"id": "",
"video": "ADT_Apartment_release_meal_seq150_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Turn left to reach the yellow table then talk to your friend, fiddle with the turn items, turn left and right then right to reach the sink, start to take the plate from your friend and wash the dishes, turn right and left again to reach the black table to eat, after that return to the starting point"
},
"116": {
"id": "",
"video": "ADT_Apartment_release_work_seq136_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "walk past the yellow table to the black coffee table and sit on the couch to eat, then turn right to the yellow table to eat a banana and soak cereal, turn left to the black table to pour and drink water, put the kettle back on the yellow table, and return to the starting point afterwards"
},
"117": {
"id": "",
"video": "ADT_Apartment_release_work_skeleton_seq138_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "walk past the yellow table to the black coffee table and sit on the couch to eat, put the kettle back on the yellow table, turn right again to the yellow table to eat a banana and soak your cereal, turn left to the black table to pour and drink, and after that go back to the start"
},
"118": {
"id": "",
"video": "ADT_Apartment_release_multiuser_meal_seq136_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk to sink to clean plates, place on black table, make a circle to yellow table, walk to black table for drinks, turn right a few steps and then left to return to sink to clean plates, return to black table the same way, and finally turn left to return to starting point"
},
"119": {
"id": "",
"video": "ADT_Apartment_release_work_seq140_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "walk past the yellow table to the black coffee table and sit on the couch to eat, then turn right to the yellow table to eat a banana and soak cereal, turn left to the black table to pour and drink water, put the kettle back on the yellow table, and return to the starting point afterwards"
},
"120": {
"id": "",
"video": "ADT_Apartment_release_meal_skeleton_seq136_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "walk past the yellow table to the black coffee table and sit on the couch to eat, then turn right to the yellow table to eat a banana and soak cereal, turn left to the black table to pour and drink water, put the kettle back on the yellow table, and return to the starting point afterwards"
},
"121": {
"id": "",
"video": "ADT_Apartment_release_work_seq108_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk straight to the black coffee table and sit on the couch, play with the tablet and drink water, put the tablet and the water glass back on the black table and the yellow table respectively, go back to the black table and sit down and play with the tablet, and after that go around the yellow table and back to the starting point"
},
"122": {
"id": "",
"video": "ADT_Apartment_release_multiuser_party_seq142_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Turn right to reach the yellow table and talk to your companion, pick up the cake and go around the yellow table to reach the black table put down the cake and return to the yellow table, eat the fruit, talk to your friend and return to the start"
},
"123": {
"id": "",
"video": "ADT_Apartment_release_multiuser_party_seq141_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "walk straight to black coffee table sit on couch talk to friend pick up water glass on black coffee table drink water get up turn right to black dining table pick up fruit turn left turn right again to yellow dining table cut fruit and talk to companion after that turn left return to starting point"
},
"124": {
"id": "",
"video": "ADT_Apartment_release_multiuser_party_seq139_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Turn right at yellow table to talk to friend and eat fruit, walk straight to black coffee table to sit on couch and watch flat screen, return to black table to talk to companion, and finally walk straight back to starting point"
},
"125": {
"id": "",
"video": "ADT_Apartment_release_meal_skeleton_seq135_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk straight to the black coffee table and sit on the couch, play with the tablet and drink water, put the tablet and the water glass back on the black table and the yellow table respectively, go back to the black table and sit down and play with the tablet, and after that go around the yellow table and back to the starting point"
},
"126": {
"id": "",
"video": "ADT_Apartment_release_multiskeleton_party_seq123_71292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Turn right at yellow table to talk to friend and eat fruit, walk straight towards black coffee table to sit on couch and watch flat screen, return to black table to talk to companion, and finally walk straight back to starting point "
},
"127": {
"id": "",
"video": "ADT_Apartment_release_meal_skeleton_seq134_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "walk towards the yellow table to interact with peers to cook and then return to the starting point"
},
"128": {
"id": "",
"video": "ADT_Apartment_release_work_skeleton_seq137_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk towards the black table and turn in place between the yellow table, turn left and turn left again to reach the yellow table"
},
"129": {
"id": "",
"video": "ADT_Apartment_release_work_skeleton_seq132_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "walk around the yellow dining table to the black coffee table to sit down and play with the tablet and read a book, walk to the yellow dining table to pour water and drink, then then the black coffee table to sit on the couch to read a book and play with the tablet, and finally walk straight back to the starting point"
},
"130": {
"id": "",
"video": "ADT_Apartment_release_meal_skeleton_seq132_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Turn left to reach the yellow table then talk to your friend, fiddle with the turn items, turn left and right then right to reach the sink, start to take the plate from your friend and wash the dishes, turn right and left again to reach the black table to eat, after that return to the starting point"
},
"131": {
"id": "",
"video": "ADT_Apartment_release_recognition_seq138_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Turn left and walk to the yellow table, then go around to the other side pick up the wooden spoon turn right and walk towards the black table turn right again and walk towards the black coffee table, keep watching the wooden spoon, put it down, go around the coffee table once and then pick up the wooden spoon and put it back on the black table and walk straight back to the starting point"
},
"132": {
"id": "",
"video": "ADT_Apartment_release_multiuser_party_seq149_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Turn right at yellow table to talk to friend and eat fruit, walk straight towards black coffee table to sit on couch and watch flat screen, return to black table to talk to companion, and finally walk straight back to starting point"
},
"133": {
"id": "",
"video": "ADT_Apartment_release_multiuser_cook_seq146_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Wash wooden bowl in sink, walk around yellow table to other side, cook, put wooden spoon, mold back on black table, turn around and put wooden bowl and cup back on black table, and finally walk straight back to starting point"
},
"134": {
"id": "",
"video": "ADT_Apartment_release_multiuser_party_seq146_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "walk straight to black coffee table sit on couch talk to friend pick up water glass on black coffee table drink water get up turn right to black dining table pick up fruit turn left turn right again to yellow dining table cut fruit and talk to companion after that turn left return to starting point"
},
"135": {
"id": "",
"video": "ADT_Apartment_release_work_seq107_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk towards the black table and turn in place between the yellow table, turn left and turn left again to reach the yellow table"
},
"136": {
"id": "",
"video": "ADT_Apartment_release_multiuser_clean_seq113_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Turn left right then right again to reach the sink, start to take the plate from your friend and wash the dishes, turn left to reach the yellow table then talk to your friend, fiddle with the turn item, turn right then left to reach the black table to eat, after that return to the starting point"
},
"137": {
"id": "",
"video": "ADT_Apartment_release_multiuser_party_seq138_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "walk straight towards black coffee table sit on couch and watch flat screen, return to black dining table and talk to companion, turn right at yellow dining table and talk to friend and eat fruit, finally walk straight back to starting point"
},
"138": {
"id": "",
"video": "ADT_Apartment_release_work_seq110_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk straight to the black coffee table and sit on the couch, play with the tablet and drink water, put the tablet and the water glass back on the black table and the yellow table respectively, go back to the black table and sit down and play with the tablet, and after that go around the yellow table and back to the starting point"
},
"139": {
"id": "",
"video": "ADT_Apartment_release_work_skeleton_seq139_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "walk past the yellow table to the black coffee table and sit on the couch to eat, turn left to the black table to pour water and drink, turn right again to the yellow table to eat a banana, soak cereal, put the water bottle back on the yellow table, and after that return to the starting point"
},
"140": {
"id": "",
"video": "ADT_Apartment_release_multiskeleton_party_seq125_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "walk straight to the black table to talk to your friend about drinking and eating, turn around to the yellow table to talk to your friend about drinking and eating at the far corner, and finally walk around the yellow table to go straight back to the start"
},
"141": {
"id": "",
"video": "ADT_Apartment_release_multiuser_party_seq150_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk towards the black table and turn in place between the yellow table, turn left and turn left again to reach the yellow table to place the items on the table and return to the starting point"
},
"142": {
"id": "",
"video": "ADT_Apartment_release_work_seq109_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Turn left to the black table to pour and drink water, pass by the yellow table to walk to the black coffee table and sit on the couch to eat, turn right again to the yellow table to eat a banana, make cereal, put the kettle back on the yellow table, and after that return to the starting point"
},
"143": {
"id": "",
"video": "ADT_Apartment_release_multiuser_cook_seq144_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "walk straight towards the black table pour and drink water return to the black coffee table pick up the wooden bowl and water glass return to the black table, go around the yellow table to the other side, put down the water glass turn around and place the wooden bowl on the yellow table, then take away the plate and wooden spoon from the take away the plate and wooden spoon and place it on the yellow table, start cooking, return straight to the start"
},
"144": {
"id": "",
"video": "ADT_Apartment_release_work_skeleton_seq131_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Turn left a few steps and then right to reach the yellow table, put down the fruit, walk to the black table, pick up the plate and turn right and then left to return to the black table, put down the green fruit, turn around and go back to the start"
},
"145": {
"id": "",
"video": "ADT_Apartment_release_multiuser_cook_seq113_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "turn right to the yellow table pour and drink water return to the black coffee table pick up the wooden bowl and glass of water return to the black table, put down the glass of water turn around and place the wooden bowl on the black table, go around the yellow table to the other side, then from take away the plate and the wooden spoon and place it on the yellow table, start cooking and return straight to the start"
},
"146": {
"id": "",
"video": "ADT_Apartment_release_multiuser_party_seq134_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "walk straight to the couch by the black coffee table and sit down, talk to a friend, go back to the yellow table and pick up a knife to go to the black table cake, then go back to the yellow table and put down the knife, turn around and go back behind the black table, and finally walk straight back to the start"
},
"147": {
"id": "",
"video": "ADT_Apartment_release_multiuser_party_seq132_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "talk to friend, go back to yellow table pick up knife go to black table cake, then go back to yellow table put knife down, turn around and go back to black table then walk straight to black coffee table couch sit down and finally walk straight back to start"
},
"148": {
"id": "",
"video": "ADT_Apartment_release_multiuser_party_seq133_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "walk around the yellow table to the other side to pour and drink water turn around and go to the black table to sit down and eat cake, turn left and walk towards the couch by the black coffee table to sit down and talk to a friend and drink water, and finally walk straight back to the start"
},
"149": {
"id": "",
"video": "ADT_Apartment_release_multiuser_cook_seq141_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Turn left to reach between the yellow and black tables take the wooden bowl from your friend and stir it, go to the other side of the yellow table and adjust the alarm clock, pick up the food from the black table and hand it to your friend, talk to your friend and then turn right to return to the starting point"
},
"150": {
"id": "",
"video": "ADT_Apartment_release_multiuser_party_seq137_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Turn left to reach between the yellow and black tables take the wooden bowl from your friend and stir it, go to the other side of the yellow table and adjust the alarm clock, pick up the food from the black table and hand it to your friend, talk to your friend and then turn right to return to the starting point"
},
"151": {
"id": "",
"video": "ADT_Apartment_release_multiuser_party_seq143_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "walk towards the yellow table pick up the bowl and spoon walk to the black coffee table couch sit down and start eating then pick up the black plate and wooden spoon place the wooden spoon on the yellow table turn around and go back to the black table put down the plate turn left to the closet turn right to the yellow table and put down the toy bird house finally return to the starting point"
},
"152": {
"id": "",
"video": "ADT_Apartment_release_multiskeleton_party_seq119_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk straight to the black table to talk to your friend about eating cake, get up and turn left to the yellow table, after that turn left and walk near the black coffee table, then walk straight back to the start"
},
"153": {
"id": "",
"video": "ADT_Apartment_release_multiuser_party_seq140_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "walk towards the yellow table pick up the bowl and spoon walk to the black coffee table couch sit down and start eating then pick up the black plate and wooden spoon place the wooden spoon on the yellow table turn around and go back to the black table put down the plate turn left to the closet turn right to the yellow table and put down the toy bird house finally return to the starting point"
},
"154": {
"id": "",
"video": "ADT_Apartment_release_work_skeleton_seq136_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "walk straight to the black coffee table next to the couch to play with the tablet, turn right to the black dining table, return to the black coffee table couch, turn right again to the black dining table, return to the black coffee table, and finally walk straight back to the start"
},
"155": {
"id": "",
"video": "ADT_Apartment_release_multiskeleton_party_seq125_71292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "go around the yellow table to reach the black table to sit down to eat and drink and eat fruit, turn around and return to the yellow table to talk to a friend and eat fruit, turn left and return to the starting point"
},
"156": {
"id": "",
"video": "ADT_Apartment_release_multiskeleton_party_seq126_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk straight to the black table to talk to your friend about cake, get up and turn left to the yellow table, after that turn left and walk near the black coffee table, then walk straight back to the starting point"
},
"157": {
"id": "",
"video": "ADT_Apartment_release_multiskeleton_party_seq125_71292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Turn left and walk near the black coffee table, get up and turn left to the yellow table, after that walk straight to the black table to talk to your friend and eat cake, then walk straight back to the start"
},
"158": {
"id": "",
"video": "ADT_Apartment_release_multiskeleton_party_seq122_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Turn right to the black dining table, walk straight to the black coffee table next to the couch to play with the tablet, return to the black coffee table couch, turn right again to the black dining table, return to the black coffee table, and finally walk straight back to the starting point"
},
"159": {
"id": "",
"video": "ADT_Apartment_release_multiskeleton_party_seq119_71292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk towards the black table and turn in place between the yellow table, turn left and turn left again to reach the yellow table"
},
"160": {
"id": "",
"video": "ADT_Apartment_release_multiskeleton_party_seq115_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "walk straight to the black coffee table pick up the green fruit and eat it, talk to your friend, turn right and walk to the yellow table, return to the black coffee table again, return straight to the start"
},
"161": {
"id": "",
"video": "ADT_Apartment_release_multiskeleton_party_seq101_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "walk straight to the black table to talk to a friend for a drink and food, turn around to the yellow table to talk to a friend for a drink and food at the far corner, and finally walk around the yellow table to go straight back to the start"
},
"162": {
"id": "",
"video": "ADT_Apartment_release_work_skeleton_seq106_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Turn left to the black table to pour and drink water, pass by the yellow table to walk to the black coffee table and sit on the couch to eat, turn right again to the yellow table to eat a banana, make cereal, put the kettle back on the yellow table, and after that return to the starting point"
},
"163": {
"id": "",
"video": "ADT_Apartment_release_multiskeleton_party_seq122_71292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "walk straight towards the black table pour and drink water return to the black coffee table pick up the wooden bowl and water glass return to the black table, go around the yellow table to the other side, put down the water glass turn around and place the wooden bowl on the yellow table, then take away the plate and wooden spoon from the take away the plate and wooden spoon and place it on the yellow table, start cooking, return straight to the start"
},
"164": {
"id": "",
"video": "ADT_Apartment_release_multiskeleton_party_seq121_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Turn left a few steps and then right to reach the yellow table, put down the fruit, walk to the black table, pick up the plate and turn right and then left to return to the black table, put down the green fruit, turn around and go back to the start"
},
"165": {
"id": "",
"video": "ADT_Apartment_release_multiuser_party_seq135_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "turn right to the yellow table pour and drink water return to the black coffee table pick up the wooden bowl and glass of water return to the black table, put down the glass of water turn around and place the wooden bowl on the black table, go around the yellow table to the other side, then from take away the plate and the wooden spoon and place it on the yellow table, start cooking and return straight to the start"
},
"166": {
"id": "",
"video": "ADT_Apartment_release_multiskeleton_party_seq127_71292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "walk straight to the couch by the black coffee table and sit down, talk to a friend, go back to the yellow table and pick up a knife to go to the black table cake, then go back to the yellow table and put down the knife, turn around and go back behind the black table, and finally walk straight back to the start"
},
"167": {
"id": "",
"video": "ADT_Apartment_release_multiskeleton_party_seq103_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "talk to friend, go back to yellow table pick up knife go to black table cake, then go back to yellow table put knife down, turn around and go back to black table then walk straight to black coffee table couch sit down and finally walk straight back to start"
},
"168": {
"id": "",
"video": "ADT_Apartment_release_multiskeleton_party_seq108_71292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "walk around the yellow table to the other side to pour and drink water turn around and go to the black table to sit down and eat cake, turn left and walk towards the couch by the black coffee table to sit down and talk to a friend and drink water, and finally walk straight back to the start"
},
"169": {
"id": "",
"video": "ADT_Apartment_release_multiskeleton_party_seq103_71292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Turn left to reach between the yellow and black tables take the wooden bowl from your friend and stir it, go to the other side of the yellow table and adjust the alarm clock, pick up the food from the black table and hand it to your friend, talk to your friend and then turn right to return to the starting point"
},
"170": {
"id": "",
"video": "ADT_Apartment_release_multiskeleton_party_seq102_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Turn left to reach between the yellow and black tables take the wooden bowl from your friend and stir it, go to the other side of the yellow table and adjust the alarm clock, pick up the food from the black table and hand it to your friend, talk to your friend and then turn right to return to the starting point"
},
"171": {
"id": "",
"video": "ADT_Apartment_release_multiskeleton_party_seq104_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "walk towards the yellow table pick up the bowl and spoon walk to the black coffee table couch sit down and start eating then pick up the black plate and wooden spoon place the wooden spoon on the yellow table turn around and go back to the black table put down the plate turn left to the closet turn right to the yellow table and put down the toy bird house finally return to the starting point"
},
"172": {
"id": "",
"video": "ADT_Apartment_release_multiskeleton_party_seq115_71292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk straight to the black table to talk to your friend about eating cake, get up and turn left to the yellow table, after that turn left and walk near the black coffee table, then walk straight back to the start"
},
"173": {
"id": "",
"video": "ADT_Apartment_release_multiskeleton_party_seq101_71292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "walk towards the yellow table pick up the bowl and spoon walk to the black coffee table couch sit down and start eating then pick up the black plate and wooden spoon place the wooden spoon on the yellow table turn around and go back to the black table put down the plate turn left to the closet turn right to the yellow table and put down the toy bird house finally return to the starting point"
},
"174": {
"id": "",
"video": "ADT_Apartment_release_multiskeleton_party_seq121_71292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "walk straight to the black coffee table next to the couch to play with the tablet, turn right to the black dining table, return to the black coffee table couch, turn right again to the black dining table, return to the black coffee table, and finally walk straight back to the start"
},
"175": {
"id": "",
"video": "ADT_Apartment_release_multiskeleton_party_seq106_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "go around the yellow table to reach the black table to sit down to eat and drink and eat fruit, turn around and return to the yellow table to talk to a friend and eat fruit, turn left and return to the starting point"
},
"176": {
"id": "",
"video": "ADT_Apartment_release_multiskeleton_party_seq106_71292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk straight to the black table to talk to your friend about cake, get up and turn left to the yellow table, after that turn left and walk near the black coffee table, then walk straight back to the starting point"
},
"177": {
"id": "",
"video": "ADT_Apartment_release_multiskeleton_party_seq116_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Turn left and walk near the black coffee table, get up and turn left to the yellow table, after that walk straight to the black table to talk to your friend and eat cake, then walk straight back to the start"
},
"178": {
"id": "",
"video": "ADT_Apartment_release_multiskeleton_party_seq107_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Turn right to the black dining table, walk straight to the black coffee table next to the couch to play with the tablet, return to the black coffee table couch, turn right again to the black dining table, return to the black coffee table, and finally walk straight back to the starting point"
},
"179": {
"id": "",
"video": "ADT_Apartment_release_multiskeleton_party_seq102_71292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk towards the black table and turn in place between the yellow table, turn left and turn left again to reach the yellow table"
},
"180": {
"id": "",
"video": "ADT_Apartment_release_multiskeleton_party_seq107_71292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "turn right to black table pick up fruit turn left turn right again to yellow table cut fruit and talk to companion, walk straight to black coffee table sit on sofa and talk to friend, pick up water glass on black table and drink, after that turn left and return to starting point"
},
"181": {
"id": "",
"video": "ADT_Apartment_release_multiskeleton_party_seq116_71292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "talk to friend, go back to yellow table pick up knife go to black table cake, then go back to yellow table put knife down, turn around and go back to black table then walk straight to black coffee table couch sit down and finally walk straight back to start"
},
"182": {
"id": "",
"video": "ADT_Apartment_release_multiskeleton_party_seq114_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "go around the yellow table to reach the black table to sit down to eat and drink and eat fruit, turn around and return to the yellow table to talk to a friend and eat fruit, turn left and return to the starting point"
},
"183": {
"id": "",
"video": "ADT_Apartment_release_multiuser_party_seq131_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "walk straight to the black coffee table pick up the green fruit and eat it, talk to your friend, turn right and walk to the yellow table, return to the black coffee table again, return straight to the start"
},
"184": {
"id": "",
"video": "ADT_Apartment_release_multiskeleton_party_seq104_71292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "walk towards the yellow table pick up the bowl and spoon walk to the black coffee table couch sit down and start eating then pick up the black plate and wooden spoon place the wooden spoon on the yellow table turn around and go back to the black table put down the plate turn left to the closet turn right to the yellow table and put down the toy bird house finally return to the starting point"
},
"185": {
"id": "",
"video": "ADT_Apartment_release_multiskeleton_party_seq114_71292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "go around the yellow table to reach the black table to sit down to eat and drink and eat fruit, turn around and return to the yellow table to talk to a friend and eat fruit, turn left and return to the starting point"
},
"186": {
"id": "",
"video": "ADT_Apartment_release_multiskeleton_party_seq117_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "walk straight to black coffee table sofa and sit down to chat with a friend, get up and turn right, chat with a friend and eat fruit, walk around the yellow dining table and return to the starting point"
},
"187": {
"id": "",
"video": "ADT_Apartment_release_multiskeleton_party_seq117_71292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk straight to the black coffee table to chat with a friend, turn left to the yellow table position to talk to a friend for a snack, and finally turn left to return to the starting point"
},
"188": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc2_script5_seq4_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Put the mobile phone in hand back, reach over the green backpack above the front - loading washing machine on the left. Press the button of the front - loading washing machine. Take out the clothes from the front - loading washing machine, then open the top - loading washing machine on the right and put the clothes in."
},
"189": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc4_script2_seq6_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Turn off the mobile phone. Wipe the table repeatedly. Then put the napkin back on the right - hand side, and then turn on the mobile phone again."
},
"190": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc2_script3_seq1_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk backwards from the room, pick up the plastic bag on the left - hand table. Then talk to the people, open the door and go out, close the door, and put the plastic bag at the door."
},
"191": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc2_script3_seq1_rec2_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "First, pick up the canned drink on the right - hand side of the table and then put it down. Subsequently, raise the hand to signal and talk to the people at the door. After putting the hand down, move the left hand to the yellow porcelain bowl. Finally, move the plastic bowl with red slashes on the table."
},
"192": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc3_script3_seq1_rec2_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Turn 6 pages to the right on the book opened on the knee. Finally, after accepting and talking to the person on the right, turn 2 pages to the right again. Then close the book, get up from the sofa, and put the book on the stack of books on the table."
},
"193": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc2_script2_seq6_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Touch the chess box with the right hand, and then throw the remaining chess pieces on the table into the chess box. Subsequently, pick up the white toilet paper on the right - hand side of the table and wipe the water on the table clean. Pick up the transparent goblet on the table, pour the water in it onto the table. Finally, throw the scattered chess pieces on the table and the chessboard into the chess box."
},
"194": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc4_script2_seq8_rec2_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Open the door and enter from the door. Subsequently, turn left and pass the sofa and the table in the living room. Walk a few steps to the right, then raise the hand to check the watch. After talking to people for a few words, raise the hand to check the watch again."
},
"195": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc1_script5_seq1_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Open the suitcase. Put the clothes on the left side of the suitcase into the suitcase, and zip up the suitcase. Take the suitcase off the bed, then walk out of the bedroom. Then turn right and walk through the space between the sofa and the wall in the living room. Walk to the door, open the door, and go out."
},
"196": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc3_script3_seq1_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Open the refrigerator and take out the two boxes of eggs. Close the refrigerator. Turn around and put the two boxes of eggs into the two paper bags on the table. Then put the potato chips on the table into the paper bag. Pick up the two paper bags on the table. After talking to people, turn left, walk out of the room, come to the door, open the door, and go out."
},
"197": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc2_script2_seq6_rec2_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Pick up the chess box from the brown table. Then walk backwards to the chair and sit on it. Take off the cover of the chess box and put it under the chess box. Take some papers in the box to the right - hand side of the box. Then unfold the chessboard and put it on the left - hand side of the box. Pick up the chess pieces in the box and put them on the chessboard and the table. Finally, take one step to the right."
},
"198": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc3_script1_seq7_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Pick up the book on the table in front, open the book. Turn 3 pages to the right, then turn 3 pages to the left, and close the book. Stand up, take one step to the left, and then walk to the back of the sofa."
},
"199": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc2_script2_seq3_rec2_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Pick up the cup, take a sip of coffee, and then put the cup down. Talk to people. Pick up the cup on the table. Get up and walk backwards past the table. Turn left, walk a few steps, turn left again, and keep walking forward. Put the cup in hand on the table in front. Then turn around. Walk a few steps, turn right, walk a few more steps, and then turn right to the chair next to the table and sit down."
},
"200": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc2_script2_seq3_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Talk to people in front of the small brown table. Subsequently, get up, turn left, and keep walking. Then move one step to the right. Talk to people. Then pick up the blue water cup on the platform on the right - hand side, put it on the platform on the left - hand side. Pick up the coffee pot on the platform on the left - hand side and pour the coffee in the pot into the blue water cup on the right - hand side of the platform. Then turn around and talk to people."
},
"201": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc3_script5_seq1_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Put down the mobile phone. Put the clothes on the bed into the black shoulder bag, pick up the mobile phone and browse it. Put down the mobile phone, zip up the black shoulder bag. Take the black shoulder bag off the bed, turn right, and walk out of the room. Keep walking forward to the stairs. Turn right and go upstairs to the corner of the stairs. Turn around backwards and keep going upstairs. Walk diagonally to the right - front until you reach the orange door. Open the door and go out."
},
"202": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc3_script2_seq7_rec2_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "After talking to people, stand up from the sofa, move a few steps to the left, turn left, walk a few steps, and sit down in front of the table."
},
"203": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc4_script3_seq2_rec2_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Have a conversation with others."
},
"204": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc4_script5_seq1_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Put the clothes on the right side of the suitcase back into the interlayer of the suitcase. Zip it up. Take the two small boxes off the table on the right. Then put all the remaining clothes on the right side of the suitcase back into the suitcase. Close the suitcase, zip it up, stand up. Step back to the corridor. Turn left and keep walking. Walk to the corner, turn left again. Keep walking forward, open the door and go out."
},
"205": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc2_script2_seq4_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Put down the milk with both hands, take out the food from the paper bag and eat it, then stir the milk with a spoon in the right hand. Pick up the milk bottle and shake it, open the milk bottle and pour the milk into the water cup. Close the milk bottle and hand the paper bag and the milk back to the person opposite. Have a conversation with others."
},
"206": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc4_script3_seq4_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Pick up the fork, fork the food, then put down the fork. Have a conversation with others. Pick up the fork, fork the food, then put down the fork. Stand up, pick up the two plates. Turn left and leave the dining room, walk forward, hand out the yellow and green plates with food, open the refrigerator. Take out the eggs inside, then close the refrigerator, walk to the kitchen table, move the eggs and the cup to the right, and then move from the left side of the person in the yellow clothes to the right side."
},
"207": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc4_script2_seq7_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Have a conversation with others while watching a video on the mobile phone. Then wipe the tabletop with toilet paper using the left hand."
},
"208": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc2_script5_seq2_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Press the button of the washing machine. Open the lid of the washing machine. Take down the orange plastic bucket above the washing machine, take out the things inside and put them into the washing machine, then close it and put it back in place. Close the white cabinet above the washing machine. Then put the clothes in the washing machine into the green bag. Exit the washing machine area, walk straight to the right, walk through the living room and keep walking forward. Walk to the end, turn left and keep walking forward. Squat down and touch the suitcase, stand up again. Squat down again and put the bag and the phone on the ground. Put all the clothes in the green bag back into the black suitcase."
},
"209": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc3_script2_seq7_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Talk with others while watching the video. Then exit the video on the mobile phone, stand up, move a few steps diagonally to the left - rear, and sit down in front of the table."
},
"210": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc1_script3_seq1_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Open the book and turn 12 pages to the right, then talk with the person on the right. Turn the book one page to the right, and then close the book."
},
"211": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc2_script3_seq2_rec2_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Talk with the person on the right, stand up, and keep walking forward."
},
"212": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc2_script3_seq2_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Talk with the person on the left. Then stand up from the right side of the big sofa. Walk between the table and the small sofa. Turn left, pass by the table, and keep walking forward."
},
"213": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc1_script3_seq2_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Repeatedly put the things into the small bowl on the table in front during the conversation with others. Then put the book on the table onto your knee."
},
"214": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc2_script5_seq6_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Put the neatly arranged clothes on top of the washing machine into the drum washing machine one by one."
},
"215": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc3_script2_seq1_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "After talking with others, pick up the water on the table, take two sips, then hand the water cup to others, stand up, turn around and exit the living room, then turn left, walk to the door, open the door, and go out."
},
"216": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc2_script5_seq5_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Lie in bed and browse the mobile phone."
},
"217": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc4_script4_seq2_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Put the white water cup on the table, then pick it up again. Stand up and put the water cup on the table on the right - hand side onto the table on the left - hand side, then walk forward. Walk to the coffee machine, take out the kettle of the coffee machine. Pour the coffee into the white water cup. Put the kettle back. Press the button of the coffee machine. Open the lid of the coffee machine. Insert the faucet into the coffee machine to fill it with water. Close the lid of the coffee machine. Turn on the faucet. Wash the tableware in the sink. Turn off the faucet. Turn around and walk forward, exit the kitchen. Turn left and walk forward. Lie down on the bed."
},
"218": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc2_script2_seq4_rec2_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Open the refrigerator, take out the milk, close the refrigerator. Then walk forward and sit down. Open the cap and put it back on. Take the spoon out of the blue cup. Stand up, turn left and walk forward to the drawer next to the refrigerator, open the drawer, put down the spoon. Close the drawer. Keep walking backwards and sit down at the original place. Then stand up. Pick up the milk and the paper bag. Turn left and walk forward, put the paper bag on the countertop, then open the refrigerator, put the milk in, close the refrigerator. Turn right and walk forward. Sit back in the original place and talk with others."
},
"219": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc4_script3_seq1_rec2_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Open the book and read. Then stand up, walk diagonally to the left - front, open the door. Step back to the original place, sit down, and open and close the book."
},
"220": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc3_script2_seq5_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Play chess with the person opposite. Take the chess box from the right. Pour all the red chess pieces out of the chess box on the opposite side of the table, put the yellow chess pieces into the chess box, and close the chess box."
},
"221": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc3_script2_seq5_rec2_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Play chess with the person opposite. Then disassemble the blue stand and put it into the chess box."
},
"222": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc2_script5_seq3_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Put the items on the sink countertop into the zippered bag on the sink, turn around and walk forward to the suitcase. Open the suitcase, repeatedly take out the clothes from the cabinet next to the suitcase and put them into the suitcase. Then stand up, turn left and walk forward to the sink. Pick up some items. Step back to the suitcase. Put the items in hand into the suitcase. Close the suitcase."
},
"223": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc3_script4_seq7_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Pick up the mobile phone from the table, open the game. Stand up, put the other mobile phone on the table in front of you to the upper - left corner of the table, then sit down and continue to play games. Then stand up, walk diagonally to the left - front through the space between the sofa and the table, keep walking forward. Stop, turn around backwards, keep walking forward, and exit the living room."
},
"224": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc3_script1_seq6_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Open the refrigerator, then close the refrigerator. Turn around and walk forward to the table, pick up the white plates and cutlery on the table. Then turn around and walk forward to the closet next to the refrigerator. Put the cutlery into the drawer next to the closet. Close the drawer, then put the plates into the closet. Then close the closet. Turn around and walk forward to the table, pick up the items. Turn around backwards, walk to the white chair, and put the items into the paper bag on the white chair."
},
"225": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc3_script2_seq4_rec2_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Open the bag of potato chips on the table and take one to eat. Then stand up. Walk forward. Then turn around and return to the original place. Pick up the two cups of coffee on the table. Turn left and walk forward. Put them on the table in front. Then pick up the two cups of coffee and put them on the counter behind, and talk with others."
},
"226": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc3_script3_seq2_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Talk with others, then stand up, turn left and walk forward."
},
"227": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc4_script2_seq2_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Stand up and turn right. Move the red clothes aside. Walk forward between the sofa and the table. Talk with others. Turn right and walk forward to the left side of the table. Then step back to the original place. Then move diagonally to the right - front and enter the kitchen following the person in the yellow top. Keep walking forward, pass through the kitchen. Turn right and walk forward, enter the patio. Turn around and return to the kitchen and close the patio door."
},
"228": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc2_script5_seq7_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Write on the counter. Then stand up, turn left and walk forward, touch the things on the counter, and then return to the original place to continue writing. Turn around, open the refrigerator, close it, and return to the original place to continue writing. Turn around, open the cabinet under the refrigerator. Close it, turn right and walk forward. Then turn around backwards and open the upper closets in turn. Open the refrigerator, tidy up the items in the refrigerator. Then close the refrigerator, turn left and walk forward."
},
"229": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc4_script1_seq5_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Sit on the sofa and play mobile games."
},
"230": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc3_script5_seq3_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Pick up the black bag from under the rack at the corner of the bed and put it at the head of the bed. Then repeatedly pick up the clothes on the rack at the foot of the bed one by one and put them at the head of the bed. Finally, turn left and walk forward, pick up the small black bag on the table, turn around backwards, walk forward, and put the small black bag on the table at the head of the bed. Pick up the black bag and then put it down."
},
"231": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc3_script2_seq1_rec2_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Talk with others and stand up from the sofa. Take one step to the right. Pick up the water glass, turn around backwards and walk diagonally to the left - front. Fill the glass with drinking water in front of the refrigerator. Take two steps to the left, open the upper closet and put the glass on it, close the closet. Then open the closet on the left, close it, turn around backwards, walk forward to the door of the living room. Turn left and walk forward, open the door and then close it."
},
"232": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc2_script5_seq2_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Check the phone in front of the plate. Turn left to turn off the heat, take the fruit out of the plate. Put the pancake back into the pan. Use the black spatula to flip the pancake. Turn right, return to the frying pan and check the phone. Put the items on the table back into the refrigerator, turn the frying pan, pour the batter into the basin. Use the scraper to put the cheese from the frying pan into the cheese box. Put the pancake into the frying pan. Use the black spatula to repeatedly flip the pancake. Use the scraper to put the cheese into the cheese box. Use the black spatula to scoop the pancake, then turn right, put the berries on the wooden board into the box. Turn right, put the berries in the sink. Put the knife into the drawer. Turn left, put the wooden board into the upper cabinet. Pour the batter into the batter basin. Use the scraper to put the cheese into the cheese box. Turn right, put the plate on the countertop. Put the scraper into the first - layer cabinet. Turn left, go to the countertop to close the cheese box. Turn off the heat, put the frying pan into the lower cabinet. Put the food back into the refrigerator and take out the milk. Stir the flour batter, put the mixer into the first - layer drawer. After washing hands, turn left, take the eggshells out of the trash can in the cabinet. Turn left, put the mango into the refrigerator, and close the refrigerator. Put the two eggs into the egg box and then put the eggs and milk into the refrigerator. Turn right, take the flour out of the red basin. Turn left, put the red basin into the corner cabinet. Put the bowl into the drawer. Seal the flour package, turn right and put it back on the countertop. Repeatedly close and open the left - hand cabinet. Turn right, put the disc into the second drawer. Put the black spatula into the drawer."
},
"233": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc1_script5_seq2_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Take down the laundry detergent on the shelf above the washing machine, open the washing machine, pour the laundry detergent into the washing machine, then close the washing machine and put the laundry detergent back in place. Press the button of the washing machine. Open the washing machine, put the clothes in the washing machine into the box. Stand up, turn right and walk. Walk to the bedside and put the clothes in the box back on the bed."
},
"234": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc3_script4_seq5_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Eat while watching the video played on the mobile phone. Then stand up. Put the food on the left - hand table onto the right - hand table. And pick up the mobile phone on the left - hand table."
},
"235": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc4_script5_seq7_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Write with the pen. Turn around backwards, open the refrigerator, close it, then return to the original place and continue writing. Walk to the left side of the refrigerator, open the closet and close it. Open the closet on the right side of the refrigerator, close it. Open the refrigerator again, close it. Turn around backwards! Open the right - hand closet, close it. Open the left - hand closet, close it."
},
"236": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc2_script1_seq3_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Check the phone, turn off the phone and put it on the table. Turn right, pick up the broom. Pick up the cleaning tools. Clean the carpet under the TV cabinet, pick up the tools and put them on the TV cabinet. Turn left and sweep the floor. Turn right, put the pillow on the sofa onto the table. Turn right, put the pillow on the sofa onto the ground. Sweep the floor while walking backwards and then turn right. Repeat the actions, turn left, put down the broom, turn left, take down the cylinder on the skateboard, then step back and put the skateboard on the ground. Turn right to clean the TV cabinet. Turn right again to clean the third and second layers of the cabinet. Turn right to clean the countertop, then walk forward to clean the right - hand countertop. Put down the cleaning tools, then step back and put down the broom. Step back to the table, turn off the music, turn off the phone, pick up the mobile phone on the left and turn it off."
},
"237": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc1_script2_seq8_rec2_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Talk with others and stand up from the sofa. Take one step to the right. Pick up the water glass, turn around backwards and walk diagonally to the left - front. Fill the glass with drinking water in front of the refrigerator. Take two steps to the left, open the upper closet and put the glass on it, close the closet. Then open the closet on the left, close it, turn around backwards, walk forward to the door of the living room. Turn left and walk forward, open the door and then close it."
},
"238": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc4_script2_seq4_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Open the refrigerator, take out the milk, close the refrigerator. Then walk forward and sit down. Open the cap and put it back on. Take the spoon out of the blue cup. Stand up, turn left and walk forward to the drawer next to the refrigerator, open the drawer, put down the spoon. Close the drawer. Keep walking backwards and sit down at the original place. Then stand up. Pick up the milk and the paper bag. Turn left and walk forward, put the paper bag on the countertop, then open the refrigerator, put the milk in, close the refrigerator. Turn right and walk forward. Sit back in the original place and talk with others."
},
"239": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc1_script4_seq4_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Moved the chair around a bit.Picks up a can of canned drink from the table.Turn backwards and go out the door.Turn right and open the fridge, put the drink in the fridge and close it.Return to the small room.Pick up another can of easy drink from the table.Turn backwards, go out the door, turn right, open the fridge, put the drink in the fridge and close it.Return to the small room again, pick up the fruit and turn backwards.Go all the way to the front, then turn right and go forward to the sink.Place the fruit in your hand over the sink.Turn left.Go to the paper bag.Pick up both bags of food and return to the small room, open the larger bag and pour it into the green bowl on the table in the small room.Pick up the bowl.Turn backwards and walk out of the small room.Walk to the front of the paper bag.Open the wardrobe above the paper bag, put the green bowl in it, and close the wardrobe again.Turn backwards and walk into the small room.Pick up the two bags of food on the table and turn backwards, return to the front of the paper bag and put the two bags of food in the paper bag.Turn left and walk forward.Pick up the glass of water on the counter in front of you and drink from it.Put it down again."
},
"240": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc5_script5_seq6_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Play the game on your phone.Then put the phone on the right side of the couch.Pick up your phone and stand up.Walk backwards and forwards to the counter and put the phone down.Then return to the couch.Used the remote control to change the TV programme.And walk forwards to switch off the TV set.Placed one remote under the TV, picked up another remote and put it down again.Then put the last remote in his hand under the TV as well.Turn right across the living room between the sofa and the table."
},
"241": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc1_script1_seq3_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Put your mobile phone on the table in front of the sofa.Turn right and walk forward to the TV and pick up the remote control underneath the TV.Then turn round and walk forwards to the sofa and sit down, using the remote to control the TV.Then stand up and put the remote down and lie on the floor next to the table and do push-ups.Then stand up and pick up the mobile phone in front of the sofa and walk around the sofa all the way to the right."
},
"242": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc2_script3_seq3_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Go left from the white drawer.Turn left again and go all the way to the desktop to organise the desktop.Then return to the white drawer and turn right, open the fridge and remove the red fruit box.Then remove the yellow fruit box and place it on top of the red fruit box.Talk to someone and tidy up the board and pick up the cup in your right hand.Pour the cup of coffee on the table, and as a result, wipe the table clean with the paper handed to you.Then wipes the table on the upper left.Place the yellow fruit box on the table on top of the red fruit box and pick up both fruit boxes together and turn to the right.Take two steps, then turn left.Keep walking in turning to the right.Open the white drawer in front of you.Then open the fridge on the right hand side."
},
"243": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc5_script4_seq7_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Open the fridge and close it again.Open the cabinet above the fridge before closing it.Turn around and take your mobile phone and enter the message.Then place the phone on the counter in front of you.Then open the drawer at the bottom right of the fridge and close it again.Turn backwards and go forwards.Go through the corridor.When you get to the stairway, turn right up the stairs, turn back at the corner of the stairs and continue up the stairs.When you reach the upper floor go forward to the left!On reaching the door turn left to enter.Then turn left and walk to the fridge.Place your mobile phone on the counter in front of the fridge.Turn around and open the fridge.Then close the fridge.Turn right back and go forward.Open the wardrobe above.Close it again."
},
"244": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc2_script3_seq3_rec2_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Turn back and go left from the living room.Go to the end and turn back, then keep going forward.Go to the kitchen door and turn right into the kitchen.Go left and go through the kitchen on the left side of the kitchen.Walk to the balcony and return to the kitchen entrance from the right side of the kitchen.As you walk, talk to your friend about some of the furniture and the videos hanging in the room.Then turn left and walk forward to return to the living room.Turn left again.Walk to the sofa and sit down."
},
"245": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc1_script1_seq7_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Pick up the beverage on the table. Then stand up and talk with the guest. Put the orange beverage in your hand on the table in front of the sofa. Then take the green beverage in the guest's hand and put it on the table in front of the sofa as well. Then walk to the middle of the living room to introduce the furniture to the guest and talk with him/her. Finally, go to the door and open it. Then close it."
},
"246": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc3_script4_seq4_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Check the phone in front of the plate. Turn left to turn off the stove and take out the fruits from the plate. Put the pancake back into the pan. Use a black spatula to flip the pancake. Turn right back to the pan to check the phone. Put the tableware back into the refrigerator, turn the pan, and pour the batter into the basin. Use a scraper to transfer the cheese from the pan into the cheese box. Put the pancake into the pan. Use the black spatula to flip it again. Use the scraper to transfer the cheese into the cheese box. Use the black spatula after flipping the pancake and turn right to put the wooden board with berries into the box. Turn right to put the berries on the sink. Put the knife into the drawer. Turn left to put the wooden board into the upper cabinet. Pour the batter into the batter basin. Use the scraper to transfer the cheese into the cheese box. Turn right to put the plate on the countertop. Put the scraper into the first layer of the drawer. Turn left to close the cheese box on the countertop. Turn off the stove and put the pan into the lower cabinet. Put the food back into the refrigerator and take out the milk. Mix the batter, put the mixer into the first layer of the drawer. After washing hands, turn left to take out the eggshells from the trash can of the cabinet. Turn left to put the mango into the refrigerator and close the refrigerator. Take out two eggs and put them into the egg box. Put the eggs and milk into the refrigerator. Turn right to take out the flour from the red basin. Turn left to put the red basin into the corner cabinet. Put the bowl into the drawer. Close the flour packaging and turn right to put it back on the countertop. Repeat the opening and closing of the left cabinet. Turn right to put the round plate into the second drawer. Put the black spatula into the drawer."
},
"247": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc5_script5_seq5_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Pick up the clothes on the sofa and put them down. Before picking up the luggage on the sofa, place the suitcase on the floor. Unzip the zipper. Open the suitcase and then open the inner compartment of the suitcase. Pull up the inner compartment of the suitcase. Put all the clothes on the sofa into the suitcase. Close the suitcase, pull up the zipper, and take the suitcase down. Turn left and walk straight to the staircase entrance. Turn right and go up the stairs. At the staircase corner, turn left and continue up the stairs. After reaching the upper floor, turn right. Move forward to the right front! Put the pair of shoes on the right side of the door in front of the door. Put on the right shoe first, then put on the left shoe. Then open the door, hold the suitcase in your hand, and open the door. After going out, turn around and close the door. Then turn around and walk straight ahead."
},
"248": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc5_script4_seq3_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Turn around from the original living room, move forward to the right front, and enter the corridor to go forward. Enter a room, walk in and then turn around to exit the room. Continue to go to the right rear and enter another room, then exit. Walk forward, turn left and enter a bedroom with two beds, then push it out. Continue to walk forward, turn left and enter a bathroom, then exit. Continue to walk forward, turn left and enter another bathroom, then exit. Then walk forward in the corridor, reach a door with an orange color, open the lock and open the door. Move forward to the rear left, enter the living room. Turn left and walk forward, pass through the kitchen and arrive at the balcony. Then turn right and walk forward, pass through the balcony and reach the other side of the balcony. Have a conversation with someone. Continue to walk forward to the right and walk forward to the TV set. Then step back to the sofa and sit down to have a conversation with someone."
},
"249": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc2_script4_seq2_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Turn left and then turn rearward. Enter the laundry room. Pick up the laundry detergent from below the sink. Open the small box of the washing machine and pour the laundry detergent into the small box of the left washing machine on the left. Close the small box of the washing machine. Then put the laundry detergent back below the sink. Turn on the left washing machine and put the clothes inside it on top of the right washing machine. Then put the white clothes on the top of the left washing machine. Close the washing machine. Pick up the clothes on the right washing machine and exit the laundry room. Then turn left and go straight ahead until you reach the bed. Put the clothes on your hands on the bed."
},
"250": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc5_script4_seq4_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Have a conversation with someone. Then get up from the sofa. Pick up the drink. Move forward to the left front! Walk through the corridor and keep going straight ahead. Turn right and enter the kitchen. Walk straight ahead to the front of the refrigerator and open it. Put the drink in the refrigerator. Close the refrigerator. Turn right and keep going straight ahead. Walk to the corridor and turn left again. Move forward to the front of the sofa to have a conversation with someone. Turn back and walk forward. Walk to the door and open it. Then close it."
},
"251": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc5_script4_seq5_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Place the mobile phone in your hand on the left side of the rightmost phone on the desktop. Then pick up the rightmost phone on the table to play games. During this time, pick up the rightmost phone on the edge and take a look at it, then put it back. Continue playing games. After putting down the phone, pick up the remote control on the leftmost side of the table. Start controlling the TV, then hold both remote controls on the table in your hands. Turn off the TV in front of you and stand up. Put the remote control in your hand on the sofa."
},
"252": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc1_script3_seq5_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Check your mobile phone, turn it off and place it on the table. Turn right to pick up the broom. Pick up the cleaning tools. Sweep the carpet under the TV cabinet and pick up the tools, then place them on the TV cabinet. Turn left to sweep the floor. Turn right to place the cushions on the sofa on the table. Turn right to place the cushions on the sofa on the ground. Sweep while walking, step back and then turn right. Repeat the actions. Turn left to put down the broom, turn left, lower the cylinder on the skateboard, then step back and put the skateboard on the ground. Turn right to clean the TV cabinet. Turn right again to clean the third and second layers of the cabinet. Turn right to clean the countertop, then walk forward and clean the right side of the countertop. Put down the cleaning tools, step back and put down the broom. Step back to the table, turn off the music, turn off the mobile phone, pick up the left mobile phone and turn it off again."
},
"253": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc5_script5_seq7_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Pick up the two remote controls at the bottom of the TV. Step back to the table beside the sofa. Turn on the TV and then place the remote controls on the table. Step back and turn around facing away from the table. Sit on the ground first, then lie down to do sit-ups. Do a few and then turn your body 180 degrees to continue. Then stand up. Turn left. Take a step to the right. Hold both remote controls on the right side table in your hands. Hold one in each hand and start to control the TV. Then pick up the mobile phone on the table. Walk forward to the TV, and put both remote controls on the bottom of the TV. Turn around and walk straight ahead, passing the sofa."
},
"254": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc4_script3_seq3_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Take the clothes out of the bag. Then hold the clothes and walk to the bed. Put the neatly arranged clothes one by one together. Re-stack them. Then pick up all the clothes and turn right. Walk straight ahead until you reach the washing machine room door. Turn left and enter the washing machine room. Place the mobile phone above the left washing machine. Then turn on the left washing machine switch, close it, and then turn it on again. Put all the clothes in your hands into the washing machine. Get up and take the mobile phone on the top of the washing machine. Exit the washing machine room and turn right. Walk straight ahead until you return to the bed."
},
"255": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc2_script1_seq4_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Stand up from the sofa. Stand and talk to others all the time. During this period, have two sips of the beverage in hand. Then pass out the green beverage. Then step back and stand in the middle of the living room. Turn around and walk forward for several steps. Open the door and talk to others while going out. Knock on the door after closing the door."
},
"256": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc1_script4_seq3_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Talk with others while making gestures with the right hand. Pick up the book on the table in front of you. Open the book and talk with others. Then turn the page to the left."
},
"257": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc5_script4_seq2_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Drink coffee, then pass the coffee cup in your hand to the person in front of you and have a conversation with him/her. Step back towards the closet and have a chat with someone. Turn around and stare at the refrigerator, then continue walking backwards. Move to the right front and have a chat there."
},
"258": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc2_script4_seq3_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Pick up the beverage on the table. Then stand up and talk with the guest. Put the orange beverage in your hand on the table in front of the sofa. Then take the green beverage in the guest's hand and put it on the table in front of the sofa as well. Then walk to the middle of the living room to introduce the furniture to the guest and talk with him/her. Finally, go to the door and open it. Then close it."
},
"259": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc1_script4_seq2_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Pick up the fork, pick up the food with it, and then put the fork down. Talk to someone. Pick up the fork, pick up the food, and then put the fork down. Stand up, pick up the two-hand plates, turn left and exit the restaurant, walk forward, pass the yellow and green plates with food to the right. Open the refrigerator. Take out the eggs from inside, then close the refrigerator, walk to the kitchen table, move the eggs and cups to the right, and then move from the left side of the person wearing yellow clothes to his right side."
},
"260": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc1_script5_seq5_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Press the buttons of the washing machine. Open the lid of the washing machine. Take down the orange plastic bucket above the washing machine, take out the contents and put them into the washing machine, then close it and put it back in its place. Close the white cabinet above the washing machine. Then put the clothes inside the washing machine into the green bag. Exit the washing machine, go straight to the right, pass through the living room and keep walking forward. Turn left at the end and keep walking. Squat down and touched the suitcase, then stand up. Squat down again and put the bag and the mobile phone on the ground. Put all the clothes in the green bag back into the black suitcase."
},
"261": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc3_script1_seq4_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Put the white water cup on the table, then pick it up again. Stand up and place the water cup on the right side of the table on the left side and move forward. Walk to the coffee machine, take out the water jug from it. Pour the coffee into the white water cup. Put the water jug back. Press the coffee machine button. Open the lid of the coffee machine. Insert the faucet into the coffee machine to fill it with water. Close the lid of the coffee machine. Turn on the faucet. Rinse the tableware in the sink. Turn off the faucet. Turn around and walk forward, exit the kitchen. Turn left and walk forward. Walk to the bedside and lie down."
},
"262": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc3_script4_seq2_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Then walk over to the fridge, take out the milk, close the fridge. Walk forward again, sit down. Open the bottle cap and then close it. Take out the spoon from the blue cup. Stand up, turn left and walk forward to the drawer beside the fridge. Open the drawer, put down the spoon. Close the drawer. Walk backward and continue forward to the original place and sit down. Then stand up. You take the milk and the paper bag. Turn left and walk forward. Put the paper bag on the table. Then open the fridge and put the milk in, close the fridge. Turn right and walk forward. Sit back in the original place to have a conversation with others."
},
"263": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc1_script2_seq7_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Put the items on the washbasin into the zipper bag on the washbasin stand. Turn around and walk forward to the suitcase. Open the suitcase and take out the clothes from the cabinet beside the suitcase again and put them into the suitcase. Then stand up, turn left and walk forward to the washbasin. Hold some items in your hands. Retreat to the suitcase. Put the items in your hands into the suitcase. Close the suitcase."
},
"264": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc1_script4_seq5_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Open the refrigerator, then close it. Turn around and walk forward to the table. Pick up the white plate and knife and fork on the table. Turn around again and walk forward to the closet beside the refrigerator. Put the knife and fork in the drawer beside the closet. Close the drawer and put the plate in the closet. Then close the closet. Turn around and walk forward to the table to pick up the items. Turn around backward and walk to the white chair, then put the items in the paper bag on the white chair."
},
"265": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc2_script4_seq7_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Write on the table. Then stand up, turn left and walk forward. After touching the things on the table, continue to return to the original place to write. Turn around and open the refrigerator, then close it. Return to the original place and continue to write. Turn around, open the cabinet below the refrigerator. Close it and then turn right and walk forward. Then turn back and open the upper wardrobes one by one. Open the refrigerator and tidy up the items inside. Then close the refrigerator and turn left and walk forward."
},
"266": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc3_script3_seq4_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Take the laundry detergent off the shelf above the washing machine, turn on the washing machine, pour the detergent into the machine, then close it, and put the detergent back to its original place. The buttons of the electric washing machine. Turn on the washing machine, put the clothes in it into the box. Stand up and turn right to walk away. Walk to the bedside and put the clothes in the box onto the bed."
},
"267": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc2_script1_seq7_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Put down the mobile phone, pick up the book on the right side of the table in front of you. Start turning the pages and having a conversation. Uncle Baoshan and Shang stood up, walked to the left front, crossed over the purple balloons, and placed the book on the shelf in front of them."
},
"268": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc3_script2_seq4_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Put the potato chips into the potato chip bag. Stand up and keep pushing forward. Pick up the potato chips on the table. Turn around, walk forward, and put the potato chips in the paper bag on the ground. Take a step to the left. Turn around backward, open the refrigerator, take out the milk. Close the refrigerator. Pour the milk into the two coffee cups on the table in front of you separately. Then turn around again and open the refrigerator. Put the milk back into the refrigerator. Close the refrigerator."
},
"269": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc3_script5_seq4_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Enter the laundry room. Take out the white clothes from the left washing machine and put them on the left washing machine. Then transfer all the clothes from the right washing machine to the left one. Close the left washing machine. Then close the right one. Turn right and exit the laundry room. Turn left and keep walking forward. Cross the corridor and reach the big bed."
},
"270": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc3_script5_seq5_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Put the mobile phone on the bed, pick up the newspaper. Start reading the newspaper and keep turning the pages. Then stand up. Walk to the other side of the bed and put the newspaper on the bedside. Then return to the original side of the bed. Walk out of the door and keep going straight ahead. Stop at the laundry room entrance."
},
"271": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc3_script1_seq2_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Sit on the sofa and repeatedly press the buttons on the remote control to operate the TV. Then stand up, place the remote control in your hand under the TV. Take another remote control. Turn around and walk forward. Return to the sofa and sit down again. Repeat the process of pressing the buttons on the remote control to operate the TV."
},
"272": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc3_script3_seq2_rec2_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Talk with others while making gestures with the right hand. Pick up the book on the table in front of you. Open the book and talk with others. Then turn the page to the left."
},
"273": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc1_script2_seq8_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Turn around and start chatting with someone. Walk into the room. Take off the right shoe of your feet. Then take off the black shoe of your left foot. Walk forward to sit down on the sofa in the living room. Pick up the snacks on the table in front of you and eat them. Chat with someone. Stand up from the sofa and sit down again."
},
"274": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc4_script1_seq6_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Moved the chair a little. Took a can of canned beverage from the table and held it. Turned back, went out. Turned right and opened the refrigerator. Put the beverage in the fridge and closed it. Returned to the small room. Took another can of canned beverage from the table. Turned back, went out, turned right, opened the refrigerator, put the beverage in the fridge, and closed it again. Returned to the small room, picked up the fruit, turned back. Walked straight ahead, turned right, walked forward to the sink. Put the fruit in the air above the sink. Turned left. Reached the paper bag. Picked up two bags of food and returned to the small room. Opened the larger bag of food, poured it into the green bowl on the table in the small room. Picked up the bowl. Turned back, walked out of the small room. Walked in front of the paper bag. Opened the closet above the paper bag, put the green bowl in it, and closed the closet. Turned back, walked into the small room. Picked up the two bags of food from the table and turned back. Walked forward to the front of the paper bag, put the two bags of food in the paper bag. Turned left and walked forward. Picked up the water cup on the counter and drank from it. Put it down again."
},
"275": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc1_script2_seq1_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Pick up the beverage on the table. Then stand up and talk with the guest. Put the orange beverage in your hand on the table in front of the sofa. Then take the green beverage in the guest's hand and put it on the table in front of the sofa as well. Then walk to the middle of the living room to introduce the furniture to the guest and talk with him/her. Finally, go to the door and open it. Then close it."
},
"276": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc4_script2_seq1_rec2_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Get up from the sofa and sit down again. Have a conversation with someone. Hold the mobile phone on the table in front of you. Then stand up. Walk to the door and open it to go out. After having a conversation with someone, close the door and knock on it."
},
"277": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc3_script1_seq5_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Play games on the mobile phone. Then place the phone on the right side of the sofa. Stand up and pick up the phone. Walk backward and forward to the table to put the phone down. Then return to the sofa. Use the remote control to change the TV program. Walk forward and turn off the TV. Put one remote control under the TV, pick up another one, then put it down again. Then put the last remote control in your hand also under the TV. Turn right and pass between the sofa and the table in the living room."
},
"278": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc2_script2_seq8_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Open the door, then close it, turn around, walk straight ahead from the door to the sofa and sit down there. Talk to the person on the right side of the sofa."
},
"279": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc2_script2_seq2_rec2_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Turn around and go straight ahead from the living room to the left. Walk until you reach the end and then turn around. Keep walking straight ahead. When you reach the kitchen door, turn right and enter the kitchen. Walk left, pass through the kitchen from the left side. Walk to the balcony and then return from the right side of the kitchen to the entrance of the kitchen. While walking, introduce some furniture and the photos hanging on the walls in the room to your friends. Then turn left and walk forward to return to the living room. Turn left again. Walk up to the sofa and sit down."
},
"280": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc3_script5_seq7_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Open the refrigerator and then close it. Open the cabinet above the refrigerator and then close it. Turn around and input the message with the mobile phone. Then put the mobile phone on the table in front of you. Then open the drawer at the lower right of the refrigerator and then close it. Turn around backward and move forward. Walk through the corridor. When you reach the staircase entrance, turn right to go up the stairs, then turn around backward at the corner of the stairs and continue going up. When you reach the upper floor, move forward to the left ahead! When you reach the door, turn left to enter. Then turn left and walk to the front of the refrigerator. Put the mobile phone on the table in front of the refrigerator. Turn around and open the refrigerator. Then close the refrigerator. Turn right backward and move forward. Open the upper closet. Then close it."
},
"281": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc2_script2_seq2_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Pick up the beverage on the table. Then stand up and talk with the guest. Put the orange beverage in your hand on the table in front of the sofa. Then take the green beverage in the guest's hand and put it on the table in front of the sofa as well. Then walk to the middle of the living room to introduce the furniture to the guest and talk with him/her. Finally, go to the door and open it. Then close it."
},
"282": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc1_script2_seq6_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Go left from the white drawer. Then turn left and walk straight ahead until you reach the tabletop to tidy it up. Then return to the white drawer, turn right, open the refrigerator, take down the red fruit box. Take down the yellow fruit box next and place it on top of the red one. Have a conversation with someone and tidy up the chessboard. Hold the cup with your right hand. Pour the coffee in the cup onto the table. The paper handed over later wipes the table clean. Then wipe the table on the left upper corner. Place the yellow fruit box on top of the red one on the table and pick up both fruit boxes together and turn right. Take two steps forward, then turn left. Keep walking to the right. Open the white drawer in front of you. Then open the refrigerator on your right side."
},
"283": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc2_script2_seq8_rec2_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Open the door and have a talk with someone. Then walk straight ahead, turn right, walk forward again, and sit down in front of the sofa to have a talk with them."
},
"284": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc3_script1_seq1_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Put the mobile phone on the table in front of the sofa. Turn right and walk forward to the front of the TV set. Pick up the remote control at the bottom of the TV set. Then turn around and walk forward to the side of the sofa and sit down. Use the remote control to operate the TV set. Then stand up and put down the remote control. Lie on the ground beside the table and do push-ups. Then stand up and pick up the mobile phone in front of the sofa. Walk around the sofa and go straight to the right."
},
"285": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc1_script2_seq1_rec2_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Stand up from the sofa. Stand and talk to others all the time. During this period, have two sips of the beverage in hand. Then pass out the green beverage. Then step back and stand in the middle of the living room. Turn around and walk forward for several steps. Open the door and talk to others while going out. Knock on the door after closing the door."
},
"286": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc5_script5_seq1_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Pick up the clothes on the sofa and put them down. Before picking up the luggage on the sofa, place the suitcase on the floor. Unzip the zipper. Open the suitcase and then open the inner compartment of the suitcase. Pull up the inner compartment of the suitcase. Put all the clothes on the sofa into the suitcase. Close the suitcase, pull up the zipper, and take the suitcase down. Turn left and walk straight to the staircase entrance. Turn right and go up the stairs. At the staircase corner, turn left and continue up the stairs. After reaching the upper floor, turn right. Move forward to the right front! Put the pair of shoes on the right side of the door in front of the door. Put on the right shoe first, then the left shoe. Then open the door, hold the suitcase in your hand, and open the door. After going out, turn around and close the door. Then turn around and walk straight ahead."
},
"287": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc3_script2_seq2_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Turn around from the original living room, move forward to the right front, and enter the corridor to go forward. Enter a room, walk in and then turn around to exit the room. Continue to go to the right rear and enter a room, then exit. Walk forward, turn left and enter a bedroom with two beds, then push it out. Continue to walk forward, turn left and enter a bathroom, then exit. Continue to walk forward, turn left and enter another bathroom, then exit. Then walk forward in the corridor, reach a door with an orange color, open the lock and open the door. Move forward to the rear left, enter the living room. Turn left and walk forward, pass through the kitchen and arrive at the balcony. Then turn right and walk forward, pass through the balcony and reach the other side of the balcony. Have a conversation with someone. Continue to walk forward to the right and walk forward to the TV set. Then step back to the sofa and sit down to have a conversation with someone."
},
"288": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc2_script1_seq2_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Sitting on the sofa, he/she kept watching TV. During this time, he/she looked around here and there. Then he/she started chatting with someone. He/she controlled the TV with the remote control. Then he/she turned off the TV. He/she got up from the sofa and placed the remote control on the table in front of the sofa. He/she took a step to the left."
},
"289": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc4_script2_seq3_rec2_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Drink coffee, then pass the coffee cup in your hand to the person in front of you and have a conversation with him/her. Step back towards the closet and have a chat with someone. Turn around and stare at the refrigerator, then continue walking backwards. Move to the right front and have a chat there."
},
"290": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc3_script5_seq2_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Turn left and then turn rearward. Enter the laundry room. Pick up the laundry detergent from below the sink. Open the small box of the washing machine and pour the laundry detergent into the small box of the left washing machine on the left. Close the small box of the washing machine. Then put the laundry detergent back below the sink. Turn on the left washing machine and put the clothes inside it on top of the right washing machine. Then put the white clothes on the top of the left washing machine. Close the washing machine. Pick up the clothes on the right washing machine and exit the laundry room. Then turn left and walk straight ahead until you reach the bed. Put the clothes on your hands on the bed."
},
"291": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc2_script2_seq1_rec2_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Have a conversation with someone. Then get up from the sofa. Pick up the drink. Move forward to the left front! Walk through the corridor and keep going straight ahead. Turn right and enter the kitchen. Walk straight ahead to the front of the refrigerator and open it. Put the drink in the refrigerator. Close the refrigerator. Turn right and keep going straight ahead. Walk to the corridor and turn left again. Move forward to the front of the sofa to have a conversation with someone. Turn back and walk forward. Walk to the door and open it, then close it."
},
"292": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc2_script1_seq5_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Place the mobile phone in your hand on the left side of the rightmost phone on the desktop. Then pick up the rightmost phone on the table to play games. During this time, pick up the rightmost phone on the edge and take a look at it, then put it back. Continue playing games. After putting down the phone, pick up the remote control on the leftmost side of the desktop. Start controlling the TV, then hold both remote controls on the desktop in your hands. Turn off the TV in front of you and stand up. Put the remote control in your hand on the sofa."
},
"293": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc3_script4_seq3_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Pick up the two remote controls at the bottom of the TV. Step back to the table beside the sofa. Turn on the TV and then put the remote controls on the table. Step back and turn around facing away from the table. Sit on the ground first, then lie down to do sit-ups. Do a few and then turn your body 180 degrees to continue. Then stand up. Turn left. Take a step to the right. Hold both remote controls on the right side table in your hands. Hold one in each hand and start to control the TV. Then pick up the mobile phone on the table. Walk forward to the TV, and put both remote controls on the bottom of the TV. Turn around and walk straight ahead, passing the sofa."
},
"294": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc1_script1_seq5_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "I have been lying in bed playing video games."
},
"295": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc3_script5_seq6_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Take the clothes out of the bag. Then hold the clothes and walk to the bed. Put the neatly arranged clothes one by one together. Re-stack them. Then pick up all the clothes and turn right. Walk straight ahead until you reach the washing machine room door. Turn left and enter the washing machine room. Place the mobile phone above the left washing machine. Then turn on the left washing machine switch, close it, and then turn it on again. Put all the clothes in your hands into the washing machine. Get up and take the mobile phone on the top of the washing machine. Exit the washing machine room and turn right. Walk straight ahead until you return to the bed."
},
"296": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc2_script2_seq1_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "After knocking on the door, the door opened and someone came out. Then I went in, turned around, closed the door and had a conversation with the person. Then I kept walking forward. I crossed between the table and the sofa, sat down on the right side of the sofa. I had a conversation with someone. I took the yellow drink that was handed to me. Then I placed the yellow drink on the table in front of me. And I kept having conversations with the person. Then I opened the drink and drank it."
},
"297": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc2_script5_seq1_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Put the mobile phone in hand back, reach over the green backpack above the front - loading washing machine on the left. Press the button of the front - loading washing machine. Take out the clothes from the front - loading washing machine, then open the top - loading washing machine on the right and put the clothes in."
},
"298": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc1_script2_seq6_rec2_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "First, pick up the canned drink on the right - hand side of the table and then put it down. Subsequently, raise the hand to signal and talk to the people at the door. After putting the hand down, move the left hand to the yellow porcelain bowl. Finally, move the plastic bowl with red slashes on the table."
},
"299": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc2_script4_seq5_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Open the suitcase. Put the clothes on the left side of the suitcase into the suitcase, and zip up the suitcase. Take the suitcase off the bed, then walk out of the bedroom. Then turn right and walk through the space between the sofa and the wall in the living room. Walk to the door, open the door, and go out."
},
"300": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc1_script5_seq3_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Pick up the cup, take a sip of coffee, and then put the cup down. Talk to people. Pick up the cup on the table. Get up and walk backwards past the table. Turn left, walk a few steps, turn left again, and keep walking forward. Put the cup in hand on the table in front. Then turn around. Walk a few steps, turn right, walk a few more steps, and then turn right to the chair next to the table and sit down."
},
"301": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc5_script4_seq1_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Put down the mobile phone. Put the clothes on the bed into the black shoulder bag, pick up the mobile phone and browse it. Put down the mobile phone, zip up the black shoulder bag. Take the black shoulder bag off the bed, turn right, and walk out of the room. Keep walking forward to the stairs. Turn right and go upstairs to the corner of the stairs. Turn around backwards and keep going upstairs. Walk diagonally to the right - front until you reach the orange door. Open the door and go out."
},
"302": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc4_script1_seq3_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Put the clothes on the right side of the suitcase back into the interlayer of the suitcase. Zip it up. Take the two small boxes off the table on the right. Then put all the remaining clothes on the right side of the suitcase back into the suitcase. Close the suitcase, zip it up, stand up. Step back to the corridor. Turn left and keep walking. Walk to the corner, turn left again. Keep walking forward, open the door and go out."
},
"303": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc4_script5_seq3_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Pick up the fork, fork the food, then put down the fork. Have a conversation with others. Pick up the fork, fork the food, then put down the fork. Stand up, pick up the two plates. Turn left and leave the dining room, walk forward, hand out the yellow and green plates with food, open the refrigerator. Take out the eggs inside, then close the refrigerator, walk to the kitchen table, move the eggs and the cup to the right, and then move from the left side of the person in the yellow clothes to the right side."
},
"304": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc2_script2_seq5_rec2_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Press the button of the washing machine. Open the lid of the washing machine. Take down the orange plastic bucket above the washing machine, take out the things inside and put them into the washing machine, then close it and put it back in place. Close the white cabinet above the washing machine. Then put the clothes in the washing machine into the green bag. Exit the washing machine area, walk straight to the right, walk through the living room and keep walking forward. Walk to the end, turn left and keep walking forward. Squat down and touch the suitcase, stand up again. Squat down again and put the bag and the phone on the ground. Put all the clothes in the green bag back into the black suitcase."
},
"305": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc3_script3_seq5_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Put the white water cup on the table, then pick it up again. Stand up and put the water cup on the table on the right - hand side onto the table on the left - hand side, then walk forward. Walk to the coffee machine, take out the kettle of the coffee machine. Pour the coffee into the white water cup. Put the kettle back. Press the button of the coffee machine. Open the lid of the coffee machine. Insert the faucet into the coffee machine to fill it with water. Close the lid of the coffee machine. Turn on the faucet. Wash the tableware in the sink. Turn off the faucet. Turn around and walk forward, exit the kitchen. Turn left and walk forward. Lie down on the bed."
},
"306": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc2_script3_seq4_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Open the refrigerator, take out the milk, close the refrigerator. Then walk forward and sit down. Open the cap and put it back on. Take the spoon out of the blue cup. Stand up, turn left and walk forward to the drawer next to the refrigerator, open the drawer, put down the spoon. Close the drawer. Keep walking backwards and sit down at the original place. Then stand up. Pick up the milk and the paper bag. Turn left and walk forward, put the paper bag on the countertop, then open the refrigerator, put the milk in, close the refrigerator. Turn right and walk forward. Sit back in the original place and talk with others."
},
"307": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc2_script3_seq4_rec2_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Put the items on the sink countertop into the zippered bag on the sink, turn around and walk forward to the suitcase. Open the suitcase, repeatedly take out the clothes from the cabinet next to the suitcase and put them into the suitcase. Then stand up, turn left and walk forward to the sink. Pick up some items. Step back to the suitcase. Put the items in hand into the suitcase. Close the suitcase."
},
"308": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc2_script1_seq6_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Open the refrigerator, then close the refrigerator. Turn around and walk forward to the table, pick up the white plates and cutlery on the table. Then turn around and walk forward to the closet next to the refrigerator. Put the cutlery into the drawer next to the closet. Close the drawer, then put the plates into the closet. Then close the closet. Turn around and walk forward to the table, pick up the items. Turn around backwards, walk to the white chair, and put the items into the paper bag on the white chair."
},
"309": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc2_script2_seq5_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Write on the counter. Then stand up, turn left and walk forward, touch the things on the counter, and then return to the original place to continue writing. Turn around, open the refrigerator, close it, and return to the original place to continue writing. Turn around, open the cabinet under the refrigerator. Close it, turn right and walk forward. Then turn around backwards and open the upper closets in turn. Open the refrigerator, tidy up the items in the refrigerator. Then close the refrigerator, turn left and walk forward."
},
"310": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc5_script5_seq2_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Talk with others and stand up from the sofa. Take one step to the right. Pick up the water glass, turn around backwards and walk diagonally to the left - front. Fill the glass with drinking water in front of the refrigerator. Take two steps to the left, open the upper closet and put the glass on it, close the closet. Then open the closet on the left, close it, turn around backwards, walk forward to the door of the living room. Turn left and walk forward, open the door and then close it."
},
"311": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc1_script1_seq6_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Take down the laundry detergent on the shelf above the washing machine, open the washing machine, pour the laundry detergent into the washing machine, then close the washing machine and put the laundry detergent back in place. Press the button of the washing machine. Open the washing machine, put the clothes in the washing machine into the box. Stand up, turn right and walk. Walk to the bedside and put the clothes in the box back on the bed."
},
"312": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc3_script2_seq3_rec2_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Check the phone, turn off the phone and put it on the table. Turn right, pick up the broom. Pick up the cleaning tools. Clean the carpet under the TV cabinet, pick up the tools and put them on the TV cabinet. Turn left and sweep the floor. Turn right, put the pillow on the sofa onto the table. Turn right, put the pillow on the sofa onto the ground. Sweep the floor while walking backwards and then turn right. Repeat the actions, turn left, put down the broom, turn left, take down the cylinder on the skateboard, then step back and put the skateboard on the ground. Turn right to clean the TV cabinet. Turn right again to clean the third and second layers of the cabinet. Turn right to clean the countertop, then walk forward to clean the right - hand countertop. Put down the cleaning tools, then step back and put down the broom. Step back to the table, turn off the music, turn off the phone, pick up the mobile phone on the left and turn it off."
},
"313": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc2_script3_seq5_rec2_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Talk with others and stand up from the sofa. Take one step to the right. Pick up the water glass, turn around backwards and walk diagonally to the left - front. Fill the glass with drinking water in front of the refrigerator. Take two steps to the left, open the upper closet and put the glass on it, close the closet. Then open the closet on the left, close it, turn around backwards, walk forward to the door of the living room. Turn left and walk forward, open the door and then close it."
},
"314": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc3_script2_seq3_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Open the refrigerator, take out the milk, close the refrigerator. Then walk forward and sit down. Open the cap and put it back on. Take the spoon out of the blue cup. Stand up, turn left and walk forward to the drawer next to the refrigerator, open the drawer, put down the spoon. Close the drawer. Keep walking backwards and sit down at the original place. Then stand up. Pick up the milk and the paper bag. Turn left and walk forward, put the paper bag on the countertop, then open the refrigerator, put the milk in, close the refrigerator. Turn right and walk forward. Sit back in the original place and talk with others."
},
"315": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc1_script2_seq4_rec2_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Moved the chair around a bit.Picks up a can of canned drink from the table.Turn backwards and go out the door.Turn right and open the fridge, put the drink in the fridge and close it.Return to the small room.Pick up another can of easy drink from the table.Turn backwards, go out the door, turn right, open the fridge, put the drink in the fridge and close it.Return to the small room again, pick up the fruit and turn backwards.Go all the way to the front, then turn right and go forward to the sink.Place the fruit in your hand over the sink.Turn left.Go to the paper bag.Pick up both bags of food and return to the small room, open the larger bag and pour it into the green bowl on the table in the small room.Pick up the bowl.Turn backwards and walk out of the small room.Walk to the front of the paper bag.Open the wardrobe above the paper bag, put the green bowl in it, and close the wardrobe again.Turn backwards and walk into the small room.Pick up the two bags of food on the table and turn backwards, return to the front of the paper bag and put the two bags of food in the paper bag.Turn left and walk forward.Pick up the glass of water on the counter in front of you and drink from it.Put it down again."
},
"316": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc4_script1_seq1_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Go left from the white drawer.Turn left again and go all the way to the desktop to organise the desktop.Then return to the white drawer and turn right, open the fridge and remove the red fruit box.Then remove the yellow fruit box and place it on top of the red fruit box.Talk to someone and tidy up the board and pick up the cup in your right hand.Pour the cup of coffee on the table, and as a result, wipe the table clean with the paper handed to you.Then wipes the table on the upper left.Place the yellow fruit box on the table on top of the red fruit box and pick up both fruit boxes together and turn to the right.Take two steps, then turn left.Keep walking in turning to the right.Open the white drawer in front of you.Then open the fridge on the right hand side."
},
"317": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc3_script3_seq5_rec2_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Pick up the clothes on the sofa and put them down. Before picking up the luggage on the sofa, place the suitcase on the floor. Unzip the zipper. Open the suitcase and then open the inner compartment of the suitcase. Pull up the inner compartment of the suitcase. Put all the clothes on the sofa into the suitcase. Close the suitcase, pull up the zipper, and take the suitcase down. Turn left and walk straight to the staircase entrance. Turn right and go up the stairs. At the staircase corner, turn left and continue up the stairs. After reaching the upper floor, turn right. Move forward to the right front! Put the pair of shoes on the right side of the door in front of the door. Put on the right shoe first, then put on the left shoe. Then open the door, hold the suitcase in your hand, and open the door. After going out, turn around and close the door. Then turn around and walk straight ahead."
},
"318": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc1_script2_seq3_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Turn around from the original living room, move forward to the right front, and enter the corridor to go forward. Enter a room, walk in and then turn around to exit the room. Continue to go to the right rear and enter another room, then exit. Walk forward, turn left and enter a bedroom with two beds, then push it out. Continue to walk forward, turn left and enter a bathroom, then exit. Continue to walk forward, turn left and enter another bathroom, then exit. Then walk forward in the corridor, reach a door with an orange color, open the lock and open the door. Move forward to the rear left, enter the living room. Turn left and walk forward, pass through the kitchen and arrive at the balcony. Then turn right and walk forward, pass through the balcony and reach the other side of the balcony. Have a conversation with someone. Continue to walk forward to the right and walk forward to the TV set. Then step back to the sofa and sit down to have a conversation with someone."
},
"319": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc2_script3_seq5_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Turn left and then turn rearward. Enter the laundry room. Pick up the laundry detergent from below the sink. Open the small box of the washing machine and pour the laundry detergent into the small box of the left washing machine on the left. Close the small box of the washing machine. Then put the laundry detergent back below the sink. Turn on the left washing machine and put the clothes inside it on top of the right washing machine. Then put the white clothes on the top of the left washing machine. Close the washing machine. Pick up the clothes on the right washing machine and exit the laundry room. Then turn left and go straight ahead until you reach the bed. Put the clothes on your hands on the bed."
},
"320": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc5_script4_seq6_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Have a conversation with someone. Then get up from the sofa. Pick up the drink. Move forward to the left front! Walk through the corridor and keep going straight ahead. Turn right and enter the kitchen. Walk straight ahead to the front of the refrigerator and open it. Put the drink in the refrigerator. Close the refrigerator. Turn right and keep going straight ahead. Walk to the corridor and turn left again. Move forward to the front of the sofa to have a conversation with someone. Turn back and walk forward. Walk to the door and open it. Then close it."
},
"321": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc2_script1_seq1_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Place the mobile phone in your hand on the left side of the rightmost phone on the desktop. Then pick up the rightmost phone on the table to play games. During this time, pick up the rightmost phone on the edge and take a look at it, then put it back. Continue playing games. After putting down the phone, pick up the remote control on the leftmost side of the table. Start controlling the TV, then hold both remote controls on the table in your hands. Turn off the TV in front of you and stand up. Put the remote control in your hand on the sofa."
},
"322": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc1_script2_seq4_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Check your mobile phone, turn it off and place it on the table. Turn right to pick up the broom. Pick up the cleaning tools. Sweep the carpet under the TV cabinet and pick up the tools, then place them on the TV cabinet. Turn left to sweep the floor. Turn right to place the cushions on the sofa on the table. Turn right to place the cushions on the sofa on the ground. Sweep while walking, step back and then turn right. Repeat the actions. Turn left to put down the broom, turn left, lower the cylinder on the skateboard, then step back and put the skateboard on the ground. Turn right to clean the TV cabinet. Turn right again to clean the third and second layers of the cabinet. Turn right to clean the countertop, then walk forward and clean the right side of the countertop. Put down the cleaning tools, step back and put down the broom. Step back to the table, turn off the music, turn off the mobile phone, pick up the left mobile phone and turn it off again."
},
"323": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc3_script1_seq3_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Pick up the two remote controls at the bottom of the TV. Step back to the table beside the sofa. Turn on the TV and then place the remote controls on the table. Step back and turn around facing away from the table. Sit on the ground first, then lie down to do sit-ups. Do a few and then turn your body 180 degrees to continue. Then stand up. Turn left. Take a step to the right. Hold both remote controls on the right side table in your hands. Hold one in each hand and start to control the TV. Then pick up the mobile phone on the table. Walk forward to the TV, and put both remote controls on the bottom of the TV. Turn around and walk straight ahead, passing the sofa."
},
"324": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc5_script5_seq3_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Take the clothes out of the bag. Then hold the clothes and walk to the bed. Put the neatly arranged clothes one by one together. Re-stack them. Then pick up all the clothes and turn right. Walk straight ahead until you reach the washing machine room door. Turn left and enter the washing machine room. Place the mobile phone above the left washing machine. Then turn on the left washing machine switch, close it, and then turn it on again. Put all the clothes in your hands into the washing machine. Get up and take the mobile phone on the top of the washing machine. Exit the washing machine room and turn right. Walk straight ahead until you return to the bed."
},
"325": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc5_script5_seq4_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Pick up the beverage on the table. Then stand up and talk with the guest. Put the orange beverage in your hand on the table in front of the sofa. Then take the green beverage in the guest's hand and put it on the table in front of the sofa as well. Then walk to the middle of the living room to introduce the furniture to the guest and talk with him/her. Finally, go to the door and open it. Then close it."
},
"326": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc1_script5_seq6_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Pick up the fork, pick up the food with it, and then put the fork down. Talk to someone. Pick up the fork, pick up the food, and then put the fork down. Stand up, pick up the two-hand plates, turn left and exit the restaurant, walk forward, pass the yellow and green plates with food to the right. Open the refrigerator. Take out the eggs from inside, then close the refrigerator, walk to the kitchen table, move the eggs and cups to the right, and then move from the left side of the person wearing yellow clothes to his right side."
},
"327": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc3_script3_seq4_rec2_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Press the buttons of the washing machine. Open the lid of the washing machine. Take down the orange plastic bucket above the washing machine, take out the contents and put them into the washing machine, then close it and put it back in its place. Close the white cabinet above the washing machine. Then put the clothes inside the washing machine into the green bag. Exit the washing machine, go straight to the right, pass through the living room and keep walking forward. Turn left at the end and keep walking. Squat down and touched the suitcase, then stand up. Squat down again and put the bag and the mobile phone on the ground. Put all the clothes in the green bag back into the black suitcase."
},
"328": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc1_script2_seq7_rec2_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Put the white water cup on the table, then pick it up again. Stand up and place the water cup on the right side of the table on the left side and move forward. Walk to the coffee machine, take out the water jug from it. Pour the coffee into the white water cup. Put the water jug back. Press the coffee machine button. Open the lid of the coffee machine. Insert the faucet into the coffee machine to fill it with water. Close the lid of the coffee machine. Turn on the faucet. Rinse the tableware in the sink. Turn off the faucet. Turn around and walk forward, exit the kitchen. Turn left and walk forward. Walk to the bedside and lie down."
},
"329": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc1_script2_seq3_rec2_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Moved the chair a little. Took a can of canned beverage from the table and held it. Turned back, went out. Turned right and opened the refrigerator. Put the beverage in the fridge and closed it. Returned to the small room. Took another can of canned beverage from the table. Turned back, went out, turned right, opened the refrigerator, put the beverage in the fridge, and closed it again. Returned to the small room, picked up the fruit, turned back. Walked straight ahead, turned right, walked forward to the sink. Put the fruit in the air above the sink. Turned left. Reached the paper bag. Picked up two bags of food and returned to the small room. Opened the larger bag of food, poured it into the green bowl on the table in the small room. Picked up the bowl. Turned back, walked out of the small room. Walked in front of the paper bag. Opened the closet above the paper bag, put the green bowl in it, and closed the closet. Turned back, walked into the small room. Picked up the two bags of food from the table and turned back. Walked forward to the front of the paper bag, put the two bags of food in the paper bag. Turned left and walked forward. Picked up the water cup on the counter and drank from it. Put it down again."
},
"330": {
"id": "",
"video": "AriaEverydayActivities_1.0.0_loc1_script1_seq1_rec1_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Check the phone in front of the plate. Turn left to turn off the stove and take out the fruits from the plate. Put the pancake back into the pan. Use a black spatula to flip the pancake. Turn right back to the pan to check the phone. Put the tableware back into the refrigerator, turn the pan, and pour the batter into the basin. Use a scraper to transfer the cheese from the pan into the cheese box. Put the pancake into the pan. Use the black spatula to flip it again. Use the scraper to transfer the cheese into the cheese box. Use the black spatula after flipping the pancake and turn right to put the wooden board with berries into the box. Turn right to put the berries on the sink. Put the knife into the drawer. Turn left to put the wooden board into the upper cabinet. Pour the batter into the batter basin. Use the scraper to transfer the cheese into the cheese box. Turn right to put the plate on the countertop. Put the scraper into the first layer of the drawer. Turn left to close the cheese box on the countertop. Turn off the stove and put the pan into the lower cabinet. Put the food back into the refrigerator and take out the milk. Mix the batter, put the mixer into the first layer of the drawer. After washing hands, turn left to take out the eggshells from the trash can of the cabinet. Turn left to put the mango into the refrigerator and close the refrigerator. Take out two eggs and put them into the egg box. Put the eggs and milk into the refrigerator. Turn right to take out the flour from the red basin. Turn left to put the red basin into the corner cabinet. Put the bowl into the drawer. Close the flour packaging and turn right to put it back on the countertop. Repeat the opening and closing of the left cabinet. Turn right to put the round plate into the second drawer. Put the black spatula into the drawer."
},
"331": {
"id": "Nymeria_v0.0_20230822_s0_kyle_parker_act2_y3l7lv_preview_rgb_001_clip_001",
"video": "Nymeria_v0.0_20230822_s0_kyle_parker_act2_y3l7lv_preview_rgb_001_clip_001.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Begin where close to the TV. Turn back and walk away from the TV. Turn right. Place the remote control down. Undo the pillow tidying by leaving them as they originally were. Turn right and walk backward toward the small sofa. Pass by the left side of the small sofa. Turn around so you face the direction you came from. Walk away from the TV. Step back to the table area. Put down the clothes on the left side of the table. Turn right and walk back from the area between the coffee table and the long sofa toward the previous path. Step back over the pillow on the floor. Turn left and pass by the small sofa. Arrive at the left side of the long sofa."
},
"332": {
"id": "Nymeria_v0.0_20230822_s0_kyle_parker_act2_y3l7lv_preview_rgb_002",
"video": "Nymeria_v0.0_20230822_s0_kyle_parker_act2_y3l7lv_preview_rgb_002.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Turn back and walk towards the TV. Pick up the remote contrl. Turn left and control the TV."
},
"333": {
"id": "Nymeria_v0.0_20230822_s0_kyle_parker_act2_y3l7lv_preview_rgb_003",
"video": "Nymeria_v0.0_20230822_s0_kyle_parker_act2_y3l7lv_preview_rgb_003.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Put down the flowerpots. Turn back to the bag. Pick up the cloth and turn a round, walk to the fitness equipment. Put the cloth on it and turn back to the bag. Pick up the clothes. Turn right to put down the clothes on the table and floor. Turn back to the sofa and pick up the pillows."
},
"334": {
"id": "Nymeria_v0.0_20230822_s0_kyle_parker_act2_y3l7lv_preview_rgb_004",
"video": "Nymeria_v0.0_20230822_s0_kyle_parker_act2_y3l7lv_preview_rgb_004.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk back to the trash can, pick up the trash from the floor, and walk towards the coffee table. Straighten the flowerpot, and arrange the blocks on the table. Turn around."
},
"335": {
"id": "Nymeria_v0.0_20230822_s0_kyle_parker_act2_y3l7lv_preview_rgb_005",
"video": "Nymeria_v0.0_20230822_s0_kyle_parker_act2_y3l7lv_preview_rgb_005.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk towards the bag on the floor, pick up the sock, and place it in the bag. Walk back to the kitchen, take the tool from the drawer, and walk towards the dining room. Place the tool on the table and turn right back to the dining room. Pick up the dropper from the table and walk back to the kitchen, putting it in the drawer. Turn left and walk towards the dining room, place the right flowerpot back on the table, and straighten the flowerpot on the left."
},
"336": {
"id": "Nymeria_v0.0_20230822_s0_kyle_parker_act2_y3l7lv_preview_rgb_006",
"video": "Nymeria_v0.0_20230822_s0_kyle_parker_act2_y3l7lv_preview_rgb_006.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk towards the bag on the floor, take the items out, and walk back to the coffee table to place them on the floor. Turn around, pick up the clothes from the bag, and place them back on the left. Walk towards the trash can, take the garbage out, and walk back to straighten the flowerpot on the table in front of you."
},
"337": {
"id": "Nymeria_v0.0_20230822_s0_kyle_parker_act2_y3l7lv_preview_rgb_007",
"video": "Nymeria_v0.0_20230822_s0_kyle_parker_act2_y3l7lv_preview_rgb_007.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk back out of the bedroom, pick up the hanger from the floor, and walk right to place it by the door. Turn around to straighten the chair, then walk right into the bedroom. Make the bed, then turn left and place the vase back on the left bedside table. Walk back to the right side of the bedroom and leave."
},
"338": {
"id": "Nymeria_v0.0_20230822_s0_kyle_parker_act2_y3l7lv_preview_rgb_008",
"video": "Nymeria_v0.0_20230822_s0_kyle_parker_act2_y3l7lv_preview_rgb_008.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk back to the head of the bed, take off the pillowcase, and walk to the right side of the bed to place the folded clothes. Turn left and pick up the clothes from the bed, fold them, and place them back on the floor. Walk to the wardrobe, take the hanger out, and hang it on the floor. Turn back and exit the bedroom."
},
"339": {
"id": "Nymeria_v0.0_20230822_s0_kyle_parker_act2_y3l7lv_preview_rgb_009",
"video": "Nymeria_v0.0_20230822_s0_kyle_parker_act2_y3l7lv_preview_rgb_009.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk back into the living room, walk towards the bedroom, and take the clothes out of the wardrobe. Turn around and place the chair back. Turn around and remove the pillowcase from the right pillow. Walk back to the head of the bed, pick up the flowerpot from the wall, and place it back on the bed. Turn around, walk to the left wall, and place the flowerpot from the right side of the bed back onto the wall."
},
"340": {
"id": "Nymeria_v0.0_20231108_s1_kurt_young_act4_t5o4jk_preview_rgb_001",
"video": "Nymeria_v0.0_20231108_s1_kurt_young_act4_t5o4jk_preview_rgb_001.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk back into the room, stop exercising, and walk to the right."
},
"341": {
"id": "Nymeria_v0.0_20231108_s1_kurt_young_act4_t5o4jk_preview_rgb_002",
"video": "Nymeria_v0.0_20231108_s1_kurt_young_act4_t5o4jk_preview_rgb_002.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Stop walking on the lawn, turn left, and exercise."
},
"343": {
"id": "Nymeria_v0.0_20231108_s1_kurt_young_act4_t5o4jk_preview_rgb_004",
"video": "Nymeria_v0.0_20231108_s1_kurt_young_act4_t5o4jk_preview_rgb_004.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Turn back and exit the room."
},
"344": {
"id": "Nymeria_v0.0_20231108_s1_kurt_young_act4_t5o4jk_preview_rgb_005",
"video": "Nymeria_v0.0_20231108_s1_kurt_young_act4_t5o4jk_preview_rgb_005.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Playing football."
},
"345": {
"id": "Nymeria_v0.0_20231211_s1_seth_bowman_act7_mxh0yr_preview_rgb_001",
"video": "Nymeria_v0.0_20231211_s1_seth_bowman_act7_mxh0yr_preview_rgb_001.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk back from the dining table, unorganize the blocks, then walk backward to the left box and unfold the rug, placing it on the floor. Walk to the left and leave the living room."
},
"346": {
"id": "Nymeria_v0.0_20231211_s1_seth_bowman_act7_mxh0yr_preview_rgb_002",
"video": "Nymeria_v0.0_20231211_s1_seth_bowman_act7_mxh0yr_preview_rgb_002.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk back from the second living room, unorganize the items on the coffee table and floor, then turn around and leave the living room. Walk back into the kitchen, take the items from the box and scatter them on the floor, then walk to the left into the living room."
},
"347": {
"id": "Nymeria_v0.0_20231211_s1_seth_bowman_act7_mxh0yr_preview_rgb_003",
"video": "Nymeria_v0.0_20231211_s1_seth_bowman_act7_mxh0yr_preview_rgb_003.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk back from the living room, unorganize the items, then walk to the window and place the ribbon down. Turn around and walk back into the living room. Take the knife and fork from the box on the left and place them back on the right side."
},
"348": {
"id": "Nymeria_v0.0_20231211_s1_seth_bowman_act7_mxh0yr_preview_rgb_004",
"video": "Nymeria_v0.0_20231211_s1_seth_bowman_act7_mxh0yr_preview_rgb_004.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk back from the living room to the window, unorganize the items on the floor, and then turn right back into the living room to unorganize the coffee table. Turn right again and walk out of the living room."
},
"349": {
"id": "Nymeria_v0.0_20231211_s1_seth_bowman_act7_mxh0yr_preview_rgb_005",
"video": "Nymeria_v0.0_20231211_s1_seth_bowman_act7_mxh0yr_preview_rgb_005.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Take the decoration out of the bag on the floor, walk back into the living room, and then turn right to put it back on the window."
},
"350": {
"id": "Nymeria_v0.0_20231211_s1_seth_bowman_act7_mxh0yr_preview_rgb_006",
"video": "Nymeria_v0.0_20231211_s1_seth_bowman_act7_mxh0yr_preview_rgb_006.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Take the items out of the fridge, walk back towards the sink, turn around and place them on the stove. Walk to the left and take the items out of the trash can. Walk backward to the table, put the items back on it, then turn left and leave the kitchen."
},
"351": {
"id": "Nymeria_v0.0_20231211_s1_seth_bowman_act7_mxh0yr_preview_rgb_007",
"video": "Nymeria_v0.0_20231211_s1_seth_bowman_act7_mxh0yr_preview_rgb_007.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Take the items out of the dishwasher, walk backward to the table, place them back on the table, turn around, and take the dishes out of the dishwasher. Walk back towards the sink and remove the dishes from the sink."
},
"353": {
"id": "Nymeria_v0.0_20231211_s1_seth_bowman_act7_mxh0yr_preview_rgb_009",
"video": "Nymeria_v0.0_20231211_s1_seth_bowman_act7_mxh0yr_preview_rgb_009.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk into the living room, turn around and walk back into the pantry. Close the cabinet door, walk forward, turn around and take the bowl out of the dishwasher. Walk backward to the trash can and put the trash back inside."
},
"354": {
"id": "Nymeria_v0.0_20231214_s1_douglas_hoffman_act6_7orrds_preview_rgb_001",
"video": "Nymeria_v0.0_20231214_s1_douglas_hoffman_act6_7orrds_preview_rgb_001.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Take the mat out of the box, unfold it on the floor, and walk back into the living room."
},
"355": {
"id": "Nymeria_v0.0_20231214_s1_douglas_hoffman_act6_7orrds_preview_rgb_002",
"video": "Nymeria_v0.0_20231214_s1_douglas_hoffman_act6_7orrds_preview_rgb_002.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk back from the dining room to the sofa, pick up the balloons from the floor and the sofa, then turn around and place them back on the sofa."
},
"356": {
"id": "Nymeria_v0.0_20231214_s1_douglas_hoffman_act6_7orrds_preview_rgb_003",
"video": "Nymeria_v0.0_20231214_s1_douglas_hoffman_act6_7orrds_preview_rgb_003.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk back from the fireplace to the sofa, pick up the items from the sofa, then turn around and place the box back where it was."
},
"357": {
"id": "Nymeria_v0.0_20231214_s1_douglas_hoffman_act6_7orrds_preview_rgb_004",
"video": "Nymeria_v0.0_20231214_s1_douglas_hoffman_act6_7orrds_preview_rgb_004.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk back from the dining room, turn left to approach the wall, and turn around to return to the opposite side. Walk back to the sofa, pick up the plate, and walk towards the wall to place it there. Lift the sofa and move it back to the original position. Then walk back to the left side and place the sofa where it was before."
},
"358": {
"id": "Nymeria_v0.0_20231214_s1_douglas_hoffman_act6_7orrds_preview_rgb_005",
"video": "Nymeria_v0.0_20231214_s1_douglas_hoffman_act6_7orrds_preview_rgb_005.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk back from the door, turn left to the table, and remove the chair from the table. Walk to the left to place the chair back in its original position. Then, organize the items back on the table."
},
"359": {
"id": "Nymeria_v0.0_20231214_s1_douglas_hoffman_act6_7orrds_preview_rgb_006",
"video": "Nymeria_v0.0_20231214_s1_douglas_hoffman_act6_7orrds_preview_rgb_006.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk back from the glass, turn right, and measure the size of the kitchen. Then turn right and walk backward to the door, measuring its size again."
},
"360": {
"id": "Nymeria_v0.0_20231214_s1_douglas_hoffman_act6_7orrds_preview_rgb_007",
"video": "Nymeria_v0.0_20231214_s1_douglas_hoffman_act6_7orrds_preview_rgb_007.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk out of the study, turn right and walk down the stairs. Turn left to return to the living room window and measure its size again. Walk backward to the first window, and measure its size again."
},
"361": {
"id": "Nymeria_v0.0_20231214_s1_douglas_hoffman_act6_7orrds_preview_rgb_008",
"video": "Nymeria_v0.0_20231214_s1_douglas_hoffman_act6_7orrds_preview_rgb_008.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Lift the blanket from the bed on the right and fold it. Walk to the left TV cabinet and place the blanket back."
},
"362": {
"id": "Nymeria_v0.0_20231214_s1_douglas_hoffman_act6_7orrds_preview_rgb_009",
"video": "Nymeria_v0.0_20231214_s1_douglas_hoffman_act6_7orrds_preview_rgb_009.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk out of the dining room, turn right and go upstairs. Walk straight down the hallway, enter the bedroom, turn left into the bathroom, turn on the light, and then turn around to re-enter the bedroom. Walk straight out of the room and turn right to re-enter the original room."
},
"364": {
"id": "Nymeria_v0.0_20231219_s1_erica_lee_act5_1sdu2b_preview_rgb_002",
"video": "Nymeria_v0.0_20231219_s1_erica_lee_act5_1sdu2b_preview_rgb_002.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk back from the kitchen, turn right and walk towards the sofa. Place the items you picked up back onto the sofa and floor, then turn around and walk towards the bag by the wall. Take the paper out of the bag and walk back to the original spot."
},
"365": {
"id": "Nymeria_v0.0_20231219_s1_erica_lee_act5_1sdu2b_preview_rgb_003",
"video": "Nymeria_v0.0_20231219_s1_erica_lee_act5_1sdu2b_preview_rgb_003.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk back from the kitchen, turn left and walk back to the left wall to retrieve the decoration. Turn around and place it back on the wall. Walk to the kitchen trash can, take out the decoration from the trash, and walk back to the window to place the decoration back."
},
"366": {
"id": "Nymeria_v0.0_20231219_s1_erica_lee_act5_1sdu2b_preview_rgb_004",
"video": "Nymeria_v0.0_20231219_s1_erica_lee_act5_1sdu2b_preview_rgb_004.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk back, return to the right and put the tissue back. Turn around, walk to the left, retrieve the plate from behind you, and turn back to hand it to the other person."
},
"367": {
"id": "Nymeria_v0.0_20231219_s1_erica_lee_act5_1sdu2b_preview_rgb_005",
"video": "Nymeria_v0.0_20231219_s1_erica_lee_act5_1sdu2b_preview_rgb_005.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk back to the table behind you and pick up the plate. Turn around, walk to the left, put the plate back into the microwave. Turn around, walk to the right, and take the water out of the dishwasher."
},
"368": {
"id": "Nymeria_v0.0_20231219_s1_erica_lee_act5_1sdu2b_preview_rgb_006",
"video": "Nymeria_v0.0_20231219_s1_erica_lee_act5_1sdu2b_preview_rgb_006.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk back to the table in front and stop wiping it. Turn right, walk back, and stop wiping the dining table. Turn around and walk forward to grab a tissue. Turn left, walk to the dining table, and finish tidying it up."
},
"370": {
"id": "Nymeria_v0.0_20231219_s1_erica_lee_act5_1sdu2b_preview_rgb_008",
"video": "Nymeria_v0.0_20231219_s1_erica_lee_act5_1sdu2b_preview_rgb_008.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk back to the window, put the balloon back. Turn left and walk to the sofa. Turn left and walk back to the stairs. Place the decoration back. Turn left, walk to the stairs, and walk straight back to the starting point."
},
"371": {
"id": "Nymeria_v0.0_20231219_s1_erica_lee_act5_1sdu2b_preview_rgb_009",
"video": "Nymeria_v0.0_20231219_s1_erica_lee_act5_1sdu2b_preview_rgb_009.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk back to the window, put the balloon back. Turn right and walk back to the basket, place the pump in the basket. Turn right and walk to the sofa, pick up the balloon, turn right and walk back to the box. Place the balloon in the box."
},
"375": {
"id": "Nymeria_v0.0_20231222_s1_kenneth_fischer_act7_56uvqd_preview_rgb_004",
"video": "Nymeria_v0.0_20231222_s1_kenneth_fischer_act7_56uvqd_preview_rgb_004.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk to the right to change direction, lift the coffee table, turn around, and place it back. Turn right and walk downstairs, turn left and move the sofa back to its original position."
},
"376": {
"id": "Nymeria_v0.0_20231222_s1_kenneth_fischer_act7_56uvqd_preview_rgb_005",
"video": "Nymeria_v0.0_20231222_s1_kenneth_fischer_act7_56uvqd_preview_rgb_005.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk upstairs, turn left and exit the bedroom, turn around and walk back to the stairs, turn left down, walk forward, then turn left into the bedroom. Turn around and walk out of the bedroom, turn right and walk straight to the stairs. Turn left and walk to the kitchen, then turn around and walk back out."
},
"377": {
"id": "Nymeria_v0.0_20231222_s1_kenneth_fischer_act7_56uvqd_preview_rgb_006",
"video": "Nymeria_v0.0_20231222_s1_kenneth_fischer_act7_56uvqd_preview_rgb_006.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Stand up from the opposite sofa, turn around, crawl back to your seat in the living room, then get up, turn left, and go upstairs."
},
"378": {
"id": "Nymeria_v0.0_20231222_s1_kenneth_fischer_act7_56uvqd_preview_rgb_007",
"video": "Nymeria_v0.0_20231222_s1_kenneth_fischer_act7_56uvqd_preview_rgb_007.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Enter the bedroom, turn around and come out. Enter the opposite bedroom, turn around and come out. Go back upstairs, walk to the right, then turn left to go upstairs. Enter the bathroom, come out, then walk to the left to enter the bedroom, turn around and come out. Walk to the left rear until the end, turn around and head back to the starting point."
},
"379": {
"id": "Nymeria_v0.0_20231222_s1_kenneth_fischer_act7_56uvqd_preview_rgb_008",
"video": "Nymeria_v0.0_20231222_s1_kenneth_fischer_act7_56uvqd_preview_rgb_008.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Turn left, lift the coffee table, and change direction. Turn right, place the sofa in front of the table, then turn left and lift the sofa. Turn left to walk towards the sofa, unfold the blanket, and place it back on the sofa."
},
"380": {
"id": "ADT_Apartment_release_clean_seq131_M1292_preview_rgb",
"video": "ADT_Apartment_release_clean_seq131_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Turn back to walk towards the kitchen with the tablet. Turn around and walk to the sofa, place the tablet down. Turn right, walk back to the fridge, and place the stool. Turn left, walk forward and push the trolley back to its original spot beside the table. Turn left and place the box and pear back onto the dining table. Finally, walk forward and re-arrange the items on the table."
},
"381": {
"id": "ADT_Apartment_release_clean_seq133_M1292_preview_rgb",
"video": "ADT_Apartment_release_clean_seq133_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Turn around and walk back to the kitchen. Walk to the living room and pick up the house model from the coffee table. Turn around and walk back to the dining room, pick up the shovel and plate, and place them back on the table. Walk right to the door and place the shovel back on the trolley. Then turn left and walk back to the starting point."
},
"382": {
"id": "ADT_Apartment_release_clean_seq134_M1292_preview_rgb",
"video": "ADT_Apartment_release_clean_seq134_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Turn left and walk back to the kitchen. Pick up the toys from the table in the dining room and walk toward the living room. Walk right to the kitchen table and put the kitchenware away. Walk backward to the dining room and place the plate on the table. Walk clockwise halfway around the coffee table, pick up the dinosaur, and walk back to the dining table to place it. Walk counterclockwise around the dining table back to the starting point."
},
"383": {
"id": "ADT_Apartment_release_clean_seq135_M1292_preview_rgb",
"video": "ADT_Apartment_release_clean_seq135_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Turn left and return to the kitchen, pushing the cart. Put the items back on the dining table. Turn around and walk back to the living room, pick up the fruit from the coffee table, and walk toward the dining room. Turn left to the kitchen, place the cutting board back on the countertop. Walk back to the dining room, pick up the basin from the cart, and walk to the door. Turn left again and continue walking to the starting point."
},
"384": {
"id": "ADT_Apartment_release_clean_seq136_M1292_preview_rgb",
"video": "ADT_Apartment_release_clean_seq136_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Turn left and return to the kitchen, picking up the storage box from the dining table. Walk to the living room and place it back on the coffee table. Turn left and walk to the dining table, picking up the tablet. Walk back to the living room and put the tablet down. Then pick up the book and walk to the kitchen, placing it on the table. Pick up the kitchenware from the table and walk back to the living room."
},
"385": {
"id": "ADT_Apartment_release_clean_seq137_M1292_preview_rgb",
"video": "ADT_Apartment_release_clean_seq137_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk to the kitchen and pick up the dinosaur from the door. Turn left and walk to the living room, placing the dinosaur down. Walk back to the dining table, pick up the plate, and walk back to the living room. Turn right and organize the items on the dining table. Walk to the kitchen and take the fruit from the table, then walk to the living room, placing the fruit on the coffee table. Turn left and walk back to the dining table to finish organizing."
},
"386": {
"id": "ADT_Apartment_release_clean_seq138_M1292_preview_rgb",
"video": "ADT_Apartment_release_clean_seq138_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk to the kitchen and push the cart back to the dining table. Place the box on the cart and return to the living room to organize items. Tidy up the chair by the door and place the dinosaur back on the table. Walk forward to place the items back into their proper places."
},
"387": {
"id": "ADT_Apartment_release_clean_seq140_M1292_preview_rgb",
"video": "ADT_Apartment_release_clean_seq140_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk to the kitchen, place the dinosaur and cake on the right side of the table. Afterward, walk back to the living room, return the fruit and tablet to their respective places. Tidy up the box, returning it to the kitchen while bringing the book back. Finally, straighten up the chair by the door and place the fruit and items in their proper spots."
},
"388": {
"id": "ADT_Apartment_release_clean_seq141_M1292_preview_rgb",
"video": "ADT_Apartment_release_clean_seq141_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk to the kitchen, place the fruit on the table, then walk back to the living room, return the plate to the dining table, and move the orange back to its previous spot. Finally, pick up the donut, returning it to the left side of the dining table."
},
"389": {
"id": "ADT_Apartment_release_clean_seq142_M1292_preview_rgb",
"video": "ADT_Apartment_release_clean_seq142_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk back to the kitchen, place the box on the table, return to the dining table, and place the plate and knife back. Go to the living room to retrieve the frisbee, then return to the kitchen to place the basin on the counter. Finally, adjust the chairs back to their original position."
},
"390": {
"id": "ADT_Apartment_release_clean_seq143_M1292_preview_rgb",
"video": "ADT_Apartment_release_clean_seq143_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Return to the kitchen and place the dinosaur back. Walk back to the living room and pick up the donut to place it back on the dining table. Push the cart to the kitchen. Afterward, walk to the door, pick up the plate, and place it back on the dining table. Lastly, walk to the living room and make any necessary adjustments."
},
"391": {
"id": "ADT_Apartment_release_clean_seq144_M1292_preview_rgb",
"video": "ADT_Apartment_release_clean_seq144_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk back from the kitchen or storage area to the table, place the plate with the sandwich back on the table. Pick up the plate again, walk upstairs, then return down the stairs. Move left, pick up the banana, and place it back on the table. Finally, pick up the donut and place it back on the table where it originally was."
},
"392": {
"id": "ADT_Apartment_release_clean_seq145_M1292_preview_rgb",
"video": "ADT_Apartment_release_clean_seq145_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk back from the dining table to the kitchen, pick up the item from the counter, then walk toward the trash can. Remove the item from the trash, walk back to the kitchen, and place it on the counter. Walk back to the dining table, pick up the fruit, and place it back on the counter in the kitchen. Finally, walk away from the kitchen."
},
"393": {
"id": "ADT_Apartment_release_clean_seq146_M1292_preview_rgb",
"video": "ADT_Apartment_release_clean_seq146_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk left to the kitchen, turn around and walk back to the dining table to place the box down. Turn right and walk back to the living room, pick up the plate, turn left, and walk back to the dining table to place it down. Turn left, walk forward to the dining area, place the chair. Turn around and walk back, pick up the bowl with the left hand, turn around and walk back to the dining table."
},
"394": {
"id": "ADT_Apartment_release_clean_seq147_M1292_preview_rgb",
"video": "ADT_Apartment_release_clean_seq147_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk left to the kitchen, turn around and walk back to the dining table to place the plate and fruit down. Turn right, walk forward to the living room, pick up the book and walk back to the dining room to place it on the candle holder. Walk left to the kitchen, pick up the fruit from the dining table, turn right and walk forward to place it on the table. Turn left to walk back to the kitchen."
},
"395": {
"id": "ADT_Apartment_release_clean_seq148_M1292_preview_rgb",
"video": "ADT_Apartment_release_clean_seq148_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk left to the kitchen, turn right to walk back to the living room. Turn left and place the plate on the dining table, then walk forward to the kitchen. Walk left to the living room, pick up the plate, turn left to the dining room, and place it down. Turn right and walk back to the kitchen. Walk forward to the door, pick up the fruit, turn around, and place it back in the kitchen."
},
"396": {
"id": "ADT_Apartment_release_clean_seq149_M1292_preview_rgb",
"video": "ADT_Apartment_release_clean_seq149_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk left to the kitchen, turn around and push the cart back to the dining table, placing the box from the cart onto the table. Walk right back to the living room, turn left and place the water cup back in the kitchen. Walk right to the dining room, turn left and place the plate back on the coffee table. Then walk forward to the kitchen, pick up the kettle, turn left, and walk back to the dining room to straighten the chairs."
},
"397": {
"id": "ADT_Apartment_release_clean_seq150_M1292_preview_rgb",
"video": "ADT_Apartment_release_clean_seq150_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk left to the kitchen, turn around and place the box back on the dining table. Walk right to the living room, turn left and place the tool back in the kitchen. Turn left and walk back to the door, pick up the cutting board from the kitchen, and walk back to the dining table to place it down."
},
"398": {
"id": "ADT_Apartment_release_decoration_seq131_M1292_preview_rgb",
"video": "ADT_Apartment_release_decoration_seq131_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk left to the kitchen, turn right and walk back to the door to pick up the stool, then turn left and place it back in the bedroom. Walk right to the living room, pick up the photo frame, turn around and place it on the opposite wall. Walk out of the bedroom, turn left to walk back into the bedroom, and place the stool on the floor."
},
"399": {
"id": "ADT_Apartment_release_decoration_seq132_M1292_preview_rgb",
"video": "ADT_Apartment_release_decoration_seq132_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk left to the kitchen, turn right and walk back to the door to place the stool at the entrance. Turn left and walk into the bedroom, pick up the photo frame, turn left to walk into the living room. Turn right and place the frame back on the wall. Walk forward to the bedroom door, turn right and place the stool back on the floor. Walk back to the door, pick up the photo frame, and return it to the door."
},
"400": {
"id": "ADT_Apartment_release_decoration_seq133_M1292_preview_rgb",
"video": "ADT_Apartment_release_decoration_seq133_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk left to the kitchen, turn right and walk back to the living room to place the photo frame. Walk back into the bedroom, pick up the stool, and turn left to place it next to the sofa. Walk straight and turn left to return to the kitchen."
},
"401": {
"id": "ADT_Apartment_release_decoration_seq134_M1292_preview_rgb",
"video": "ADT_Apartment_release_decoration_seq134_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk left to the kitchen, turn right and walk back to the living room to place the stool. Walk back into the bedroom, pick up the photo frame, and turn left to place it back at the door. Walk forward to the door, take down the photo frame, and walk back to the kitchen."
},
"402": {
"id": "ADT_Apartment_release_decoration_seq135_M1292_preview_rgb",
"video": "ADT_Apartment_release_decoration_seq135_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk left to the kitchen, turn right and walk back to the living room. Turn right out of the bedroom, then walk forward into the bedroom to remove the photo frame from the left side."
},
"403": {
"id": "ADT_Apartment_release_decoration_seq136_M1292_preview_rgb",
"video": "ADT_Apartment_release_decoration_seq136_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk left to the kitchen, turn right and walk back to the living room. Turn left to the bedroom, pick up the stool, and place it on the right side of the room. Walk back to the bedroom, pick up the photo frame, and place it back on the right side. Walk forward to the living room and turn left."
},
"404": {
"id": "ADT_Apartment_release_decoration_seq137_M1292_preview_rgb",
"video": "ADT_Apartment_release_decoration_seq137_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk left to the kitchen, turn right and walk back to the living room. Pick up the photo frame and place it back on the wall. Turn left and walk back to the bedroom. Place the stool down, turn right, and walk back to pick up the photo frame."
},
"405": {
"id": "ADT_Apartment_release_decoration_seq138_M1292_preview_rgb",
"video": "ADT_Apartment_release_decoration_seq138_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk left to the kitchen, turn right and walk back to the bedroom to pick up the stool. Walk forward to the door, pick up the photo frame, and walk back to place it in the bedroom."
},
"406": {
"id": "ADT_Apartment_release_decoration_seq139_M1292_preview_rgb",
"video": "ADT_Apartment_release_decoration_seq139_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk left to the kitchen, turn right and walk back to the door to take down the photo frame. Walk back into the bedroom, turn left and place the frame back on the wall."
},
"407": {
"id": "ADT_Apartment_release_decoration_seq140_M1292_preview_rgb",
"video": "ADT_Apartment_release_decoration_seq140_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk left to the kitchen, turn right and walk back to place the stool. Walk back into the bedroom, pick up the photo frame, and turn right to walk back to the door."
},
"408": {
"id": "ADT_Apartment_release_decoration_skeleton_seq131_M1292_preview_rgb",
"video": "ADT_Apartment_release_decoration_skeleton_seq131_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk right to the living room, pick up the stool and turn left to walk back into the bedroom. Place the stool on the floor, take the photo frame off the wall, and turn right to walk back into the living room. Place the photo frame on the right-hand wall, then take it down again and walk back to the kitchen."
},
"409": {
"id": "ADT_Apartment_release_decoration_skeleton_seq132_M1292_preview_rgb",
"video": "ADT_Apartment_release_decoration_skeleton_seq132_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk left to the kitchen, turn right and walk back to the door to take down the photo frame. Walk back into the bedroom, pick up the stool, and turn left to place it back. Walk forward and turn left to pick up the stool, then walk back to the kitchen."
},
"410": {
"id": "ADT_Apartment_release_decoration_skeleton_seq133_M1292_preview_rgb",
"video": "ADT_Apartment_release_decoration_skeleton_seq133_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk left to the kitchen, turn right and walk back toward the dining area. Turn left to walk out of the living room, pick up the small stool, and walk back into the bedroom to place it down. Walk back into the living room and place the photo frame down."
},
"411": {
"id": "ADT_Apartment_release_decoration_skeleton_seq134_M1292_preview_rgb",
"video": "ADT_Apartment_release_decoration_skeleton_seq134_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Turn right and walk out of the kitchen, turn left to pick up the photo frame from the door. Turn left and walk into the bedroom, put down the photo frame and pick up the stool. Turn left and walk out of the bedroom, then turn right to place the stool back. Walk forward and turn right."
},
"412": {
"id": "ADT_Apartment_release_decoration_skeleton_seq135_M1292_preview_rgb",
"video": "ADT_Apartment_release_decoration_skeleton_seq135_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk left to the kitchen, turn right and walk back into the bedroom. Pick up the stool and place it back at the door, then walk back into the bedroom. Take down the photo frame and walk forward to place it on the left-hand wall. Turn right and walk back to the door."
},
"413": {
"id": "ADT_Apartment_release_decoration_skeleton_seq136_M1292_preview_rgb",
"video": "ADT_Apartment_release_decoration_skeleton_seq136_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk left to the kitchen, turn right and walk back to the door to pick up the photo frame. Walk back into the bedroom, pick up the stool, and turn left to place it down. Walk forward and turn left to leave the bedroom, then walk straight into the kitchen."
},
"414": {
"id": "ADT_Apartment_release_decoration_skeleton_seq137_M1292_preview_rgb",
"video": "ADT_Apartment_release_decoration_skeleton_seq137_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk left to the kitchen, turn right and walk back to the door to place the stool. Walk back into the bedroom, pick up the photo frame, and walk forward to place it back in the living room. Turn right and walk back into the kitchen."
},
"415": {
"id": "ADT_Apartment_release_decoration_skeleton_seq138_M1292_preview_rgb",
"video": "ADT_Apartment_release_decoration_skeleton_seq138_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk left to the kitchen, turn right and walk back to the door to pick up the photo frame. Walk back into the bedroom, pick up the stool, and place it in the living room. Turn left and walk back into the kitchen."
},
"416": {
"id": "ADT_Apartment_release_decoration_skeleton_seq139_M1292_preview_rgb",
"video": "ADT_Apartment_release_decoration_skeleton_seq139_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk left to the kitchen, turn right and walk back into the living room to pick up the photo frame. Walk back into the bedroom, place the photo frame back on the left side, then walk out of the bedroom to pick up the stool. Walk right into the living room, and place it back. Turn right and walk back into the bedroom."
},
"417": {
"id": "ADT_Apartment_release_decoration_skeleton_seq140_M1292_preview_rgb",
"video": "ADT_Apartment_release_decoration_skeleton_seq140_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk left to the kitchen, turn right and walk back into the bedroom to pick up the stool. Walk out of the bedroom, turn left to place it back in the living room. Walk forward to the living room to pick up the photo frame, then turn left to place it back in the bedroom."
},
"419": {
"id": "ADT_Apartment_release_golden_skeleton_seq100_M1292_preview_rgb",
"video": "ADT_Apartment_release_golden_skeleton_seq100_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk left to the living room, turn left and walk back into the bedroom to open the door. Turn left to the living room, then walk back to the dining table. Turn left to the kitchen, place the container down, and sit back down to look at the model. Stand up and walk back to the dining table to pour water. Walk back to the kitchen, and turn around to walk to the living room."
},
"420": {
"id": "ADT_Apartment_release_meal_seq131_M1292_preview_rgb",
"video": "ADT_Apartment_release_meal_seq131_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk left to the kitchen, pick up the bowl from the living room, then walk back to the dining table. Place the spatula down, then pick up the kettle and walk to the kitchen to place it down. Walk back to the kitchen, detour to the left side, then pick up the box and pour the water. Walk forward to the dining table and place the box down. Walk diagonally to the left side, then pick up the bowl."
},
"421": {
"id": "ADT_Apartment_release_meal_seq132_M1292_preview_rgb",
"video": "ADT_Apartment_release_meal_seq132_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk left to the kitchen, sit down, and place the banana back on the cutting board. Stand up and walk back to the dining table, drinking water. Walk to the living room, sit down to eat, and stand up to walk back to the kitchen."
},
"422": {
"id": "ADT_Apartment_release_meal_seq133_M1292_preview_rgb",
"video": "ADT_Apartment_release_meal_seq133_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk left to the kitchen, stand up from the dining table, and place the bowl back on the kitchen table. Then walk forward to the kitchen and cook."
},
"423": {
"id": "ADT_Apartment_release_meal_seq136_M1292_preview_rgb",
"video": "ADT_Apartment_release_meal_seq136_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk left to the kitchen, stand up from the living room, and walk diagonally back to the kitchen to pour water. Then sit back down in the living room to eat. Stand up and walk back to the living room."
},
"424": {
"id": "ADT_Apartment_release_meal_seq138_M1292_preview_rgb",
"video": "ADT_Apartment_release_meal_seq138_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk left to the kitchen, stand up from the living room, and walk diagonally back to the dining table. Pour the drink, then walk to the living room and sit down to eat. Stand up, walk back to the kitchen to pour the water, then sit down at the dining table."
},
"425": {
"id": "ADT_Apartment_release_meal_seq139_M1292_preview_rgb",
"video": "ADT_Apartment_release_meal_seq139_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk left to the kitchen, stand up from the sofa, and walk back to the dining table to place the bowl down. Walk back to the sofa to sit down and eat. Stand up and walk to the kitchen to pour water, then sit down on the sofa."
},
"426": {
"id": "ADT_Apartment_release_meal_seq140_M1292_preview_rgb",
"video": "ADT_Apartment_release_meal_seq140_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk left to the kitchen, turn right to the dining table to place the bowl down. Walk back to the living room, sit down to eat fruit, then walk straight to the kitchen."
},
"427": {
"id": "ADT_Apartment_release_meal_seq136_M1292_preview_rgb",
"video": "ADT_Apartment_release_meal_seq136_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk left to the kitchen, stand up from the living room, and walk diagonally back to the dining table to place the bowl. Walk to the living room and sit down to eat. Stand up and walk to the kitchen to pour the water."
},
"428": {
"id": "ADT_Apartment_release_meal_seq138_M1292_preview_rgb",
"video": "ADT_Apartment_release_meal_seq138_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk left to the kitchen, stand up from the living room, and walk diagonally back to the dining table. Place the bowl down, then walk to the kitchen to pour the water. Walk back to the living room to sit down and eat, pick up the food and walk to the kitchen again."
},
"429": {
"id": "ADT_Apartment_release_meal_seq139_M1292_preview_rgb",
"video": "ADT_Apartment_release_meal_seq139_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk left to the kitchen, stand up from the living room, and walk diagonally back to the dining table. Pour water, then walk back to the living room to sit down and eat. Stand up and walk to the kitchen to pour the water."
},
"430": {
"id": "ADT_Apartment_release_meal_seq140_M1292_preview_rgb",
"video": "ADT_Apartment_release_meal_seq140_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk left to the kitchen, stand up from the dining table, and walk diagonally to the living room to sit down. Pick up the cup and eat fruit, then walk to the kitchen after standing up."
},
"431": {
"id": "ADT_Apartment_release_meal_seq141_M1292_preview_rgb",
"video": "ADT_Apartment_release_meal_seq141_M1292_preview_rgb.mp4",
"question": "Please take a egocentric view to understand the following questions.Please describe in detail how to get from the last position in the end view of the video back to the starting point?",
"reverse_answer": "Walk left to the kitchen, turn around and walk back to the dining table to rearrange the box. Walk back to the kitchen, mix the ingredients, then walk diagonally to the sofa and place the bowl down. Turn around and walk back to the kitchen to cut the fruit."
}
} |