Datasets:
File size: 142,628 Bytes
c213127 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 | [
{
"video_id": "GX010021",
"texts": [
"Let's first preheat the oven to 350 degrees Fahrenheit.",
"Okay. Starting the oven to 350 Fahrenheit.",
"Great Job!",
"Get a bowl to mix the wet ingredients.",
"Okay.",
"That bowl is too small. Let's get a bigger bowl.",
"Okay! Getting a bigger bowl.",
"Great job.",
"Now crack two eggs and add them to the bowl.",
"You should add two eggs, not three.",
"Okay. I'll put the egg back.",
"Great Job!",
"Now add half a cup of sugar to the bowl.",
"You should add more sugar. Make sure to add half cup of sugar.",
"Hmm, I don't want to add too much sugar.",
"Okay then. We will proceed with only 1/4 cup of sugar.",
"Great Job!",
"Now add half cup of milk and whisk the mixture.",
"Let me find half a cup.",
"Should I use an electric whisk?",
"Yes, you can use an electric whisk.",
"Let me get it started.",
"Keep on whisking the ingredients until they are mixed well.",
"Do they look well mixed?",
"Yes, great job.",
"Now mix in one cup of flour.",
"Good job.",
"Next, let's put half a cup of butter in a microwave-safe bowl and melt it in the microwave.",
"Now how do I melt it in the microwave?",
"Let's run the microwave in 15-second bursts and check if the butter is melted at the end of 15 seconds.",
"Hmm, the butter is not melted yet. Let's put the bowl back in the microwave for 15 more seconds.",
"Good job.",
"Now let's whisk the cake mixture until everything is mixed well.",
"Keep on mixing until the mixture is smooth.",
"Keep on mixing until the mixture is smooth.",
"Great job.",
"Now let's transfer the mixture to the baking tray.",
"Should I put it directly or do I need to um line it with something?",
"Use a parchment paper to line the baking tray.",
"I don't have a parchment paper.",
"You can then use some of the leftover butter from the melt to line up the tray.",
"I don't have any leftover butter, should I use oil instead?",
"Yes, you can use oil.",
"Okay.",
"Great job.",
"Now let's transfer the mixture to the baking tray.",
"The mixture looks a bit runny. Should I add a little bit more more flour?",
"As long as the mixture is smooth, you need not add more flour.",
"Hmm, I'll add a little bit more flour.",
"Okay, this looks smooth to me.",
"Good job.",
"Now let's pour the mixture into the tray.",
"Good job.",
"Now let's put the tray in the oven.",
"Good job."
],
"text_types": [
"Instruction",
"User-Comment",
"Success",
"Instruction",
"User-Comment",
"Feedback",
"User-Comment",
"Success",
"Instruction",
"Feedback",
"User-Comment",
"Success",
"Instruction",
"Feedback",
"User-Comment",
"Instruction-Clarification",
"Success",
"Instruction",
"User-Comment",
"User-Question",
"Instruction-Clarification",
"User-Comment",
"Feedback",
"User-Question",
"Success",
"Instruction",
"Success",
"Instruction",
"User-Question",
"Instruction-Clarification",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Feedback",
"Success",
"Instruction",
"User-Question",
"Instruction-Clarification",
"User-Comment",
"Instruction-Clarification",
"User-Question",
"Instruction-Clarification",
"User-Comment",
"Success",
"Instruction",
"User-Question",
"Instruction-Clarification",
"User-Comment",
"User-Comment",
"Success",
"Instruction",
"Success",
"Instruction",
"Success"
],
"text_timestamps": [
4.418,
9.608,
15.982,
17.0,
21.948,
24.128,
30.588,
34.819,
36.658,
79.0,
82.548,
88.0,
89.108,
117.88,
124.48,
127.568,
133.723,
134.748,
141.508,
174.418,
179.388,
185.748,
204.538,
226.458,
230.048,
231.088,
293.688,
294.698,
329.488,
333.708,
397.648,
431.658,
432.658,
479.58,
489.74,
525.0,
526.0,
531.008,
538.698,
544.398,
546.378,
552.478,
556.368,
557.848,
580.0,
581.0,
585.438,
592.658,
597.378,
627.298,
629.668,
630.612,
685.328,
686.478,
692.608
]
},
{
"video_id": "GX010023",
"texts": [
"Get a bowl.",
"Is this fine?",
"Yes!",
"Good job!",
"Next get two eggs.",
"Good job!",
"Crack the eggs into the bowl.",
"Hmm, this egg looks rotten.",
"I'll need another egg. Wait a second.",
"Good job!",
"Now add one tablespoon of milk.",
"Not sugar, you are supposed to add milk.",
"Oh, okay.",
"Good job!",
"Now whisk the mixture until well blended.",
"You need to whisk for longer.",
"You need to whisk for longer.",
"Great job.",
"Now get a pan.",
"Great job.",
"Now put one tablespoon of butter into the pan.",
"Great job.",
"Now, turn on the heat and wait for the butter to melt.",
"You should wait for the butter to melt.",
"Wait for the butter to melt.",
"Great job.",
"You can now add the egg mixture and wait about 30 seconds.",
"Good job.",
"Okay, now start to whisk the egg mixture. You can keep whisking until the mixture is firm.",
"Great job."
],
"text_types": [
"Instruction",
"User-Question",
"Instruction-Clarification",
"Success",
"Instruction",
"Success",
"Instruction",
"User-Comment",
"User-Comment",
"Success",
"Instruction",
"Feedback",
"User-Comment",
"Success",
"Instruction",
"Feedback",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Success"
],
"text_timestamps": [
8.24,
11.04,
12.46,
13.321,
14.24,
24.735,
25.76,
46.26,
48.93,
88.725,
89.75,
97.85,
101.85,
125.625,
126.65,
135.75,
142.75,
154.01,
155.07,
167.475,
169.5,
216.73,
217.8,
236.735,
284.017,
337.845,
338.87,
374.4,
375.47,
456.58
]
},
{
"video_id": "GX010029",
"texts": [
"Get a large pan and put it on the stove.",
"Good job!",
"Switch on the stove and add 2 tablespoons of oil.",
"You need to add oil as well.",
"Great.",
"Now, get a chopping board, knife and an onion.",
"Good Job.",
"Dice one full onion.",
"You need to dice the onion.",
"Great job.",
"Now, you need to add the chopped onion to the pan.",
"Add the full diced onion to the pan.",
"Great job.",
"Now, grab 2 tomatoes and dice them into small cubes.",
"You need to dice the tomatoes in smaller cubes.",
"You need to add only two tomatoes.",
"Good job.",
"Add the two diced tomatoes to the pan.",
"Good job.",
"Gently stir the ingredients in the pan at low heat.",
"Reduce the temperature of the stove.",
"Good job!",
"Open your packet of tofu and dice it up in small cubes.",
"Cut the tofu in smaller cubes.",
"Good job!",
"Add the tofu to the same pan.",
"Good job!",
"Add salt to the pan according to your taste.",
"Great job.",
"Now, add pepper to the pan according to your taste.",
"Nice.",
"Now, mix all the ingredients together.",
"Amazing.",
"Cover the pan with a lid and your tofu should be ready in about 10 minutes.",
"Amazing."
],
"text_types": [
"Instruction",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Success",
"Instruction",
"Success",
"Instruction",
"Success",
"Instruction",
"Success"
],
"text_timestamps": [
1.97,
9.4,
10.4,
16.54,
26.3,
27.82,
39.41,
40.8,
51.57,
109.0,
109.88,
123.0,
129.34,
130.42,
165.22,
219.8,
223.54,
224.678,
237.02,
238.044,
244.08,
249.0,
250.12,
300.0,
327.0,
330.8,
344.105,
345.13,
356.4,
357.48,
370.09,
370.51,
382.935,
384.96,
396.324
]
},
{
"video_id": "GX010030",
"texts": [
"Get a one pound of broccoli and cut the florets.",
"I already have cut broccoli.",
"Great.",
"Now get a bell pepper and chop it into small pieces.",
"You should cut the bell pepper into smaller pieces.",
"Is this small enough?",
"This looks good.",
"Great.",
"Now take a pan and oil and add oil to the pan.",
"You should add more oil. Add enough oil to cover the bottom of the pan.",
"This looks good.",
"Now turn on the stove.",
"Great job.",
"Now add the cut broccoli to the pan.",
"Very well done.",
"Now add the cut bell pepper.",
"Good job.",
"Now cut a beetroot and add it to the pan.",
"Great job.",
"Now add approx 1 cup of spinach to the pan.",
"Great job!",
"Now you need to stir the contents of the pan and add salt to taste to the pan.",
"Great.",
"Now add pepper to taste.",
"Very well done."
],
"text_types": [
"Instruction",
"User-Comment",
"Success",
"Instruction",
"Feedback",
"User-Question",
"Instruction-Clarification",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Success",
"Instruction",
"Success",
"Instruction",
"Success",
"Instruction",
"Success",
"Instruction",
"Success",
"Instruction",
"Success"
],
"text_timestamps": [
8.235,
16.215,
19.455,
20.955,
92.055,
128.945,
130.25,
182.875,
184.365,
203.175,
219.055,
220.105,
229.305,
230.815,
274.515,
277.565,
295.605,
297.115,
326.4,
327.515,
339.259,
340.315,
376.235,
377.255,
389.565
]
},
{
"video_id": "GX010032",
"texts": [
"First, get a baguette and slice it into four half-inch thick pieces.",
"Try to make the slices thinner.",
"Good job.",
"Now place the slices in a toaster or a toaster oven.",
"Great job.",
"Toast them until they are golden and crisp, usually about one minute, depending on your toaster.",
"Good job.",
"Carefully remove the toast from the toaster.",
"You can try to use a spoon to take out the baguette to avoid burning your hands.",
"Good job!",
"Now brush each slice lightly with some olive oil.",
"You can add a little bit more of the olive oil.",
"Great job.",
"Now, dice half a tomato for the topping.",
"Great.",
"Now, you need to add fresh basil to the tomato mixture, according to your taste. First wash the basil before adding.",
"Good job.",
"Next, you need to chop the basil and then add it to your tomato mixture.",
"Good job.",
"Add a pinch of salt and drizzle some olive oil.",
"Great job.",
"Now, mix the ingredients together and top it on your toasted bread.",
"You are adding too much topping. Add just enough topping such that it doesn't fall off from your bread.",
"Great job. Your bruschetta is ready to serve."
],
"text_types": [
"Instruction",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Success",
"Instruction",
"Instruction-Clarification",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Success",
"Instruction",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Success"
],
"text_timestamps": [
14.791,
41.991,
63.092,
64.191,
72.941,
73.911,
142.516,
143.541,
155.181,
185.42,
186.451,
211.461,
230.861,
235.761,
270.961,
276.161,
316.462,
317.561,
336.736,
337.761,
356.861,
357.861,
382.961,
414.761
]
},
{
"video_id": "GX010033",
"texts": [
"First, get a baguette and slice four half-inch thick pieces from it.",
"The slices are too thick. Make them half an inch thick.",
"Good job.",
"Next, toast the baguette slices in the toaster. Toast until golden brown usually around 1 minute.",
"Good job.",
"Now, brush each toast lightly with some olive oil.",
"Great job.",
"Now, dice half a tomato.",
"The slices of tomatoes are too thick. Try to dice into smaller pieces.",
"Good job!",
"Now, cut four slices of fresh mozzarella as a topping for your toasts.",
"The mozzarella slices are too thick. Try to dice them into smaller pieces.",
"Now, get some basil.",
"Good job!",
"You need to now wash the basil and chop it into small pieces.",
"You need to chop it into smaller pieces,",
"Great job.",
"Now, mix the tomatoes and the basil together and add some salt.",
"Good job!",
"Now, get a baguette slice and put a slice of mozzarella on top.",
"Good job!",
"Next add the toppings of tomato and basil on the baguette slice such that it covers it.",
"Great job.",
"Now, repeat the previous step for all your toasts.",
"Make sure that you add enough topping.",
"Done. Your delicious tomato mozzarella bruschetta is ready."
],
"text_types": [
"Instruction",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Success"
],
"text_timestamps": [
4.188,
25.588,
51.338,
53.408,
129.483,
130.508,
160.788,
163.898,
184.448,
213.793,
214.818,
232.888,
255.648,
260.813,
261.838,
289.708,
304.658,
306.738,
325.433,
327.458,
340.969,
342.068,
351.698,
352.698,
361.238,
438.658
]
},
{
"video_id": "GX010036",
"texts": [
"Get a pan and fill it with water.",
"Great job! You have enough water.",
"Now put the pot on the stove and now turn it on.",
"Great job!",
"Add two teaspoons of salt to the water.",
"You should add two teaspoons, not one.",
"Great job!",
"Now wait until the water is boiling. Use a moderately high heat.",
"You can increase the heat of the stove.",
"Great job!",
"You can open the bag of gnocchi and put the gnocchi in the water.",
"You can use your hands to put the gnocchi in the pot so that you do not burn yourself.",
"Great job.",
"While the gnocchi cooks, you can now take a pan and put two tablespoons of olive oil into the pan. If you do not have olive oil, you can choose any oil.",
"You seem to have added only one tablespoon of olive oil. You should add two tablespoons.",
"Great job.",
"You should now add one cup of tomato sauce to the pan. Use a measuring cup to measure the sauce.",
"Use a measuring cup to measure the sauce.",
"You should make sure that you fill up the whole cup.",
"That looks great.",
"Now add the cup of tomato sauce it to the pan.",
"Great job.",
"Now use the cup to add one fourth cup of water to the pan.",
"You can use the same cup as before.",
"Great job.",
"Now wait for the tomato sauce to heat up. You can use a spatula to mix the sauce as it heats up.",
"Good job.",
"You can turn off the heat.",
"Good Job.",
"You can remove the pan from the hot stove.",
"Good Job.",
"Wait for the gnocchi to be cooked. When cooked the gnocchi will float to the surface. Then turn off the heat and grain the water from the gnocchi using a colander.",
"Great job.",
"You can put the gnocchi into the pan.",
"Great job.",
"Now stir the gnocchi to mix it thoroughly with the tomato sauce.",
"Great job.",
"You can add cheese to the gnocchi as per your taste.",
"Awesome.",
"Now stir the gnocchi with the cheese thoroughly.",
"Great job."
],
"text_types": [
"Instruction",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"User-Comment",
"Instruction",
"Success",
"Instruction",
"Success",
"Instruction",
"Success",
"Instruction",
"Success",
"Instruction",
"Success",
"Instruction",
"Success",
"User-Comment",
"Success",
"Instruction",
"Success"
],
"text_timestamps": [
2.77,
22.91,
23.91,
31.985,
33.01,
77.59,
84.915,
85.94,
101.44,
337.155,
338.18,
379.0,
411.02,
412.05,
481.64,
513.11,
514.2,
527.51,
552.21,
564.62,
566.45,
574.6,
575.65,
593.45,
612.46,
613.46,
843.31,
844.31,
848.211,
856.0,
867.5,
868.524,
924.39,
950.35,
973.26,
974.26,
989.9,
994.72,
1032.77,
1033.77,
1051.22
]
},
{
"video_id": "GX010037",
"texts": [
"Take a bowl and put 3 teaspoons of sesame oil in it.",
"This is sesame oil.",
"You should use 3 teaspoons.",
"Great job.",
"Now, pour in 4 teaspoons of soya sauce.",
"Good job.",
"Now add one teaspoon of honey to it and mix the contents well.",
"You should use a measuring spoon.",
"Great job.",
"Now mix in half teaspoon of corn starch and mix the contents of the bowl well.",
"Great job.",
"Now get the firm tofu and cut it into medium sized cubes.",
"The tofu cubes are too big. You should make smaller cubes.",
"Great job.",
"Now take a pan and add at least two table spoons of oil to the pan to coat the surface of the pan.",
"You should add at least two tablespoons of oil to coat the surface.",
"Great job.",
"Now turn on the stove. You can use medium heat.",
"Great job.",
"Now while the pan is heating up, you can coat the tofu cubes with mixture of oil, soy, honey and corn starch. Start with a few cubes.",
"Make sure that the cubes are evenly coated.",
"Great job.",
"You can now add the cubes coated with the mixture one by one to the pan to fry. Make sure that the pan is hot. The cubes should start to sizzle once you add them.",
"Good job.",
"As there is space left in the pan, you can coat more cubes evenly with the mixture and then fry them to the hot pan.",
"You should reduce the heat to avoid burning the tofu.",
"Great job.",
"Now use a spatula to turn the tofu so that they are evenly fried.",
"Good job.",
"Now keep on frying and turning the tofu to make sure that the tofu is cooked until golden and crispy.",
"Once the tofu is golden and crispy to your taste, you can remove the tofu pieces into a pan or a pot.",
"Great job.",
"You can repeat this process by putting more tofu cubes into the mixture and then frying them until they are golden and crispy."
],
"text_types": [
"Instruction",
"User-Comment",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Instruction",
"Success",
"Instruction"
],
"text_timestamps": [
2.13,
15.43,
30.59,
38.89,
40.83,
106.994067,
108.018067,
117.24806699999999,
149.118067,
151.488067,
218.018067,
218.698067,
300.298067,
376.76906699999995,
377.838067,
399.04806699999995,
422.843067,
423.868067,
432.77406699999995,
433.79906700000004,
472.018067,
492.30806700000005,
494.358067,
573.573067,
574.598067,
665.558067,
677.809067,
678.809067,
713.383067,
714.4080670000001,
806.299067,
908.218067,
909.308067
]
},
{
"video_id": "GX010039",
"texts": [
"Do not fry too many tofu pieces at the same time otherwise the tofu won't be uniformly golden and crispy.",
"Make sure to keep turning the tofu pieces.",
"Make sure that the pan does not get too hot.",
"Make sure all the tofu pieces are evenly fried, until golden and crispy.",
"Good job!",
"You can remove the fried tofu pieces them from the pan.",
"Great job.",
"You can add the remaining tofu pieces coated with the mixture to the pan for frying.",
"Great job.",
"Now keep turning the tofu pieces to that they are fried evenly until they are golden and crispy.",
"You can lower the heat of the stove so as to not burn the tofu.",
"Good job.",
"Now you can remove the tofu and put them in the pan.",
"Great job.",
"You can now turn off the stove.",
"Great, we are now done."
],
"text_types": [
"Feedback",
"Feedback",
"Feedback",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Success"
],
"text_timestamps": [
55.18,
63.54,
210.0,
270.87,
353.69,
357.09,
385.8,
386.8,
425.4,
426.424,
517.0,
633.9,
634.9,
673.26,
674.26,
679.25
]
},
{
"video_id": "GX010040",
"texts": [
"Get two slices of bread.",
"Good job.",
"Put the bread slices in the toaster and toast until golden brown, usually for about 1 minute.",
"You need to toast it longer to make it more crisp, for about 1 minute.",
"You might want to check on your toasts.",
"The toasts look done!",
"Now add 2 tablespoons of pizza sauce on each slice.",
"You need to add 2 tablespoons of pizza sauce on each slice of bread.",
"Perfect!",
"Now spread the sauce evenly on the toasts.",
"Perfect!",
"Now add shredded mozzarella on top of each of the slices to cover them evenly.",
"You can add more shredded mozzarella to cover both slices.",
"Perfect!",
"Now you can add olives on top of each bread slice according to your taste.",
"Take a microwave safe plate or bowl, put the bread slices in it and microwave the slices for 40 to 45 seconds.",
"You should microwave the bread for 40 to 45 seconds, so another 15 to 20 seconds.",
"Perfect!"
],
"text_types": [
"Instruction",
"Success",
"Instruction",
"Feedback",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Instruction",
"Feedback",
"Success"
],
"text_timestamps": [
3.38,
13.5,
14.568,
32.0,
74.0,
83.24,
85.31,
106.46,
121.4,
122.44,
164.4,
165.47,
182.5,
202.24,
204.25,
240.0,
306.6,
335.24
]
},
{
"video_id": "GX010041",
"texts": [
"Grab two slices of bread and put them in the toaster. Toast for around a minute.",
"Your bread slices should be toasted. Please check and take them out.",
"Perfect!",
"Now get the pizza sauce and spread two tablespoons on each slice of bread.",
"You need to put two tablespoons of pizza sauce on each slice of bread. You are putting too much on a single slice of bread. You can try to transfer some from one slice to the other.",
"Perfect. You did a great job redistributing the pizza sauce.",
"Now spread it evenly on the bread.",
"Perfect.",
"Now cover each slice of bread with shredded mozzarella cheese.",
"That's too little. You might want to add a little bit more to cover each slice.",
"Oh, that's too much. Stop, stop, stop. You might need to take out some of the mozzarella from the toast that has too much cheese.",
"Great job!",
"Add some oregano on top of the cheese toast according to your taste.",
"Stop! You are adding olives. You need to add oregano.",
"Great job!",
"Now add at least 3 to 4 olives to the top of the cheese toasts.",
"You can add more olives.",
"Great job!",
"Now microwave the cheese toast in a microwave-safe utensil for around 45 to 60 seconds.",
"Great job!"
],
"text_types": [
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Success"
],
"text_timestamps": [
1.0,
77.0,
88.0,
91.0,
113.0,
138.0,
142.024,
170.475,
171.5,
194.0,
202.0,
225.0,
226.012,
238.0,
254.975,
256.0,
288.1,
312.0,
313.024,
399.275
]
},
{
"video_id": "GX010043",
"texts": [
"Get a large pan and put it on the stove.",
"Good job!",
"Add about two tablespoons of oil and switch on the stove.",
"You forgot to add the oil. Please also add about two tablespoons oil to the pan.",
"You need to add about two tablespoons of oil.",
"Good job!",
"Now get a chopping board, knife and an onion.",
"Good job!",
"Now, peel the onion and dice it.",
"You need to peel the onion and then dice it.",
"You need to dice the full onion.",
"Good job!",
"Now, carefully add the onion to the pan.",
"Good job!",
"Now, grab two tomatoes and dice them up.",
"Make sure to dice two tomatoes.",
"Good job!",
"Now, add the tomatoes to the pan.",
"Good job!",
"Now, stir and fix the ingredients in the pan well.",
"Mix the ingredients well.",
"Good job!",
"Grab a medium sized cauliflower and chop it into small florets.",
"Good job! Looks like you already have chopped florets.",
"Now, add these chopped florets to the cooking pan.",
"You can add more of those chopped florets.",
"Good job!",
"Now, add salt to the pan according to your taste.",
"Good job!",
"Now add a pinch of turmeric to the pan.",
"Just a pinch not too much.",
"Good job!",
"Now, stir the ingredients to mix them well.",
"Good job!",
"Now, cover the pan.",
"Great job."
],
"text_types": [
"Instruction",
"Success",
"Instruction",
"Feedback",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Success"
],
"text_timestamps": [
2.0,
10.475,
11.5,
18.5,
27.0,
65.975,
67.0,
82.075,
83.1,
100.0,
180.0,
219.475,
221.5,
251.975,
253.0,
328.5,
377.975,
379.0,
395.475,
396.5,
403.5,
411.59,
412.6,
441.475,
442.5,
457.5,
474.975,
476.0,
493.975,
495.0,
504.5,
510.475,
511.5,
523.475,
524.5,
535.2
]
},
{
"video_id": "GX010044",
"texts": [
"First take a large bowl.",
"Good job!",
"Add two tablespoons of oil to the bowl.",
"Good job!",
"Now add one tablespoon of coriander powder to the bowl.",
"That's too little. Can you add a tablespoon?",
"Great job.",
"Now add one teaspoon of turmeric powder.",
"That is salt. You need to add one teaspoon turmeric powder.",
"make sure to add one teaspoon of turmeric powder.",
"Good job!",
"Now mix all the ingredients together.",
"Good job!",
"Next, add one tablespoon of ginger garlic paste to the spice mix.",
"That's a little bit too less. Add one tablespoon of ginger garlic paste to the mixture.",
"Good job!",
"Now add one teaspoon of red chili powder.",
"Good job!",
"Now mix all the ingredients in the bowl well.",
"Good job!",
"Now add salt according your taste to the mixture.",
"Great job.",
"Now mix all the ingredients in the bowl well together once again.",
"Great job.",
"Now get one large boiled potato and cut it into small bite-sized pieces.",
"The potato pieces look very small. You need to cut into larger bite-size pieces.",
"Great job.",
"Now add these potatoes to the bowl with the spice mix and coat them evenly with the spice mix.",
"You can add the remaining potato pieces to the spice mix as well.",
"Great job.",
"Now grab a pan or a pot and add enough oil to cover the bottom.",
"I think you added only one tablespoon of oil. You need to add enough oil to cover the bottom.",
"Great job.",
"Now switch on the stove. Set the heat to medium.",
"Great job.",
"Now wait for oil to be a little bit hot, about 30 seconds.",
"Great job.",
"Now, once the oil is hot, carefully add the coated potatoes to the pan.",
"Great job.",
"Make sure to spread the potatoes evenly in the pan, if possible.",
"Great job.",
"Now let's wait for the potatoes in the pan to fry for about two minutes without stirring, such that the potatoes forms a nice thin crust.",
"Check if the potatoes have formed a nice thin crust.",
"Great job.",
"Now use a fork to poke the potatoes and check if they are soft and thoroughly cooked.",
"Great job."
],
"text_types": [
"Instruction",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Success",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Success",
"Instruction",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Success"
],
"text_timestamps": [
0.0,
4.211,
5.25,
24.725,
25.75,
43.45,
60.8,
61.84,
65.58,
89.2,
94.721,
95.74,
105.925,
106.95,
121.74,
133.975,
135.0,
159.75,
160.8,
172.875,
173.9,
194.24,
195.31,
207.535,
208.56,
239.34,
285.95,
288.85,
317.8,
342.565,
343.59,
374.8,
383.291,
384.31,
399.815,
400.84,
428.975,
430.0,
446.305,
447.33,
460.225,
461.25,
615.69,
626.975,
628.0,
639.12
]
},
{
"video_id": "GX010046",
"texts": [
"Get two slices of bread and toast them in the toaster until nice and crisp for about one minute.",
"You should check if the bread is toasted.",
"Can you check to make sure that the bread in the toaster is not burnt?",
"Make sure that the bread is not burnt. We do not want it to be too crispy.",
"You should really check the bread in the toaster to make sure it is not burnt.",
"Good job.",
"You can take both pieces of bread out.",
"Good job.",
"Now, place the toasted bread on a microwave-safe plate.",
"Good job.",
"Now spread about two tablespoons of pizza sauce on each slice.",
"That's way too much pizza sauce on one slice of bread. You should put only two tablespoons of pizza sauce on each slice.",
"You should put two tablespoons of pizza sauce on each slice. Now put two tablespoons of pizza sauce on the other slice too.",
"Good job.",
"Spread the pizza sauce evenly on each slice of bread.",
"Good job.",
"Now you should add shredded mozzarella cheese on top of one slice of bread, enough cover it with a thin layer of cheese.",
"That's enough cheese to cover the bread. You should stop adding more cheese.",
"Good job.",
"Now you can add any other toppings that you want in the sandwich.",
"Good job.",
"Now you can close the sandwich in the microwave safe plate and microwave it for about 45 to 60 seconds, until the cheese has melted.",
"You have microwaved the sandwich for too long. You should check if the cheese has melted.",
"Good job. That looks great. That's it."
],
"text_types": [
"Instruction",
"Feedback",
"Feedback",
"Feedback",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Success"
],
"text_timestamps": [
4.3,
105.1,
114.8,
157.2,
165.4,
172.375,
173.4,
187.675,
188.7,
205.275,
206.3,
232.9,
249.8,
264.875,
266.95,
290.476,
291.5,
321.4,
331.075,
333.1,
392.975,
394.0,
476.3,
489.7
]
},
{
"video_id": "GX010047",
"texts": [
"Get two slices of bread and toast them in the toaster until nice and crisp, for about one minute.",
"You should remove the toasts from the toaster to make sure they are not burnt. If they are not crispy enough yet, you can toast for longer.",
"You can toast for a little bit longer, they are not crispy enough yet.",
"Good job!",
"Now put the toasts on a microwave-safe plate.",
"Good job!",
"Now spread about two tablespoons of pizza sauce on each slice of bread.",
"That's too little sauce. Make sure you add more sauce, one more tablespoon of sauce to each slice.",
"Good job!",
"Now spread the pizza sauce evenly on each slice of bread.",
"Good job!",
"Now sprinkle shredded mozzarella cheese on one slice of bread, enough to cover it fully.",
"That's too little cheese. You can add a little bit more. Make sure to cover the bread slice fully.",
"That looks great.",
"Now you can add any toppings that you want on top of the cheese.",
"That looks great.",
"Now you can close the sandwich and then microwave it for 45 to 60 seconds to make sure that the cheese is melted.",
"The cheese does not look melted. Make sure that the cheese is melted.",
"That looks great. We are done!"
],
"text_types": [
"Instruction",
"Feedback",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Success"
],
"text_timestamps": [
4.0,
83.0,
96.0,
142.975,
144.0,
165.975,
167.0,
194.0,
201.975,
203.0,
211.975,
213.0,
239.0,
254.0,
258.0,
312.0,
313.0,
380.5,
432.0
]
},
{
"video_id": "GX010048",
"texts": [
"First grab an apple and a knife.",
"Good job!",
"Now cut the apple into thin slices.",
"The apple slices are too thick. Make sure that you make thin slices, about half the current size.",
"You should slice at least half of the apple.",
"Good job!",
"Now get a microwave-safe bowl and place the apple slices in the microwave-safe bowl. The slices should be placed on their side.",
"You might want to get a bigger bowl to make sure all the slices can be placed in the bowl.",
"Now make sure to put them on their side, so that are spread over the bowl.",
"Good job!",
"Now sprinkle some cinnamon and sugar over the apple slices.",
"You did not add sugar. Make sure to sprinkle sugar along with cinnamon.",
"Make sure all the pieces are covered evenly with sugar.",
"Good job!",
"Now you can microwave the apple slices in the microwave safe plate for around one minute until they're soft.",
"Make sure that the apples are soft. You may want to microwave a bit longer, for at least one minute.",
"Make sure that the apple slices are soft. You can touch and make sure.",
"Good job!",
"Now you can get a piece of bread and toast the bread until it is brown and crispy. Usually for around 2 minutes.",
"You toasted for only about 1 minute. Make sure that the piece of bread is golden and crispy.",
"Good job!",
"Now you can place the apple slices on top of the piece of bread.",
"Good job! The recipe is finished."
],
"text_types": [
"Instruction",
"Success",
"Instruction",
"Feedback",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Instruction-Clarification",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Success"
],
"text_timestamps": [
1.0,
13.975,
15.0,
40.4,
72.5,
89.975,
91.0,
100.0,
113.0,
127.0,
128.0,
166.5,
202.0,
219.0,
220.0,
271.5,
326.0,
334.5,
335.5,
422.5,
480.0,
481.0,
512.0
]
},
{
"video_id": "GX010049",
"texts": [
"First grab an apple and a knife.",
"Good job!",
"Now cut the apple into thin slices.",
"Not all slices are of the same size. Make sure that the pieces are uniformly sliced.",
"Good job!",
"Now get a microwave safe plate and place the apple pieces on it. Make sure that the apple slices are on their side.",
"Make sure that the apple pieces are lying on their side.",
"Good job!",
"Now sprinkle cinnamon and sugar over the apple slices.",
"You sprinkled only sugar. Do not forget to sprinkle cinnamon too.",
"Good job!",
"Now let's microwave the apple slices until they are soft. You can microwave for about one minute.",
"Do not microwave for too long. Check to make sure that the apples are evenly cooked.",
"Good job!",
"Now take a slice of bread and toast it until it is golden and crispy, for about one minute.",
"Do not toast the bread for too long. You should check if the toast is done, else you should toast for longer.",
"Do not toast the bread for too long. Check the toast again please.",
"Good job!",
"Now put the apple slices on top of the toast.",
"Your apple cinnamon toast is now done."
],
"text_types": [
"Instruction",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Feedback",
"Success",
"Instruction",
"Success"
],
"text_timestamps": [
3.8,
9.775,
10.8,
46.0,
67.975,
69.0,
97.0,
123.975,
125.0,
147.0,
161.975,
163.0,
229.0,
244.975,
246.0,
332.0,
387.0,
394.975,
396.0,
438.0
]
},
{
"video_id": "GX010050",
"texts": [
"Get one medium sized onion, two tomatoes, and one bell pepper.",
"Good job!",
"Chop the medium sized onion into small pieces.",
"Good job!",
"Now chop the two tomatoes into small pieces.",
"Good job.",
"Now take a block of tofu, approximately 500 grams, and chop it into small pieces.",
"Make sure to chop the tofu into small pieces, those pieces seem too big.",
"Make sure to chop approximately 500 grams of tofu.",
"Make sure all of the tofu is evenly cut into small pieces.",
"Good job.",
"Next, get a large pan and put it on the stove.",
"Good job.",
"Now add oil to coat the bottom of the pan and turn the stove on. Set the heat to medium.",
"Make sure you add enough oil to coat the bottom of the pan.",
"Good job.",
"Wait for the oil to heat up and then add a teaspoon cumin seeds. Wait about two minutes for the oil to heat up.",
"Good job.",
"Now wait until the cumin seeds in the pan start to crackle.",
"Good job.",
"Now add the finely chopped onions into the pan.",
"Good job.",
"Now saut\u00e9 the onions for 1 to 2 minutes stirring until they become soft. Keep stirring the onions continuously to keep them from burning.",
"You need to keep stirring to prevent them from burning.",
"You need to keep stirring to prevent them from burning.",
"Good job.",
"Now add the ginger, garlic, green chilies, and bell pepper to the onions in the pan.",
"Good job.",
"Now continue to saut\u00e9 for about 1 minute until the raw smell of garlic is gone, stirring continuously.",
"Good job.",
"Now add the finely chopped tomatoes to the pan.",
"Good job.",
"Now keep on stirring the ingredients in the pan and when you are ready, add any dry spice powders as per your taste. Do not forget to add salt.",
"Good job.",
"We need to cook the ingredients while stirring continuously, once the vegetables are cooked through, you can turn the heat down to low.",
"You need to keep stirring the ingredients in the pan continuously, otherwise they will burn.",
"Good job.",
"Next you can add the crumbled tofu to the pan.",
"Good job.",
"Make sure that the tofu is well combined with the vegetables in the pan.",
"Good job.",
"You need to keep cooking the ingredients in the pan, while stirring continuously, for another 2 to 3 minutes until the tofu is cooked. Make sure not to overcook the tofu.",
"Keep on stirring for 2 to 3 minutes until the tofu is cooked through and make sure not to overcook the tofu.",
"Make sure you continue to stir 2 to 3 minutes until the tofu is done. Make sure not to overcook the tofu.",
"Good job.",
"Now you can add any other seasonings or toppings that you would like. But it is entirely optional.",
"Good job. Your tofu is now done."
],
"text_types": [
"Instruction",
"Success",
"Instruction",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Feedback",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Success",
"Instruction",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Feedback",
"Success",
"Instruction",
"Success"
],
"text_timestamps": [
3.0,
17.975,
19.0,
126.975,
128.0,
203.2,
204.2,
235.0,
323.0,
442.0,
448.975,
451.0,
483.975,
485.0,
505.0,
514.975,
516.0,
628.975,
630.0,
714.975,
716.0,
733.975,
735.0,
782.0,
824.0,
850.975,
852.0,
899.975,
901.0,
958.975,
961.0,
1006.975,
1009.0,
1084.975,
1087.0,
1136.0,
1168.975,
1170.0,
1224.975,
1226.0,
1241.975,
1243.0,
1314.0,
1394.0,
1420.975,
1422.0,
1473.0
]
},
{
"video_id": "GX010053",
"texts": [
"Get a large pot and fill it with water.",
"Great job.",
"Put the pot of water on the stove and turn on the stove at high heat.",
"Great job.",
"Add one tablespoon of salt to the water.",
"Make sure that you have added enough salt. You should add at least one tablespoon.",
"Great job.",
"Take about 200 grams of pasta and add it to the water.",
"Great job.",
"While the water boils and the pasta cooks, take a large pan, put it on the stove and put about two tablespoons of olive oil into it, to coat the bottom of the pan.",
"Make sure to add two tablespoons of olive oil at least. Make sure that the olive oil coats the bottom of the pan.",
"Great job.",
"Now take two cloves of garlic and chop them up.",
"Make sure to chop at least two cloves of garlic.",
"Great job.",
"You can now add the chopped garlic to the pan which is coated with oil.",
"Great job.",
"Now turn on the stove with the pan with oil and chopped garlic. Set the heat to medium.",
"Great job.",
"Now take about one cup of crushed tomatoes and add it to the pan with the chopped garlic. Make sure to use the measuring cup.",
"Make sure that it is one cup. Fill the measuring cup fully.",
"Make sure to fill the measuring cup fully.",
"Great job.",
"Now let the tomato sauce and the garlic simmer for a bit. Next, keep checking if the pasta is cooked. It should cut/break easily with a fork if cooked.",
"Make sure that the water doesn't boil over. You can reduce the heat if you want.",
"You might want to check whether the pasta is cooked again.",
"You might want to check whether the pasta is cooked again.",
"Great job.",
"Now you can use the lid of the pot to drain the water, but make sure to set aside around half cup of pasta water using the measuring cup.",
"Great job!",
"Now add the pasta to the pan with the tomato paste and garlic.",
"You can use a spoon to make sure all the pasta has been added.",
"Great job.",
"Add the pasta water in the measuring cup to the pan.",
"Add the whole cup of pasta water.",
"Great job.",
"Now take a spoon and mix the pasta with the tomato garlic sauce thoroughly.",
"Great job.",
"Now you can add the grated Parmesan cheese on top of the pasta. Add at least four tablespoons of grated Parmesan.",
"Make sure to add at least four tablespoons.",
"Great job.",
"Now mix the pasta and the cheese together.",
"Great job.",
"You can turn off the heat.",
"Great job."
],
"text_types": [
"Instruction",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Feedback",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Success"
],
"text_timestamps": [
1.0,
43.0,
44.0,
64.0,
65.0,
85.0,
99.0,
100.0,
143.0,
145.0,
187.0,
213.0,
214.0,
332.0,
396.975,
398.0,
422.0,
424.0,
433.0,
434.0,
470.0,
476.0,
495.0,
496.0,
543.0,
694.0,
901.0,
916.5,
917.5,
976.975,
978.0,
990.0,
1011.0,
1012.0,
1022.0,
1027.0,
1028.0,
1091.0,
1092.0,
1159.0,
1183.0,
1184.0,
1206.0,
1207.0,
1214.6
]
},
{
"video_id": "GX010054",
"texts": [
"Get half cup of flour and pour it into a mixing bowl.",
"Make sure to add one full cup of flour.",
"Good job!",
"Get half cup of sugar and add it to the mixing bowl with the flour.",
"Make sure to add half cup of sugar.",
"Good job!",
"Now add one teaspoon of baking powder to the contents of the mixing bowl.",
"Good job!",
"Now use a fork to mix the dry ingredients in the mixing bowl together.",
"Good job!",
"Now take three tablespoons of butter and put it in a microwave safe bowl.",
"Make sure to add three tablespoons of butter.",
"Good job!",
"Now microwave the butter in the bowl for about 30 seconds.",
"Do not microwave the butter longer than 30 seconds.",
"Good job!",
"Now add the melted butter to the dry ingredients in the mixing bowl.",
"Good job!",
"Now let's add a half cup of milk to the cake mixture in the mixing bowl.",
"Make sure not to add too much milk. Don't add more than half cup.",
"Good job!",
"Now use a hand mixer to mix the ingredients in the mixing bowl for about 1 minute.",
"Keep on mixing for about 1 minute. Don't stop.",
"Good job!",
"Now add two eggs to the cake mixture.",
"Good job!",
"Now mix the eggs until the cake mixture is smooth and well blended, for about 1 minute.",
"Good job!",
"Now add about half cup of chocolate chips to the cake mixture.",
"Make sure to add a little bit more chocolate chips, about half cup.",
"Good job!",
"Now you can use the hand mixture to blend the cake mixture again for around 15 to 30 seconds, until the chocolate chips are well incorporated.",
"Do not blend the mixture for too long, only for about 15 to 30 seconds.",
"You should stop blending now.",
"Good job!",
"Now get a small baking loaf tray and then coat it with oil or butter, whatever you prefer.",
"You can use a bit more oil to make sure that the baking tray is well coated.",
"Good job!",
"Now add the cake mixture to the baking tray. You can use a spoon or a fork to make it easier.",
"Make sure to add all of the cake mixture to the tray.",
"Good job!",
"Now turn on the oven and set the temperature to 360 degrees Fahrenheit.",
"Good job!",
"Now put the baking tray in the oven.",
"Good job!"
],
"text_types": [
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Success"
],
"text_timestamps": [
2.0,
46.0,
56.975,
58.0,
85.0,
99.0,
100.0,
139.0,
140.0,
169.0,
170.0,
197.0,
238.5,
239.5,
278.0,
289.975,
291.0,
303.975,
305.0,
330.0,
334.0,
335.0,
366.0,
412.0,
413.0,
446.975,
448.0,
535.075,
536.1,
584.0,
609.975,
611.0,
641.0,
647.0,
654.0,
655.0,
685.0,
707.075,
708.1,
767.0,
781.975,
783.0,
794.975,
796.0,
812.675
]
},
{
"video_id": "GX010057",
"texts": [
"First get a large pot and fill it half-way with water.",
"How much water?",
"You can fill up half the pot with water.",
"Great job!",
"Now put the pot of water on the stove and turn on the stove at high heat.",
"Do not forget to turn on the stove.",
"What heat setting should I use?",
"You can use high heat.",
"Good job!",
"Now add two tablespoons of salt to the water.",
"You should add two tablespoons of salt.",
"Great job.",
"Now add about 200 grams of pasta to the water.",
"How much pasta should I add?",
"You can add around 200 grams of pasta.",
"Great job!",
"Now while the pasta is boiling, take two cloves of garlic and chop them into medium-sized pieces.",
"If the garlic clove is spoiled, you can throw away the spoiled parts.",
"Is this the correct size?",
"Yes.",
"That's all the garlic that I have.",
"Good job!",
"Now take a medium sized pan and add two tablespoons of olive oil to the pan.",
"Make sure to add only two tablespoons of olive oil.",
"Good job!",
"Now turn on the stove with the medium sized pan and set the heat to medium.",
"Be careful. Do not set the heat to high. You should use medium heat.",
"Good job!",
"Now add the chopped cloves of garlic to the olive oil.",
"Good job!",
"Now let's wait for the oil in the medium sized pan to heat up. Meanwhile, you can stir the pasta so that it is well mixed and cooks well.",
"Good job!",
"Now you can cover the pasta pot with the lid so that the water does not spill.",
"Great job!",
"Now wait for the oil in the medium sized pan to heat up and then turn down the heat to medium-low.",
"How hot should the oil be?",
"You should clearly see that the garlic cloves beginning to cook.",
"That looks the oil seems hot enough. You can turn down the heat to medium low.",
"Great job!",
"Now wait till the pasta cooks. Make sure that the hot water in the pasta pot does not spill and the garlic in the pan does not burn.",
"You can set the heat of the pasta pot to low.",
"You can turn off the other pan with the garlic too.",
"You can put the pot back on the stove. Make sure that the water does not spill on the stove.",
"Great job!",
"Now take one cup of tomato sauce and put it on the pan.",
"Great job!",
"Now turn on the heat of the stove with the pan to medium and wait for the pasta in the other stove to cook.",
"How do I make sure that the pasta is cooked?",
"You can take out one pasta and cut it and make sure that it is evenly cooked inside.",
"The pasta doesn't look evenly cooked.",
"You need to wait for the pasta to be cooked.",
"Meanwhile make sure that the tomato sauce is not overcooked. Get a spoon, stir it slightly and turn off the heat.",
"Now keep on waiting for the pasta to cook.",
"You can check again. Take one pasta out and check again if it is cooked.",
"If you're not sure you can taste it and to make sure that it is cooked but make sure not to burn your mouth.",
"The pasta is almost cooked.",
"If not fully cooked, we need to wait at most for a few more minutes.",
"Make sure to check the pasta again. You can taste to check.",
"That looks cooked. Good job!",
"You can now drain the water completely from the pasta.",
"Good job!",
"Now add the pasta to the pan with the tomato sauce.",
"Make sure to add all the pasta.",
"Good job!",
"Now stir the pasta and the tomato sauce so that they are well mixed.",
"Great job.",
"Now take around 100 grams of mozzarella cheese and chop it into very small pieces.",
"Make sure that the pieces are very small.",
"Is this piece size correct?",
"Yes, you can make them as small as you want.",
"Great job.",
"Now add the chopped mozzarella to the to the pasta with the tomato sauce.",
"Great job.",
"Now turn on the heat slightly to medium and stir to mix the pasta and the mozzarella cheese well.",
"Great job.",
"While this is cooking, you can get a few basil leaves and add the basil leaves to the pasta.",
"Great job.",
"Now stir the the basil leaves together with the pasta.",
"Great job.",
"Now let's wait for around one minute until the cheese is melted. Keep on stirring the pasta.",
"Do not forget to keep stirring continuously.",
"Make sure that the cheese is melted and well mixed.",
"Great job.",
"You can turn off the heat.",
"Great job."
],
"text_types": [
"Instruction",
"User-Question",
"Instruction-Clarification",
"Success",
"Instruction",
"Feedback",
"User-Question",
"Instruction-Clarification",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"User-Question",
"Instruction-Clarification",
"Success",
"Instruction",
"Feedback",
"User-Question",
"Instruction-Clarification",
"User-Comment",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Success",
"Instruction",
"Success",
"Instruction",
"User-Question",
"Instruction-Clarification",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Feedback",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"User-Question",
"Instruction-Clarification",
"User-Comment",
"Feedback",
"Instruction-Clarification",
"Instruction-Clarification",
"Feedback",
"Feedback",
"User-Comment",
"Feedback",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"User-Question",
"Instruction-Clarification",
"Success",
"Instruction",
"Success",
"Instruction",
"Success",
"Instruction",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Feedback",
"Success",
"Instruction",
"Success"
],
"text_timestamps": [
0.0,
8.0,
10.0,
25.975,
27.0,
39.0,
43.0,
46.0,
53.001,
54.1,
94.0,
109.975,
111.0,
115.0,
117.0,
162.975,
164.0,
228.0,
254.0,
257.0,
353.0,
357.0,
358.0,
400.0,
405.401,
406.5,
415.0,
422.0,
423.0,
441.975,
443.0,
499.975,
501.0,
529.975,
531.0,
567.0,
570.0,
608.0,
615.0,
616.0,
626.0,
696.0,
741.0,
814.975,
816.0,
873.75,
875.0,
911.0,
918.0,
939.0,
943.0,
1025.0,
1062.0,
1074.0,
1090.0,
1109.0,
1112.0,
1205.0,
1235.0,
1238.0,
1279.975,
1281.0,
1292.5,
1298.975,
1300.0,
1361.0,
1362.0,
1472.0,
1489.0,
1492.0,
1557.975,
1559.0,
1574.0,
1575.0,
1624.975,
1626.0,
1675.75,
1677.0,
1691.975,
1693.0,
1715.0,
1728.0,
1761.0,
1762.0,
1766.0
]
},
{
"video_id": "GX010058",
"texts": [
"Get a large pan with a lid.",
"That pan is too small and there's no lid. Let's use a larger pan that has a lid so that the chicken cooks evenly.",
"Good job!",
"Add three tablespoons of olive oil to the pan.",
"Add a little more oil to make it three tablespoons so that the chicken sears properly.",
"You can add one more tablespoon.",
"Good job!",
"Turn the heat to medium.",
"That's too hot. Set it to medium so that the outside doesn't burn before the inside cooks.",
"Good job!",
"Let the oil heat until it's shimmering, about 2 to maximum 3 minutes.",
"Wait until the oil shimmers then add the chicken to get a good sear.",
"Okay, the oil is hot enough.",
"Good job!",
"Add six chicken thighs to the pan in a single layer.",
"Lay them flat without overlapping. If they don't fit, cook in two batches.",
"Good job!",
"Now sear the chicken without moving it, for about 4 minutes. You can cover the pan with the lid.",
"It's too soon. You might want to wait it for another two minutes.",
"Good job!",
"Now flip the chicken and start searing the second side. Cover the chicken with the pan lid again after flipping.",
"Good job!",
"Sprinkle the spices and salt evenly. About one teaspoon of coriander powder, about one teaspoon of cumin powder and about one teaspoon of salt.",
"That's too much salt. You need to add about one teaspoon.",
"Wait. Now add one teaspoon of coriander powder and one teaspoon of cumin powder.",
"Add only one teaspoon of coriander powder. Also add about one teaspoon of cumin powder.",
"Good job!",
"Now add turmeric powder according to taste.",
"You should now add turmeric powder.",
"Good job!",
"Now give it a nice stir to mix the spices well and cover the lid.",
"Good job!",
"While the chicken is cooking, slice two shallots thinly.",
"You can throw away rotten shallots.",
"Slice the shallots thinly so that they cook softer quickly.",
"Good job!",
"Now get a yellow bell pepper. Dice into small bite-sized pieces.",
"Dice the yellow bell pepper into smaller, bite-sized pieces that cook more evenly.",
"Good job!",
"Lift the lid and add both shallots and bell pepper to the pan together.",
"Add both bell peppers and shallots to the pan at the same time.",
"Good job!",
"Give the chicken thighs, bell paper and shallot a nice stir and cover the lid.",
"Good job!",
"Now we need to cook the chicken thighs, bell paper and shallot until the veggies are soft and the chicken is cooked. At least 5 to 6 minutes.",
"They are not soft yet. Cover and cook for 4 to 5 more minutes.",
"Check now if the chicken and the veggies are cooked through.",
"It seems that the chicken is not cooked through yet. Let's wait for about 2 to 3 more minutes.",
"The chicken is not yet done.",
"Leave it cooking for 2 to 3 more minutes and keep checking for doneness.",
"Okay, the chicken looks cooked.",
"Good job!",
"Close the lid and turn off the heat.",
"Good job!"
],
"text_types": [
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"User-Comment",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Feedback",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Feedback",
"Feedback",
"User-Comment",
"Feedback",
"User-Comment",
"Success",
"Instruction",
"Success"
],
"text_timestamps": [
0.0,
6.0,
15.975,
17.0,
42.0,
60.0,
79.0,
80.0,
89.0,
95.0,
96.0,
134.0,
264.0,
266.0,
267.0,
282.0,
292.0,
293.0,
421.0,
550.75,
552.0,
607.975,
609.0,
644.0,
658.0,
683.0,
696.075,
697.075,
700.8,
723.975,
725.0,
784.975,
786.0,
844.24,
951.0,
1036.975,
1038.0,
1104.0,
1196.975,
1198.0,
1238.7,
1248.975,
1250.0,
1293.975,
1296.0,
1373.0,
1634.0,
1650.0,
1833.0,
1837.0,
1971.0,
1974.0,
1975.0,
1979.0
]
},
{
"video_id": "GX010059",
"texts": [
"Get a medium sized pan and add around three tablespoons of olive oil to the pan.",
"You are supposed to add only three tablespoons of olive oil. Do not add more than three tablespoons.",
"Good job!",
"Now turn on the heat to medium.",
"You are not supposed to turn the heat on to high. Turn it back to medium.",
"Good job!",
"Take two medium sized shallots and dice them into small pieces.",
"These shallots are too small. Maybe you would like to have three.",
"You are supposed to dice them into small pieces.",
"The shallot is rotten. You can throw it away.",
"Make sure to cut all of the shallots into small pieces.",
"Good job!",
"Now very carefully add the shallots to the hot oil.",
"You are supposed to add all of the shallots.",
"Good job!",
"Now take a spoon and keep stirring the shallots in the pan until they are soft to prevent burning. About 3 minutes.",
"Don't stop stirring the shallots. They might burn.",
"Don't stop stirring the shallots.",
"You need to keep stirring the shallots until they are soft and golden. They are almost done.",
"Good job!",
"Now take around one cup of tomato sauce and add it to the pan with the shallots.",
"Good job!",
"Now stir the tomato and the shallots in the pan together.",
"You are supposed to mix the tomatoes and the shallots together.",
"Good job!",
"Now keep the pan at medium heat for about one minute and let it simmer.",
"Good job!",
"Now you can turn off the heat.",
"Good job!",
"Now take a medium sized pot and fill it halfway with water.",
"You should add more water to the pot. Make it half full.",
"Good job!",
"Now put the pot on the stove and turn the heat on to medium.",
"You are supposed to use medium heat, not low.",
"Good job!",
"Now add about half tablespoon of salt to the water in the pot.",
"You should not add more salt.",
"Good job!",
"Now take around three cups of pasta and add it to the water in the pot.",
"You should add one more cup of pasta.",
"Good job!",
"Now stir the pasta in the pot.",
"Good job!",
"Now you can turn the heat to medium-high.",
"Good job!",
"Now wait until the water starts boiling, and then you can check if the pasta is done.",
"Be careful and turn down the heat so that the water does not spill.",
"You can take out one pasta and cut it to make sure it is done.",
"You can even taste it to make sure. It is almost done.",
"If the pasta is not done yet, you can cook the pasta for two to three more minutes.",
"The pasta is done.",
"Good job!",
"Now turn off the heat and drain the water from the pasta.",
"Make sure to drain out all of the water.",
"Good job!",
"Now put the pasta in the pan with the tomato sauce.",
"Good job!",
"Now turn the stove with the pasta back on to medium heat.",
"Good job!",
"Now mix the pasta and the tomato sauce together. Make sure they are thoroughly mixed.",
"Make sure that they are thoroughly mixed.",
"Good job!",
"Now take around 100 grams of mozzarella cheese and chop it up into very small pieces.",
"Make sure to chop it up into very small pieces.",
"Good job!",
"Now add the mozzarella cheese to the pasta mixture.",
"Make sure to add all the mozzarella cheese.",
"Good job!",
"Now stir the pasta and the mozzarella cheese together. Make sure that the cheese is mixed well.",
"Good job!",
"You can now turn off the heat. Your pasta is now done.",
"Good job!"
],
"text_types": [
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Feedback",
"Feedback",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Feedback",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Feedback",
"Feedback",
"Feedback",
"User-Comment",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Success"
],
"text_timestamps": [
1.0,
54.0,
65.0,
66.0,
81.0,
88.0,
91.0,
111.0,
189.0,
280.0,
443.0,
473.975,
475.0,
516.0,
523.975,
525.0,
593.0,
646.0,
686.0,
715.0,
716.0,
742.975,
744.0,
754.0,
779.975,
781.0,
845.975,
847.0,
852.0,
853.0,
884.0,
891.975,
893.1,
906.0,
910.0,
911.0,
963.0,
977.0,
978.0,
1046.0,
1053.975,
1055.0,
1076.975,
1078.0,
1084.0,
1085.0,
1778.0,
1953.0,
1971.0,
1984.0,
2079.0,
2080.0,
2081.0,
2108.0,
2128.75,
2130.0,
2139.0,
2140.0,
2147.0,
2148.0,
2185.0,
2201.0,
2202.0,
2230.0,
2284.0,
2285.0,
2295.0,
2303.0,
2304.0,
2341.0,
2342.0,
2349.0
]
},
{
"video_id": "GX010060",
"texts": [
"Get a large pan and add two tablespoons of olive oil.",
"Stop! You're supposed to add only two tablespoons of olive oil.",
"Good job!",
"Get a medium sized shallot.",
"This shallot is very small. Get one more shallot.",
"Good job!",
"Now cut the shallots into medium-sized slices.",
"The shallot pieces are too large. Make medium-sized pieces.",
"Good job!",
"Get 100 grams of fresh spinach and remove the stems. Rinse and chop it into small pieces.",
"You are supposed to rinse the spinach first.",
"First remove the thick stems and then chop it into thin slices.",
"You can chop the spinach smaller, they seem a bit uneven.",
"Good job!",
"Get about 250 grams of firm tofu and chop it into small cubes.",
"Pat the tofu dry and cut it into smaller cubes.",
"These sliced cubes are too big. You need to slice them into smaller cubes such that you can eat them easily.",
"Good job!",
"Now switch on the stove with the pan. Set the heat to medium.",
"You should turn on the heat to only medium to avoid burning the tofu.",
"Good job!",
"Now add sliced shallots to the pan and cook until they are soft and translucent for about three to five minutes. Grab a spatula and give it a little bit of a stir.",
"The pan is not hot yet.",
"Good job!",
"Now add the tofu and stir, give it a nice stir.",
"Add the tofu softly such that the oil doesn't splash.",
"Since your pan is big you can add all of the tofu in one batch.",
"Good job!",
"Now saut\u00e9 the tofu for two minutes, stirring consistently with a spatula.",
"Do not forget to saut\u00e9 the tofu with a spatula.",
"Good job!",
"Now add the chopped spinach to the pan. Spread it evenly in the pan.",
"You can stir it such that it spreads evenly.",
"Good job!",
"Now season. Add one teaspoon of coriander powder, one teaspoon of cumin powder and some salt per taste. You can also add some turmeric powder to this per taste.",
"That's too little. Make sure that you're adding enough spices to season the whole recipe well.",
"Good job!",
"Now stir everything together such that the spices are well mixed.",
"Good job!",
"Now cook until the spinach is fully wilted and tender and the tofu is heated through, about one to two minutes in total.",
"Good job!"
],
"text_types": [
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Feedback",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"User-Comment",
"Success",
"Instruction",
"Feedback",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Success"
],
"text_timestamps": [
1.0,
33.0,
42.0,
43.0,
67.0,
80.0,
81.0,
194.0,
265.0,
266.0,
291.0,
328.0,
376.0,
392.0,
393.0,
411.0,
443.0,
518.0,
519.0,
536.0,
545.0,
546.0,
669.0,
891.0,
892.0,
903.0,
921.0,
944.0,
945.0,
992.0,
1063.0,
1064.0,
1087.0,
1106.0,
1107.0,
1134.0,
1170.0,
1171.0,
1220.0,
1221.0,
1350.0
]
},
{
"video_id": "GX010062",
"texts": [
"Take a large pan and add four tablespoons of olive oil.",
"That's too little. Add more oil until the bottom is well coated. That is about four tablespoons.",
"Good job!",
"Switch on the stove with the pan, at high heat.",
"That's too low. Increase it to high so that the oil shimmers.",
"Good job!",
"Meanwhile, get the tofu, around 350 grams, and cut it into small even cubes.",
"These cubes are too small. They will fall apart. Please cut them into bigger even cubes about one to one point five centimeters.",
"Good job!",
"Let the oil heat until it's shimmering first. You can test it with one tofu cube. It should sizzle gently when you add it to the pan.",
"Wait. Check for the oil to be hot. Don't add the tofu before the oil is not hot. Check by adding one tofu cube.",
"You can add one tofu to test the temperature of the oil.",
"This looks good.",
"Good job!",
"Add the tofu gently to the pan. Let is cook for about 2 minutes, gently stirring to prevent burning. Then turn the heat to medium and cover the pan with a lid.",
"Add the tofu gently to avoid splashing the oil.",
"Gently turn with a spatula without over-stirring.",
"Good job!",
"Grab a green bell pepper, wash it and chop the bell pepper into small pieces.",
"You might want to wash the bell pepper before chopping.",
"Oh, these pieces are huge. Try to cut them into small pieces.",
"Good job!",
"Check on the tofu and stir it once more. Make sure it doesn't stick to the bottom.",
"You can turn the heat to low. Your oil is splashing.",
"Good job!",
"Now, grab two small shallots and cut it also into small pieces.",
"These pieces are huge. Cut them into smaller pieces.",
"Good job!",
"Add the cut shallot and the cut bell pepper to the pan.",
"Good job!",
"Push the tofu to one side and then push the chopped vegetables into open space.",
"Good job!",
"Let it cook uncovered until the bell pepper is soft. Stir occasionally. Cook for about three minutes.",
"Cook it uncovered. Stirring occasionally until the peppers are bright and just tender, about three minutes.",
"You need to stir it only occasionally.",
"Good job!",
"Now add five teaspoons of soy sauce to the tofu and veggies in the pan. Spread the soya sauce evenly through out the pan.",
"You need to add soy sauce evenly throughout the pan.",
"Good job!",
"Stir to mix the soya sauce together with the tofu and veggies.",
"Good job!",
"Now add one tablespoon of ketchup and salt if required after tasting.",
"Add salt only after tasting.",
"Do not add more salt without tasting.",
"Good job!",
"Mix everything well and let it cook for another three and half minutes.",
"Good job!",
"Turn off the heat and cover the pan with a lid.",
"Good job!"
],
"text_types": [
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Feedback",
"User-Comment",
"Success",
"Instruction",
"Feedback",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Success"
],
"text_timestamps": [
1.0,
39.0,
69.0,
70.0,
78.0,
90.0,
91.0,
118.0,
173.0,
174.0,
188.0,
225.0,
230.5,
232.501,
233.6,
248.0,
276.5,
360.0,
361.0,
370.5,
425.0,
500.0,
501.0,
511.0,
530.0,
531.0,
630.0,
672.0,
673.0,
703.0,
704.0,
724.0,
725.0,
748.0,
771.0,
911.0,
912.0,
961.0,
990.0,
991.0,
1010.0,
1011.0,
1050.0,
1101.0,
1108.0,
1109.0,
1256.0,
1257.0,
1263.0
]
},
{
"video_id": "GX010063",
"texts": [
"Put two slices of bread into the toaster and toast them until crisp. Usually two to three minutes.",
"Make sure that the toast is golden and crispy.",
"You might want to check on the toast.",
"Good job!",
"Now grab one ripe banana and peel it into thin coins, about 1/4 inch thick.",
"Make sure to grab a ripe banana.",
"Make sure that the chunks are a 1/4-inch thick. Those look too thick.",
"Good job!",
"Now put the banana slices into a microwave-safe bowl.",
"Make sure to take a microwave-safe bowl.",
"Good job!",
"Now add two tablespoons of honey over the cut banana slices in the bowl.",
"You should use a tablespoon.",
"Good job!",
"Now you can add one teaspoon of butter or oil to the mixture.",
"Where's the butter?",
"If you don't have butter, you can add oil instead.",
"Good job!",
"Now you can stir the banana mixture together.",
"You should stir the banana mixture to mix them properly.",
"Should the coins stay coins or should they be smashed?",
"The coins can stay as coins.",
"Good job!",
"Now microwave the banana mixture for about 30 seconds.",
"Good job!",
"Now take the banana mixture and mash it into a thick paste.",
"The banana pieces do not seem cooked enough. You you might want to microwave them again for 30 seconds.",
"Make sure to microwave only for an additional 30 seconds, otherwise they will be too mushy.",
"Now try to mash the bananas into a thick paste.",
"Good job!",
"Now you can spread the banana mixture on top of the toast. You can add as much as you like.",
"Good job!",
"Now add one tablespoon of peanut butter to each slice.",
"Can I rinse the thing first?",
"Sure.",
"Make sure to add one tablespoon on each slice.",
"One tablespoon on each slice?",
"Yes.",
"Good job!"
],
"text_types": [
"Instruction",
"Feedback",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"User-Question",
"Feedback",
"Success",
"Instruction",
"Feedback",
"User-Question",
"Instruction-Clarification",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Feedback",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"User-Question",
"Instruction-Clarification",
"Feedback",
"User-Question",
"Instruction-Clarification",
"Success"
],
"text_timestamps": [
12.0,
73.0,
162.0,
201.0,
204.0,
215.0,
255.0,
283.0,
284.0,
295.0,
316.0,
317.0,
340.0,
377.0,
378.0,
393.0,
404.0,
464.975,
467.0,
475.0,
484.0,
488.0,
490.0,
491.0,
549.0,
551.0,
572.0,
596.0,
627.0,
671.0,
672.0,
731.0,
732.0,
744.0,
747.024,
759.0,
796.0,
800.024,
846.0
]
},
{
"video_id": "GX010064",
"texts": [
"Get two pieces of bread and put them in the pop-up toaster and toast until it's golden brown for about one to two minutes.",
"You should turn on the toaster.",
"You might want to check on your toast so that it doesn't burn.",
"Make sure the toasts are golden brown.",
"Good job!",
"Now take one ripe banana and make around 1/4 inch thick coins out of it.",
"You don't need to cut it into such small slices. You can make about 1/4 inch thick coins.",
"Make sure to slice the full banana.",
"Good job!",
"Now put the banana slices in a microwave-safe cup mug.",
"Can I use this?",
"Yes",
"Good job!",
"Now add two tablespoons of honey to the mixture.",
"Make sure to add two tablespoons of honey, not chocolate.",
"Make sure to add two tablespoons of honey.",
"Good job!",
"Now microwave the mixture for about 30 to 60 seconds until the bananas are soft. Check after 30 seconds.",
"Make sure that the banana slices are are soft.",
"Not really.",
"Good job!",
"Now use the fork to smash the banana slices into a thick smooth paste.",
"Make sure that the banana is smashed into a smooth paste and has a consistent texture.",
"Good job!",
"Now spread one tablespoon of peanut butter on each slice of toast.",
"On the toast?",
"Yes, on each slice of toast.",
"Good job!",
"Now add the banana mixture evenly to each bread slice. You can decide the amount according to your taste.",
"Make sure to put the banana mixture evenly on both bread slices.",
"And now spread it?",
"Yes, you can spread the banana mixture evenly on each bread slice.",
"Good job!"
],
"text_types": [
"Instruction",
"Feedback",
"Feedback",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Feedback",
"Success",
"Instruction",
"User-Question",
"Instruction-Clarification",
"Success",
"Instruction",
"Feedback",
"Feedback",
"Success",
"Instruction",
"Feedback",
"User-Comment",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"User-Question",
"Instruction-Clarification",
"Success",
"Instruction",
"Feedback",
"User-Question",
"Instruction-Clarification",
"Success"
],
"text_timestamps": [
4.36,
23.56,
128.24,
140.08,
180.0,
181.0,
211.88,
229.36,
243.0,
247.0,
250.64,
253.824,
274.495,
275.52,
290.44,
324.28,
364.255,
365.28,
430.0,
438.12,
491.0,
492.0,
518.12,
554.0,
555.0,
587.12,
589.784,
627.455,
628.48,
647.08,
663.8,
665.48,
686.0
]
},
{
"video_id": "GX010065",
"texts": [
"Grab two slices of bread and put them in the toaster until they are golden and crispy, about two minutes.",
"Make sure that the toast is golden and crispy.",
"Can you check the toast. Make sure that the toast is not burnt.",
"You can toast for longer.",
"Good job!",
"Now get a microwave safe mug or bowl for the egg.",
"Good job!",
"Now, crack one eggs into the mug.",
"Great job.",
"Now, add a pinch of salt to the egg in the mug.",
"Do not add any more eggs.",
"You should add a pinch of salt to the egg.",
"You should add only a pinch, not a tablespoon.",
"Great job.",
"Now whisk the egg mixture until it is fully blended.",
"Make sure that the egg is fully blended.",
"Great job.",
"Now put the egg in the microwave and cook for around 30 seconds.",
"Great job.",
"You can take out the egg and cut it into two equal parts. Then put one part of the egg on each slice.",
"Great job.",
"Now add one tablespoon of grated cheese on top of each slice.",
"Make sure to add one tablespoon of grated cheese to each slice. Not one teaspoon.",
"Great job.",
"Now microwave the two toasts for 15 seconds so that the cheese is slightly melted.",
"Make sure to microwave for only 15 seconds.",
"Great job."
],
"text_types": [
"Instruction",
"Feedback",
"Feedback",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Feedback",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success"
],
"text_timestamps": [
4.0,
70.0,
127.0,
131.5,
162.0,
163.0,
171.0,
172.0,
204.0,
205.0,
208.0,
214.0,
225.0,
236.0,
237.0,
251.0,
273.0,
274.5,
335.0,
336.0,
367.0,
368.0,
401.0,
415.0,
416.0,
452.0,
468.0
]
},
{
"video_id": "GX010066",
"texts": [
"Take two pieces of toast and put them in the toaster. Toast for about three minutes until they are golden brown.",
"You should toast two pieces of bread.",
"Make sure that the toasts are golden and crispy. That should take about three minutes.",
"You might want to toast them for longer, until golden brown.",
"Good job.",
"Now take a microwave-safe mug and crack two eggs into the mug.",
"You should crack two eggs into the mug.",
"Good job.",
"Now add a pinch of salt to the mixture.",
"You should add only a single pinch, not a teaspoon of salt.",
"Good job.",
"Now add two tablespoons of grated cheese into the mixture.",
"You should add two tablespoons.",
"Good job.",
"Now stir the mixture until the egg is evenly blended.",
"Make sure that the egg mixture is evenly blended.",
"Good job.",
"Now microwave the mixture for about 45 seconds, until it is set.",
"The egg mixture doesn't seem to be fully set. You can microwave for 15 more seconds.",
"Good job.",
"Now remove the egg mixture and cut it into two pieces and add one half of it on each toast.",
"Good job.",
"Now you can add one tablespoon of grated cheese on top of each toast.",
"Only one tablespoon of grated cheese per slice is necessary.",
"Good job.",
"Now microwave for around 15 seconds until the cheese is slightly melted.",
"You need to microwave for longer for the cheese to be slightly melted. Microwave for about 10 more seconds.",
"Good job."
],
"text_types": [
"Instruction",
"Feedback",
"Feedback",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success"
],
"text_timestamps": [
1.0,
13.0,
59.0,
131.0,
191.0,
192.0,
214.0,
226.0,
227.0,
235.0,
241.0,
242.0,
262.0,
275.0,
276.0,
290.0,
303.0,
304.0,
378.0,
406.0,
407.0,
435.0,
436.0,
464.0,
469.0,
470.0,
495.0,
513.0
]
},
{
"video_id": "GX010068",
"texts": [
"First grab a microwave-safe mug or bowl that is at least 6 ounces.",
"You need something bigger. You can use the one next to you.",
"Great job.",
"Now add 4 tablespoons of flour to the mug.",
"You need to add only 4 tablespoons, not 5.",
"Great job.",
"Now add 2 teaspoons of sugar.",
"You need to add only 2 teaspoons, not 3.",
"Great job.",
"Now add 2 tablespoons of cocoa powder.",
"Make sure to add 2 tablespoons.",
"Great job.",
"Now add a pinch of salt.",
"Great job.",
"Now stir and mix the solid ingredients together well.",
"Make sure that the mixture is well blended together.",
"Great job.",
"Now add 3 tablespoons of milk to the mixture.",
"Make sure to add 3 tablespoons.",
"Great job.",
"Now add 2 teaspoons of oil.",
"You should add 2 teaspoons of oil, not tablespoons.",
"Great job.",
"Now mix the ingredients in the bowl together.",
"Great job.",
"Now add one egg to this mixture.",
"Great job.",
"Now stir the mixture together until well blended.",
"You need to stir them together more until well blended.",
"Great job.",
"Now you add one tablespoon of water.",
"Great job.",
"Now you can stir the mixture together vigorously until smooth, for about one minute.",
"You need to stir it vigorously until it is very well blended.",
"You need to stir longer and more vigorously, for at least one minute.",
"Great job.",
"Now you can add one teaspoon of peanut butter to the mixture.",
"You should use the teaspoon instead.",
"Great job.",
"Now fold the peanut into the mixture by gently stirring.",
"Great job.",
"Now microwave the mixture for about one minute.",
"Great job."
],
"text_types": [
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Success"
],
"text_timestamps": [
1.0,
10.2,
15.0,
16.0,
70.0,
76.0,
77.0,
128.1,
131.5,
132.5,
159.0,
170.0,
171.2,
197.0,
198.0,
216.1,
232.0,
233.0,
260.0,
264.0,
266.0,
281.4,
296.0,
297.4,
311.0,
312.1,
328.0,
329.2,
346.4,
380.0,
381.2,
398.0,
399.0,
418.2,
442.2,
458.0,
459.0,
469.2,
488.0,
489.0,
502.4,
503.4,
605.0
]
},
{
"video_id": "GX010070",
"texts": [
"Let's start with the marinade. In a large bowl add about half cup of plain yogurt.",
"Do not add milk, add only yogurt.",
"Good job!",
"Now get a two cloves from a medium sized garlic.",
"Good job!",
"Now chop the garlic into very fine small pieces.",
"You need to make it more fine. And you need two cloves. So far you have done only one.",
"This looks better. You need to chop one more clove.",
"Good job!",
"Now add the yogurt in the measuring cup and the chopped garlic cloves to the large bowl.",
"Good job!",
"Now add some spices. Grab the turmeric and add one teaspoon of turmeric to the mixing bowl.",
"Good job!",
"Now add coriander powder, add one teaspoon to the mixing bowl.",
"Good job!",
"Add salt according to your taste, to the mixing bowl.",
"Good job!",
"Now mix all the ingredients in the mixing bowl together.",
"Good job!",
"Now add wash and add six pieces of chicken thighs to the marinade in the mixing bowl.",
"Please make sure that you wash the chicken first.",
"You need to add six pieces of chicken. It seems you have added only four.",
"Good job!",
"Now mix the chicken with the marinade in the mixing bowl. Make sure to coat the surface of the chicken.",
"You need to mix the marinade and chicken thoroughly such that it coats the surface of the chicken.",
"Good job!",
"Let the chicken rest. Grab a medium sized red onion and chop it into thin slices.",
"You seem to have grabbed a very big onion. You need to use only quarter.",
"Your pieces are also huge. You need to dice them into very fine pieces.",
"Good job!",
"Now turn on the stove and set the heat to medium-high.",
"You have set the heat only to medium. Set it to medium-high.",
"Good job!",
"Now add two tablespoons of cooking oil to the pan and spread it evenly on the pan.",
"You need to add two tablespoons to make sure that it evenly coats the pan.",
"Good job!",
"Now add the chopped onion to the pan.",
"You need to add all of the chopped onions to the pan.",
"Good job!",
"Now saut\u00e9 the onion in the pan for about one minute. Keep stirring.",
"You need to saut\u00e9 it and stir it with a spatula.",
"Good job!",
"Add the six chicken pieces and the marinade in the mixing bowl to the pan.",
"You can add the chicken to the pan now.",
"Good job!",
"While the chicken is cooking, cover it with the lid.",
"Now you need to cover the pan with the chicken with a lid.",
"Good job!",
"Now grab two large tomatoes and wash them.",
"Good job!",
"Dice the tomatoes into small cubes.",
"These pieces are huge. You need to cut them into smaller cubes.",
"These pieces are too small. You can keep them slightly bigger.",
"Good job!",
"Now check on your chicken and give it a nice stir.",
"Stir it gently so as not to splash the contents outside.",
"Good job!",
"Add the tomatoes to the pan and turn the heat to medium.",
"Good job!",
"Now cover the pan with the lid and let the chicken cook. Keep on stirring the ingredients occasionally.",
"Occasionally stir the ingredients so that they don't stick to the bottom of the pan.",
"You should keep stirring the contents occasionally.",
"Good job!"
],
"text_types": [
"Instruction",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Success",
"Instruction",
"Success",
"Instruction",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Feedback",
"Success"
],
"text_timestamps": [
0.0,
57.3,
74.0,
75.0,
108.0,
109.0,
145.5,
160.5,
193.75,
194.8,
219.775,
220.8,
263.275,
264.3,
281.475,
282.5,
317.475,
318.5,
332.475,
333.5,
347.0,
405.0,
423.475,
424.5,
436.0,
473.475,
474.5,
485.2,
554.2,
639.475,
640.5,
648.8,
654.0,
655.0,
687.3,
713.0,
714.0,
728.5,
744.0,
745.0,
753.2,
821.0,
822.0,
836.3,
879.475,
880.5,
893.5,
900.0,
901.8,
940.0,
941.0,
956.0,
965.0,
1049.475,
1050.5,
1098.2,
1114.475,
1115.5,
1168.175,
1169.2,
1217.5,
1377.5,
1421.5
]
},
{
"video_id": "GX010072",
"texts": [
"Get a large pan and put it on the stove.",
"Good job!",
"Now add one tablespoon of oil to the pan.",
"You should not turn on the stove now. You should first add one tablespoon of oil.",
"Great job.",
"Now turn on the stove to medium heat.",
"Great job.",
"Now, while the pan is heating up, get one chicken breast and wash it.",
"Great job.",
"Now, cut the chicken breast into small pieces that cook easily.",
"You need to make the chunks sizes smaller so that they cook easily.",
"Great job.",
"Now put the chopped chicken chunks into the pan.",
"Great job.",
"Now season with salt and pepper. You can add salt and pepper according to your taste.",
"You should add pepper too.",
"Great job.",
"Now cook the chicken for about six to seven minutes. You should stir occasionally to prevent the chicken from burning.",
"Make sure to keep stirring the chicken so that it is evenly cooked.",
"Don't forget to keep stirring the chicken.",
"Great job.",
"Now you can set the heat to low.",
"Great job.",
"Now get another medium sized pan.",
"Great job.",
"Now add two tablespoons of oil to the pan.",
"Great job.",
"Now break two eggs into the pan.",
"Don't forget to break two eggs into the pan.",
"Great job.",
"Now turn on the heat to medium on pan with the eggs.",
"Great job.",
"Now wait about two minutes until the oil heats up. You can turn up the heat if it is taking too long.",
"Great job.",
"Now start scrambling the eggs until they are semi-soft, about three to four minutes.",
"Make sure to keep stirring the eggs so that they are not burned and you get a good scramble.",
"You should keep stirring the eggs so that you get a good scramble.",
"Great job.",
"Now put the semi-soft scrambled eggs into the pan with the chicken.",
"Great job.",
"Now you can turn off the heat of the empty pan.",
"Great job.",
"Now add two cups of cooked rice into the pan with the chicken.",
"You should add two cups of cooked rice.",
"Great job.",
"Now set the heat to medium and stir all the ingredients in the pan until they're well mixed.",
"Great job.",
"Now add one teaspoon of garlic paste to the mixture.",
"Make sure you're adding one teaspoon, not a tablespoon.",
"Great job.",
"Now stir the garlic paste together with the other ingredients in the pan until they're well mixed.",
"Great job.",
"Now add three tablespoons of soy sauce to the mixture.",
"You should add only three tablespoons, not four.",
"Great job.",
"Now stir the ingredients in the pan until they are well mixed with the soya sauce.",
"Great job."
],
"text_types": [
"Instruction",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Success"
],
"text_timestamps": [
0.0,
10.0,
11.0,
21.0,
42.0,
43.0,
53.0,
54.0,
101.0,
102.0,
104.0,
211.0,
212.0,
226.0,
227.0,
246.0,
263.0,
264.0,
341.0,
506.0,
710.975,
713.0,
723.0,
724.0,
737.0,
738.0,
766.0,
767.0,
803.0,
809.0,
810.0,
825.0,
826.0,
1009.0,
1010.0,
1043.0,
1182.0,
1219.0,
1220.0,
1243.0,
1244.0,
1252.0,
1253.0,
1292.0,
1315.0,
1319.0,
1362.0,
1363.0,
1374.0,
1386.0,
1387.0,
1411.0,
1413.0,
1444.0,
1450.0,
1451.0,
1485.0
]
},
{
"video_id": "GX010073",
"texts": [
"First get a large pot and fill it halfway with water.",
"Don't put too much water. Make it half full.",
"Good job.",
"Now turn on the heat to high.",
"Good job.",
"Now get two cups of pasta and add it to the pot on the stove.",
"You should put at least two cups of pasta.",
"Good job.",
"Now add one tablespoon of salt.",
"You should add one tablespoon. This is too little salt.",
"Good job.",
"Now stir the pasta so that the salt is well mixed.",
"You should stir the pasta.",
"Good job.",
"Now we have to wait for the pasta to be done. Meanwhile, while the pasta cooks, get another medium-sized pan and put it on the stove.",
"Good job.",
"Now add two tablespoons of butter to the empty pan on the stove.",
"Make sure that you have added enough butter. You should add two tablespoons.",
"Good job.",
"Now add one tablespoon of olive oil to the pan.",
"Good job.",
"Now get about 200 grams of mushroom and wash them.",
"You should wash the mushrooms.",
"Good job.",
"Now cut the mushroom into small pieces.",
"Those pieces are too large. You need to chop into very fine pieces.",
"Good job.",
"Now add the mushrooms to the pan.",
"You should add all of the mushroom to the pan.",
"Good job.",
"Now turn on the heat of the pan with the mushrooms to medium.",
"Make sure that you have used medium heat.",
"Good job.",
"Now stir the mushroom and the butter together.",
"Good job.",
"Now just let them cook without stirring for about two minutes.",
"Good job.",
"Now stir the butter and the mushroom mixture thoroughly.",
"Good job.",
"Now let the mushrooms cook without stirring for about one and half minutes.",
"Good job.",
"Now stir the mushroom mixture thoroughly.",
"Good job.",
"Now add about one teaspoon of garlic paste to the mushrooms in the pen.",
"Make sure to add one teaspoon, not one tablespoon.",
"Good job.",
"Now add about one teaspoon of oregano seasoning.",
"Make sure to add the full teaspoon.",
"Good job.",
"Now turn the heat down to medium-low and mix the ingredients together well.",
"Good job.",
"Now let it cook in low heat for about two minutes. Then give it a stir and turn off the heat.",
"Good job.",
"Now we should check if the pasta is cooked. You can take one pasta out and cut it to check if the pasta is done.",
"Good job.",
"Now drain the pasta water and but set aside one cup of the pasta water.",
"Make sure that the pasta water is completely drained.",
"Good job.",
"Now add the pasta into the pan with the mushrooms.",
"Good job.",
"Now add the one cup of the remaining pasta water to the pasta.",
"You should add all of the pasta water.",
"Good job.",
"Now turn the heat of the stove with the mushrooms back on to medium.",
"Good job.",
"Now give mushroom pasta a nice stir so that the pasta and the mushrooms are well integrated.",
"Good job.",
"Now add about five tablespoons of grated parmesan cheese.",
"You should add five tablespoons of grated parmesan.",
"Good job.",
"Now cook for about two minutes while stirring the ingredients continuously.",
"Make sure to stir the pasta continuously for about two minutes.",
"You should keep on stirring continuously for about two minutes.",
"Good job.",
"Now you can turn off the heat.",
"Good job."
],
"text_types": [
"Instruction",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Success",
"Instruction",
"Success",
"Instruction",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Feedback",
"Success",
"Instruction",
"Success"
],
"text_timestamps": [
2.0,
39.0,
43.0,
44.0,
53.0,
54.0,
81.0,
99.0,
100.0,
112.0,
123.0,
125.0,
134.0,
147.0,
148.0,
171.0,
172.0,
205.0,
232.0,
233.0,
251.0,
252.0,
297.0,
330.0,
331.0,
341.0,
479.0,
480.0,
506.0,
515.0,
516.0,
525.0,
531.0,
532.0,
556.0,
557.0,
679.0,
680.0,
709.0,
710.0,
863.0,
864.0,
879.0,
880.0,
899.0,
914.0,
915.0,
947.0,
955.0,
956.0,
991.0,
992.0,
1119.0,
1120.0,
1159.0,
1160.0,
1199.0,
1236.0,
1237.0,
1250.0,
1251.0,
1267.0,
1272.0,
1273.0,
1278.0,
1279.0,
1298.0,
1299.0,
1366.0,
1383.0,
1384.0,
1416.0,
1475.0,
1529.0,
1530.0,
1543.0
]
},
{
"video_id": "GX010074",
"texts": [
"First, we will make the sauce. Get small bowl and add three tablespoons of soy sauce to it.",
"This is half tablespoon.",
"You are supposed to add only three tablespoons. That is six half tablespoons.",
"Good job!",
"Now add one teaspoon of honey to the mixture. If you don't have honey, you can add sugar, one teaspoon of sugar.",
"Good job!",
"Now get one lime and add one teaspoon of lime juice to the sauce.",
"Good job!",
"Now you should stir the mixture vigorously.",
"Make sure to stir the mixture very well.",
"Good job!",
"Now get one medium sized pot and fill it halfway with water.",
"Good job!",
"Now put the pot with water in the stove and set the heat to medium.",
"Do not use high heat. You should use medium heat.",
"Good job!",
"Now take about 300 grams of udon noodles and add it to the pot of water.",
"Good job!",
"Now we will make the chicken. Take one medium sized chicken breast and cut it into small bite sized pieces.",
"Those pieces are still too large. You should cut it into small bite-sized pieces.",
"Good job!",
"Now get a medium sized pan with a lid and set it on the stove and set the heat to medium-high.",
"You should set the heat to medium-high.",
"Don't forget to set the heat to medium-high.",
"Good job!",
"Now add about four tablespoons of any type of oil that you like.",
"You should add four tablespoons of oil, not three.",
"Good job!",
"Now you can add the cut chicken breast pieces to the pan.",
"Good job!",
"Now add a pinch of salt to the pan.",
"That is too much salt. You should add only a pinch.",
"Good job!",
"Now stir the chicken in the pan so that the chicken is evenly distributed.",
"Good job!",
"Now we will prepare the vegetables. For this you will need to have one carrot. Get one medium sized carrot, wash it and slice it into very small pieces.",
"Don't forget to wash the carrot.",
"You should make the pieces much smaller than this.",
"Good job!",
"Now add the carrots to the pan with the chicken and give everything a nice stir.",
"Don't forget to stir the carrots and the chicken.",
"Good job!",
"Now cover the pan with the lid.",
"Good job!",
"Now get a medium sized onion and cut it into very small pieces.",
"Good job!",
"Now add the onion to the pan and give everything a nice stir.",
"Good job!",
"Now cover the pan with the lid.",
"Good job!",
"Now get a fork and mix the noodles in the pot. So that the noodles are well separated and cook easily.",
"Good job!",
"Now take the lid off the pan with the carrots and the chicken and set the heat to medium low.",
"Good job!",
"Now stir the chicken and veggies together well and keep on stirring for the next two so that it does not burn. Put the lid back on the pan at the end.",
"Hey, you should be stirring the mixture. Please stir the mixture continuously for the next two to three minutes.",
"Don't stop stirring the mixture. You should keep on stirring the mixture continuously.",
"Good job!",
"Now let's wait for the water in the pot with the noodles to boil, about three minutes. You can occasionally stir the noodles so that they don't stick and they are evenly cooked.",
"You should stir the noodles occasionally so that it does not stick to the bottom of the pan.",
"Good job!",
"Now take out one noodle and break it apart to check if it is cooked or not. If you're not sure you can taste it to check.",
"Good job!",
"Now drain the water completely from the noodles.",
"Good job!",
"Now add the noodles to the pan with the chicken and the veggies.",
"Good job!",
"Now stir the noodles and the chicken together, so that they are well mixed.",
"Make sure that the noodles and the chicken are well mixed together.",
"Good job!",
"Now add the soy sauce mixture that we created to the noodles. Make sure to add it evenly around the pan.",
"Good job!",
"Now stir the noodles and the sauce together, until well integrated.",
"Good job!",
"Now squirt ketchup into the mixture. You can add as much as you want.",
"You should be adding ketchup, not oil.",
"Good job!",
"Now give the noodle a nice stir so that the ketchup is well integrated.",
"Good job!"
],
"text_types": [
"Instruction",
"User-Comment",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Success",
"Instruction",
"Success",
"Instruction",
"Success",
"Instruction",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Success"
],
"text_timestamps": [
1.0,
28.5,
82.4,
92.0,
93.0,
137.0,
138.0,
195.0,
196.0,
204.0,
209.0,
210.0,
249.0,
250.0,
268.0,
272.0,
273.0,
297.0,
298.0,
350.0,
397.5,
398.5,
426.4,
448.4,
452.5,
453.5,
493.0,
503.5,
504.5,
525.5,
526.5,
535.5,
541.5,
542.5,
582.5,
583.5,
618.5,
700.4,
794.5,
795.5,
806.4,
834.0,
835.0,
841.5,
842.5,
1016.5,
1017.5,
1070.5,
1071.5,
1076.5,
1077.5,
1164.5,
1165.5,
1184.5,
1185.5,
1201.4,
1252.4,
1317.5,
1318.5,
1411.4,
1534.5,
1535.5,
1580.5,
1581.5,
1631.5,
1632.5,
1643.5,
1644.5,
1663.4,
1714.5,
1715.5,
1744.0,
1745.0,
1779.5,
1780.5,
1789.0,
1804.5,
1805.5,
1834.0
]
},
{
"video_id": "GX010075",
"texts": [
"Get a pack of instant noodles and put it in a microwave safe bowl.",
"Good job!",
"Now let's boil some water in the kettle. Get about 250 ml of water.",
"Make sure you have 250 milliliters water.",
"Good job!",
"Now boil the water in the kettle.",
"Make sure that the water is boiling.",
"Good job!",
"Now fill the microwave safe mug with the noodles halfway with water.",
"Good job!",
"Now while we wait for the noodles to soften, we will make the sauce. For the sauce, let's get a small bowl or mug. We can add one tablespoon of peanut butter.",
"Make sure to add one tablespoon of peanut butter not a teaspoon.",
"Good job!",
"Now let's add one tablespoon of soy sauce.",
"Make sure to add only one tablespoon.",
"Good job!",
"Now let's add chili sauce to the mixture. You can add as much as you would like according to your taste.",
"Good job!",
"Now before we finish the sauce, let's soften the noodles by trying to stirring the noodles in the hot water.",
"Good job!",
"Now let's add two tablespoons of noodle water to the sauce.",
"Make sure to add only two tablespoons. Let's not add too much water.",
"Good job!",
"Now let's mix the peanut butter and soya based sauce for the noodles together. Stir well with a fork.",
"Good job!",
"Let's make sure that the noodles are now soft. You can use a fork to check.",
"Yeah.",
"Good job!",
"Now drain the water completely from the noodles.",
"Make sure to drain the water completely. Otherwise your noodles will be too watery.",
"Good job!",
"Now let's add the peanut butter and soya sauce that we prepared into the noodles and mix it thoroughly.",
"You should mix the sauce and the noodles thoroughly.",
"Good job!",
"Now take a small slice of white onion, chop it finely into small pieces, and let's add it to the noodles. You can add as much onion as you want.",
"Make sure that you're chopping it into very small pieces so that it is well integrated with the noodles.",
"Good job!",
"Now mix the onion pieces and the noodles thoroughly.",
"Good job!"
],
"text_types": [
"Instruction",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"User-Comment",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Success"
],
"text_timestamps": [
3.0,
11.0,
12.0,
31.0,
39.0,
40.0,
176.0,
248.0,
249.0,
266.9,
268.0,
298.0,
323.0,
324.0,
356.0,
363.0,
364.0,
399.0,
400.0,
423.0,
424.0,
456.0,
462.0,
463.0,
502.0,
503.0,
512.0,
516.0,
517.0,
531.0,
543.0,
544.0,
569.0,
590.0,
591.0,
641.0,
687.0,
688.0,
708.0
]
},
{
"video_id": "GX010076",
"texts": [
"Get a microwave-safe bowl and put one packet of instant noodles in it.",
"Good job!",
"Now let's get about 250 milliliters of water and boil it. You can use an electric kettle if you have one.",
"Make sure not to add way too much water, otherwise it will take too long to boil.",
"Good job!",
"Now add the hot water to the bowl with the instant noodles. Fill the bowl halfway with water.",
"You should add hot water not tap water.",
"Be careful not to add too much water.",
"Good job!",
"Now while the noodles soften, let us make the sauce. Let's get a mug or a bowl and let's add two tablespoons of soy sauce to it.",
"You should first add soy sauce. That is not soy sauce.",
"You have added only one tablespoon of soya sauce. You should add two tablespoons of soy sauce.",
"Good job!",
"Now add one tablespoon of peanut butter to the soy sauce.",
"Make sure to add one tablespoon of peanut butter.",
"Good job!",
"Now let's add as much chili sauce as you would like to this sauce.",
"You should not add the chili sauce to the noodles directly. You should add it to the sauce.",
"Good job!",
"Now let's stir the noodles in hot water so that the noodles are softened.",
"Good job!",
"Now add two tablespoons of the noodle water to the soya sauce mixture you are preparing.",
"Make sure you are adding hot noodle water to your sauce and not cold tap water.",
"You are supposed to add only two tablespoons of hot noodle water, not three.",
"Good job!",
"Now stir the soya sauce mixture so that everything is well mixed into a uniform consistency.",
"Make sure that the sauce is well mixed together.",
"Good job!",
"Now get a thin slice of white onion and cut it into very small pieces.",
"That is way too much onion. You want to add only a thin slice and cut it into very small pieces.",
"Good job!",
"Now let's add the cut onion pieces to the soya based sauce that you just made.",
"You should add the onions to the sauce and not the noodles directly.",
"Good job!",
"Now let's mix the onion with the sauce. You can stir it gently.",
"Good job!",
"Now, let's drain the water from the noodles.",
"You are supposed to drain the water into the sink and not mix it with the noodles.",
"Make sure that the noodles are completely drained.",
"Good job!",
"Now let's add the soya based sauce that you prepared to the noodles.",
"Good job!",
"Now let's stir and mix the noodles and the sauce together until they are very well coated using a fork.",
"You should be using a fork to mix the noodles.",
"Make sure that the noodles are well coated.",
"Great job!"
],
"text_types": [
"Instruction",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Feedback",
"Success"
],
"text_timestamps": [
1.0,
10.0,
11.0,
31.0,
255.0,
256.0,
268.0,
282.0,
286.0,
287.0,
301.0,
340.0,
355.0,
356.0,
366.0,
392.0,
393.0,
413.0,
427.0,
428.0,
449.0,
450.0,
469.0,
485.0,
492.0,
493.0,
511.0,
537.0,
538.0,
560.0,
592.0,
593.0,
605.0,
616.0,
617.0,
627.0,
628.0,
646.0,
668.0,
681.0,
682.0,
700.0,
701.0,
710.0,
733.0,
747.0
]
},
{
"video_id": "GX010077",
"texts": [
"First get a cutting board and knife, one half medium onion, and one small tomato.",
"Good job!",
"Now let's chop the tomato. Make the pieces small.",
"Make sure to make the pieces very small and bite-sized.",
"Make sure to chop the full tomato into small pieces.",
"Good job!",
"Now let's chop the half slice of white onion into very small pieces.",
"Make sure to make very small pieces.",
"Good job!",
"Now let's add the cut tomato and onion into a small microwave-safe bowl.",
"Make sure to add all of the tomato and onion to the microwave-safe bowl.",
"Good job!",
"Now let's add chili flakes to the cut tomato and onion. You can add as per your taste.",
"You should add chili flakes to the cut tomato and onion.",
"Good job!",
"Now mix the vegetables and the chili flakes well together with a spoon.",
"Make sure that the vegetables and the chili flakes are well mixed together.",
"Good job!",
"Now let's get two slices of bread and put it on the chopping board.",
"Good job!",
"Now let's add butter to both slices of bread. Spread the butter thinly.",
"Make sure to add butter to both slices of toast.",
"Good job!",
"Now let's add two tablespoons of the chopped tomato mixture to each slice of bread.",
"You're supposed to add two tablespoons per slice. You can add one more tablespoon to each slice of bread.",
"Good job!",
"Now let's put the bread slices topped with the tomatoes on a microwave-safe plate and microwave for one minute.",
"You're supposed to microwave for one minute.",
"Make sure to microwave for one minute.",
"Make sure you've microwaved for one minute in total.",
"Good job!",
"Add some shredded cheese on top of each toast. You can add as per taste.",
"You are supposed to add shredded cheese on each toast.",
"Good job!"
],
"text_types": [
"Instruction",
"Success",
"Instruction",
"Feedback",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Feedback",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success"
],
"text_timestamps": [
8.0,
38.0,
39.0,
65.0,
90.0,
108.0,
109.0,
134.0,
168.0,
169.0,
196.0,
205.0,
206.0,
216.0,
241.0,
250.0,
257.0,
272.0,
273.0,
294.0,
295.0,
375.0,
410.0,
411.0,
439.0,
454.0,
455.0,
502.0,
524.0,
565.0,
595.0,
596.0,
630.0,
645.0
]
},
{
"video_id": "GX010078",
"texts": [
"Let's get a medium sized onion, cut one quarter piece and chop it into very small pieces.",
"Make sure that you are chopping into very small pieces.",
"Good job!",
"Now let's get a tomato and cut it into very small pieces.",
"You should cut the full tomato, not only half of the tomato.",
"Good job!",
"Now let's put the chopped tomatoes and the onions into a microwave-safe bowl.",
"Good job!",
"Now let's add chili flakes to the mixture.",
"That's a tablespoon.",
"You should add only two teaspoons, otherwise it'll be too spicy.",
"Good job!",
"Now let's mix the tomatoes and onions together with the chilli flakes using a fork.",
"Good job!",
"Now let's get two pieces of bread and toast them in a toaster until they are golden and crispy. This usually takes about three minutes.",
"Make sure that they're golden and crispy.",
"Good job!",
"Now butter both pieces of toast.",
"You should spread butter on both slices of toast.",
"Good job!",
"Now let's add the vegetable mixture to the toasts. You can put two tablespoons on each slice.",
"You should add just two tablespoons per slice.",
"Good job!",
"Now let's put about two tablespoons of shredded cheese on each slice of toast.",
"Good job!",
"Now microwave the toasts for about 30 seconds to slightly melt the cheese.",
"Make sure you have microwaved for 30 seconds.",
"Great job!"
],
"text_types": [
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Success"
],
"text_timestamps": [
1.0,
43.0,
133.0,
134.0,
255.5,
348.0,
349.0,
385.0,
386.0,
406.0,
422.5,
427.0,
428.0,
457.0,
458.0,
583.0,
660.0,
665.0,
739.0,
782.0,
783.0,
805.0,
826.0,
827.0,
902.0,
903.0,
941.0,
970.0
]
},
{
"video_id": "GX010079",
"texts": [
"First let's get two small to medium-sized potatoes.",
"Good job!",
"Now wash the potato well under water.",
"Make sure that the potato is washed well so that all the dirt is removed.",
"Good job!",
"Now let's poke both the potatoes a few times with a fork uniformly.",
"Make sure to uniformly poke both potatoes.",
"Good job!",
"Now let's microwave the potatoes in a microwave-safe plate for about two minutes.",
"Make sure you have microwave for two minutes and not one minute.",
"Good job!",
"Now let's take the potatoes out, turn it over and microwave it again for two minutes. Turn both potatoes over.",
"Make sure to microwave for two minutes.",
"Good job!",
"Now check if the potato feels soft when you squeeze it carefully with a fork.",
"Good job!",
"Now let's let it cool for one minute.",
"Good job!",
"Now cut both potatoes into two equal pieces. Cut it down the middle.",
"Good job!",
"Now use a spoon to make a small hole in the middle of the potatoes pieces.",
"Good job!",
"Now let's add one teaspoon of butter to the center of each potato piece.",
"Make sure you have added one teaspoon of butter to each potato piece.",
"Good job!",
"Now let's add one teaspoon of shredded cheese to the center of each potato piece.",
"Make sure to add one teaspoon, not a tablespoon, to each piece.",
"Good job!",
"Now let's add a pinch of salt to each piece of potato.",
"Make sure to add a pinch of salt to all of the potato pieces.",
"Good job!",
"Now let's add one drop of honey to the center of each potato piece.",
"Make sure not to add too much honey.",
"Now add a drop of honey to all four potato pieces.",
"Good job!",
"Now let's microwave the potato pieces for thirty seconds.",
"Make sure you have microwaved for thirty seconds.",
"Great job!"
],
"text_types": [
"Instruction",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Success",
"Instruction",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success"
],
"text_timestamps": [
1.0,
7.0,
8.0,
19.0,
32.0,
33.0,
58.0,
92.0,
93.0,
174.0,
237.0,
238.0,
319.5,
383.0,
384.0,
402.0,
403.0,
466.0,
467.0,
512.0,
513.0,
666.0,
667.0,
716.0,
751.0,
752.0,
772.5,
822.0,
823.0,
855.0,
863.0,
864.0,
884.0,
890.0,
899.0,
900.0,
938.0,
953.0
]
},
{
"video_id": "GX010081",
"texts": [
"Get a large skillet and add three tablespoons of olive oil to it.",
"Good job!",
"Now turn on the heat to medium-low.",
"Set the heat to medium-low.",
"That is still too high. Set the heat to medium-low.",
"Good job!",
"Next, let's get four carrots and wash them. Carrots should be medium-sized.",
"You should wash the carrots first.",
"Good job!",
"Now cut off the green ends of the carrot.",
"Cut off the green ends of all of the carrots.",
"Good job!",
"Now peel the skin off of the carrots. You can also cut the ends off the carrots.",
"You should peel the carrots first.",
"Good job!",
"Now you can wash the carrots again.",
"Good job!",
"Now let's cut the carrots lengthwise into halves. You can cut them into half and then cut them lengthwise.",
"You should cut all four carrots.",
"Good job!",
"Now add the carrots carefully to the pan. Make sure they are all lengthwise and evenly spread.",
"Good job!",
"Now we can set the heat to medium-high. Let the carrots cook for about three minutes.",
"Good job!",
"Now set the heat to medium-low.",
"Good job!",
"Let the carrots cook for about six minutes.",
"Good job!",
"Now let's add the remaining ingredients. First drizzle honey on top of the carrots directly, as per taste.",
"Good job!",
"Now let's drizzle two teaspoons of soy sauce on top of the carrots.",
"Good job!",
"Now let's add the remaining ingredient, which is an onion. Let's get medium sized onion and chop half of it into small pieces.",
"Good job!",
"You can now add the onions to the pan with the carrots.",
"Good job!",
"Now give the onions and the carrots in the pan a nice stir, so that they are well mixed together.",
"Good job!"
],
"text_types": [
"Instruction",
"Success",
"Instruction",
"Feedback",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Feedback",
"Success",
"Instruction",
"Success",
"Instruction",
"Success",
"Instruction",
"Success",
"Instruction",
"Success",
"Instruction",
"Success",
"Instruction",
"Success",
"Instruction",
"Success",
"Instruction",
"Success",
"Instruction",
"Success"
],
"text_timestamps": [
2.0,
43.0,
44.0,
64.0,
68.0,
75.0,
76.0,
91.0,
130.0,
131.0,
169.0,
175.0,
176.0,
197.0,
378.0,
379.0,
387.0,
388.0,
464.0,
523.0,
524.0,
550.0,
551.0,
750.0,
751.0,
767.0,
768.024,
1088.0,
1089.0,
1125.0,
1126.0,
1178.0,
1179.0,
1277.0,
1278.0,
1293.0,
1294.0,
1316.0
]
}
] |