File size: 465,780 Bytes
6af6547 | 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 | {"utterance": "gugah aku jam lima esuk minggu iki", "expected_intent": "alarm:alarm_set", "expected_slots": {"time": "lima esuk", "date": "minggu iki"}, "split": "test"}
{"utterance": "meneng", "expected_intent": "audio:audio_volume_mute", "expected_slots": {}, "split": "test"}
{"utterance": "jambon iku kabeh kita butuh", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"color_type": "jambon"}, "split": "test"}
{"utterance": "lan pepeteng wis tiba", "expected_intent": "iot:iot_hue_lighton", "expected_slots": {}, "split": "test"}
{"utterance": "olly gawe mati lampu ing kamar turu", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"house_place": "kamar turu"}, "split": "test"}
{"utterance": "ning kene reged kene gawe suwara", "expected_intent": "iot:iot_cleaning", "expected_slots": {}, "split": "test"}
{"utterance": "nyapu lorong", "expected_intent": "iot:iot_cleaning", "expected_slots": {"house_place": "lorong"}, "split": "test"}
{"utterance": "aku pengin status padhang e layar aku", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "apa kabar olly", "expected_intent": "general:general_greet", "expected_slots": {}, "split": "test"}
{"utterance": "jam pira nang indonesia", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "indonesia"}, "split": "test"}
{"utterance": "duduhno opo saiki jam piro w. i. b.", "expected_intent": "datetime:datetime_convert", "expected_slots": {"time_zone": "w. i. b."}, "split": "test"}
{"utterance": "mbatalake wekerku jam pitu esuk", "expected_intent": "alarm:alarm_remove", "expected_slots": {"time": "pitu esuk"}, "split": "test"}
{"utterance": "apa weker aku wis nyetel", "expected_intent": "alarm:alarm_query", "expected_slots": {}, "split": "test"}
{"utterance": "ngomong babagakn weker ku", "expected_intent": "alarm:alarm_query", "expected_slots": {}, "split": "test"}
{"utterance": "aku tresno senatra lagu", "expected_intent": "music:music_likeness", "expected_slots": {"artist_name": "senatra"}, "split": "test"}
{"utterance": "nyetel padhange lampu luwih dhuwur", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {}, "split": "test"}
{"utterance": "dina iki tanggal pira", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "dina iki"}, "split": "test"}
{"utterance": "dina iki tanggal pira", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "dina iki"}, "split": "test"}
{"utterance": "sampeyan bisa pesen sushi kanggo mangan wengi wengi iki", "expected_intent": "takeaway:takeaway_order", "expected_slots": {"food_type": "sushi", "meal_type": "mangan wengi", "timeofday": "wengi iki"}, "split": "test"}
{"utterance": "piye ramalan minggu iki", "expected_intent": "weather:weather_query", "expected_slots": {"time": "minggu"}, "split": "test"}
{"utterance": "apa cuaca minggu iki", "expected_intent": "weather:weather_query", "expected_slots": {"date": "minggu iki"}, "split": "test"}
{"utterance": "kandhani aku cuaca minggu iki", "expected_intent": "weather:weather_query", "expected_slots": {"date": "minggu iki"}, "split": "test"}
{"utterance": "kirim caraku le cekikikan", "expected_intent": "general:general_joke", "expected_slots": {}, "split": "test"}
{"utterance": "olly ceritake aku guyonan", "expected_intent": "general:general_joke", "expected_slots": {}, "split": "test"}
{"utterance": "tanggal pira", "expected_intent": "datetime:datetime_query", "expected_slots": {}, "split": "test"}
{"utterance": "pesen bungkus", "expected_intent": "takeaway:takeaway_order", "expected_slots": {"order_type": "bungkus"}, "split": "test"}
{"utterance": "aku seneng lagu iki", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "puteren iki maneh tulung", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "mudunke lampu", "expected_intent": "iot:iot_hue_lightdim", "expected_slots": {}, "split": "test"}
{"utterance": "bisa padha nyedhiyani bungkus", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"order_type": "bungkus"}, "split": "test"}
{"utterance": "apa iku ana pengiriman e", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"order_type": "pengiriman"}, "split": "test"}
{"utterance": "apa padha ngirim mulih", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"order_type": "ngirim"}, "split": "test"}
{"utterance": "opo resto iku iso ngeterno panganan nang omahku", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"order_type": "ngeterno"}, "split": "test"}
{"utterance": "nyetel tangi ana kamis pitu isuk", "expected_intent": "alarm:alarm_set", "expected_slots": {"date": "kamis", "time": "pitu isuk"}, "split": "test"}
{"utterance": "marang kula sawetara warta bisnis", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "bisnis"}, "split": "test"}
{"utterance": "ngomongke kabar internasional", "expected_intent": "news:news_query", "expected_slots": {"place_name": "internasional"}, "split": "test"}
{"utterance": "setel daftar tembang rock duwekku", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "rock"}, "split": "test"}
{"utterance": "nguripake dhaptar lagu ku lan muter tembang katelu ing antrian", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "bisuk ne volume ne", "expected_intent": "audio:audio_volume_mute", "expected_slots": {}, "split": "test"}
{"utterance": "saiki jam pira", "expected_intent": "datetime:datetime_query", "expected_slots": {}, "split": "test"}
{"utterance": "mbusak weker sing taksetel", "expected_intent": "alarm:alarm_remove", "expected_slots": {}, "split": "test"}
{"utterance": "koyo kepiye cuaca dina iki", "expected_intent": "weather:weather_query", "expected_slots": {"date": "dina iki"}, "split": "test"}
{"utterance": "apa aku kudu nggawa payung sesuk", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "payung", "date": "sesuk"}, "split": "test"}
{"utterance": "setel musik kadi tembang jawa", "expected_intent": "play:play_music", "expected_slots": {"playlist_name": "tembang jawa"}, "split": "test"}
{"utterance": "aku seneng jazz saiki piye yen kowe", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "jazz"}, "split": "test"}
{"utterance": "olly puter lagu sing apik saka pemain jazz kesenengan ku", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "jazz"}, "split": "test"}
{"utterance": "aku ora iso ngrungok ne kowe", "expected_intent": "audio:audio_volume_up", "expected_slots": {}, "split": "test"}
{"utterance": "aku ora biso ngrungok ne kowe", "expected_intent": "audio:audio_volume_up", "expected_slots": {}, "split": "test"}
{"utterance": "ayo padha duwe lampu biru", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"color_type": "biru"}, "split": "test"}
{"utterance": "apa ramalan dina iki kanggo berlin", "expected_intent": "weather:weather_query", "expected_slots": {"date": "dina iki", "place_name": "berlin"}, "split": "test"}
{"utterance": "opo rata-rata dolar dolar amérikah sarékat kanggo pound sterling", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "rata-rata dolar dolar amérikah sarékat kanggo pound sterling"}, "split": "test"}
{"utterance": "cahyo padhang lampu ing pawon", "expected_intent": "iot:iot_hue_lighton", "expected_slots": {"house_place": "pawon"}, "split": "test"}
{"utterance": "urupke penyedot debu", "expected_intent": "iot:iot_cleaning", "expected_slots": {"device_type": "penyedot debu"}, "split": "test"}
{"utterance": "nguripake mesin penyedot debu", "expected_intent": "iot:iot_cleaning", "expected_slots": {"device_type": "mesin penyedot debu"}, "split": "test"}
{"utterance": "setel daftar tembang koes plus", "expected_intent": "play:play_music", "expected_slots": {"playlist_name": "daftar tembang koes plus"}, "split": "test"}
{"utterance": "acak lagu dening didi kempot", "expected_intent": "play:play_music", "expected_slots": {"player_setting": "acak", "artist_name": "didi kempot"}, "split": "test"}
{"utterance": "apa cuaca", "expected_intent": "weather:weather_query", "expected_slots": {}, "split": "test"}
{"utterance": "taun iki tahun baru nang dino opo", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "taun iki"}, "split": "test"}
{"utterance": "tulung meneng o nganti sejam meneh", "expected_intent": "audio:audio_volume_mute", "expected_slots": {"time": "sejam meneh"}, "split": "test"}
{"utterance": "ojo ngomong dino iki", "expected_intent": "audio:audio_volume_mute", "expected_slots": {"date": "dino iki"}, "split": "test"}
{"utterance": "omongke cuaca nang surabaya pas rong dina seko saiki", "expected_intent": "weather:weather_query", "expected_slots": {"place_name": "surabaya", "time": "rong dina seko saiki"}, "split": "test"}
{"utterance": "mateni okug", "expected_intent": "iot:iot_wemo_off", "expected_slots": {"device_type": "okug"}, "split": "test"}
{"utterance": "uripno colokan ku", "expected_intent": "iot:iot_wemo_on", "expected_slots": {"device_type": "colokan"}, "split": "test"}
{"utterance": "cidro", "expected_intent": "play:play_music", "expected_slots": {"song_name": "cidro"}, "split": "test"}
{"utterance": "apa kahanan cuaca ing new york", "expected_intent": "weather:weather_query", "expected_slots": {"place_name": "new york"}, "split": "test"}
{"utterance": "aku pengin ngerti cuaca ing san fransico", "expected_intent": "weather:weather_query", "expected_slots": {"place_name": "san fransico"}, "split": "test"}
{"utterance": "opo sesuk bakal udan", "expected_intent": "weather:weather_query", "expected_slots": {"date": "sesuk", "weather_descriptor": "udan"}, "split": "test"}
{"utterance": "apa bakal udan sesuk", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "udan", "date": "sesuk"}, "split": "test"}
{"utterance": "siji april dina apa", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "siji april"}, "split": "test"}
{"utterance": "saiki jam pira", "expected_intent": "datetime:datetime_query", "expected_slots": {}, "split": "test"}
{"utterance": "puteren lagu keloro saka lagu e raisa", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "raisa"}, "split": "test"}
{"utterance": "tulung kabar ku sing paling anyar", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "patheni lampune", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {}, "split": "test"}
{"utterance": "simpen musik iki", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "apa sensasional ing antara ning indonesia", "expected_intent": "news:news_query", "expected_slots": {"media_type": "antara ning indonesia"}, "split": "test"}
{"utterance": "uripno steker pinter urip", "expected_intent": "iot:iot_wemo_on", "expected_slots": {"device_type": "steker pinter"}, "split": "test"}
{"utterance": "puter tembang acak saka daftar tembangku", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "setelke lagu lawas soko daftar laguku", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "lawas"}, "split": "test"}
{"utterance": "setel sembarang lagu didi kempot", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "didi kempot"}, "split": "test"}
{"utterance": "mbusak weker pisanan", "expected_intent": "alarm:alarm_remove", "expected_slots": {}, "split": "test"}
{"utterance": "mulai setel", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "setel musik rock sejam", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "rock", "time": "sejam"}, "split": "test"}
{"utterance": "mbok gawe guyonan", "expected_intent": "general:general_joke", "expected_slots": {}, "split": "test"}
{"utterance": "ngomong guyon lucu", "expected_intent": "general:general_joke", "expected_slots": {"joke_type": "lucu"}, "split": "test"}
{"utterance": "opo berita sing anyar saiki", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "daya munggah siji soket colokan", "expected_intent": "iot:iot_wemo_on", "expected_slots": {"device_type": "siji soket colokan"}, "split": "test"}
{"utterance": "pateni lampu ing padhusan", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"house_place": "padhusan"}, "split": "test"}
{"utterance": "pateni lampu jedhing", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"house_place": "jedhing"}, "split": "test"}
{"utterance": "kaya apa cuacane saiki", "expected_intent": "weather:weather_query", "expected_slots": {}, "split": "test"}
{"utterance": "buka folder reni farida", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "reni farida"}, "split": "test"}
{"utterance": "apa judhul warta paling anyar", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "apa sing kedadeyan ing warta", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "unggah no volume ne", "expected_intent": "audio:audio_volume_up", "expected_slots": {}, "split": "test"}
{"utterance": "lakoke mesin kopi", "expected_intent": "iot:iot_coffee", "expected_slots": {"device_type": "mesin kopi"}, "split": "test"}
{"utterance": "entuk rego saham saka costco", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "costco"}, "split": "test"}
{"utterance": "gantike lampu kamar turu dadi ijo", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"house_place": "kamar turu", "color_type": "ijo"}, "split": "test"}
{"utterance": "genti lampu kanggo surem", "expected_intent": "iot:iot_hue_lightdim", "expected_slots": {}, "split": "test"}
{"utterance": "muter lagu cidro", "expected_intent": "play:play_music", "expected_slots": {"song_name": "cidro"}, "split": "test"}
{"utterance": "kesalahan apa sing biasane sampeyan lakoni", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "sapa penyanyi tembang iki", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "saiki jam piro ning bandung", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "bandung"}, "split": "test"}
{"utterance": "opo adem nang njobo", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "adem"}, "split": "test"}
{"utterance": "apa guyonan apik", "expected_intent": "general:general_joke", "expected_slots": {"joke_type": "apik"}, "split": "test"}
{"utterance": "buka tembang didi kempot", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "didi kempot"}, "split": "test"}
{"utterance": "apa weker disetel", "expected_intent": "alarm:alarm_query", "expected_slots": {}, "split": "test"}
{"utterance": "kanthi entuk tandha", "expected_intent": "weather:weather_query", "expected_slots": {}, "split": "test"}
{"utterance": "ndang siapno pesenane", "expected_intent": "takeaway:takeaway_query", "expected_slots": {}, "split": "test"}
{"utterance": "apa kowe ngerti kabeh guyon", "expected_intent": "general:general_joke", "expected_slots": {}, "split": "test"}
{"utterance": "nyetel weker jam sanga esuk", "expected_intent": "alarm:alarm_set", "expected_slots": {"time": "sanga esuk"}, "split": "test"}
{"utterance": "setel tembang cidro saka didi kempot", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "didi kempot"}, "split": "test"}
{"utterance": "setel mf doom apa wae", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "mf doom"}, "split": "test"}
{"utterance": "mateni weker jam wolu esuk", "expected_intent": "alarm:alarm_remove", "expected_slots": {"time": "wolu esuk"}, "split": "test"}
{"utterance": "genti werna lampu", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {}, "split": "test"}
{"utterance": "puter kabeh daftar tembang", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "nuduhake warta paling anyar", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "apa kabar anyar kanggo dina iki", "expected_intent": "news:news_query", "expected_slots": {"date": "dina iki"}, "split": "test"}
{"utterance": "apa cuaca saiki", "expected_intent": "weather:weather_query", "expected_slots": {}, "split": "test"}
{"utterance": "mandheg puterno mari iki", "expected_intent": "audio:audio_volume_up", "expected_slots": {}, "split": "test"}
{"utterance": "tulung weker tangi jam wolu isuk setu sabtu", "expected_intent": "alarm:alarm_set", "expected_slots": {"alarm_type": "tangi", "time": "wolu isuk", "date": "sabtu"}, "split": "test"}
{"utterance": "mulai daftar tembang", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "tolong setel lagu didi kempot", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "didi kempot"}, "split": "test"}
{"utterance": "atur kabar kanggo kabar babagan saluran pipa dakota", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "saluran pipa dakota"}, "split": "test"}
{"utterance": "tulung nyalakna vakum cleaner", "expected_intent": "iot:iot_cleaning", "expected_slots": {"device_type": "vakum cleaner"}, "split": "test"}
{"utterance": "pateni lampu kamar", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"house_place": "kamar"}, "split": "test"}
{"utterance": "wektu saiki ing jepang", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "jepang"}, "split": "test"}
{"utterance": "apa kowe isa nyuda lampune", "expected_intent": "iot:iot_hue_lightdim", "expected_slots": {}, "split": "test"}
{"utterance": "aku pengin loro burger lan siji soda supaya cepet", "expected_intent": "takeaway:takeaway_order", "expected_slots": {"food_type": "soda"}, "split": "test"}
{"utterance": "keep me informed about regane bitcoin", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "regane bitcoin"}, "split": "test"}
{"utterance": "jam piro saiki nang bandung", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "bandung"}, "split": "test"}
{"utterance": "halo bisa tolong dukno cahya", "expected_intent": "iot:iot_hue_lightdim", "expected_slots": {}, "split": "test"}
{"utterance": "aku pengin krungu kabar pungkasan saka c. n. n.", "expected_intent": "news:news_query", "expected_slots": {"media_type": "c. n. n."}, "split": "test"}
{"utterance": "ngringkes rincian cuaca minggu", "expected_intent": "weather:weather_query", "expected_slots": {"time": "minggu"}, "split": "test"}
{"utterance": "nggawe mati lampu", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {}, "split": "test"}
{"utterance": "sepira adem ing njaba dina iki", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "adem", "date": "dina iki"}, "split": "test"}
{"utterance": "ojo ngomong nganti aku kongkon", "expected_intent": "audio:audio_volume_mute", "expected_slots": {}, "split": "test"}
{"utterance": "aku pengin ngerti babagan tembang iki", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "piye ramalan cuaca minggu iki", "expected_intent": "weather:weather_query", "expected_slots": {"date": "minggu iki"}, "split": "test"}
{"utterance": "apa sampeyan bisa menehi kula judhul warta anyar saka panyedhiya ku sing paling anyar", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "apa sampeyan bisa nemokake kabar paling anyar saka sumber sing biasane ora dak bukak", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "ngomong babagan warta politik paling anyar", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "politik"}, "split": "test"}
{"utterance": "setel snow soko red hot chili peppers", "expected_intent": "play:play_music", "expected_slots": {"song_name": "snow", "artist_name": "red hot chili peppers"}, "split": "test"}
{"utterance": "setel cidro", "expected_intent": "play:play_music", "expected_slots": {"song_name": "cidro"}, "split": "test"}
{"utterance": "setel let me love you soko ariana grande", "expected_intent": "play:play_music", "expected_slots": {"song_name": "let me love you", "artist_name": "ariana grande"}, "split": "test"}
{"utterance": "puterno cidro", "expected_intent": "play:play_music", "expected_slots": {"song_name": "cidro"}, "split": "test"}
{"utterance": "cuaca entheng utawa abot", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "abot"}, "split": "test"}
{"utterance": "konfirmasi setelan weker ku", "expected_intent": "alarm:alarm_query", "expected_slots": {}, "split": "test"}
{"utterance": "hey siri bisuk ne spiker e", "expected_intent": "audio:audio_volume_mute", "expected_slots": {}, "split": "test"}
{"utterance": "apa suhu saiki ing njaba", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "suhu"}, "split": "test"}
{"utterance": "puter daftar lagu bob dylan", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "bob dylan"}, "split": "test"}
{"utterance": "hey apa ramalan cuaca sesuk", "expected_intent": "weather:weather_query", "expected_slots": {"date": "sesuk"}, "split": "test"}
{"utterance": "prediksi polling b. b. c. apa kanggo pemilihan kita sing bakal teka", "expected_intent": "news:news_query", "expected_slots": {"media_type": "prediksi polling b. b. c.", "news_topic": "pemilihan kita sing bakal teka"}, "split": "test"}
{"utterance": "uripno robot roomba", "expected_intent": "iot:iot_cleaning", "expected_slots": {"device_type": "robot roomba"}, "split": "test"}
{"utterance": "setelan wekerku", "expected_intent": "alarm:alarm_query", "expected_slots": {}, "split": "test"}
{"utterance": "setelan weker", "expected_intent": "alarm:alarm_query", "expected_slots": {}, "split": "test"}
{"utterance": "robot sedot ruang tamu saiki", "expected_intent": "iot:iot_cleaning", "expected_slots": {"house_place": "ruang tamu"}, "split": "test"}
{"utterance": "panemu nyimpen", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "setel weker jam wolu isuk", "expected_intent": "alarm:alarm_set", "expected_slots": {"time": "wolu isuk"}, "split": "test"}
{"utterance": "setel sembarang musik kristen", "expected_intent": "play:play_music", "expected_slots": {"music_descriptor": "kristen"}, "split": "test"}
{"utterance": "gawe lampu omah ambar jam enem sore", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"house_place": "omah", "color_type": "ambar", "time": "enem sore"}, "split": "test"}
{"utterance": "tulung nggawe mati lampu", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {}, "split": "test"}
{"utterance": "tulung pateni alarmku", "expected_intent": "alarm:alarm_remove", "expected_slots": {}, "split": "test"}
{"utterance": "aku seneng tembang iki tulung simpen", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "mbukak lan muter musik saka daftar puter olahraga", "expected_intent": "play:play_music", "expected_slots": {"playlist_name": "daftar puter olahraga"}, "split": "test"}
{"utterance": "nyetel wekerku jam pitu esuk", "expected_intent": "alarm:alarm_set", "expected_slots": {"time": "pitu esuk"}, "split": "test"}
{"utterance": "nguripake weker ku esuk", "expected_intent": "alarm:alarm_set", "expected_slots": {"timeofday": "esuk"}, "split": "test"}
{"utterance": "apa bedane wektu antarane kene lan indonesia", "expected_intent": "datetime:datetime_convert", "expected_slots": {"place_name": "indonesia"}, "split": "test"}
{"utterance": "apa cuaca kaya saiki ing new york", "expected_intent": "weather:weather_query", "expected_slots": {"place_name": "new york"}, "split": "test"}
{"utterance": "nambahi padhange lampu", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {}, "split": "test"}
{"utterance": "aku pengin lampu sing surem", "expected_intent": "iot:iot_hue_lightdim", "expected_slots": {}, "split": "test"}
{"utterance": "bisa kah aku bungkus saka domini", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"order_type": "bungkus", "business_name": "domini"}, "split": "test"}
{"utterance": "artikel warta babagan topik tartamtu", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "saiki ing bandung jam pira", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "bandung"}, "split": "test"}
{"utterance": "pateni lampu kamar keluwarga", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"house_place": "kamar keluwarga"}, "split": "test"}
{"utterance": "apa kowe bisa gawe mati lampu", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {}, "split": "test"}
{"utterance": "setel metallica soko daftar lagu rock aku", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "metallica", "music_genre": "rock"}, "split": "test"}
{"utterance": "jam piro nang kebumen saiki", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "kebumen"}, "split": "test"}
{"utterance": "redupke lampu ing ruang tamu", "expected_intent": "iot:iot_hue_lightdim", "expected_slots": {"house_place": "ruang tamu"}, "split": "test"}
{"utterance": "buka aplikasi folder", "expected_intent": "takeaway:takeaway_order", "expected_slots": {}, "split": "test"}
{"utterance": "telpon na restoran thailand sing paling cedhek sing iso dikirim", "expected_intent": "takeaway:takeaway_order", "expected_slots": {"business_type": "restoran", "food_type": "thailand", "order_type": "dikirim"}, "split": "test"}
{"utterance": "setelke lagu rock sedih", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "rock", "music_descriptor": "sedih"}, "split": "test"}
{"utterance": "mudhun ke volume saka spiker", "expected_intent": "audio:audio_volume_down", "expected_slots": {}, "split": "test"}
{"utterance": "uripno mesin sedotan debu", "expected_intent": "iot:iot_cleaning", "expected_slots": {"device_type": "mesin sedotan debu"}, "split": "test"}
{"utterance": "menehi kula tanggal ing warta olahraga", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "olahraga"}, "split": "test"}
{"utterance": "entuk kabar saben jam babagan warta olah raga", "expected_intent": "news:news_query", "expected_slots": {"general_frequency": "jam", "news_topic": "olah raga"}, "split": "test"}
{"utterance": "ono endi aturan volume ne", "expected_intent": "audio:audio_volume_other", "expected_slots": {}, "split": "test"}
{"utterance": "madhangi lampu di lorong", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {"house_place": "lorong"}, "split": "test"}
{"utterance": "tulung mundhaka ke layar padhange kanthi", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {"device_type": "layar", "change_amount": "kanthi"}, "split": "test"}
{"utterance": "ojo setel lagu rock metal", "expected_intent": "music:music_dislikeness", "expected_slots": {"music_genre": "rock metal"}, "split": "test"}
{"utterance": "pangguna loropaken", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "apa kowe isa nganyarke padhange ing kamar", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {"house_place": "kamar"}, "split": "test"}
{"utterance": "pindhah menyang situs website tribun jambi", "expected_intent": "news:news_query", "expected_slots": {"media_type": "tribun jambi"}, "split": "test"}
{"utterance": "ing dina minggu tanggal limolas maret tiba ing dina apa", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "limolas maret"}, "split": "test"}
{"utterance": "kepinginan ku kanggo ngrungokake musik country", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "country"}, "split": "test"}
{"utterance": "tandai kabeh jenis lagu pop", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "pop"}, "split": "test"}
{"utterance": "apa ana khusus ing politik", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "politik"}, "split": "test"}
{"utterance": "puter jaran goyang dening nella kharisma", "expected_intent": "play:play_music", "expected_slots": {"song_name": "jaran goyang", "artist_name": "nella kharisma"}, "split": "test"}
{"utterance": "puter selanjute cidro didi kempot", "expected_intent": "play:play_music", "expected_slots": {"song_name": "cidro", "artist_name": "didi kempot"}, "split": "test"}
{"utterance": "siapno mungkin nanti noah kanggo di puter mari iki", "expected_intent": "play:play_music", "expected_slots": {"song_name": "mungkin nanti", "artist_name": "noah"}, "split": "test"}
{"utterance": "puterno kabeh lagu ning acak", "expected_intent": "play:play_music", "expected_slots": {"player_setting": "acak"}, "split": "test"}
{"utterance": "setel sembarang musik rap", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "rap"}, "split": "test"}
{"utterance": "saiki jam pira ning ngawi", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "ngawi"}, "split": "test"}
{"utterance": "miwiti penyedot debu", "expected_intent": "iot:iot_cleaning", "expected_slots": {"device_type": "penyedot debu"}, "split": "test"}
{"utterance": "warta teranyar ning hari kartini", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "hari kartini"}, "split": "test"}
{"utterance": "gawe guyon", "expected_intent": "general:general_joke", "expected_slots": {}, "split": "test"}
{"utterance": "arep koyo opo ademe saben wengi nang minggu iki", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "ademe", "general_frequency": "saben wengi", "date": "minggu iki"}, "split": "test"}
{"utterance": "sapa sing nyanyi kereta kencana", "expected_intent": "music:music_query", "expected_slots": {"song_name": "kereta kencana"}, "split": "test"}
{"utterance": "golekno warta kompas dina iki tentang trump", "expected_intent": "news:news_query", "expected_slots": {"media_type": "kompas", "date": "dina iki", "news_topic": "trump"}, "split": "test"}
{"utterance": "yen fajar ing bandung jam pira ing lampung", "expected_intent": "datetime:datetime_convert", "expected_slots": {"time": "fajar", "place_name": "lampung"}, "split": "test"}
{"utterance": "wektu saiki ing bandung", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "bandung"}, "split": "test"}
{"utterance": "pateni weker jam telu sore", "expected_intent": "alarm:alarm_remove", "expected_slots": {"time": "telu sore"}, "split": "test"}
{"utterance": "olly ngganti lampu dadi biru", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"color_type": "biru"}, "split": "test"}
{"utterance": "pandora", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "aku pingin ngerti apa domino ngirim", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"business_name": "domino", "order_type": "ngirim"}, "split": "test"}
{"utterance": "piye kemungkinan cuaca minggu iki", "expected_intent": "weather:weather_query", "expected_slots": {"date": "minggu iki"}, "split": "test"}
{"utterance": "aku kandanono saiki jam pira", "expected_intent": "datetime:datetime_query", "expected_slots": {}, "split": "test"}
{"utterance": "lelucon apa sing paling lucu lucu sing sampeyan ngerti", "expected_intent": "general:general_joke", "expected_slots": {"joke_type": "paling lucu"}, "split": "test"}
{"utterance": "apa weker ku disetel kanggo ngesok isuk", "expected_intent": "alarm:alarm_query", "expected_slots": {"date": "ngesok", "timeofday": "isuk"}, "split": "test"}
{"utterance": "yen saiki jam lima isuk ing surabaya jam pira ing kene", "expected_intent": "datetime:datetime_convert", "expected_slots": {"time": "jam lima isuk", "place_name": "surabaya"}, "split": "test"}
{"utterance": "aku pengin kopi", "expected_intent": "iot:iot_coffee", "expected_slots": {}, "split": "test"}
{"utterance": "cepet kula warta penghargaan akademi", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "penghargaan akademi"}, "split": "test"}
{"utterance": "cepet ne", "expected_intent": "audio:audio_volume_up", "expected_slots": {}, "split": "test"}
{"utterance": "duduhno aku beritane narkoba coki", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "narkoba coki"}, "split": "test"}
{"utterance": "kandani ramalan iklim dina iki ndek kene", "expected_intent": "weather:weather_query", "expected_slots": {"date": "dina iki"}, "split": "test"}
{"utterance": "setel aplikasi music lan setel sembarang lagu", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "aku seneng lagu pamungkas tulung puter iku", "expected_intent": "music:music_likeness", "expected_slots": {"artist_name": "pamungkas"}, "split": "test"}
{"utterance": "bakal dadi apik ing njaba minggu iki", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "apik", "date": "minggu iki"}, "split": "test"}
{"utterance": "tulung kalem ne volume ning spiker", "expected_intent": "audio:audio_volume_down", "expected_slots": {}, "split": "test"}
{"utterance": "tulung mundhakno lampu aku ora nyaman sa iki", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {}, "split": "test"}
{"utterance": "opo berita nek halaman ngarep kompas", "expected_intent": "news:news_query", "expected_slots": {"media_type": "kompas"}, "split": "test"}
{"utterance": "lawak sing apik apa", "expected_intent": "general:general_joke", "expected_slots": {"joke_type": "apik"}, "split": "test"}
{"utterance": "opo kowe biso setel ne munggah volume ne", "expected_intent": "audio:audio_volume_up", "expected_slots": {}, "split": "test"}
{"utterance": "tulung dipateni lampu kamare anakku", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"house_place": "kamare anakku"}, "split": "test"}
{"utterance": "apa pizza hut punya layanan antar", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"business_name": "pizza hut", "order_type": "layanan antar"}, "split": "test"}
{"utterance": "aku biasane mbayar manungsa waé", "expected_intent": "weather:weather_query", "expected_slots": {}, "split": "test"}
{"utterance": "aku kadang memperhati na", "expected_intent": "weather:weather_query", "expected_slots": {}, "split": "test"}
{"utterance": "aku njaluk info cuaca sesuk ning kene solo", "expected_intent": "weather:weather_query", "expected_slots": {"date": "sesuk", "place_name": "solo"}, "split": "test"}
{"utterance": "olly iso gawe no aku kopi", "expected_intent": "iot:iot_coffee", "expected_slots": {}, "split": "test"}
{"utterance": "ngomong babagan trump", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "trump"}, "split": "test"}
{"utterance": "kabari aku yen kowe krungu indonesia", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "indonesia"}, "split": "test"}
{"utterance": "olly genti cahya dadi biru", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"color_type": "biru"}, "split": "test"}
{"utterance": "aku pengin lampu abang", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"color_type": "abang"}, "split": "test"}
{"utterance": "setel tembang rock nilai papat utawa sakndhuwure paling anyar", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "rock", "music_descriptor": "nilai papat utawa sakndhuwure"}, "split": "test"}
{"utterance": "kapan paskah tahun rongewu wolulas", "expected_intent": "datetime:datetime_query", "expected_slots": {"event_name": "paskah", "date": "rongewu wolulas"}, "split": "test"}
{"utterance": "mbusak weker kanggo sesuk", "expected_intent": "alarm:alarm_remove", "expected_slots": {"date": "sesuk"}, "split": "test"}
{"utterance": "mateni weker", "expected_intent": "alarm:alarm_remove", "expected_slots": {}, "split": "test"}
{"utterance": "carane panas iku ing quebec", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "panas", "place_name": "quebec"}, "split": "test"}
{"utterance": "puterno noah", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "noah"}, "split": "test"}
{"utterance": "apa kabar olahraga dina iki", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "olahraga", "date": "dina iki"}, "split": "test"}
{"utterance": "apa weker d id aku nyetel", "expected_intent": "alarm:alarm_query", "expected_slots": {}, "split": "test"}
{"utterance": "setel tembang didi kempot paling anyar", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "didi kempot"}, "split": "test"}
{"utterance": "ojo gawe sworo nganti alarm esuk", "expected_intent": "audio:audio_volume_mute", "expected_slots": {"timeofday": "esuk"}, "split": "test"}
{"utterance": "urip ne mode meneng nganti aku ono omah saka kerjo an", "expected_intent": "audio:audio_volume_mute", "expected_slots": {}, "split": "test"}
{"utterance": "dudok na aku werno lampu sing ono", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {}, "split": "test"}
{"utterance": "apa suhu njaba", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "suhu"}, "split": "test"}
{"utterance": "pesenno pizza ambek sosis nang domino's", "expected_intent": "takeaway:takeaway_order", "expected_slots": {"food_type": "pizza", "ingredient": "sosis", "business_name": "domino's"}, "split": "test"}
{"utterance": "elingno aku nek aku seneng lagu iku", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "warta apa sing kedadeyan ing c. n. n. dina iki", "expected_intent": "news:news_query", "expected_slots": {"media_type": "c. n. n.", "date": "dina iki"}, "split": "test"}
{"utterance": "duduhna wektu saiki ning indonesia", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "indonesia"}, "split": "test"}
{"utterance": "srengenge wis sumunar padhang apa dewe bakal duwe cuaca koyo ngene nggo liyane dina", "expected_intent": "weather:weather_query", "expected_slots": {"time": "liyane dina"}, "split": "test"}
{"utterance": "puteren dhaptar tembang keroncong", "expected_intent": "play:play_music", "expected_slots": {"playlist_name": "dhaptar tembang keroncong"}, "split": "test"}
{"utterance": "apa cuaca kanggo lokasi ku minggu iki", "expected_intent": "weather:weather_query", "expected_slots": {"date": "minggu iki"}, "split": "test"}
{"utterance": "ini udan minggu iki", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "udan", "date": "minggu iki"}, "split": "test"}
{"utterance": "nguripake wemo", "expected_intent": "iot:iot_wemo_on", "expected_slots": {"device_type": "wemo"}, "split": "test"}
{"utterance": "pateni lampune", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"device_type": "lampune"}, "split": "test"}
{"utterance": "nguripake penyedot debu", "expected_intent": "iot:iot_cleaning", "expected_slots": {"device_type": "penyedot debu"}, "split": "test"}
{"utterance": "golek ke aku guyonan sing ono hubungane kambi kasti", "expected_intent": "general:general_joke", "expected_slots": {"joke_type": "kasti"}, "split": "test"}
{"utterance": "saiki tanggal wulan lan taun pira", "expected_intent": "datetime:datetime_query", "expected_slots": {}, "split": "test"}
{"utterance": "apa bakal cerah sesuk selasa", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "cerah", "date": "selasa"}, "split": "test"}
{"utterance": "nyetel notifikasi saka berita dunya", "expected_intent": "news:news_query", "expected_slots": {"media_type": "berita dunya"}, "split": "test"}
{"utterance": "apa sampeyan bisa ngandhani kabar paling anyar", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "duduhno aku jam piro saiki nang kediri", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "kediri"}, "split": "test"}
{"utterance": "sawise topik anyar babagan politik teka waspada aku", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "politik"}, "split": "test"}
{"utterance": "tulus gajah", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "unggah ne volume ne tembang e saiki", "expected_intent": "audio:audio_volume_up", "expected_slots": {}, "split": "test"}
{"utterance": "jam pira wekerku muni", "expected_intent": "alarm:alarm_query", "expected_slots": {}, "split": "test"}
{"utterance": "nuduhake kabar paling anyar saka guardian", "expected_intent": "news:news_query", "expected_slots": {"media_type": "guardian"}, "split": "test"}
{"utterance": "tulung setel ne mudhun volume ne", "expected_intent": "audio:audio_volume_down", "expected_slots": {}, "split": "test"}
{"utterance": "setelne munggah kuwi olly", "expected_intent": "audio:audio_volume_up", "expected_slots": {}, "split": "test"}
{"utterance": "apa ana weker sing muni dino iki", "expected_intent": "alarm:alarm_query", "expected_slots": {"date": "dino iki"}, "split": "test"}
{"utterance": "kapan wektu selanjute bakal udan", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "udan"}, "split": "test"}
{"utterance": "apa bakal udan sesuk awan", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "udan", "date": "sesuk", "timeofday": "awan"}, "split": "test"}
{"utterance": "aku pengin ndeleng kabeh setelan weker", "expected_intent": "alarm:alarm_query", "expected_slots": {}, "split": "test"}
{"utterance": "dadi apa warta resik ing enem jam sedurunge", "expected_intent": "news:news_query", "expected_slots": {"media_type": "resik", "time": "enem jam sedurunge"}, "split": "test"}
{"utterance": "puter kabeh musik sing mung metu antara taun sewu sanga ngatus sangang puluh lan rongewu", "expected_intent": "play:play_music", "expected_slots": {"date": "rongewu"}, "split": "test"}
{"utterance": "mbusak weker selasa jam sanga esuk", "expected_intent": "alarm:alarm_remove", "expected_slots": {"date": "selasa", "time": "sanga esuk"}, "split": "test"}
{"utterance": "musik opo iki", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "sesuk suhu ne bakal panas iyo opo ora", "expected_intent": "weather:weather_query", "expected_slots": {"date": "sesuk", "weather_descriptor": "panas"}, "split": "test"}
{"utterance": "iyo apa ora suhu sesuk dadi panas", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "panas", "date": "sesuk"}, "split": "test"}
{"utterance": "golekno sembarang lagu jazz lembut", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "jazz lembut"}, "split": "test"}
{"utterance": "vakum luwih resik kudu miwiti antarane sepuluh kanggo sewelas awan saben dino d", "expected_intent": "iot:iot_cleaning", "expected_slots": {"time": "sewelas awan", "general_frequency": "saben dino", "device_type": "d"}, "split": "test"}
{"utterance": "ganti mode musik dadi rock", "expected_intent": "music:music_settings", "expected_slots": {"player_setting": "ganti", "music_genre": "rock"}, "split": "test"}
{"utterance": "cilik ne volume ne seket persen", "expected_intent": "audio:audio_volume_down", "expected_slots": {"change_amount": "seket persen"}, "split": "test"}
{"utterance": "nyetel weker dina senen esuk jam enem esuk", "expected_intent": "alarm:alarm_set", "expected_slots": {"date": "senen", "timeofday": "esuk", "time": "jam enem esuk"}, "split": "test"}
{"utterance": "pira suhu minimale london", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "suhu", "place_name": "london"}, "split": "test"}
{"utterance": "hey olly tulung jelasno nama tembang iki", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "apa tanggepanmu", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "lagu senengan mu", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "pateni kabeh lampu", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"device_type": "kabeh lampu"}, "split": "test"}
{"utterance": "padhangno lampu", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {}, "split": "test"}
{"utterance": "golekno aku beritane presiden trump", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "presiden trump"}, "split": "test"}
{"utterance": "warta paling anyar babagan terorisme", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "terorisme"}, "split": "test"}
{"utterance": "mateni weker", "expected_intent": "alarm:alarm_remove", "expected_slots": {}, "split": "test"}
{"utterance": "tembang selanjute", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "tulung suremke lampu", "expected_intent": "iot:iot_hue_lightdim", "expected_slots": {}, "split": "test"}
{"utterance": "pateni kamar panedhaan", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"house_place": "kamar panedhaan"}, "split": "test"}
{"utterance": "pateni kamar turu utama", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"house_place": "kamar turu utama"}, "split": "test"}
{"utterance": "joko widodo bakal ngunjungi indonesia ing mangsa cedhak", "expected_intent": "news:news_query", "expected_slots": {"person": "joko widodo", "place_name": "indonesia"}, "split": "test"}
{"utterance": "tanggal saiki", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "saiki"}, "split": "test"}
{"utterance": "tim sing main dina iki ing liga utama", "expected_intent": "news:news_query", "expected_slots": {"date": "dina iki", "news_topic": "liga utama"}, "split": "test"}
{"utterance": "tulung tambahi lampune", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {}, "split": "test"}
{"utterance": "judul lagu", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "judhul", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "buka daftar lan setel musik", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "tulung gaweke aku kopi tanpa pemanis", "expected_intent": "iot:iot_coffee", "expected_slots": {"coffee_type": "tanpa pemanis"}, "split": "test"}
{"utterance": "aku pengin mangan sing pedes", "expected_intent": "takeaway:takeaway_order", "expected_slots": {"food_type": "pedes"}, "split": "test"}
{"utterance": "pesen pizza saka pizza hut", "expected_intent": "takeaway:takeaway_order", "expected_slots": {"food_type": "pizza", "business_name": "pizza hut"}, "split": "test"}
{"utterance": "setel tembang jawa album", "expected_intent": "play:play_music", "expected_slots": {"playlist_name": "tembang jawa"}, "split": "test"}
{"utterance": "ulang ulang daftar puter tembang jawa", "expected_intent": "play:play_music", "expected_slots": {"playlist_name": "tembang jawa"}, "split": "test"}
{"utterance": "kapan wekerku muni", "expected_intent": "alarm:alarm_query", "expected_slots": {}, "split": "test"}
{"utterance": "laporan cuaca saiki", "expected_intent": "weather:weather_query", "expected_slots": {}, "split": "test"}
{"utterance": "saiki sasi apa", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "saiki"}, "split": "test"}
{"utterance": "lagu seng penak kanggo lungo", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "nambah lagu menyang dhaptar sing mlaku", "expected_intent": "music:music_likeness", "expected_slots": {"playlist_name": "mlaku"}, "split": "test"}
{"utterance": "njaluk kula sorotan cocog", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "sorotan cocog"}, "split": "test"}
{"utterance": "gugah aku jam lima esuk", "expected_intent": "alarm:alarm_set", "expected_slots": {"time": "lima esuk"}, "split": "test"}
{"utterance": "uripno penyedot debu", "expected_intent": "iot:iot_cleaning", "expected_slots": {"device_type": "penyedot debu"}, "split": "test"}
{"utterance": "bakal suhu bakal mudhun ing wengi iki", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "suhu", "timeofday": "wengi iki"}, "split": "test"}
{"utterance": "puter judul tembang", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "ngresiki omah ku", "expected_intent": "iot:iot_cleaning", "expected_slots": {"house_place": "omah"}, "split": "test"}
{"utterance": "ngganti lampu dadi werna jambon", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"color_type": "jambon"}, "split": "test"}
{"utterance": "hi google setelke daftar lagu wacky ku nang aplikasi gaana", "expected_intent": "play:play_music", "expected_slots": {"playlist_name": "wacky"}, "split": "test"}
{"utterance": "nyetel weker jam setengah pitu esuk", "expected_intent": "alarm:alarm_set", "expected_slots": {"time": "setengah pitu esuk"}, "split": "test"}
{"utterance": "apa kowe bisa gawe murup lampu", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {}, "split": "test"}
{"utterance": "buka itunes aku", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "puter didi kempot", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "didi kempot"}, "split": "test"}
{"utterance": "tolong puterno widodari", "expected_intent": "play:play_music", "expected_slots": {"song_name": "widodari"}, "split": "test"}
{"utterance": "mudunke lampu ing pawon", "expected_intent": "iot:iot_hue_lightdim", "expected_slots": {"house_place": "pawon"}, "split": "test"}
{"utterance": "gawe kopi saiki", "expected_intent": "iot:iot_coffee", "expected_slots": {}, "split": "test"}
{"utterance": "opo judule lagu iku", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "olly nandi panganan", "expected_intent": "takeaway:takeaway_query", "expected_slots": {}, "split": "test"}
{"utterance": "aku ora gelem krungu tembang iku maneh", "expected_intent": "music:music_dislikeness", "expected_slots": {}, "split": "test"}
{"utterance": "simpen tembang iki mlebu daftar kesenenganku", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "aku pengin muter musik dangdut", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "dangdut"}, "split": "test"}
{"utterance": "aku pengin luwih padang", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {}, "split": "test"}
{"utterance": "munggahke lampu", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {}, "split": "test"}
{"utterance": "setel lagu klasik liyane bach karo schubert", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "klasik", "artist_name": "schubert"}, "split": "test"}
{"utterance": "nggawa kula judhul musik saiki", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "musik apa sing diputer saiki", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "apa sing kedadeyan ing donya iki", "expected_intent": "news:news_query", "expected_slots": {"place_name": "donya"}, "split": "test"}
{"utterance": "puter selanjute duka", "expected_intent": "play:play_music", "expected_slots": {"song_name": "duka"}, "split": "test"}
{"utterance": "nyritakake kabeh kedadeyan saiki ing kampungku", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"place_name": "kampungku"}, "split": "test"}
{"utterance": "werno lampu ne kudu redup terang", "expected_intent": "iot:iot_hue_lightdim", "expected_slots": {}, "split": "test"}
{"utterance": "gugah aku", "expected_intent": "alarm:alarm_set", "expected_slots": {}, "split": "test"}
{"utterance": "kapan wayahe riyoyo rong tahun kepengker", "expected_intent": "datetime:datetime_query", "expected_slots": {"event_name": "riyoyo", "time": "rong tahun"}, "split": "test"}
{"utterance": "saiki jam piro", "expected_intent": "datetime:datetime_query", "expected_slots": {}, "split": "test"}
{"utterance": "aku arep turu saiki", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {}, "split": "test"}
{"utterance": "piye carane pesen panganan", "expected_intent": "takeaway:takeaway_query", "expected_slots": {}, "split": "test"}
{"utterance": "golekno tempat mangan sing cedek", "expected_intent": "takeaway:takeaway_query", "expected_slots": {}, "split": "test"}
{"utterance": "maem malem wis siap opo durung", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"meal_type": "maem malem"}, "split": "test"}
{"utterance": "nyetel weker kanggo sesuk jam enem esuk", "expected_intent": "alarm:alarm_set", "expected_slots": {"date": "sesuk", "time": "enem", "timeofday": "esuk"}, "split": "test"}
{"utterance": "gugah aku setengah jam", "expected_intent": "alarm:alarm_set", "expected_slots": {"time": "setengah jam"}, "split": "test"}
{"utterance": "mateni wekerku", "expected_intent": "alarm:alarm_remove", "expected_slots": {}, "split": "test"}
{"utterance": "sopo sing nembang lagu hotel california", "expected_intent": "music:music_query", "expected_slots": {"song_name": "hotel california"}, "split": "test"}
{"utterance": "apa kahanan cuaca saiki ing panggonanku", "expected_intent": "weather:weather_query", "expected_slots": {"place_name": "panggonanku"}, "split": "test"}
{"utterance": "apa dina minggu iku wulan desember tanggal papat taun sewu sangangatus wulungpuluh loro", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "wulan desember tanggal papat taun sewu sangangatus wulungpuluh loro"}, "split": "test"}
{"utterance": "judhul c. n. n.", "expected_intent": "news:news_query", "expected_slots": {"media_type": "c. n. n."}, "split": "test"}
{"utterance": "b. b. c. world judhul", "expected_intent": "news:news_query", "expected_slots": {"media_type": "b. b. c. world"}, "split": "test"}
{"utterance": "meneng o kanggo rong jam iki", "expected_intent": "audio:audio_volume_mute", "expected_slots": {"time": "rong jam"}, "split": "test"}
{"utterance": "mulai saiki bisuk ne", "expected_intent": "audio:audio_volume_mute", "expected_slots": {}, "split": "test"}
{"utterance": "atur ne kalem kalem", "expected_intent": "audio:audio_volume_mute", "expected_slots": {}, "split": "test"}
{"utterance": "wooo", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "cuaca di bandung", "expected_intent": "weather:weather_query", "expected_slots": {"place_name": "bandung"}, "split": "test"}
{"utterance": "puterno ella fitzgerals get happy", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "ella fitzgerals", "song_name": "get happy"}, "split": "test"}
{"utterance": "pateni lampu pawon", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"house_place": "pawon"}, "split": "test"}
{"utterance": "aku ora bisa ndeleng nguripake lampu", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {}, "split": "test"}
{"utterance": "bacano aku berita internasional", "expected_intent": "news:news_query", "expected_slots": {"place_name": "internasional"}, "split": "test"}
{"utterance": "opo aku iso pesen bungkus seko domino", "expected_intent": "takeaway:takeaway_order", "expected_slots": {"order_type": "bungkus", "business_name": "domino"}, "split": "test"}
{"utterance": "apa aku butuh sweter dina iki", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "sweter", "date": "dina iki"}, "split": "test"}
{"utterance": "nuduhake kula werna redup", "expected_intent": "iot:iot_hue_lightdim", "expected_slots": {}, "split": "test"}
{"utterance": "werna cahyo kanggo ruang sinau", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {"house_place": "ruang sinau"}, "split": "test"}
{"utterance": "kandhani aku apa cuaca ing grand rapids mi saiki", "expected_intent": "weather:weather_query", "expected_slots": {"place_name": "grand rapids mi"}, "split": "test"}
{"utterance": "tulung puterno lagu seng tak tuku lan favorit", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "aku butuh ngganti werna lampu omah ku dadi biru", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"house_place": "omah", "color_type": "biru"}, "split": "test"}
{"utterance": "miwiti nggawe kopi jam enem esuk", "expected_intent": "iot:iot_coffee", "expected_slots": {"time": "jam enem esuk"}, "split": "test"}
{"utterance": "supaya kula gaul karo dino iki kompas", "expected_intent": "news:news_query", "expected_slots": {"date": "dino iki", "news_topic": "kompas"}, "split": "test"}
{"utterance": "mateni lampu saiki", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {}, "split": "test"}
{"utterance": "iku jam pitu isuk ing w. i. t.", "expected_intent": "datetime:datetime_convert", "expected_slots": {"time": "pitu isuk", "time_zone": "w. i. t."}, "split": "test"}
{"utterance": "alexa nguripake lampu mudhun dadi pitu", "expected_intent": "iot:iot_hue_lightdim", "expected_slots": {"change_amount": "dadi pitu"}, "split": "test"}
{"utterance": "apa kabar kanggo saiki", "expected_intent": "news:news_query", "expected_slots": {"date": "saiki"}, "split": "test"}
{"utterance": "alexa menehi kula warta utama", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "apa cuaca jumat iki", "expected_intent": "weather:weather_query", "expected_slots": {"date": "jumat"}, "split": "test"}
{"utterance": "kepiye cuacane sesuk", "expected_intent": "weather:weather_query", "expected_slots": {"date": "sesuk"}, "split": "test"}
{"utterance": "nuduhake wektu lokal surabaya saiki", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "surabaya"}, "split": "test"}
{"utterance": "nambah weker kanggo sesuk esuk jam enem esuk", "expected_intent": "alarm:alarm_set", "expected_slots": {"date": "sesuk", "timeofday": "esuk", "time": "enem esuk"}, "split": "test"}
{"utterance": "mie siji bungkus dadi bungkus", "expected_intent": "takeaway:takeaway_order", "expected_slots": {"food_type": "mie", "order_type": "bungkus"}, "split": "test"}
{"utterance": "gaweke pesenan nggo mie sak porsi terus gawe di bungkus", "expected_intent": "takeaway:takeaway_order", "expected_slots": {"food_type": "mie", "order_type": "bungkus"}, "split": "test"}
{"utterance": "gawe werno peteng timbang terang ndek omah", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"color_type": "peteng", "house_place": "omah"}, "split": "test"}
{"utterance": "olly sijine werna peteng tinimbang padhang ing umah", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"color_type": "peteng", "house_place": "umah"}, "split": "test"}
{"utterance": "opo jenis musik iki", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "musik iki soko pilem opo lan opo judule", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "lagu opo ning radio", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "info lagu", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "opo wae sing terjadi nang donya saiki", "expected_intent": "news:news_query", "expected_slots": {"place_name": "donya"}, "split": "test"}
{"utterance": "menehi kula kabar paling anyar", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "sopo sing nulis tembang iki", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "setel lagu didi kempot", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "didi kempot"}, "split": "test"}
{"utterance": "dudu lagu sing apik mangga simpen iki kanggo aku", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "menehi aku cahyo liyane", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {}, "split": "test"}
{"utterance": "golek tembang liyane soko afghan", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "bisa ngomong wektu ing lamongan", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "lamongan"}, "split": "test"}
{"utterance": "aku pengin pizza nang domino's pizza", "expected_intent": "takeaway:takeaway_order", "expected_slots": {"food_type": "pizza", "business_name": "domino's pizza"}, "split": "test"}
{"utterance": "tulung menehi aku ramalan dina iki kanggo kutha new york", "expected_intent": "weather:weather_query", "expected_slots": {"date": "dina iki", "place_name": "kutha new york"}, "split": "test"}
{"utterance": "piye pesenanku", "expected_intent": "takeaway:takeaway_query", "expected_slots": {}, "split": "test"}
{"utterance": "miwiti robot penyedot debu", "expected_intent": "iot:iot_cleaning", "expected_slots": {"device_type": "robot penyedot debu"}, "split": "test"}
{"utterance": "kirimno beritane teknologi", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "teknologi"}, "split": "test"}
{"utterance": "pateni lampune gudang", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"house_place": "gudang"}, "split": "test"}
{"utterance": "aku pengin mangan sop ayam teko restoran bromo asri", "expected_intent": "takeaway:takeaway_order", "expected_slots": {"meal_type": "mangan", "food_type": "sop", "business_type": "restoran", "business_name": "bromo asri"}, "split": "test"}
{"utterance": "pitung atus", "expected_intent": "datetime:datetime_convert", "expected_slots": {}, "split": "test"}
{"utterance": "iku wektu saiki sing bener kanggo ngendi aku dumunung", "expected_intent": "datetime:datetime_query", "expected_slots": {}, "split": "test"}
{"utterance": "telpon o gawe bungkus", "expected_intent": "takeaway:takeaway_order", "expected_slots": {"order_type": "bungkus"}, "split": "test"}
{"utterance": "warta saben dina", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "dina iki tanggal pira", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "dina iki"}, "split": "test"}
{"utterance": "siri tanggal berapa dina iki", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "dina iki"}, "split": "test"}
{"utterance": "kepiye carane nyetel mesin kopi kanggo nggawe kopi", "expected_intent": "iot:iot_coffee", "expected_slots": {"device_type": "mesin kopi"}, "split": "test"}
{"utterance": "piye carane miwiti robot penyedot debu", "expected_intent": "iot:iot_cleaning", "expected_slots": {"device_type": "robot penyedot debu"}, "split": "test"}
{"utterance": "setel musik rock lawas", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "rock lawas"}, "split": "test"}
{"utterance": "alexa setel tembang rock lan rap gonta ganti", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "rap"}, "split": "test"}
{"utterance": "gawe kamar biru lampu", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"house_place": "kamar", "color_type": "biru"}, "split": "test"}
{"utterance": "tulung nggawe lampu kamar turu abang lan lampu bale werna biasa", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"house_place": "bale", "color_type": "biasa"}, "split": "test"}
{"utterance": "piye cuacane", "expected_intent": "weather:weather_query", "expected_slots": {}, "split": "test"}
{"utterance": "opo wae rans entertaiment", "expected_intent": "news:news_query", "expected_slots": {"media_type": "rans entertaiment"}, "split": "test"}
{"utterance": "ngganti lampu ing omah ku dadi ijo", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"house_place": "omah", "color_type": "ijo"}, "split": "test"}
{"utterance": "setel musik acak", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "mangga nyetel weker kanggo jumat sabanjuré jam setengah pitu esuk", "expected_intent": "alarm:alarm_set", "expected_slots": {"date": "jumat", "time": "setengah pitu esuk"}, "split": "test"}
{"utterance": "mateni colokan wemo", "expected_intent": "iot:iot_wemo_off", "expected_slots": {"device_type": "colokan wemo"}, "split": "test"}
{"utterance": "setel dhaptar nari spotify ku", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "pateni lampu teras", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"house_place": "teras"}, "split": "test"}
{"utterance": "apa kabar paling anyar saka c. n. n. mangga", "expected_intent": "news:news_query", "expected_slots": {"media_type": "c. n. n."}, "split": "test"}
{"utterance": "gawe munggah padhange", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {}, "split": "test"}
{"utterance": "marang kula bab warta lingkungan paling anyar", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "lingkungan"}, "split": "test"}
{"utterance": "puterna lagu favorit ku saiki", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "aku wis mbatalake pesenan diselehake ing mcd apa iku liwat", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"business_name": "mcd"}, "split": "test"}
{"utterance": "ramalan cuaca saiki", "expected_intent": "weather:weather_query", "expected_slots": {}, "split": "test"}
{"utterance": "opo aku kudu nggawe jaket rebo ngarep", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "jaket", "date": "rebo"}, "split": "test"}
{"utterance": "nuduhake kabar babagan trump", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "trump"}, "split": "test"}
{"utterance": "nuduhake kabar babagan lingkungan", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "lingkungan"}, "split": "test"}
{"utterance": "gawe saluran ning pandora kanggo afgan", "expected_intent": "music:music_settings", "expected_slots": {"artist_name": "afgan"}, "split": "test"}
{"utterance": "warta paling anyar saka wilayah", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "apa aku eling nyetel weker pangeling kanggo janjian dokter sabanjure", "expected_intent": "alarm:alarm_query", "expected_slots": {"event_name": "janjian dokter"}, "split": "test"}
{"utterance": "apa bengi iki udan", "expected_intent": "weather:weather_query", "expected_slots": {"timeofday": "bengi iki", "weather_descriptor": "udan"}, "split": "test"}
{"utterance": "apa bakal suhu tetep padha utawa bakal dadi luwih adhem", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "suhu"}, "split": "test"}
{"utterance": "punika pesenan pungkasan siap", "expected_intent": "takeaway:takeaway_query", "expected_slots": {}, "split": "test"}
{"utterance": "pateni colokane", "expected_intent": "iot:iot_wemo_off", "expected_slots": {"device_type": "colokane"}, "split": "test"}
{"utterance": "setel tembang pop", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "pop"}, "split": "test"}
{"utterance": "setel musik dangdut", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "dangdut"}, "split": "test"}
{"utterance": "olly aku ngrasa seneng nari puterno aku dangdut banyuwangen", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "dangdut banyuwangen"}, "split": "test"}
{"utterance": "olly aku butuh ngrungokno lagu lagu susah dina iki", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "lagu lagu susah", "date": "dina iki"}, "split": "test"}
{"utterance": "tutup mati lampune", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {}, "split": "test"}
{"utterance": "aku are ngrungoake sewu kutha", "expected_intent": "play:play_music", "expected_slots": {"song_name": "sewu kutha"}, "split": "test"}
{"utterance": "apa kowe duwe dagelan lucu kanggo kula", "expected_intent": "general:general_joke", "expected_slots": {"joke_type": "lucu"}, "split": "test"}
{"utterance": "menehi kabar saka c. n. n.", "expected_intent": "news:news_query", "expected_slots": {"media_type": "c. n. n."}, "split": "test"}
{"utterance": "tulung uripke ceret kopi", "expected_intent": "iot:iot_coffee", "expected_slots": {}, "split": "test"}
{"utterance": "aku butuh sacangkir kopi", "expected_intent": "iot:iot_coffee", "expected_slots": {}, "split": "test"}
{"utterance": "setel musik jazz soko mus mujiono", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "jazz"}, "split": "test"}
{"utterance": "suwene nganti pesenan siap", "expected_intent": "takeaway:takeaway_query", "expected_slots": {}, "split": "test"}
{"utterance": "pateni lampune", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {}, "split": "test"}
{"utterance": "mungkasi nggunakake lampu", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {}, "split": "test"}
{"utterance": "apa aku kudu nggawa payung dina iki", "expected_intent": "weather:weather_query", "expected_slots": {"date": "dina iki"}, "split": "test"}
{"utterance": "opo ono sembarang konser cedak saiki", "expected_intent": "music:music_likeness", "expected_slots": {"event_name": "konser"}, "split": "test"}
{"utterance": "setel sembarang musik jazz", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "musik jazz"}, "split": "test"}
{"utterance": "eneng ne spiker e", "expected_intent": "audio:audio_volume_mute", "expected_slots": {}, "split": "test"}
{"utterance": "dadi no sepi suoro saka spiker", "expected_intent": "audio:audio_volume_mute", "expected_slots": {}, "split": "test"}
{"utterance": "puter tembang cidro", "expected_intent": "play:play_music", "expected_slots": {"song_name": "cidro"}, "split": "test"}
{"utterance": "saiki jam pira ning bandung", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "bandung"}, "split": "test"}
{"utterance": "bisa gawe aku secangkir kopi", "expected_intent": "iot:iot_coffee", "expected_slots": {}, "split": "test"}
{"utterance": "nyetel cahya kamar tamu nganti seket persen", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"house_place": "kamar tamu", "change_amount": "nganti seket persen"}, "split": "test"}
{"utterance": "telulas desember iku dina opo", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "telulas desember"}, "split": "test"}
{"utterance": "kaping pindho sasi ngarep ndharat ing dina apa", "expected_intent": "datetime:datetime_query", "expected_slots": {"event_name": "dina"}, "split": "test"}
{"utterance": "ana takeaway ing papa john's", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"business_name": "papa john's"}, "split": "test"}
{"utterance": "olly jam pira ing kutha iki", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "kutha iki"}, "split": "test"}
{"utterance": "mangga njaluk mesin kopi kanggo nggawe kopi", "expected_intent": "iot:iot_coffee", "expected_slots": {"device_type": "mesin kopi"}, "split": "test"}
{"utterance": "olly kandani aku jam weker ku", "expected_intent": "alarm:alarm_query", "expected_slots": {}, "split": "test"}
{"utterance": "mangga tuduhna artikel apa wae sing ana gandhengane karo cuaca ing warta isuk", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "cuaca", "media_type": "warta isuk"}, "split": "test"}
{"utterance": "cuaca saiki", "expected_intent": "weather:weather_query", "expected_slots": {}, "split": "test"}
{"utterance": "apa sembarang nganyari gati babagan pilihan", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "pilihan"}, "split": "test"}
{"utterance": "tulung uripno penyedot debu", "expected_intent": "iot:iot_cleaning", "expected_slots": {"device_type": "penyedot debu"}, "split": "test"}
{"utterance": "terangno nganti sangang puluh persen", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"change_amount": "sangang puluh persen"}, "split": "test"}
{"utterance": "ngomong ku anter taco bell", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"business_name": "taco bell"}, "split": "test"}
{"utterance": "tanggal pira dina iki", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "dina iki"}, "split": "test"}
{"utterance": "laporan cuaca mingguan", "expected_intent": "weather:weather_query", "expected_slots": {}, "split": "test"}
{"utterance": "apa wae pawarta ing c. n. n. laman", "expected_intent": "news:news_query", "expected_slots": {"media_type": "c. n. n."}, "split": "test"}
{"utterance": "berapa wektu di yogyakarta", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "yogyakarta"}, "split": "test"}
{"utterance": "setel denny caknan los dol", "expected_intent": "play:play_music", "expected_slots": {"song_name": "denny caknan"}, "split": "test"}
{"utterance": "apa ana weker jam sepuluh esuk", "expected_intent": "alarm:alarm_query", "expected_slots": {"time": "sepuluh esuk"}, "split": "test"}
{"utterance": "mulai robot vakum", "expected_intent": "iot:iot_cleaning", "expected_slots": {"device_type": "robot vakum"}, "split": "test"}
{"utterance": "nyalakna vakum", "expected_intent": "iot:iot_cleaning", "expected_slots": {"device_type": "vakum"}, "split": "test"}
{"utterance": "setel tembang kadi didi kempot", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "didi kempot"}, "split": "test"}
{"utterance": "mateni lampu kantor", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"house_place": "kantor"}, "split": "test"}
{"utterance": "mangga genti werno lampu kanggo abang", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"color_type": "abang"}, "split": "test"}
{"utterance": "hapusen alarmku", "expected_intent": "alarm:alarm_remove", "expected_slots": {}, "split": "test"}
{"utterance": "mbatalake weker", "expected_intent": "alarm:alarm_remove", "expected_slots": {}, "split": "test"}
{"utterance": "tulung kandani aku warta sing gegandhengan karo pasar saham", "expected_intent": "qa:qa_stock", "expected_slots": {"news_topic": "pasar saham"}, "split": "test"}
{"utterance": "setel didi kempot", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "didi kempot"}, "split": "test"}
{"utterance": "apa sampeyan bisa mundhakaken lampu kanggo aku", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {}, "split": "test"}
{"utterance": "njupuk lapu kanggo aku", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {}, "split": "test"}
{"utterance": "apa louie's njupuk metu", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"business_name": "louie's"}, "split": "test"}
{"utterance": "pesen louies", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"business_name": "louies"}, "split": "test"}
{"utterance": "aku sengit tembang iki", "expected_intent": "music:music_dislikeness", "expected_slots": {}, "split": "test"}
{"utterance": "aku tresno lagu iki", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "aku ingin puter tembang maneh", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "kandhani aku bab suhu", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "suhu"}, "split": "test"}
{"utterance": "artikel warta kaca ngarep mangga", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "apa sing anyar ing warta", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "genti werno cahya aku dadi biru banjur pateni lampu pawon", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"color_type": "biru", "house_place": "pawon"}, "split": "test"}
{"utterance": "apa kabar saka kompas kasebut", "expected_intent": "news:news_query", "expected_slots": {"media_type": "kompas"}, "split": "test"}
{"utterance": "pateni colokane", "expected_intent": "iot:iot_wemo_off", "expected_slots": {}, "split": "test"}
{"utterance": "ini wektunya panganan sampah", "expected_intent": "takeaway:takeaway_order", "expected_slots": {"food_type": "panganan sampah"}, "split": "test"}
{"utterance": "apa wektu iku ing wektu standar pasifik", "expected_intent": "datetime:datetime_query", "expected_slots": {"time_zone": "pasifik"}, "split": "test"}
{"utterance": "piye cuacane neng new jersey", "expected_intent": "weather:weather_query", "expected_slots": {"place_name": "new jersey"}, "split": "test"}
{"utterance": "gawe mati lampune", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {}, "split": "test"}
{"utterance": "nuduhake kula sawetara acara saiki", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "bacano berita sing anyar", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "ojo setel tembang iki maneh", "expected_intent": "music:music_dislikeness", "expected_slots": {}, "split": "test"}
{"utterance": "aku seneng musik iki tolong disimpen nang daftar puter joget lan inget aku seneng", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "setel lagu kesenengan aku soko taun wingi", "expected_intent": "play:play_music", "expected_slots": {"date": "taun wingi"}, "split": "test"}
{"utterance": "setel sembarang lagu soko album noah", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "noah"}, "split": "test"}
{"utterance": "wektu w. i. b. saiki jam pira", "expected_intent": "datetime:datetime_query", "expected_slots": {"time_zone": "w. i. b."}, "split": "test"}
{"utterance": "setel sembarang lagu soko daftar puter aku", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "pira puting beliung wis ana ing wulan iki", "expected_intent": "general:general_quirky", "expected_slots": {"news_topic": "puting beliung", "date": "wulan iki"}, "split": "test"}
{"utterance": "olly pira tornado wis ana ing bulan iki", "expected_intent": "general:general_quirky", "expected_slots": {"news_topic": "tornado", "date": "bulan iki"}, "split": "test"}
{"utterance": "gawe aku sacangkir kopi karo krim rasa karamel asin", "expected_intent": "iot:iot_coffee", "expected_slots": {"coffee_type": "krim rasa karamel asin"}, "split": "test"}
{"utterance": "setel david bowie nomer siji soko daftar lagu aku", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "david bowie"}, "split": "test"}
{"utterance": "apa aku duwe weker nyetel jam enem sesuk esuk", "expected_intent": "alarm:alarm_query", "expected_slots": {"time": "esuk", "date": "sesuk"}, "split": "test"}
{"utterance": "tuduhake wekerku sing wis tak setel", "expected_intent": "alarm:alarm_query", "expected_slots": {}, "split": "test"}
{"utterance": "gawe mati lampu kamar ku", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"house_place": "kamar"}, "split": "test"}
{"utterance": "puterno daftar tembang", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "pateni spiker e", "expected_intent": "audio:audio_volume_mute", "expected_slots": {}, "split": "test"}
{"utterance": "taun piro lagu iki metu", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "mungkasi miwiti jus", "expected_intent": "iot:iot_wemo_on", "expected_slots": {}, "split": "test"}
{"utterance": "rating limo", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "hey olly bisa gawe aku kopi krim", "expected_intent": "iot:iot_coffee", "expected_slots": {"coffee_type": "krim"}, "split": "test"}
{"utterance": "tulung cathetan aku seneng dangdut lan sengit keroncong", "expected_intent": "music:music_likeness", "expected_slots": {"music_genre": "dangdut", "place_name": "keroncong"}, "split": "test"}
{"utterance": "setel poker face soko lady gaga", "expected_intent": "play:play_music", "expected_slots": {"song_name": "poker face", "artist_name": "lady gaga"}, "split": "test"}
{"utterance": "setel poker face soko lady gaga", "expected_intent": "play:play_music", "expected_slots": {"song_name": "poker face", "artist_name": "lady gaga"}, "split": "test"}
{"utterance": "elingno aku kanggo nindakake sesuatu", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "nyetel alarm anyar kanggo wektu kasebut", "expected_intent": "alarm:alarm_set", "expected_slots": {}, "split": "test"}
{"utterance": "apa kahanan saiki investigasi hubungan trump karo rusia", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "trump", "place_name": "rusia"}, "split": "test"}
{"utterance": "aku pengin cahyo medhun", "expected_intent": "iot:iot_hue_lightdim", "expected_slots": {}, "split": "test"}
{"utterance": "natal taun iki ing dina apa", "expected_intent": "datetime:datetime_query", "expected_slots": {"event_name": "natal", "date": "taun iki"}, "split": "test"}
{"utterance": "apa dewe ngarepake udan awan iki", "expected_intent": "weather:weather_query", "expected_slots": {"timeofday": "awan"}, "split": "test"}
{"utterance": "puter musik reggae", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "reggae"}, "split": "test"}
{"utterance": "olly ngirim sushi domino", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"business_name": "domino"}, "split": "test"}
{"utterance": "tulung mudhunke lampu", "expected_intent": "iot:iot_hue_lightdim", "expected_slots": {}, "split": "test"}
{"utterance": "apa domino sing cedhak duwe kiriman", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"business_name": "domino"}, "split": "test"}
{"utterance": "mateni colokan wemo", "expected_intent": "iot:iot_wemo_off", "expected_slots": {"device_type": "colokan wemo"}, "split": "test"}
{"utterance": "apa cuaca minggu iki kanggo miami", "expected_intent": "weather:weather_query", "expected_slots": {"date": "minggu iki", "place_name": "miami"}, "split": "test"}
{"utterance": "apa ramalane kanggo seminggu", "expected_intent": "weather:weather_query", "expected_slots": {"date": "seminggu"}, "split": "test"}
{"utterance": "tulung aktifake mesin kopi ku kanggo aku", "expected_intent": "iot:iot_coffee", "expected_slots": {"device_type": "mesin kopi"}, "split": "test"}
{"utterance": "tulung gaweke aku secangkir kopi", "expected_intent": "iot:iot_coffee", "expected_slots": {}, "split": "test"}
{"utterance": "tulung uripno mesin kopi ku", "expected_intent": "iot:iot_coffee", "expected_slots": {"device_type": "mesin kopi"}, "split": "test"}
{"utterance": "mateni colokan", "expected_intent": "iot:iot_wemo_off", "expected_slots": {}, "split": "test"}
{"utterance": "aku pengin ndeleng warta", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "aku pengin krungu guyonan", "expected_intent": "general:general_joke", "expected_slots": {}, "split": "test"}
{"utterance": "laporke cuaca kanggo telung puluh telu uwe pitu atus pitung puluh papat", "expected_intent": "weather:weather_query", "expected_slots": {}, "split": "test"}
{"utterance": "laporan cuaca kanggo largo", "expected_intent": "weather:weather_query", "expected_slots": {"place_name": "largo"}, "split": "test"}
{"utterance": "ono endi monthor e", "expected_intent": "audio:audio_volume_up", "expected_slots": {}, "split": "test"}
{"utterance": "selasa ngarep tanggal pira", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "selasa"}, "split": "test"}
{"utterance": "ketok ketok", "expected_intent": "general:general_joke", "expected_slots": {}, "split": "test"}
{"utterance": "ora ana lampu ing pawon", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"house_place": "pawon"}, "split": "test"}
{"utterance": "ngganti mateni lampu nganti sacekape", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {}, "split": "test"}
{"utterance": "gawe iki abang neng kene", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"color_type": "abang"}, "split": "test"}
{"utterance": "mangga nyetel wekerku kanggo lima sore", "expected_intent": "alarm:alarm_set", "expected_slots": {"time": "lima sore"}, "split": "test"}
{"utterance": "puter versi langsung dening elton john", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "elton john"}, "split": "test"}
{"utterance": "setel tembang didi kempot paling kondang", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "didi kempot"}, "split": "test"}
{"utterance": "apa ramalan sepuluh dina", "expected_intent": "weather:weather_query", "expected_slots": {"date": "sepuluh dina"}, "split": "test"}
{"utterance": "apa ana ramalan udan utawa salju minggu iki", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "udan utawa salju", "date": "minggu iki"}, "split": "test"}
{"utterance": "apa cuaca bakal apik akhir minggu iki", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "apik", "date": "akhir minggu iki"}, "split": "test"}
{"utterance": "apa sampeyan ngerti eta pesenanku", "expected_intent": "takeaway:takeaway_query", "expected_slots": {}, "split": "test"}
{"utterance": "apa kowe bisa nyetel mesin kopi kanggo nggawe kopi jam pitu esuk", "expected_intent": "iot:iot_coffee", "expected_slots": {"device_type": "mesin kopi", "time": "jam pitu esuk"}, "split": "test"}
{"utterance": "pinten derajat ing njaba", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "derajat"}, "split": "test"}
{"utterance": "musik anyar pop", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "pop"}, "split": "test"}
{"utterance": "musik rap paling apik", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "rap"}, "split": "test"}
{"utterance": "mbusak weker paling anyar", "expected_intent": "alarm:alarm_remove", "expected_slots": {}, "split": "test"}
{"utterance": "apa tanggal rolikur iku neng dina rebo", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "rolikur"}, "split": "test"}
{"utterance": "opo saiki jam sepuluh", "expected_intent": "datetime:datetime_query", "expected_slots": {"time": "sepuluh"}, "split": "test"}
{"utterance": "apa cuaca udan dina setu", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "udan", "date": "setu"}, "split": "test"}
{"utterance": "wayahe sepi", "expected_intent": "audio:audio_volume_mute", "expected_slots": {}, "split": "test"}
{"utterance": "tulung cilik ne volume tembang e", "expected_intent": "audio:audio_volume_down", "expected_slots": {}, "split": "test"}
{"utterance": "muter lagu paling populer dening afgan", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "tulung ngomong luwih alus", "expected_intent": "audio:audio_volume_down", "expected_slots": {}, "split": "test"}
{"utterance": "setel musik saiki", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "ayo muter daftar tembang sing paling sering aku diputer", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "kepiye cuaca neng jogja", "expected_intent": "weather:weather_query", "expected_slots": {"place_name": "jogja"}, "split": "test"}
{"utterance": "ana salju ing ramalan", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "salju"}, "split": "test"}
{"utterance": "puterno daftar ku bae", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "apa kemungkinan udan ing cuaca dina iki", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "udan", "date": "dina iki"}, "split": "test"}
{"utterance": "tulung nyalakna lampu balkon ku", "expected_intent": "iot:iot_hue_lighton", "expected_slots": {"house_place": "balkon"}, "split": "test"}
{"utterance": "tulung gantien zona wektu nang indonesia", "expected_intent": "datetime:datetime_convert", "expected_slots": {"place_name": "indonesia"}, "split": "test"}
{"utterance": "setel lagu shake it off soko taylor swift", "expected_intent": "play:play_music", "expected_slots": {"song_name": "shake it off", "artist_name": "taylor swift"}, "split": "test"}
{"utterance": "ngganti lampu ing ruang tamu dadi ijo karo abang", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"house_place": "ruang tamu", "color_type": "ijo karo abang"}, "split": "test"}
{"utterance": "aku pengin lampu dadi keabang abangan sethitik ish", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"color_type": "keabang abangan"}, "split": "test"}
{"utterance": "aku pengen krungu jazz musik", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "pengen krungu jazz"}, "split": "test"}
{"utterance": "dhekekno sawetara dewa sangalas", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "dewa sangalas"}, "split": "test"}
{"utterance": "setel daftar tembang tresno", "expected_intent": "play:play_music", "expected_slots": {"playlist_name": "daftar tembang tresno"}, "split": "test"}
{"utterance": "baleni", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "jam pira saiki ing bandung", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "bandung"}, "split": "test"}
{"utterance": "aturke mesin kopi ku", "expected_intent": "iot:iot_coffee", "expected_slots": {"device_type": "mesin kopi"}, "split": "test"}
{"utterance": "tulung pateni lampu ing teras", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"house_place": "teras"}, "split": "test"}
{"utterance": "apa crita paling anyar saka warta rubahapa crita paling anyar saka fox news", "expected_intent": "news:news_query", "expected_slots": {"media_type": "fox news"}, "split": "test"}
{"utterance": "setel no mati sworo ne", "expected_intent": "audio:audio_volume_mute", "expected_slots": {}, "split": "test"}
{"utterance": "tulung bisuk ne", "expected_intent": "audio:audio_volume_mute", "expected_slots": {}, "split": "test"}
{"utterance": "opo cuacane ndek beijing", "expected_intent": "weather:weather_query", "expected_slots": {"place_name": "beijing"}, "split": "test"}
{"utterance": "gedhek ne sworo mu", "expected_intent": "audio:audio_volume_up", "expected_slots": {}, "split": "test"}
{"utterance": "luwih padhang", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {}, "split": "test"}
{"utterance": "awakmu yopo", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "elingake aku sawise sepuluh menit", "expected_intent": "calendar:calendar_set", "expected_slots": {"time": "sawise sepuluh menit"}, "split": "test"}
{"utterance": "apa kabar paling anyar saka antara", "expected_intent": "news:news_query", "expected_slots": {"media_type": "antara"}, "split": "test"}
{"utterance": "apa kabar paling anyar babagan c. n. n.", "expected_intent": "news:news_query", "expected_slots": {"media_type": "c. n. n."}, "split": "test"}
{"utterance": "apa wektu ing majalengka", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "majalengka"}, "split": "test"}
{"utterance": "dina iki cerah ya", "expected_intent": "weather:weather_query", "expected_slots": {"date": "dina iki", "weather_descriptor": "cerah"}, "split": "test"}
{"utterance": "apa sing kedadeyan ing donya dina iki", "expected_intent": "news:news_query", "expected_slots": {"date": "dina iki"}, "split": "test"}
{"utterance": "berita saka kompas", "expected_intent": "news:news_query", "expected_slots": {"media_type": "kompas"}, "split": "test"}
{"utterance": "setel sembarang musik jazz", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "jazz"}, "split": "test"}
{"utterance": "apa jenis musik sing mbok pikir aku seneng", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "marang kula wektu ing ngendi wae", "expected_intent": "datetime:datetime_convert", "expected_slots": {}, "split": "test"}
{"utterance": "apa aku bisa pesen di restoran", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"business_type": "restoran"}, "split": "test"}
{"utterance": "aku pengin kaya ing pawon dadi warna sing beda", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"house_place": "pawon"}, "split": "test"}
{"utterance": "olly simpen kabeh lagu sing wis aku rungokake luwih teko sapisan", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "setel daftar lagu khusus musik rock", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "rock"}, "split": "test"}
{"utterance": "aku butuh weker sesuk jam setengah enem esuk", "expected_intent": "alarm:alarm_set", "expected_slots": {"date": "sesuk", "time": "setengah enem esuk"}, "split": "test"}
{"utterance": "aku pengen weker jam telu dino iki", "expected_intent": "alarm:alarm_set", "expected_slots": {"time": "telu", "date": "dino iki"}, "split": "test"}
{"utterance": "cahya sepuluh persen", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {}, "split": "test"}
{"utterance": "olly aku wis nyetel weker kanggo sesuk", "expected_intent": "alarm:alarm_query", "expected_slots": {"date": "sesuk"}, "split": "test"}
{"utterance": "muter dhaptar tembang mata dewa aku saka ngisor", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "setel lagu hits rap sangang puluhan duwekku", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "rap sangang puluhan"}, "split": "test"}
{"utterance": "setel cidro soko didi kempot sakwise tembang iki", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "didi kempot"}, "split": "test"}
{"utterance": "saiki tanggal piro", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "saiki"}, "split": "test"}
{"utterance": "setel janjiku soko gigi", "expected_intent": "play:play_music", "expected_slots": {"song_name": "janjiku", "artist_name": "gigi"}, "split": "test"}
{"utterance": "genti lampu dadi werna abang", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"color_type": "abang"}, "split": "test"}
{"utterance": "opo jenenge tembang iki", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "opo judule tembang iki", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "olly yen ana kabar anyar babagan banjir bisa langsung kabari", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "banjir"}, "split": "test"}
{"utterance": "gugah aku jam wolu esuk", "expected_intent": "alarm:alarm_set", "expected_slots": {"time": "wolu esuk"}, "split": "test"}
{"utterance": "uripno lampu", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {}, "split": "test"}
{"utterance": "ngomong babagan weker", "expected_intent": "alarm:alarm_query", "expected_slots": {}, "split": "test"}
{"utterance": "mateni colokan pinter", "expected_intent": "iot:iot_wemo_off", "expected_slots": {"device_type": "colokan pinter"}, "split": "test"}
{"utterance": "aku pengen colokan pinter patenono saiki", "expected_intent": "iot:iot_wemo_off", "expected_slots": {"device_type": "colokan pinter"}, "split": "test"}
{"utterance": "setel youtube daftar tembang cidro", "expected_intent": "play:play_music", "expected_slots": {"media_type": "youtube"}, "split": "test"}
{"utterance": "setel tembang kenangan aku kadi urutan tembang", "expected_intent": "play:play_music", "expected_slots": {"playlist_name": "tembang kenangan"}, "split": "test"}
{"utterance": "kandani aku laporan cuacane ning jakarta", "expected_intent": "weather:weather_query", "expected_slots": {"place_name": "jakarta"}, "split": "test"}
{"utterance": "tulung pateni lampu kamar mandi", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"house_place": "kamar mandi"}, "split": "test"}
{"utterance": "kalem ne volume spiker e", "expected_intent": "audio:audio_volume_down", "expected_slots": {}, "split": "test"}
{"utterance": "bisuk ne kanggo limalas menit iki", "expected_intent": "audio:audio_volume_mute", "expected_slots": {"time": "limalas menit"}, "split": "test"}
{"utterance": "tulung rating lagu saiki minangka limang lintang", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "goleki kula info babagan mobil", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "mobil"}, "split": "test"}
{"utterance": "copot weker sing disetel kanggo dino kerjo jam songo", "expected_intent": "alarm:alarm_remove", "expected_slots": {"date": "dino kerjo", "time": "songo"}, "split": "test"}
{"utterance": "mateni lampu", "expected_intent": "iot:iot_hue_lightdim", "expected_slots": {}, "split": "test"}
{"utterance": "aku pengin pesen bungkus cina", "expected_intent": "takeaway:takeaway_order", "expected_slots": {"order_type": "bungkus", "food_type": "cina"}, "split": "test"}
{"utterance": "bisuk ne tembang e", "expected_intent": "audio:audio_volume_mute", "expected_slots": {}, "split": "test"}
{"utterance": "tulung setel ne mati sworo ne", "expected_intent": "audio:audio_volume_mute", "expected_slots": {}, "split": "test"}
{"utterance": "ngaktifake roomba", "expected_intent": "iot:iot_cleaning", "expected_slots": {"device_type": "roomba"}, "split": "test"}
{"utterance": "apa jenis cuaca sing padha duwe ing orange tx saiki", "expected_intent": "weather:weather_query", "expected_slots": {"place_name": "orange tx"}, "split": "test"}
{"utterance": "tulung dhekekno daftar lagu rap kesenengan ku", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "rap"}, "split": "test"}
{"utterance": "sopo sing nembang tembang sing aku rungoke sak iki", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "apa wektu tangi kanggo weker ku wis tak setel kanggo pesawat akhir minggu iki", "expected_intent": "alarm:alarm_query", "expected_slots": {"alarm_type": "tangi", "date": "minggu iki"}, "split": "test"}
{"utterance": "padhang ke cahyo", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {}, "split": "test"}
{"utterance": "dhaptar weker nyetel saiki", "expected_intent": "alarm:alarm_query", "expected_slots": {}, "split": "test"}
{"utterance": "sembarang weker apa wae sing kadhaptar saiki", "expected_intent": "alarm:alarm_query", "expected_slots": {}, "split": "test"}
{"utterance": "wacanen iku maneh", "expected_intent": "play:play_audiobook", "expected_slots": {}, "split": "test"}
{"utterance": "puterno aku ingkang populer taun wingi", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "setel sembarang tembang sing menang grammy taun iki", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "aku arep ngrungoake musik keroncong", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "keroncong"}, "split": "test"}
{"utterance": "simpen lagu iki melu urutane", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "piro suhu ne", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "suhu"}, "split": "test"}
{"utterance": "omongke jam saiki", "expected_intent": "datetime:datetime_query", "expected_slots": {}, "split": "test"}
{"utterance": "dangdut", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "dangdut"}, "split": "test"}
{"utterance": "tulung setelen lagu ne didi kempot sewu kuto", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "didi kempot", "song_name": "sewu kuto"}, "split": "test"}
{"utterance": "pilih lagu pertama nang perpustakaan itunes", "expected_intent": "play:play_music", "expected_slots": {"playlist_name": "perpustakaan itunes"}, "split": "test"}
{"utterance": "nyetel weker jam enem isuk", "expected_intent": "alarm:alarm_set", "expected_slots": {"time": "enem isuk"}, "split": "test"}
{"utterance": "iso koe gawe lampu mati", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {}, "split": "test"}
{"utterance": "olly riyoyo dino opo", "expected_intent": "datetime:datetime_query", "expected_slots": {"event_name": "riyoyo", "date": "dino opo"}, "split": "test"}
{"utterance": "apa kedaden ing mati suri", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "mati suri"}, "split": "test"}
{"utterance": "ayo sedot debu ne", "expected_intent": "iot:iot_cleaning", "expected_slots": {}, "split": "test"}
{"utterance": "nyingkirake wekerku saiki", "expected_intent": "alarm:alarm_remove", "expected_slots": {}, "split": "test"}
{"utterance": "apa ing warta", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "tulung mudhunke daya", "expected_intent": "iot:iot_wemo_off", "expected_slots": {}, "split": "test"}
{"utterance": "mateni daya", "expected_intent": "iot:iot_wemo_off", "expected_slots": {}, "split": "test"}
{"utterance": "setel cidro", "expected_intent": "play:play_music", "expected_slots": {"song_name": "cidro"}, "split": "test"}
{"utterance": "puter tembang sing tak rungokno paling akeh", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "mbukak penyedot", "expected_intent": "iot:iot_cleaning", "expected_slots": {"device_type": "penyedot"}, "split": "test"}
{"utterance": "mangga goleki saka domino kang steakhouse ngirim", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"business_name": "domino"}, "split": "test"}
{"utterance": "setel sembarang musik rap", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "rap"}, "split": "test"}
{"utterance": "tanggal limo iku dina opo", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "tanggal limo"}, "split": "test"}
{"utterance": "giliran mateni lampu pawon", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"house_place": "pawon"}, "split": "test"}
{"utterance": "aku pengin nyetel weker nalika aku nyopir ngarep sesuk kanggo elinga mampir ing toko lan tuku panganan", "expected_intent": "alarm:alarm_set", "expected_slots": {"date": "sesuk", "event_name": "mampir ing toko lan tuku panganan"}, "split": "test"}
{"utterance": "gawe kopi", "expected_intent": "iot:iot_coffee", "expected_slots": {}, "split": "test"}
{"utterance": "lirikne apik", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "pateni lampu ing nduwur sirah", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {}, "split": "test"}
{"utterance": "setel ne munggah volume ne ning spiker ku", "expected_intent": "audio:audio_volume_up", "expected_slots": {}, "split": "test"}
{"utterance": "kaya apa cuaca ing tucson dina iki", "expected_intent": "weather:weather_query", "expected_slots": {"place_name": "tucson", "date": "dina iki"}, "split": "test"}
{"utterance": "gantien wektu saiki tekan w. i. b. nang w. i. t.", "expected_intent": "datetime:datetime_convert", "expected_slots": {"time_zone": "w. i. t."}, "split": "test"}
{"utterance": "tulung setel daftar lagu acak", "expected_intent": "play:play_music", "expected_slots": {"playlist_name": "daftar lagu acak"}, "split": "test"}
{"utterance": "aku pengin ngerti kabeh sing rusak babagan bendungan pecah kalimantan barat", "expected_intent": "news:news_query", "expected_slots": {"place_name": "kalimantan barat"}, "split": "test"}
{"utterance": "jam piro sing kowe setel ning alarm", "expected_intent": "alarm:alarm_query", "expected_slots": {}, "split": "test"}
{"utterance": "ngendi aku bisa njaluk dijupuk saka amer lan sawetara kanggo pindhah pangan meksiko", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"food_type": "meksiko"}, "split": "test"}
{"utterance": "opo weker pangeling ku wes disetel kanggo kelas tari", "expected_intent": "alarm:alarm_query", "expected_slots": {"event_name": "kelas tari"}, "split": "test"}
{"utterance": "kandhani aku persentasi bakal udan ing seattle washington kanggo dina iki", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "udan", "place_name": "seattle washington", "date": "dina iki"}, "split": "test"}
{"utterance": "iso tulung kowe puter didi kempot", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "didi kempot"}, "split": "test"}
{"utterance": "apa sampeyan bisa konfirmasi manawa domino bungkus", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"business_name": "domino", "order_type": "bungkus"}, "split": "test"}
{"utterance": "apa weker sing tak setel dina iki", "expected_intent": "alarm:alarm_query", "expected_slots": {"date": "dina iki"}, "split": "test"}
{"utterance": "setel tembang cidro", "expected_intent": "play:play_music", "expected_slots": {"song_name": "cidro"}, "split": "test"}
{"utterance": "pateni wifi ku", "expected_intent": "iot:iot_wemo_off", "expected_slots": {}, "split": "test"}
{"utterance": "obah ne volume ne dadi telung puluh limo persen", "expected_intent": "audio:audio_volume_other", "expected_slots": {"change_amount": "dadi telung puluh limo persen"}, "split": "test"}
{"utterance": "ganti en itungan volume ne dadi pol", "expected_intent": "audio:audio_volume_other", "expected_slots": {"change_amount": "pol"}, "split": "test"}
{"utterance": "tulung ditiliki cuaca nang indonesia", "expected_intent": "weather:weather_query", "expected_slots": {"place_name": "indonesia"}, "split": "test"}
{"utterance": "pateni lampu ning pawon", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"house_place": "pawon"}, "split": "test"}
{"utterance": "ngaktifno mesin luwih resik", "expected_intent": "iot:iot_cleaning", "expected_slots": {"device_type": "mesin luwih resik"}, "split": "test"}
{"utterance": "heh olly ganti setelan cahya saiki", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {}, "split": "test"}
{"utterance": "wenehi berita politik paling anyar ing saindenging dunya", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "politik", "place_name": "dunya"}, "split": "test"}
{"utterance": "apa ana sembarang kabar babagan ke presiden an", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "presiden"}, "split": "test"}
{"utterance": "wektu bandung", "expected_intent": "datetime:datetime_query", "expected_slots": {"time_zone": "wektu", "place_name": "bandung"}, "split": "test"}
{"utterance": "heh olly saiki jam pira", "expected_intent": "datetime:datetime_query", "expected_slots": {}, "split": "test"}
{"utterance": "heh siri jam pira", "expected_intent": "datetime:datetime_query", "expected_slots": {}, "split": "test"}
{"utterance": "musik opo iki", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "uripno wemo", "expected_intent": "iot:iot_wemo_on", "expected_slots": {"device_type": "wemo"}, "split": "test"}
{"utterance": "aku pengin denger cidro didi kempot", "expected_intent": "play:play_music", "expected_slots": {"song_name": "cidro", "artist_name": "didi kempot"}, "split": "test"}
{"utterance": "apa aku sore iki bisa nyukur suket", "expected_intent": "weather:weather_query", "expected_slots": {"timeofday": "sore iki", "weather_descriptor": "nyukur suket"}, "split": "test"}
{"utterance": "ngomong guyon paling lucu sing tau dicritakake", "expected_intent": "general:general_joke", "expected_slots": {"joke_type": "paling lucu"}, "split": "test"}
{"utterance": "aku pengin ngrungokne guyonan apik kang lucu", "expected_intent": "general:general_joke", "expected_slots": {"joke_type": "lucu"}, "split": "test"}
{"utterance": "kapan panganan cina ku dikirim", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"food_type": "cina"}, "split": "test"}
{"utterance": "apa ana udan ing ramalan kanggo minggu ngarep", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "udan", "date": "minggu ngarep"}, "split": "test"}
{"utterance": "setel separuh aku noah", "expected_intent": "play:play_music", "expected_slots": {"song_name": "separuh aku", "artist_name": "noah"}, "split": "test"}
{"utterance": "apa sek durung sore", "expected_intent": "datetime:datetime_query", "expected_slots": {}, "split": "test"}
{"utterance": "uripno roomba", "expected_intent": "iot:iot_cleaning", "expected_slots": {"device_type": "roomba"}, "split": "test"}
{"utterance": "tulung mandheg o ngomong", "expected_intent": "audio:audio_volume_mute", "expected_slots": {}, "split": "test"}
{"utterance": "olly nguripake mesin kopi kanggo nggawe kopi", "expected_intent": "iot:iot_coffee", "expected_slots": {"device_type": "mesin kopi"}, "split": "test"}
{"utterance": "omah genti kabeh lampu ning biru", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"color_type": "biru"}, "split": "test"}
{"utterance": "omah lampu biru", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"color_type": "biru"}, "split": "test"}
{"utterance": "omah apa kowe isa nggawe kabeh lampu ing omah dadi biru", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"house_place": "omah", "color_type": "biru"}, "split": "test"}
{"utterance": "apa wektu saiki ing standar wétan", "expected_intent": "datetime:datetime_query", "expected_slots": {"time_zone": "wétan"}, "split": "test"}
{"utterance": "jam pira saiki ning bandung indonesia", "expected_intent": "datetime:datetime_query", "expected_slots": {"time_zone": "bandung", "place_name": "indonesia"}, "split": "test"}
{"utterance": "apa kabar paling anyar", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "apa cuaca dina iki", "expected_intent": "weather:weather_query", "expected_slots": {"date": "dina iki"}, "split": "test"}
{"utterance": "pindah lagu sawise", "expected_intent": "music:music_settings", "expected_slots": {"player_setting": "pindah"}, "split": "test"}
{"utterance": "nyiyapake kopi saiki", "expected_intent": "iot:iot_coffee", "expected_slots": {}, "split": "test"}
{"utterance": "kopi aku wis adem tulung gawekno kopi maneh", "expected_intent": "iot:iot_coffee", "expected_slots": {}, "split": "test"}
{"utterance": "setel tatu", "expected_intent": "play:play_music", "expected_slots": {"song_name": "tatu"}, "split": "test"}
{"utterance": "nambah padhang ing kamar iki", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {"house_place": "kamar iki"}, "split": "test"}
{"utterance": "apa aku kudu nganggo jaket engko bengi", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "jaket", "timeofday": "engko bengi"}, "split": "test"}
{"utterance": "nggawe lampu ing kene luwih abang", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"color_type": "luwih abang"}, "split": "test"}
{"utterance": "setel lagu major tom david bowie", "expected_intent": "play:play_music", "expected_slots": {"song_name": "major tom", "artist_name": "david bowie"}, "split": "test"}
{"utterance": "pirang jam maneh tengah wengi ning bogor indonesia", "expected_intent": "datetime:datetime_query", "expected_slots": {"time": "tengah wengi", "place_name": "bogor indonesia"}, "split": "test"}
{"utterance": "apa cuaca bakal kurang saka sepuluh derajat ing paris", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "kurang saka sepuluh derajat", "place_name": "paris"}, "split": "test"}
{"utterance": "apa sesuk bakal udan ning cirebon", "expected_intent": "weather:weather_query", "expected_slots": {"date": "sesuk", "weather_descriptor": "udan", "place_name": "cirebon"}, "split": "test"}
{"utterance": "aku kudu tangi jam sepuluh sesuk", "expected_intent": "alarm:alarm_set", "expected_slots": {"time": "sepuluh", "date": "sesuk"}, "split": "test"}
{"utterance": "kaya apa feed facebook ku", "expected_intent": "social:social_query", "expected_slots": {"media_type": "facebook"}, "split": "test"}
{"utterance": "jam pira ndek cina", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "cina"}, "split": "test"}
{"utterance": "pateni lampu", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {}, "split": "test"}
{"utterance": "mandek operasi lampu", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {}, "split": "test"}
{"utterance": "piye cuaca ne ning tempatku", "expected_intent": "weather:weather_query", "expected_slots": {}, "split": "test"}
{"utterance": "setel sembarang lagu apik", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "jam piro saiki nang tulungagung", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "tulungagung"}, "split": "test"}
{"utterance": "mriksa kabeh weker", "expected_intent": "alarm:alarm_query", "expected_slots": {}, "split": "test"}
{"utterance": "piye kabare nang njaba dina iki", "expected_intent": "weather:weather_query", "expected_slots": {"date": "dina iki"}, "split": "test"}
{"utterance": "apa cuaca saiki", "expected_intent": "weather:weather_query", "expected_slots": {}, "split": "test"}
{"utterance": "apa cuaca sesuk", "expected_intent": "weather:weather_query", "expected_slots": {"date": "sesuk"}, "split": "test"}
{"utterance": "apa judhul ing c. n. n.", "expected_intent": "news:news_query", "expected_slots": {"media_type": "c. n. n."}, "split": "test"}
{"utterance": "apa berita sing lagi anget ing new york times", "expected_intent": "news:news_query", "expected_slots": {"media_type": "new york times"}, "split": "test"}
{"utterance": "apa aku kudu nggawa payung dina iki", "expected_intent": "weather:weather_query", "expected_slots": {"date": "dina iki"}, "split": "test"}
{"utterance": "apa cuaca ing portland", "expected_intent": "weather:weather_query", "expected_slots": {"place_name": "portland"}, "split": "test"}
{"utterance": "opo judule tembang iki", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "jaket apa sing kudu tak kanggo", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "jaket"}, "split": "test"}
{"utterance": "kepiye cuaca ing san francisco", "expected_intent": "weather:weather_query", "expected_slots": {"place_name": "san francisco"}, "split": "test"}
{"utterance": "gawe kopi jam telu", "expected_intent": "iot:iot_coffee", "expected_slots": {"time": "telu"}, "split": "test"}
{"utterance": "uripno mesin kopi jam telu", "expected_intent": "iot:iot_coffee", "expected_slots": {"device_type": "mesin kopi", "time": "telu"}, "split": "test"}
{"utterance": "opo arep udan jam siji awan dina iki", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "arep udan", "time": "jam siji awan", "date": "dina iki"}, "split": "test"}
{"utterance": "setel lagu", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "bakmie gm selalu", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"business_name": "bakmie gm"}, "split": "test"}
{"utterance": "pira akehe dina sabtu ndek wulan maret", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "sabtu ndek wulan maret"}, "split": "test"}
{"utterance": "puter lagu next", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "apa aku kudu nyekop dalan mlebu ku esuk iki", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "dalan mlebu", "timeofday": "esuk"}, "split": "test"}
{"utterance": "menehi kula ramalan cuaca kanggo minggu iki", "expected_intent": "weather:weather_query", "expected_slots": {"date": "minggu iki"}, "split": "test"}
{"utterance": "bakal udan dina kemis", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "udan", "date": "kemis"}, "split": "test"}
{"utterance": "apa kabar paling anyar babagan donald trump", "expected_intent": "news:news_query", "expected_slots": {"person": "donald trump"}, "split": "test"}
{"utterance": "apa statistik kejahatan paling anyar kanggo kula wilayah", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "statistik kejahatan"}, "split": "test"}
{"utterance": "apa sing dikirim vogue saiki", "expected_intent": "news:news_query", "expected_slots": {"media_type": "vogue", "date": "saiki"}, "split": "test"}
{"utterance": "jam piro nang bogor saiki", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "bogor"}, "split": "test"}
{"utterance": "olly gantike wernane lampu", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {}, "split": "test"}
{"utterance": "olly apa ramalan cuaca kanggo dina iki", "expected_intent": "weather:weather_query", "expected_slots": {"date": "dina iki"}, "split": "test"}
{"utterance": "pesen rolas potong kombo wing bubur ayam karo bumbu altnon kentang goreng lan sprite minangka minuman", "expected_intent": "takeaway:takeaway_order", "expected_slots": {"food_type": "bubur ayam", "drink_type": "sprite"}, "split": "test"}
{"utterance": "setel daftar puter mlaku mlaku", "expected_intent": "play:play_music", "expected_slots": {"playlist_name": "daftar puter mlaku mlaku"}, "split": "test"}
{"utterance": "heh olly aku seneng musik e pamungkas", "expected_intent": "music:music_likeness", "expected_slots": {"artist_name": "pamungkas"}, "split": "test"}
{"utterance": "apa kowe bisa gawe kopi", "expected_intent": "iot:iot_coffee", "expected_slots": {}, "split": "test"}
{"utterance": "lagu seng endi opo siji iki", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "maca kula judhul paling anyar saka nytimescom", "expected_intent": "news:news_query", "expected_slots": {"media_type": "nytimescom"}, "split": "test"}
{"utterance": "ing solo saiki jam piro", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "solo"}, "split": "test"}
{"utterance": "puter kesenengan aku", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "nyetel kabar kanggo lomba olah raga", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "lomba olah raga"}, "split": "test"}
{"utterance": "kandhani aku nalika iku lima sore", "expected_intent": "alarm:alarm_set", "expected_slots": {"time": "lima sore"}, "split": "test"}
{"utterance": "golek informasi babagan saham dino iki", "expected_intent": "news:news_query", "expected_slots": {"date": "dino iki"}, "split": "test"}
{"utterance": "apa suhu sesuk bakal luwih dhuwur saka patang puluh", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "luwih dhuwur saka patang puluh", "date": "sesuk"}, "split": "test"}
{"utterance": "nyalakna colokan pinter", "expected_intent": "iot:iot_wemo_on", "expected_slots": {"device_type": "colokan pinter"}, "split": "test"}
{"utterance": "uripno soket pinter anyar", "expected_intent": "iot:iot_wemo_on", "expected_slots": {"device_type": "soket pinter"}, "split": "test"}
{"utterance": "ganti en setelan volume ning negatif alexa", "expected_intent": "audio:audio_volume_other", "expected_slots": {}, "split": "test"}
{"utterance": "setel ne spiker e dadi bisu", "expected_intent": "audio:audio_volume_mute", "expected_slots": {}, "split": "test"}
{"utterance": "nyetel weker jam setengah pitu esuk", "expected_intent": "alarm:alarm_set", "expected_slots": {"time": "setengah pitu esuk"}, "split": "test"}
{"utterance": "ojo ngomong", "expected_intent": "audio:audio_volume_mute", "expected_slots": {}, "split": "test"}
{"utterance": "pawarta saka c. b. s. alexa", "expected_intent": "news:news_query", "expected_slots": {"media_type": "c. b. s."}, "split": "test"}
{"utterance": "jam saiki", "expected_intent": "datetime:datetime_query", "expected_slots": {}, "split": "test"}
{"utterance": "aku seneng banget karo lagu iki", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "iki band paling apik", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "tulung daftar kabeh wekerku", "expected_intent": "alarm:alarm_query", "expected_slots": {}, "split": "test"}
{"utterance": "apa aku kudu nganggo sandal opo sepatu karo kaos kaki", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "sandal opo sepatu karo kaos kaki"}, "split": "test"}
{"utterance": "apa kowe ngerti cuaca", "expected_intent": "weather:weather_query", "expected_slots": {}, "split": "test"}
{"utterance": "setelke aku lagu ne koes plus", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "koes plus"}, "split": "test"}
{"utterance": "tulung setel ne spiker ku ning google", "expected_intent": "audio:audio_volume_up", "expected_slots": {}, "split": "test"}
{"utterance": "dina muludan taun iki dina apa", "expected_intent": "datetime:datetime_query", "expected_slots": {"event_name": "muludan", "date": "taun iki"}, "split": "test"}
{"utterance": "ngesok aja gugah", "expected_intent": "alarm:alarm_remove", "expected_slots": {"date": "ngesok"}, "split": "test"}
{"utterance": "apa dina senin arep udan", "expected_intent": "weather:weather_query", "expected_slots": {"date": "senin", "weather_descriptor": "udan"}, "split": "test"}
{"utterance": "apa ana informasi anyar tentang gunung semeru", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "gunung semeru"}, "split": "test"}
{"utterance": "jam piro saiki nang zona wektu iki", "expected_intent": "datetime:datetime_query", "expected_slots": {"time_zone": "zona wektu iki"}, "split": "test"}
{"utterance": "tolong ngomong weker apa sing nyala", "expected_intent": "alarm:alarm_query", "expected_slots": {}, "split": "test"}
{"utterance": "ulang taun ku tanggal pitu likur juni taun iki dina apa", "expected_intent": "datetime:datetime_query", "expected_slots": {"event_name": "ulang taun", "date": "pitu likur juni"}, "split": "test"}
{"utterance": "apa aku butuh jaket", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "jaket"}, "split": "test"}
{"utterance": "aku pengin kopi saben dina", "expected_intent": "iot:iot_coffee", "expected_slots": {"date": "saben dina"}, "split": "test"}
{"utterance": "tulung uripake soket colokan wemo", "expected_intent": "iot:iot_wemo_on", "expected_slots": {"device_type": "soket colokan wemo"}, "split": "test"}
{"utterance": "ngganti lampu menyang werna liyane", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {}, "split": "test"}
{"utterance": "elingno rasaku krungu lagu iki", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "jam piro nang medan saiki", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "medan"}, "split": "test"}
{"utterance": "nggawe lampu jambon", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"color_type": "jambon"}, "split": "test"}
{"utterance": "unggah ne volume spiker e", "expected_intent": "audio:audio_volume_up", "expected_slots": {}, "split": "test"}
{"utterance": "resik ne data e", "expected_intent": "audio:audio_volume_mute", "expected_slots": {}, "split": "test"}
{"utterance": "apa ana sembarang kabar olly", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "setel kabeh musik soko marcel siahaan", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "marcel siahaan"}, "split": "test"}
{"utterance": "carane akeh jam jarak antarane lokasi lan indonesia", "expected_intent": "datetime:datetime_convert", "expected_slots": {"place_name": "indonesia"}, "split": "test"}
{"utterance": "tangi aku ing telungpuluh menit", "expected_intent": "alarm:alarm_set", "expected_slots": {"time": "telungpuluh menit"}, "split": "test"}
{"utterance": "opo wekerku wes disetel", "expected_intent": "alarm:alarm_query", "expected_slots": {}, "split": "test"}
{"utterance": "pateni sworo ne", "expected_intent": "audio:audio_volume_mute", "expected_slots": {}, "split": "test"}
{"utterance": "piye ning njaba", "expected_intent": "weather:weather_query", "expected_slots": {}, "split": "test"}
{"utterance": "enter one only", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "golekno wektu lokal saiki", "expected_intent": "datetime:datetime_query", "expected_slots": {}, "split": "test"}
{"utterance": "saiki ning kutho jam pira", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "ning kutho"}, "split": "test"}
{"utterance": "simpen lagu aku gangga whiskey bottle", "expected_intent": "music:music_likeness", "expected_slots": {"artist_name": "gangga"}, "split": "test"}
{"utterance": "atur kabar babagan gangguan cuaca saiki ing amerika", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "gangguan cuaca", "place_name": "amerika"}, "split": "test"}
{"utterance": "mudhunake lampu nduwur", "expected_intent": "iot:iot_hue_lightdim", "expected_slots": {"house_place": "nduwur"}, "split": "test"}
{"utterance": "puter tembang tembang tembang saka waljinah", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "waljinah"}, "split": "test"}
{"utterance": "sampeyan ngerti lawakan iki", "expected_intent": "general:general_joke", "expected_slots": {}, "split": "test"}
{"utterance": "suhu ing njaba", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "suhu"}, "split": "test"}
{"utterance": "pateni weker aku sing pertama", "expected_intent": "alarm:alarm_remove", "expected_slots": {}, "split": "test"}
{"utterance": "setel tembang jawa", "expected_intent": "play:play_music", "expected_slots": {"playlist_name": "tembang jawa"}, "split": "test"}
{"utterance": "nguripake weker kanggo setengah papat sore dina iki", "expected_intent": "alarm:alarm_set", "expected_slots": {"time": "setengah papat sore", "date": "dina iki"}, "split": "test"}
{"utterance": "apa saiki bakal udan", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "udan"}, "split": "test"}
{"utterance": "jam pira pesen domino's teka", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"business_name": "domino's"}, "split": "test"}
{"utterance": "aku pengen ngerti saiki jam piro", "expected_intent": "datetime:datetime_query", "expected_slots": {}, "split": "test"}
{"utterance": "berita kecelakaan sepur", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "kecelakaan sepur"}, "split": "test"}
{"utterance": "apa kowe seneng ndeleng", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {}, "split": "test"}
{"utterance": "minggu iki tanggal telu likur wulan iki dina apa", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "telu likur wulan iki"}, "split": "test"}
{"utterance": "musik didi kempot", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "didi kempot"}, "split": "test"}
{"utterance": "halo aku arep mateni colokan wemo", "expected_intent": "iot:iot_wemo_off", "expected_slots": {"device_type": "colokan wemo"}, "split": "test"}
{"utterance": "sing menang pemilihan presiden taun iki", "expected_intent": "qa:qa_factoid", "expected_slots": {"news_topic": "pemilihan presiden", "date": "taun iki"}, "split": "test"}
{"utterance": "olly puterno cidro", "expected_intent": "play:play_music", "expected_slots": {"song_name": "cidro"}, "split": "test"}
{"utterance": "lelucon apa sing paling lucu lucu", "expected_intent": "general:general_joke", "expected_slots": {"joke_type": "paling lucu"}, "split": "test"}
{"utterance": "simpen catetan bab tembang iku lan sopo wae sing seneng tembang iku", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "nyiyapake secangkir kopi kanggo aku", "expected_intent": "iot:iot_coffee", "expected_slots": {}, "split": "test"}
{"utterance": "pateni sokete", "expected_intent": "iot:iot_wemo_off", "expected_slots": {}, "split": "test"}
{"utterance": "tulung bisuk ne spiker ku", "expected_intent": "audio:audio_volume_mute", "expected_slots": {}, "split": "test"}
{"utterance": "tambahke tembang iki sakbanjure", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "jam pira wekerku disetel", "expected_intent": "alarm:alarm_query", "expected_slots": {}, "split": "test"}
{"utterance": "apa aku butuh payung minggu iki", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "payung", "date": "minggu iki"}, "split": "test"}
{"utterance": "gaweke koyo biasane", "expected_intent": "iot:iot_coffee", "expected_slots": {"coffee_type": "biasane"}, "split": "test"}
{"utterance": "sampeyan bisa gawe kamar padhang", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {"house_place": "kamar"}, "split": "test"}
{"utterance": "marang kula warta babagan pasar saham munggah lan mudun", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "mudun"}, "split": "test"}
{"utterance": "tulung gawe kopi", "expected_intent": "iot:iot_coffee", "expected_slots": {}, "split": "test"}
{"utterance": "tulung nggawe lampu alami", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {}, "split": "test"}
{"utterance": "kapan mbesuk jemuwah tanggal telulas", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "jemuwah tanggal telulas"}, "split": "test"}
{"utterance": "adem kaya apa dina iki", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "adem", "date": "dina iki"}, "split": "test"}
{"utterance": "opo cuaca minggu iki", "expected_intent": "weather:weather_query", "expected_slots": {"date": "minggu iki"}, "split": "test"}
{"utterance": "cuaca ne saiki piye", "expected_intent": "weather:weather_query", "expected_slots": {}, "split": "test"}
{"utterance": "nyetel wekerku kanggo rolas awan", "expected_intent": "alarm:alarm_set", "expected_slots": {"time": "rolas awan"}, "split": "test"}
{"utterance": "alexa tulung owahi medhun lampu omah", "expected_intent": "iot:iot_hue_lightdim", "expected_slots": {"house_place": "omah"}, "split": "test"}
{"utterance": "pateni kabeh jinis piranti aktif", "expected_intent": "iot:iot_wemo_off", "expected_slots": {}, "split": "test"}
{"utterance": "gawe weker anyar", "expected_intent": "alarm:alarm_set", "expected_slots": {}, "split": "test"}
{"utterance": "setel sembarang lagu wolongpuluhan", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "wolongpuluhan"}, "split": "test"}
{"utterance": "opo cuaca ne nggo sak minggu", "expected_intent": "weather:weather_query", "expected_slots": {"time": "sak minggu"}, "split": "test"}
{"utterance": "weker anyar jam enem esuk", "expected_intent": "alarm:alarm_set", "expected_slots": {"time": "enem esuk"}, "split": "test"}
{"utterance": "apa ramalan cuaca ne sabtu", "expected_intent": "weather:weather_query", "expected_slots": {"date": "sabtu"}, "split": "test"}
{"utterance": "olly mbatalake kabeh weker latihan bal balan", "expected_intent": "alarm:alarm_remove", "expected_slots": {"alarm_type": "latihan bal balan"}, "split": "test"}
{"utterance": "aku ora pengin sembarang weker", "expected_intent": "alarm:alarm_remove", "expected_slots": {}, "split": "test"}
{"utterance": "mirasantika", "expected_intent": "play:play_music", "expected_slots": {"song_name": "mirasantika"}, "split": "test"}
{"utterance": "mriksa yen weker gawan disetel", "expected_intent": "alarm:alarm_query", "expected_slots": {}, "split": "test"}
{"utterance": "punika bebener bab dhaharan ing gembong ing budget wong kang", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "konfirmasike tiket lelungan nang jakarta", "expected_intent": "transport:transport_ticket", "expected_slots": {"place_name": "jakarta"}, "split": "test"}
{"utterance": "tulung kandhani aku wektu ing bandung", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "bandung"}, "split": "test"}
{"utterance": "golekno lagu lagu teko tembang jawa ku", "expected_intent": "play:play_music", "expected_slots": {"playlist_name": "tembang jawa"}, "split": "test"}
{"utterance": "nyetel mesin gawe kopi", "expected_intent": "iot:iot_coffee", "expected_slots": {"device_type": "gawe kopi"}, "split": "test"}
{"utterance": "lewati rong tembang", "expected_intent": "music:music_settings", "expected_slots": {"player_setting": "lewati"}, "split": "test"}
{"utterance": "nindakno mateni lampu ing ruang tamu", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"house_place": "ruang tamu"}, "split": "test"}
{"utterance": "olly pateni lampu ning kamar keluargo", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"house_place": "kamar keluargo"}, "split": "test"}
{"utterance": "puter na tembang paling anyar saka album ne isyana", "expected_intent": "play:play_music", "expected_slots": {"music_album": "isyana"}, "split": "test"}
{"utterance": "setel tembang soko didi kempot", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "didi kempot"}, "split": "test"}
{"utterance": "setel tembang soko didi kempot", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "didi kempot"}, "split": "test"}
{"utterance": "mudhun na intensitas cahya ne", "expected_intent": "iot:iot_hue_lightdim", "expected_slots": {}, "split": "test"}
{"utterance": "kaya apa cuaca minggu iki", "expected_intent": "weather:weather_query", "expected_slots": {"date": "minggu iki"}, "split": "test"}
{"utterance": "aku pengin ngerti babagan tol padalarang", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "tol padalarang"}, "split": "test"}
{"utterance": "tag lagu iki nganggo bintang lima", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "tambahke catetan aku bab tembang iki", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "pateni lampu aku mudhun kanggo tingkat ngisor saka padhange d", "expected_intent": "iot:iot_hue_lightdim", "expected_slots": {}, "split": "test"}
{"utterance": "konversike jam wolu isuk nang bandung karo nang bekasi", "expected_intent": "datetime:datetime_convert", "expected_slots": {"time": "wolu isuk", "place_name": "bekasi"}, "split": "test"}
{"utterance": "tulung sudho en volume ne spiker", "expected_intent": "audio:audio_volume_down", "expected_slots": {}, "split": "test"}
{"utterance": "setel ne mati gemeter e saka spiker", "expected_intent": "audio:audio_volume_mute", "expected_slots": {}, "split": "test"}
{"utterance": "dina rebo ngarep tanggal pira", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "rebo"}, "split": "test"}
{"utterance": "aku seneng musik", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "siri tulung pateni lampu ning jedhing", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"house_place": "jedhing"}, "split": "test"}
{"utterance": "atur kabar berita lingkungan", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "lingkungan"}, "split": "test"}
{"utterance": "opo judule tembang iki", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "simpen tembang iki mlebu daftar tembang", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "apa tembang iki sing nyanyi didi kempot", "expected_intent": "music:music_query", "expected_slots": {"artist_name": "didi kempot"}, "split": "test"}
{"utterance": "apa warta paling anyar", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "setel musik pop mix", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "pop mix"}, "split": "test"}
{"utterance": "setel lagu sedih soko ipod", "expected_intent": "play:play_music", "expected_slots": {"music_descriptor": "sedih", "device_type": "ipod"}, "split": "test"}
{"utterance": "tudokne b. b. c. warta migrasi", "expected_intent": "news:news_query", "expected_slots": {"media_type": "b. b. c.", "news_topic": "migrasi"}, "split": "test"}
{"utterance": "ndandani weker", "expected_intent": "alarm:alarm_set", "expected_slots": {}, "split": "test"}
{"utterance": "olly golekno berita terkenal tekan b. b. c.", "expected_intent": "news:news_query", "expected_slots": {"media_type": "b. b. c."}, "split": "test"}
{"utterance": "njaluk kabar terkenal saka b. b. c.", "expected_intent": "news:news_query", "expected_slots": {"media_type": "b. b. c."}, "split": "test"}
{"utterance": "koyo opo cuacane pas tanggal rong puluh maret rong ewu pitulas", "expected_intent": "weather:weather_query", "expected_slots": {"date": "rong puluh maret rong ewu pitulas"}, "split": "test"}
{"utterance": "dina iki rong puluh maret", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "dina iki rong puluh maret"}, "split": "test"}
{"utterance": "tulung puter tembang noah wae", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "noah"}, "split": "test"}
{"utterance": "duduhno cuaca", "expected_intent": "weather:weather_query", "expected_slots": {}, "split": "test"}
{"utterance": "hey apa kamu punya pengiriman", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"order_type": "pengiriman"}, "split": "test"}
{"utterance": "rock", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "rock"}, "split": "test"}
{"utterance": "pasang penyedot saiki lan ngresiki ruang tamu", "expected_intent": "iot:iot_cleaning", "expected_slots": {"device_type": "penyedot", "house_place": "ruang tamu"}, "split": "test"}
{"utterance": "wektu antara indonesia karo brunei", "expected_intent": "datetime:datetime_convert", "expected_slots": {"place_name": "brunei"}, "split": "test"}
{"utterance": "bedane wektu indonesia lan malaysia", "expected_intent": "datetime:datetime_convert", "expected_slots": {"place_name": "malaysia"}, "split": "test"}
{"utterance": "kondisi pendingin an sithik", "expected_intent": "weather:weather_query", "expected_slots": {}, "split": "test"}
{"utterance": "tulung elingke aku wektu", "expected_intent": "datetime:datetime_query", "expected_slots": {}, "split": "test"}
{"utterance": "mulai lagu tekno", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "tekno"}, "split": "test"}
{"utterance": "olly menehi kula sawetara lampu redup", "expected_intent": "iot:iot_hue_lightdim", "expected_slots": {}, "split": "test"}
{"utterance": "saiki jam piro", "expected_intent": "datetime:datetime_query", "expected_slots": {}, "split": "test"}
{"utterance": "nyetel weker jam enem esuk", "expected_intent": "alarm:alarm_set", "expected_slots": {"time": "enem esuk"}, "split": "test"}
{"utterance": "apa anyar kontroversi jokowi", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "kontroversi jokowi"}, "split": "test"}
{"utterance": "s", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "mangga mateni colokan", "expected_intent": "iot:iot_wemo_off", "expected_slots": {}, "split": "test"}
{"utterance": "musik", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "apa pings bungkus", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"business_name": "pings", "order_type": "bungkus"}, "split": "test"}
{"utterance": "maca kula paling anyar new york times judhul", "expected_intent": "news:news_query", "expected_slots": {"media_type": "new york times"}, "split": "test"}
{"utterance": "apa crita sing paling nduwur ing c. n. n.", "expected_intent": "news:news_query", "expected_slots": {"media_type": "c. n. n."}, "split": "test"}
{"utterance": "puterno musik", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "setel musik", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "apa wektu ing indonesia saiki", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "indonesia"}, "split": "test"}
{"utterance": "opo arep udan mengko", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "udan"}, "split": "test"}
{"utterance": "apa aku kudu payung kanggo bengi", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "payung", "timeofday": "bengi"}, "split": "test"}
{"utterance": "iso aku nganggo sandal ku dina iki", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "sandal", "date": "dina iki"}, "split": "test"}
{"utterance": "apa aku kudu njupuk kacamata", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "kacamata"}, "split": "test"}
{"utterance": "aku njaluk sampeyan tangi aku jam enem esuk", "expected_intent": "alarm:alarm_set", "expected_slots": {"time": "enem esuk"}, "split": "test"}
{"utterance": "sudho en volume ne", "expected_intent": "audio:audio_volume_down", "expected_slots": {}, "split": "test"}
{"utterance": "pesen pizza kanggo dikirim", "expected_intent": "takeaway:takeaway_order", "expected_slots": {"food_type": "pizza", "order_type": "dikirim"}, "split": "test"}
{"utterance": "apa bedane wektu antara indonesia lan malaysia", "expected_intent": "datetime:datetime_convert", "expected_slots": {"place_name": "malaysia"}, "split": "test"}
{"utterance": "tulung pasang kabeh lampu", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {"device_type": "kabeh lampu"}, "split": "test"}
{"utterance": "ngonversi setengah songo saka wektu indonesia sisih kulon kanggo wektu sisih tengah limang telung puluh", "expected_intent": "datetime:datetime_convert", "expected_slots": {"time": "setengah songo", "time_zone": "wektu sisih tengah"}, "split": "test"}
{"utterance": "cuaca saiki", "expected_intent": "weather:weather_query", "expected_slots": {"time": "saiki"}, "split": "test"}
{"utterance": "bisuk ne kanggo sejam iki", "expected_intent": "audio:audio_volume_mute", "expected_slots": {"time": "sejam"}, "split": "test"}
{"utterance": "jam piro kudune aku mangkat ndaki", "expected_intent": "weather:weather_query", "expected_slots": {"event_name": "ndaki"}, "split": "test"}
{"utterance": "lagu latar belakang e apik", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "iki lagu", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "ojo gawe sworo opo opo", "expected_intent": "audio:audio_volume_mute", "expected_slots": {}, "split": "test"}
{"utterance": "sing njupuk kurang saka wektu kanggo dikirim", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"order_type": "dikirim"}, "split": "test"}
{"utterance": "opo iki lagu soko slank", "expected_intent": "music:music_query", "expected_slots": {"artist_name": "slank"}, "split": "test"}
{"utterance": "aku pengin reggae", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "reggae"}, "split": "test"}
{"utterance": "nyetel weker jam sanga esuk dina minggu ngarep", "expected_intent": "alarm:alarm_set", "expected_slots": {"time": "sanga esuk", "date": "minggu ngarep"}, "split": "test"}
{"utterance": "golek panganan lan pesen", "expected_intent": "takeaway:takeaway_order", "expected_slots": {}, "split": "test"}
{"utterance": "tulung atur padhange cahyo kanthi bener ing pawon", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {"house_place": "pawon"}, "split": "test"}
{"utterance": "padhangke lampu ruang tamu", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {"house_place": "ruang tamu"}, "split": "test"}
{"utterance": "aku bakal mbutuhake jaket rapet yen badai banter ing wayah sore", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "badai banter", "timeofday": "sore"}, "split": "test"}
{"utterance": "aku butuh kaos kaki sing anget ing mangsa udan esuk", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "mangsa udan", "timeofday": "esuk"}, "split": "test"}
{"utterance": "opo iso gantek ne volume ne", "expected_intent": "audio:audio_volume_other", "expected_slots": {}, "split": "test"}
{"utterance": "tulung gawe mati lampune", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {}, "split": "test"}
{"utterance": "suhu mbukak", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "suhu"}, "split": "test"}
{"utterance": "puter putri saka jamrud", "expected_intent": "play:play_music", "expected_slots": {"song_name": "putri", "artist_name": "jamrud"}, "split": "test"}
{"utterance": "mriksa rega panganan lan kabeh", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"food_type": "panganan"}, "split": "test"}
{"utterance": "sudho no volume ne", "expected_intent": "audio:audio_volume_down", "expected_slots": {}, "split": "test"}
{"utterance": "apa sing ana ing radio saiki", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "opo judule tembang iki", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "setel lagu sedurunge", "expected_intent": "play:play_music", "expected_slots": {"song_name": "lagu", "music_descriptor": "sedurunge"}, "split": "test"}
{"utterance": "alarm jam sepuluh esuk", "expected_intent": "alarm:alarm_set", "expected_slots": {"time": "sepuluh esuk"}, "split": "test"}
{"utterance": "puterno musik saka beatles", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "beatles"}, "split": "test"}
{"utterance": "mesthekake yen aku kudu tangi jam enem isuk", "expected_intent": "alarm:alarm_set", "expected_slots": {"time": "enem", "timeofday": "isuk"}, "split": "test"}
{"utterance": "saiki tanggal piro", "expected_intent": "datetime:datetime_query", "expected_slots": {}, "split": "test"}
{"utterance": "takon cuaca sore dina iki", "expected_intent": "weather:weather_query", "expected_slots": {"timeofday": "sore", "date": "dina iki"}, "split": "test"}
{"utterance": "mateni soket colokan wemo", "expected_intent": "iot:iot_wemo_off", "expected_slots": {"device_type": "soket colokan wemo"}, "split": "test"}
{"utterance": "puterna aku musik saka kotak", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "kotak"}, "split": "test"}
{"utterance": "apa aku kudu nggawa mantel udan ku saiki", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "mantel udan"}, "split": "test"}
{"utterance": "apa wektu ing surabaya", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "surabaya"}, "split": "test"}
{"utterance": "kaping limolas agustus iku dina apa ing minggu", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "limolas agustus"}, "split": "test"}
{"utterance": "setel daftar puter lagu pesta aku", "expected_intent": "play:play_music", "expected_slots": {"playlist_name": "lagu pesta"}, "split": "test"}
{"utterance": "sumangga kula aturaken pawarta", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "panemu petabit", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "miwiti nyedot", "expected_intent": "iot:iot_cleaning", "expected_slots": {"device_type": "nyedot"}, "split": "test"}
{"utterance": "wektu saiki", "expected_intent": "datetime:datetime_query", "expected_slots": {}, "split": "test"}
{"utterance": "setel kesenengan aku", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "nuduhake cuaca sesuk ing daerah kene", "expected_intent": "weather:weather_query", "expected_slots": {"date": "sesuk", "place_name": "daerah kene"}, "split": "test"}
{"utterance": "nampilake perkiraan cuaca pitung dina kanggo minggu iki", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "perkiraan cuaca pitung dina", "date": "minggu iki"}, "split": "test"}
{"utterance": "madhangke lampu bale", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {"house_place": "bale"}, "split": "test"}
{"utterance": "apa aku kudu ngganti ban mobilku dadi ban salju", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "ban salju"}, "split": "test"}
{"utterance": "jam loro kurang seprapat", "expected_intent": "datetime:datetime_query", "expected_slots": {"time": "loro kurang seprapat"}, "split": "test"}
{"utterance": "kepiye cuacane nang ibu kutha", "expected_intent": "weather:weather_query", "expected_slots": {"place_name": "ibu kutha"}, "split": "test"}
{"utterance": "wektu saiki ning sulawesi", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "sulawesi"}, "split": "test"}
{"utterance": "apa aku kudu nganggo jas udan sadurunge metu", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "jas udan"}, "split": "test"}
{"utterance": "atur en setelan gawanan e audio", "expected_intent": "audio:audio_volume_other", "expected_slots": {}, "split": "test"}
{"utterance": "puter lagu diam", "expected_intent": "play:play_music", "expected_slots": {"song_name": "diam"}, "split": "test"}
{"utterance": "virgoun duka", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "virgoun", "song_name": "duka"}, "split": "test"}
{"utterance": "sudho en rong puluh persen", "expected_intent": "audio:audio_volume_down", "expected_slots": {"change_amount": "rong puluh persen"}, "split": "test"}
{"utterance": "ngomong babagan cuaca minggu iki", "expected_intent": "weather:weather_query", "expected_slots": {"date": "minggu iki"}, "split": "test"}
{"utterance": "aku kate mesen panganan nang warung bu hartin", "expected_intent": "takeaway:takeaway_order", "expected_slots": {"business_name": "warung bu hartin"}, "split": "test"}
{"utterance": "pateni colokan pinter", "expected_intent": "iot:iot_wemo_off", "expected_slots": {"device_type": "colokan pinter"}, "split": "test"}
{"utterance": "kepiye iklim mysore dina iki", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "iklim mysore", "date": "dina iki"}, "split": "test"}
{"utterance": "topik panas", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "tulung pateni", "expected_intent": "iot:iot_wemo_off", "expected_slots": {}, "split": "test"}
{"utterance": "tulung dicek apa alarm e wes disetel nang jam enem isuk", "expected_intent": "alarm:alarm_query", "expected_slots": {"time": "enem isuk"}, "split": "test"}
{"utterance": "puter maneh tembang iku", "expected_intent": "music:music_settings", "expected_slots": {"player_setting": "puter maneh"}, "split": "test"}
{"utterance": "buang tembang soko musik iki", "expected_intent": "music:music_settings", "expected_slots": {}, "split": "test"}
{"utterance": "tulung gaweke kopi", "expected_intent": "iot:iot_coffee", "expected_slots": {}, "split": "test"}
{"utterance": "apa nganyari paling anyar ing proposal jembatan new york", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "proposal jembatan new york"}, "split": "test"}
{"utterance": "sembarang warta bejat saka kompas", "expected_intent": "news:news_query", "expected_slots": {"media_type": "kompas"}, "split": "test"}
{"utterance": "setel sawetara tembang apik kadi daftar puterku", "expected_intent": "play:play_music", "expected_slots": {"music_descriptor": "tembang apik"}, "split": "test"}
{"utterance": "omongno guyonan lucu marang aku saiki", "expected_intent": "general:general_joke", "expected_slots": {"joke_type": "lucu"}, "split": "test"}
{"utterance": "kanggo manggon kutha luwih murah utawa larang", "expected_intent": "weather:weather_query", "expected_slots": {"place_name": "kutha"}, "split": "test"}
{"utterance": "sakpiro aman kutha iki menurut hukum lan ketertiban", "expected_intent": "weather:weather_query", "expected_slots": {}, "split": "test"}
{"utterance": "tulung opo kowe biso mandheg ngomong", "expected_intent": "audio:audio_volume_mute", "expected_slots": {}, "split": "test"}
{"utterance": "tulung pesenno panganan gawe aku", "expected_intent": "takeaway:takeaway_order", "expected_slots": {}, "split": "test"}
{"utterance": "setel cidro", "expected_intent": "play:play_music", "expected_slots": {"song_name": "cidro"}, "split": "test"}
{"utterance": "apa aku wis nyetel weker nggo ngombe obat wahag awan", "expected_intent": "alarm:alarm_query", "expected_slots": {"event_name": "nggo ngombe obat", "timeofday": "awan"}, "split": "test"}
{"utterance": "tudokne kula kabar paling anyar saka pbb", "expected_intent": "news:news_query", "expected_slots": {"media_type": "pbb"}, "split": "test"}
{"utterance": "tulung atur lampu menyang setelan ngisor", "expected_intent": "iot:iot_hue_lightdim", "expected_slots": {}, "split": "test"}
{"utterance": "apa aku butuh sepatu bot salju ku awan iki", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "sepatu bot salju", "timeofday": "awan iki"}, "split": "test"}
{"utterance": "jam pira saiki ning zona wektu tengah", "expected_intent": "datetime:datetime_query", "expected_slots": {"time_zone": "tengah"}, "split": "test"}
{"utterance": "sopo iki ning radio", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "sopo jeneng artise lagu iki", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "nyuda padhange lampu", "expected_intent": "iot:iot_hue_lightdim", "expected_slots": {}, "split": "test"}
{"utterance": "bakal dadi panas wengi iki", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "panas", "timeofday": "wengi iki"}, "split": "test"}
{"utterance": "kudu kah aku gawe sweter utowo jaket ge kerjo dina iki", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "jaket", "date": "dina iki"}, "split": "test"}
{"utterance": "apa aku butuh tabir surya awan iki", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "tabir surya", "timeofday": "awan iki"}, "split": "test"}
{"utterance": "setel tembang kesenengan aku", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "kopi", "expected_intent": "iot:iot_coffee", "expected_slots": {}, "split": "test"}
{"utterance": "sesuk bakal udan", "expected_intent": "weather:weather_query", "expected_slots": {"date": "sesuk", "weather_descriptor": "udan"}, "split": "test"}
{"utterance": "hey olly pateni lampu", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {}, "split": "test"}
{"utterance": "tambahno lagu pilihanku", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "apa aku butuh tabir surya mengko", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "tabir surya"}, "split": "test"}
{"utterance": "apa aku ninggalake lampu ing garasi", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"house_place": "garasi"}, "split": "test"}
{"utterance": "setel musik musik rap", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "musik rap"}, "split": "test"}
{"utterance": "tulung uripno pemanas kopi", "expected_intent": "iot:iot_coffee", "expected_slots": {"device_type": "pemanas kopi"}, "split": "test"}
{"utterance": "gawe kopi", "expected_intent": "iot:iot_coffee", "expected_slots": {}, "split": "test"}
{"utterance": "ojo ngomong kanggo sak jam", "expected_intent": "audio:audio_volume_mute", "expected_slots": {"time": "sak jam"}, "split": "test"}
{"utterance": "apa dina iki bakal badai", "expected_intent": "weather:weather_query", "expected_slots": {"date": "dina iki", "weather_descriptor": "badai"}, "split": "test"}
{"utterance": "pinten menit aku kudu ngenteni kanggo njupuk pangan saka cina bungkus", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"business_name": "cina bungkus"}, "split": "test"}
{"utterance": "pateni lampu teras", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"house_place": "teras"}, "split": "test"}
{"utterance": "mateni lampu kamar turu ing setengah sepuluh bengi", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"house_place": "kamar turu", "time": "setengah sepuluh bengi"}, "split": "test"}
{"utterance": "aku pengin krungu kabar dunya paling anyar saka dino iki", "expected_intent": "news:news_query", "expected_slots": {"place_name": "dunya", "date": "dino iki"}, "split": "test"}
{"utterance": "gawe weker kanggo dina iki jam sepuluh esuk", "expected_intent": "alarm:alarm_set", "expected_slots": {"date": "dina iki", "time": "sepuluh esuk"}, "split": "test"}
{"utterance": "apa aku kudu mbukak payon mobil", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "mbukak payon mobil"}, "split": "test"}
{"utterance": "apa ana sembarang weker sing saiki disetel", "expected_intent": "alarm:alarm_query", "expected_slots": {}, "split": "test"}
{"utterance": "heh cuacane bakal kaya apa dina iki ning purwokerto indonesia", "expected_intent": "weather:weather_query", "expected_slots": {"date": "dina iki", "place_name": "purwokerto indonesia"}, "split": "test"}
{"utterance": "simpen panemu ing lagu", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "hey pesen loro sayap karo kentang goreng saka toko panganan cina", "expected_intent": "takeaway:takeaway_order", "expected_slots": {"food_type": "sayap karo kentang goreng", "business_name": "toko panganan cina"}, "split": "test"}
{"utterance": "info cuaca minggu iki", "expected_intent": "weather:weather_query", "expected_slots": {"date": "minggu iki"}, "split": "test"}
{"utterance": "hey pira iki ing bandung", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "bandung"}, "split": "test"}
{"utterance": "apa sampeyan menehi saran payung", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "payung"}, "split": "test"}
{"utterance": "golekno berita teko dunya saiki", "expected_intent": "news:news_query", "expected_slots": {"place_name": "dunya"}, "split": "test"}
{"utterance": "lagu opo iki", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "luruh guyonan lucu", "expected_intent": "general:general_joke", "expected_slots": {"joke_type": "lucu"}, "split": "test"}
{"utterance": "aku pengin ngerti cuaca dina iki", "expected_intent": "weather:weather_query", "expected_slots": {"date": "dina iki"}, "split": "test"}
{"utterance": "ngresiki lantai", "expected_intent": "iot:iot_cleaning", "expected_slots": {"house_place": "lantai"}, "split": "test"}
{"utterance": "mbusak weker", "expected_intent": "alarm:alarm_remove", "expected_slots": {}, "split": "test"}
{"utterance": "tulung bisuk ne kanggo limang menit", "expected_intent": "audio:audio_volume_mute", "expected_slots": {"time": "limang menit"}, "split": "test"}
{"utterance": "kacamata minangka pilihan sing apik kanggo dina iki", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "kacamata", "date": "dina iki"}, "split": "test"}
{"utterance": "nggawe iki luwih padhang ning kene", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {}, "split": "test"}
{"utterance": "opo aku bakal butuh payung dina iki", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "payung", "date": "dina iki"}, "split": "test"}
{"utterance": "apa aku kudu nggawe jaket", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "jaket"}, "split": "test"}
{"utterance": "hei olly aku kangen kowe", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "piye cuacane dina iki", "expected_intent": "weather:weather_query", "expected_slots": {"date": "dina iki"}, "split": "test"}
{"utterance": "opo seng ijek kuwe pikirke", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "dino iki gaweanku akeh olly", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "hey ngomong liyane babagan rapat rapatku dina iki", "expected_intent": "general:general_quirky", "expected_slots": {"event_name": "rapat", "date": "dina iki"}, "split": "test"}
{"utterance": "kapan ulang taun e koncoku", "expected_intent": "general:general_quirky", "expected_slots": {"event_name": "ulang taun", "relation": "koncoku"}, "split": "test"}
{"utterance": "tulung delok sek tok tulis nggo pitakonan iki", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "aku ora ngerti carane njawab pitakonan iki sampeyan ninggalake siji utawa loro tembung metu", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "aku arep kerja dina iki", "expected_intent": "general:general_quirky", "expected_slots": {"date": "dina iki"}, "split": "test"}
{"utterance": "aku dinane ala", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "aku nulungi wong sing mlarat ing dina iki olly", "expected_intent": "general:general_quirky", "expected_slots": {"date": "dina iki"}, "split": "test"}
{"utterance": "aku seneng banget dina iki aku entuk tiket kanggo konser", "expected_intent": "general:general_quirky", "expected_slots": {"date": "dina iki", "event_name": "konser"}, "split": "test"}
{"utterance": "pira umurmu", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "sapa jenengmu", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "nek kou kudu mateni uwong nggo nyelametke wong telu opo koe gelem nglakoni nek hooh kenopo", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "ayo ngobrol", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "aku wis pangan sanalika aku tangi", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "cuacane kaya apa dina iki", "expected_intent": "weather:weather_query", "expected_slots": {"date": "dina iki"}, "split": "test"}
{"utterance": "apa sampeyan bakal menehi saranke supaya aku maca", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "olly aku ketemu salah siji kanca sekelas ku lawas dina iki", "expected_intent": "general:general_quirky", "expected_slots": {"date": "dina iki"}, "split": "test"}
{"utterance": "olly aku bar ngresiki mobil ku", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "aku sengit nganti suwene macet", "expected_intent": "general:general_quirky", "expected_slots": {"time": "suwene"}, "split": "test"}
{"utterance": "apa ikut bakso", "expected_intent": "general:general_quirky", "expected_slots": {"food_type": "bakso"}, "split": "test"}
{"utterance": "piye kabarmu dina iki", "expected_intent": "general:general_quirky", "expected_slots": {"date": "dina iki"}, "split": "test"}
{"utterance": "apa sing arep ditindakake dina iki", "expected_intent": "general:general_quirky", "expected_slots": {"date": "dina iki"}, "split": "test"}
{"utterance": "dina iki aku weruh bulldog", "expected_intent": "general:general_quirky", "expected_slots": {"date": "dina iki"}, "split": "test"}
{"utterance": "apa sampeyan mikir aku kudu pindhah menyang pentas dina iki", "expected_intent": "general:general_quirky", "expected_slots": {"place_name": "pentas", "date": "dina iki"}, "split": "test"}
{"utterance": "tulung marang kula skor game", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "dino iki kroso abot", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "aku tuku karcis baseball pra musim", "expected_intent": "general:general_quirky", "expected_slots": {"event_name": "baseball pra musim"}, "split": "test"}
{"utterance": "toni aku kudu ngandani kowe babagan dina ku", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "aku lunga menyang toko", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "aku kudu tuku gas", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "kandhani aku sawetara panggonan wisata paling apik ditekani nang indonesia", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"place_name": "indonesia"}, "split": "test"}
{"utterance": "piye jadwalku minggu mbesuk", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "minggu mbesuk"}, "split": "test"}
{"utterance": "veganisme", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "warta tentang tanduran", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "tentang tanduran"}, "split": "test"}
{"utterance": "pilem opo sing apik saka rongewu nembelas", "expected_intent": "recommendation:recommendation_movies", "expected_slots": {"date": "rongewu nembelas"}, "split": "test"}
{"utterance": "opo sek tok perbuat marang data lan informasiku", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "hey apa wis kedados menarik ing olahraga akhir-akhir iki", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "fitur opo sek sampean rencanake kanggo njedule kui ng mangsa ngarep", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "dina ku apik", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "menehi kula sawetara tips kesarasan", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "carane njaluk nang endi wae", "expected_intent": "transport:transport_query", "expected_slots": {}, "split": "test"}
{"utterance": "koyo piye swara ne asu", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "apa sing kedadeyan ing prancis dino iki", "expected_intent": "news:news_query", "expected_slots": {"place_name": "prancis", "date": "dino iki"}, "split": "test"}
{"utterance": "apa cuaca ing dina rebo", "expected_intent": "weather:weather_query", "expected_slots": {"date": "rebo"}, "split": "test"}
{"utterance": "dinaku lancar nambah memo", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "halo piye dinamu", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "teknologi", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "dina iki aku ono rapat karo jatmiko", "expected_intent": "general:general_quirky", "expected_slots": {"date": "dina iki", "event_name": "rapat", "person": "jatmiko"}, "split": "test"}
{"utterance": "dina iki ing ngisor iki kedaden kanggo kula aku wis rapat karo manto", "expected_intent": "general:general_quirky", "expected_slots": {"date": "dina iki", "event_name": "rapat", "person": "manto"}, "split": "test"}
{"utterance": "ngerti yen dina iki aku rapat karo agus", "expected_intent": "general:general_quirky", "expected_slots": {"event_name": "rapat", "person": "agus"}, "split": "test"}
{"utterance": "bisa ngomong sethithik bab sampeyan dhewe", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "dina iki aku nggolèki kabeh liwat kanggo telpon lan ora ketemu", "expected_intent": "general:general_quirky", "expected_slots": {"date": "dina iki"}, "split": "test"}
{"utterance": "apa sampeyan krungu musik sing apik akhir-akhir iki", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "opo nang kota iki ono jasa ngadusi kucing", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "trump", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "sampeyan pinter", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "apa wae sing ana ing pikiranmu", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "dina iki mendung", "expected_intent": "general:general_quirky", "expected_slots": {"date": "dina iki"}, "split": "test"}
{"utterance": "skor baseball", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "apa aku seneng dina iki", "expected_intent": "general:general_quirky", "expected_slots": {"date": "dina iki"}, "split": "test"}
{"utterance": "panelusur web", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "tulung wahi sarane", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "gadget anyar", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "media sosial", "expected_intent": "social:social_query", "expected_slots": {}, "split": "test"}
{"utterance": "aku dikejar asu", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "takon pertanyaan trivia", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "piye kabarmu dina iki", "expected_intent": "general:general_quirky", "expected_slots": {"date": "dina iki"}, "split": "test"}
{"utterance": "opo dino iki sibuk", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "sejarah", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "apa sampeyan seneng", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "tandhani dina iki minangka wiwitane dietku", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "dina iki", "event_name": "wiwitane dietku"}, "split": "test"}
{"utterance": "opo keju lembek luwih enak", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "keju lembek"}, "split": "test"}
{"utterance": "aku munggah jabatan dina iki ati ku bungahi", "expected_intent": "general:general_quirky", "expected_slots": {"date": "dina iki"}, "split": "test"}
{"utterance": "muter pilem", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "hey olly opo kowe seneng karo pacar ku", "expected_intent": "general:general_quirky", "expected_slots": {"relation": "pacar"}, "split": "test"}
{"utterance": "nggolek informasi online", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "matematika", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "apa mengkono kanggo kula yen sampeyan dadi sentient", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "apa kowe duwe pacar", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "tetanduran", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "tresna", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "halo kowe", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "miwiti gosip", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "ngendi aku lunga dina iki", "expected_intent": "general:general_quirky", "expected_slots": {"date": "dina iki"}, "split": "test"}
{"utterance": "nalika aku bali saka panggonan iki", "expected_intent": "general:general_quirky", "expected_slots": {"place_name": "panggonan iki"}, "split": "test"}
{"utterance": "kewarasan", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "ngasuh anak", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "umurmu piro", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "apa sampeyan mikir babagan masa depan", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "ngandani warta menarik", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "film paling anyar ing bioskop", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "sapa pangembang sampeyan", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "video game", "expected_intent": "play:play_game", "expected_slots": {}, "split": "test"}
{"utterance": "gawean sek gajine paling duwur nang pemasaran digital nang wilayahku", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "apa sampeyan kerja kanggo n. s. a.", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "apa sing paling telusuran ing google dina iki", "expected_intent": "general:general_quirky", "expected_slots": {"date": "dina iki"}, "split": "test"}
{"utterance": "alexa sepiro koe ngerti aku", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "kekeh karo diet", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "panggonan liburan", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "apa sampeyan ngerti pola nyulam gratis sing apik", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "ayo berbicara manis kepadaku", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "pemilu munggah", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "urusan ekonomi", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "hey dina iki aku lagi susah apa sing bisa aku tonton kanggo nyenengake aku", "expected_intent": "general:general_quirky", "expected_slots": {"date": "dina iki"}, "split": "test"}
{"utterance": "tips kewarasan umum", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "nganyari kanca", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "apa sampeyan nyata", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "mbatalake rapat bisnis ing dina rebo", "expected_intent": "calendar:calendar_remove", "expected_slots": {"event_name": "rapat bisnis", "date": "rebo"}, "split": "test"}
{"utterance": "apa sampeyan ngerti babagan pinggiran ing jogja tahun ngarep", "expected_intent": "general:general_quirky", "expected_slots": {"event_name": "pinggiran", "place_name": "jogja", "date": "tahun ngarep"}, "split": "test"}
{"utterance": "apa eneng seng kudu aku elingke", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "elingno jadwal awan ku", "expected_intent": "calendar:calendar_set", "expected_slots": {"timeofday": "awan"}, "split": "test"}
{"utterance": "batalna rapat selanjute", "expected_intent": "calendar:calendar_remove", "expected_slots": {"event_name": "rapat"}, "split": "test"}
{"utterance": "batalke mangan esuk ning omahe tiffany", "expected_intent": "calendar:calendar_remove", "expected_slots": {"meal_type": "mangan esuk", "place_name": "omahe tiffany"}, "split": "test"}
{"utterance": "nambah pangeling rapat kanggo dina minggu karo maratuwa ku", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "rapat", "date": "minggu", "relation": "maratuwa"}, "split": "test"}
{"utterance": "olly aku prei sesuk", "expected_intent": "general:general_quirky", "expected_slots": {"date": "sesuk"}, "split": "test"}
{"utterance": "leboke rapat karo pawel kanggo sesuk jam sepuluh esuk", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "rapat", "person": "pawel", "date": "sesuk", "time": "sepuluh esuk"}, "split": "test"}
{"utterance": "aturno minggu pertama juni minangka preian ing tanggalan ku", "expected_intent": "calendar:calendar_set", "expected_slots": {"time": "minggu pertama juni", "event_name": "preian"}, "split": "test"}
{"utterance": "piro cacahe aku duwe pangeling", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "tulung resiki tanggalan ku", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "busaken seko tanggalan ku rapat jam sanga esuk", "expected_intent": "calendar:calendar_remove", "expected_slots": {"event_name": "rapat", "time": "sanga esuk"}, "split": "test"}
{"utterance": "elingno aku kanggo ngresiki jendhela", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "ngresiki jendhela"}, "split": "test"}
{"utterance": "atur acara gawe jumat", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "jumat"}, "split": "test"}
{"utterance": "opo pengeling ku selanjute", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "atur patemonan karo joanna dina setu papat sore", "expected_intent": "calendar:calendar_set", "expected_slots": {"person": "joanna", "date": "setu", "time": "papat sore"}, "split": "test"}
{"utterance": "mbusak acara ku ngarep", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "duduhno aku rapat rapat aku jumat iki", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "jumat iki"}, "split": "test"}
{"utterance": "duduhno aku tanggalan acara ku dina jumat iki awan", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "jumat iki", "timeofday": "awan"}, "split": "test"}
{"utterance": "ngelingi ulang taun ibu ku seminggu sadurunge", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "ulang taun", "relation": "ibu", "time": "seminggu sadurunge"}, "split": "test"}
{"utterance": "olly ana band main bengi iki jam sanga ning jazz bar aku arep lunga", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "band main", "timeofday": "bengi iki", "time": "jam sanga", "place_name": "jazz bar"}, "split": "test"}
{"utterance": "ilingno aku acara rapat sesuk jam enem", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "rapat", "date": "sesuk", "time": "enem"}, "split": "test"}
{"utterance": "daftarke jadwal ku dina iki", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "dina iki"}, "split": "test"}
{"utterance": "wenehi aku pangeling ing rapat sesuk jam sepuluh isuk", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "rapat", "date": "sesuk", "time": "sepuluh isuk"}, "split": "test"}
{"utterance": "enek acara-acara opo bariki", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "atur kabar rapat sesuk jam sepuluh", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "rapat", "date": "sesuk", "time": "sepuluh"}, "split": "test"}
{"utterance": "jadwal ketemuan karo departemen akuntansi jam setengah telu sore dina jumat", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "ketemuan", "business_name": "departemen akuntansi", "time": "setengah telu sore", "date": "jumat"}, "split": "test"}
{"utterance": "opo ono acara acara esuk kasedhiya", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "acara acara", "timeofday": "esuk"}, "split": "test"}
{"utterance": "opo kowe iso ngekeki aku jadwal pilem", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "pilem"}, "split": "test"}
{"utterance": "elingno aku methuk linda ing jam lima sore tanggal pitu", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "methuk", "person": "linda", "time": "lima", "timeofday": "sore", "date": "pitu"}, "split": "test"}
{"utterance": "ngelingake sesuk jam sepuluh esuk ana rapat", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "sesuk", "time": "sepuluh esuk", "event_name": "rapat"}, "split": "test"}
{"utterance": "atur pangeling sasi ngarep kanggo ngganti oli", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "sasi ngarep", "event_name": "ngganti oli"}, "split": "test"}
{"utterance": "apa sing kedadeyan sawise jam siji lan sadurunge telung sore", "expected_intent": "calendar:calendar_query", "expected_slots": {"time": "sadurunge telung sore"}, "split": "test"}
{"utterance": "mbusak acara saka tanggalan", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "nyetel pangeling kanggo nyetak dokumen ing dina selasa esuk", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "nyetak dokumen", "date": "selasa", "timeofday": "esuk"}, "split": "test"}
{"utterance": "apa iki jumat", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "jumat"}, "split": "test"}
{"utterance": "mbusak kabeh acara", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "elingno aku ngombe obat jam sanga esuk", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "obat", "time": "sanga esuk"}, "split": "test"}
{"utterance": "atur pangeling eling awan gawe mangan awan karo bos", "expected_intent": "calendar:calendar_set", "expected_slots": {"timeofday": "awan", "event_name": "mangan awan karo bos"}, "split": "test"}
{"utterance": "apa ana rapat rapat sing disetel kanggo dina rebo ngarep", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "rapat rapat", "date": "rebo"}, "split": "test"}
{"utterance": "priksa manawa ora ana acara ing tanggalan ku", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "ngelingake rapat ku sejam sadurunge diwiwiti", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "rapat", "time": "sejam"}, "split": "test"}
{"utterance": "opo aku iso ngerti opo sing kudu aku lakokno sabtu ngarep jam enem sore", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "sabtu", "time": "enem sore"}, "split": "test"}
{"utterance": "apa kowe isa ngelingake rapat sesuk karo bos ku sak jam sadurunge kedadeyan", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "rapat", "relation": "bos", "time": "sak jam"}, "split": "test"}
{"utterance": "kowe iso ngecekno fakta fakta ing masalah iki", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "aku kudu konfirmasi kabeh rapat rapat kanggo dina iki bisa ngajak wong", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "rapat rapat", "date": "dina iki"}, "split": "test"}
{"utterance": "nambah pangeling saka konferensi kanggo sesuk ing new york", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "konferensi", "date": "sesuk", "place_name": "new york"}, "split": "test"}
{"utterance": "aku duwe gawean ing washington sesuk elingno", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "gawean", "place_name": "washington", "date": "sesuk"}, "split": "test"}
{"utterance": "kekono aku dhaptar sing kudu dilaksanake", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "nduduhake acara sesuk", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "elingke aku", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "mbusak acara sukses", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "acara anyar", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "tambahno pangeling eling nang tanggalanku pendak taun pas tanggal iki", "expected_intent": "calendar:calendar_set", "expected_slots": {"general_frequency": "pendak taun"}, "split": "test"}
{"utterance": "kapan acarane arep diwiwiti", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "wenehi jadwal acara dina iki", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "dina iki"}, "split": "test"}
{"utterance": "mbusak taun anyar saka tanggalan", "expected_intent": "calendar:calendar_remove", "expected_slots": {"event_name": "taun anyar"}, "split": "test"}
{"utterance": "acara opo sing lagi ana neng kutha ku minggu iki", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"place_name": "kutha", "date": "minggu iki"}, "split": "test"}
{"utterance": "atur rapat selanjute selasa jam sewelas awan karo yesi", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "rapat", "date": "selasa", "time": "sewelas awan", "person": "yesi"}, "split": "test"}
{"utterance": "ilengna aku siap siap jam limo sore", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "siap siap", "time": "limo sore"}, "split": "test"}
{"utterance": "lebokna rapat tari tanggal selikur jam pitu", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "rapat tari", "date": "selikur", "time": "pitu"}, "split": "test"}
{"utterance": "jadwalke rapat karo matt dina kemis jam swelas awan", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "rapat", "person": "matt", "date": "kemis", "time": "swelas awan"}, "split": "test"}
{"utterance": "jadwalna rapat nedha awan karo adi rebo awan", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "rapat nedha awan", "person": "adi", "date": "rebo", "timeofday": "awan"}, "split": "test"}
{"utterance": "kekono pangeling eling pat likur jam sadurunge rapat ku jumat karo edg", "expected_intent": "calendar:calendar_set", "expected_slots": {"time": "pat likur jam sadurunge", "event_name": "rapat", "date": "jumat", "person": "edg"}, "split": "test"}
{"utterance": "telusuri tanggalan ku kanggo acara sabanjure lan ngabari aku sadurunge kedadeyan", "expected_intent": "calendar:calendar_set", "expected_slots": {"time": "sadurunge"}, "split": "test"}
{"utterance": "batalake kabeh ing tanggalan ku", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "batalna rapat sesuk seko tanggalan aku", "expected_intent": "calendar:calendar_remove", "expected_slots": {"event_name": "rapat", "date": "sesuk"}, "split": "test"}
{"utterance": "tambahna pembayaran mobil aku tanggal rolas nang tanggalan aku", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "pembayaran mobil", "date": "rolas"}, "split": "test"}
{"utterance": "ilingake aku dina sadurunge mobil ku teka", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "dina sadurunge", "event_name": "mobil"}, "split": "test"}
{"utterance": "jam pira janjian dokter ku tanggal telung puluh siji maret", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "janjian dokter", "date": "telung puluh siji maret"}, "split": "test"}
{"utterance": "apa ana acara ing tengah kutha akhir minggu iki", "expected_intent": "calendar:calendar_query", "expected_slots": {"place_name": "tengah kutha", "date": "akhir minggu iki"}, "split": "test"}
{"utterance": "singkirna acara tanggal sangalas seko kalender aku", "expected_intent": "calendar:calendar_remove", "expected_slots": {"date": "tanggal sangalas"}, "split": "test"}
{"utterance": "jadwal aku opo dino iki", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "dino iki"}, "split": "test"}
{"utterance": "balenina acara iki", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "atur pangeling eling kanggo aku sejam sakdurunge rapat maem siang", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "maem siang"}, "split": "test"}
{"utterance": "apa program iki dijadwalken", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "kanggo saben minggu nomer ganjil setel pangeling eling", "expected_intent": "calendar:calendar_set", "expected_slots": {"general_frequency": "minggu nomer ganjil"}, "split": "test"}
{"utterance": "nyetel mangan awan saben dina ing setengah siji", "expected_intent": "calendar:calendar_set", "expected_slots": {"meal_type": "mangan awan", "general_frequency": "saben dina", "time": "setengah siji"}, "split": "test"}
{"utterance": "ilengna acara iki selawase", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "bisa menehi kula rincian fungsi taunan mbesuk ing nemlikur maret", "expected_intent": "general:general_quirky", "expected_slots": {"event_name": "fungsi", "general_frequency": "taunan", "date": "nemlikur maret"}, "split": "test"}
{"utterance": "ibu ku ulang taun dina iki kirimno pemberitahuan saben taun ning tanggal iki", "expected_intent": "calendar:calendar_set", "expected_slots": {"relation": "ibu", "event_name": "ulang taun", "date": "dina iki", "general_frequency": "saben taun"}, "split": "test"}
{"utterance": "gugah aku jam enem esuk dina kemis supaya aku duwe wektu kanggo rapat", "expected_intent": "calendar:calendar_set", "expected_slots": {"time": "enem esuk", "date": "kemis", "event_name": "rapat"}, "split": "test"}
{"utterance": "kapan selanjute janji ketemuan karo dokter budi", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "janji ketemuan", "person": "dokter budi"}, "split": "test"}
{"utterance": "opo aku duwe rencana", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "aturna rapat aku sesuk", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "rapat", "date": "sesuk"}, "split": "test"}
{"utterance": "ngelingake aku rapat karo allen tanggal limalas maret", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "rapat", "person": "allen", "time": "limalas maret"}, "split": "test"}
{"utterance": "setel kabar telu loro lan sejam sakdurunge final indonesia minggu ngarep", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "final indonesia", "date": "minggu ngarep"}, "split": "test"}
{"utterance": "apa kowe isa ngelingake aku supaya mbuwang sampah ing dina selasa", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "mbuwang sampah", "date": "selasa"}, "split": "test"}
{"utterance": "kesan pertama sing apik", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "pengeling eling rapat sesuk", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "rapat", "date": "sesuk"}, "split": "test"}
{"utterance": "tomi mantenan tempate nang ngendi", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "mantenan"}, "split": "test"}
{"utterance": "acara acara opo ae minggu ngarep", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "minggu ngarep"}, "split": "test"}
{"utterance": "tulung elingke aku nelpon ibu ing setengah jam", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "nelpon", "relation": "ibu", "time": "ing setengah jam"}, "split": "test"}
{"utterance": "ilengna aku ngirim surel nang bos sawise sakjam", "expected_intent": "calendar:calendar_set", "expected_slots": {"relation": "bos"}, "split": "test"}
{"utterance": "gaweno pangeling eling nggo rapat sesuk", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "rapat", "date": "sesuk"}, "split": "test"}
{"utterance": "opo tudas ku seng ditunda", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "ilengna aku ulang taun rita patlikur jam sadurunge", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "ulang taun", "person": "rita", "time": "patlikur jam sadurunge"}, "split": "test"}
{"utterance": "ilengna ulang taun perkawinan aku sedina sadurunge", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "ulang taun perkawinan", "date": "sedina sadurunge"}, "split": "test"}
{"utterance": "nyingkirake kabeh acara acara karo jeff", "expected_intent": "calendar:calendar_remove", "expected_slots": {"person": "jeff"}, "split": "test"}
{"utterance": "blokir sak jam saka jam sepuluh sesuk esuk", "expected_intent": "calendar:calendar_set", "expected_slots": {"time": "sepuluh", "date": "sesuk", "timeofday": "esuk"}, "split": "test"}
{"utterance": "tandai kalenderku sesuk sore jam papat nganti jam enem aku ora ono", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "sesuk", "timeofday": "sore", "time": "enem"}, "split": "test"}
{"utterance": "jadwal janjian sak jam kanggo dina setu", "expected_intent": "calendar:calendar_set", "expected_slots": {"time": "sak jam", "date": "setu"}, "split": "test"}
{"utterance": "busaken janjian karo george adams seko tanggalanku", "expected_intent": "calendar:calendar_remove", "expected_slots": {"event_name": "janjian", "person": "george adams"}, "split": "test"}
{"utterance": "tulung busak tanggalan ku", "expected_intent": "calendar:calendar_remove", "expected_slots": {"time": "busak"}, "split": "test"}
{"utterance": "kanggo apa dina iki", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "dina iki"}, "split": "test"}
{"utterance": "apa aku duwe sembarang janjian", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "janjian"}, "split": "test"}
{"utterance": "apa sing kedadeyan ing dina iki saka loro papat sore", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "dina iki", "time": "loro papat sore"}, "split": "test"}
{"utterance": "mung supaya kula ngerti minggu ngarep cuaca ing semarang", "expected_intent": "email:email_query", "expected_slots": {"time": "minggu ngarep", "place_name": "semarang"}, "split": "test"}
{"utterance": "ilingno aku mriksa godhokan jam enem", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "mriksa godhokan", "time": "enem"}, "split": "test"}
{"utterance": "tulung duduhno rapat dina iki karo klien klien", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "dina iki", "relation": "klien klien"}, "split": "test"}
{"utterance": "opo ono acara acara sing wis direncanake ing telung wulan ngarep", "expected_intent": "calendar:calendar_query", "expected_slots": {"time": "telung wulan ngarep"}, "split": "test"}
{"utterance": "tulung jadwalke rapat karo wong iki", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "rapat"}, "split": "test"}
{"utterance": "aku butuh rapat kanggo nggawe jadwal karo wong iki", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "rapat"}, "split": "test"}
{"utterance": "elingno aku pesta sesuk", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "pesta", "date": "sesuk"}, "split": "test"}
{"utterance": "ajak uwong menyang acara seng ono nang tanggalan", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "kandhanono klompokku yen tanggal rapat anyar kuwi sesuk", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "rapat", "date": "sesuk"}, "split": "test"}
{"utterance": "acara", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "ilingno aku tanggal limo maret saben taun kanggo ngatur hadiah ulang taun pernikahan", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "limo maret", "general_frequency": "saben taun", "event_name": "hadiah ulang taun pernikahan"}, "split": "test"}
{"utterance": "opo aku duwe janji dina iki", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "janji", "date": "dina iki"}, "split": "test"}
{"utterance": "gawe jadwal anyar kanggo rapat sesuk", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "rapat", "date": "sesuk"}, "split": "test"}
{"utterance": "mbusakna kabeh acara selanjute", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "opo sing ono ing agenda jam papat sore rapat karo joe", "expected_intent": "calendar:calendar_query", "expected_slots": {"time": "papat sore", "person": "joe"}, "split": "test"}
{"utterance": "ning d. c. ngendi rapat kuwi jam siji awan dina jumat", "expected_intent": "calendar:calendar_query", "expected_slots": {"place_name": "d. c.", "event_name": "rapat", "time": "siji awan", "date": "jumat"}, "split": "test"}
{"utterance": "ilingno aku saben dina jam loro awan gawe mangan awan", "expected_intent": "calendar:calendar_set", "expected_slots": {"general_frequency": "saben dina", "time": "loro awan", "meal_type": "mangan awan"}, "split": "test"}
{"utterance": "sepiro akeh e mehta gelem investasi ing perusahaan ku ing rapat sing diadakno dina iki jam limo rong puluh sore", "expected_intent": "calendar:calendar_query", "expected_slots": {"person": "mehta", "event_name": "rapat", "date": "dina iki", "time": "limo rong puluh sore"}, "split": "test"}
{"utterance": "tulung aturno tanggal telulas juni iku dina asil pemilu", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "telulas juni", "event_name": "asil pemilu"}, "split": "test"}
{"utterance": "tulung tambahke dina gajian ku", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "gajian"}, "split": "test"}
{"utterance": "apa aku duwe apa apa", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "tulung ilingno aku pekoro iki sesuk", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "sesuk"}, "split": "test"}
{"utterance": "aku arep rapat nganti jam telu", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "rapat", "time": "jam telu"}, "split": "test"}
{"utterance": "setelno tanggalan kanggo ngelingake aku tuku sembako saben jumat", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "tuku sembako", "general_frequency": "saben jumat"}, "split": "test"}
{"utterance": "gaweno pangeling eling lokasi ing tanggalan", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "ilengna aku bengi iki njupuk kumbahan jam wolu bengi", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "njupuk kumbahan", "time": "wolu bengi"}, "split": "test"}
{"utterance": "elingno aku ketemuan sesuk sak jam sadurunge", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "ketemuan", "date": "sesuk"}, "split": "test"}
{"utterance": "pangeling rapat", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "rapat"}, "split": "test"}
{"utterance": "ulang taun", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "ulang taun"}, "split": "test"}
{"utterance": "rencana kanggo sesuk", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "sesuk"}, "split": "test"}
{"utterance": "apa rencanane kanggo dina iki", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "kanca tambahno acara ing tanggalan", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "tulung jadwalno rapat karo derrick ning haysi awan wae", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "rapat", "person": "derrick", "place_name": "haysi", "timeofday": "awan"}, "split": "test"}
{"utterance": "tulung aturke rapat kanggo ngrembug terorisme karo fred ing dina kasedhiya ngarep", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "ngrembug terorisme", "person": "fred", "date": "kasedhiya ngarep"}, "split": "test"}
{"utterance": "ketemu karo joe sesuk jam telu", "expected_intent": "calendar:calendar_set", "expected_slots": {"person": "joe", "date": "sesuk", "time": "telu"}, "split": "test"}
{"utterance": "busak pangeling eling rapat kanggo selasa", "expected_intent": "calendar:calendar_remove", "expected_slots": {"event_name": "rapat", "date": "selasa"}, "split": "test"}
{"utterance": "apa acara sing bakal teka", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "ilingno aku pas aku ing perpustakaan gawe njupuk kartu perpustakaan anyar", "expected_intent": "calendar:calendar_set", "expected_slots": {"place_name": "perpustakaan", "event_name": "njupuk kartu perpustakaan anyar"}, "split": "test"}
{"utterance": "tandhani rong puluh april ulang taun dulur ku", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "rong puluh april", "event_name": "ulang taun", "relation": "dulur"}, "split": "test"}
{"utterance": "tambahno pangeling eling kanggo rong puluh april minangka ulang taun kakang ku", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "rong puluh april", "event_name": "ulang taun", "relation": "kakang"}, "split": "test"}
{"utterance": "batalna kabeh janji temu aku sawise jam telu sore iki lan kandani aku rincianne", "expected_intent": "calendar:calendar_remove", "expected_slots": {"event_name": "janji temu", "time": "telu sore", "date": "iki"}, "split": "test"}
{"utterance": "apa kowe isa dhaptarke rapat rapat ku dina iki", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "rapat rapat", "date": "dina iki"}, "split": "test"}
{"utterance": "nambah mangan awan karo mike", "expected_intent": "calendar:calendar_set", "expected_slots": {"meal_type": "mangan awan", "person": "mike"}, "split": "test"}
{"utterance": "apa kowe bakal menehi tandha yen aku duwe rapat karo tom jam telu sesuk", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "rapat", "person": "tom", "time": "telu", "date": "sesuk"}, "split": "test"}
{"utterance": "ing tanggalan ku busak kabeh acara golf kanggo sasi saiki", "expected_intent": "calendar:calendar_remove", "expected_slots": {"event_name": "acara golf", "date": "sasi"}, "split": "test"}
{"utterance": "leboke mike karo jack ning tanggalan festival", "expected_intent": "calendar:calendar_set", "expected_slots": {"person": "jack", "event_name": "festival"}, "split": "test"}
{"utterance": "opo seng aku due", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "opo aku duwe rencana tanggal selikur", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "selikur"}, "split": "test"}
{"utterance": "nyetel pangeling eling kanggo iki", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "batalna kabeh rapat aku liyane lan tandhai loro maret kuwi ulang taun janu lebokna nang acara tanggalanmu", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "loro maret", "event_name": "ulang taun", "person": "janu"}, "split": "test"}
{"utterance": "oko batalna kabeh rapat aku liyane terus tandhai nang tanggalanmu loro maret ulang taun andi", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "loro maret", "event_name": "ulang taun", "person": "andi"}, "split": "test"}
{"utterance": "hei kirmno undangan rapat neng pak ross gawe dina jumat iki lan bloken tanggalanku gawe dino jumat awan", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "rapat", "person": "pak ross", "date": "jumat awan"}, "split": "test"}
{"utterance": "aku butuh sesuatu saben senen kanggo pangeling iki", "expected_intent": "calendar:calendar_set", "expected_slots": {"general_frequency": "saben senen"}, "split": "test"}
{"utterance": "aku kudu menehi tandha dina senen ngarep", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "senen"}, "split": "test"}
{"utterance": "mbusak tanggalan ku kanggo dina setu", "expected_intent": "calendar:calendar_remove", "expected_slots": {"date": "setu"}, "split": "test"}
{"utterance": "elingno aku saben dina senen kanggo mbuang sampah", "expected_intent": "calendar:calendar_set", "expected_slots": {"general_frequency": "senen"}, "split": "test"}
{"utterance": "pangeling opo sing aku duwe", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "tambahno acara wulangan neng tanggalan gawe tanggal papat februari neng taman king pas jam loro awan", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "papat februari", "place_name": "taman king", "time": "loro awan"}, "split": "test"}
{"utterance": "tambahna latian tanggal papat februari jam loro awan nang taman bunga", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "papat februari", "time": "loro awan", "place_name": "taman bunga"}, "split": "test"}
{"utterance": "tambahake blanja menyang tanggalan ku kanggo sesuk", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "sesuk"}, "split": "test"}
{"utterance": "opo aku duwe jadwal janjian dina iki", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "janjian", "date": "dina iki"}, "split": "test"}
{"utterance": "ilingno opo sing aku kudu ngerjakno dina minggu awan", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "minggu", "timeofday": "awan"}, "split": "test"}
{"utterance": "elingno aku methuk ibu menyang salon rambut dina kemis jam sewelas awan", "expected_intent": "calendar:calendar_set", "expected_slots": {"relation": "salon rambut", "date": "kemis", "time": "sewelas awan"}, "split": "test"}
{"utterance": "apa tanggal iki bener", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "busak kabeh acara acara neng tanggalan", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "mbusak kabeh acara", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "weruhi rong jam sakdurunge nek aku lunga gawe wulangan biola pas jam papat sore neng musicworkz", "expected_intent": "calendar:calendar_set", "expected_slots": {"time": "papat sore", "event_name": "wulangan biola", "place_name": "musicworkz"}, "split": "test"}
{"utterance": "pangeling eling apa sing tak nyetel", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "elingno aku nalika pendaftaran dibukak", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "pendaftaran"}, "split": "test"}
{"utterance": "aku duwe rapat ing awan dina iki", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "rapat", "timeofday": "awan", "date": "dina iki"}, "split": "test"}
{"utterance": "ilingno aku mulai mangan bengi awan iki jam limo", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "mangan bengi", "time": "jam limo"}, "split": "test"}
{"utterance": "busak acara saka tanggalan", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "apa sing kedadeyan sajrone rong wulan kepungkur", "expected_intent": "news:news_query", "expected_slots": {"date": "rong wulan kepungkur"}, "split": "test"}
{"utterance": "busak tanggalan ku", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "telu acara ngarep ku apa", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "jam pira pertandingan bal balan bengi iki", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "pertandingan bal balan", "timeofday": "bengi iki"}, "split": "test"}
{"utterance": "busek potongan rambut dina iki", "expected_intent": "calendar:calendar_remove", "expected_slots": {"event_name": "potongan rambut", "date": "dina iki"}, "split": "test"}
{"utterance": "mbatalake mangan wengi dina iki", "expected_intent": "calendar:calendar_remove", "expected_slots": {"meal_type": "mangan wengi", "timeofday": "dina iki"}, "split": "test"}
{"utterance": "mbusak acara sabanjure dina iki", "expected_intent": "calendar:calendar_remove", "expected_slots": {"date": "dina iki"}, "split": "test"}
{"utterance": "kekono aku kabar anyar pemilu ing sak jam sadurunge", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "pemilu", "time": "sak jam"}, "split": "test"}
{"utterance": "atur ketemuan antarane aku karo jono jam loro awan sesuk", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "ketemuan", "person": "jono", "time": "jam loro awan", "date": "sesuk"}, "split": "test"}
{"utterance": "opo aku kudu ngelakokke opo wae dina iki", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "dina iki"}, "split": "test"}
{"utterance": "alexa busek mangan bengi karo mike ing tanggalan ku", "expected_intent": "calendar:calendar_remove", "expected_slots": {"meal_type": "mangan bengi", "person": "mike"}, "split": "test"}
{"utterance": "ngelingake kula kanggo njupuk metu uwuh ing jam enem sore", "expected_intent": "calendar:calendar_set", "expected_slots": {"time": "jam enem sore"}, "split": "test"}
{"utterance": "kirim undangan acara tanggalan nang beni raharjo", "expected_intent": "calendar:calendar_set", "expected_slots": {"person": "beni raharjo"}, "split": "test"}
{"utterance": "rapat anyar tambahono bill lan malinda minangka peserta", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "rapat", "person": "bill lan malinda"}, "split": "test"}
{"utterance": "buka tugas tugas busek acara ngarep", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "opo sing kudu tak lakokke minggu iki", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "minggu iki"}, "split": "test"}
{"utterance": "konser mbesuk neng malang opo yo", "expected_intent": "calendar:calendar_query", "expected_slots": {"place_name": "malang"}, "split": "test"}
{"utterance": "batalke janjian ku karo dokterku ing dina setu", "expected_intent": "calendar:calendar_remove", "expected_slots": {"event_name": "janjian", "relation": "dokterku", "date": "setu"}, "split": "test"}
{"utterance": "dhekekno acara iki ing pola mbaleni ing tanggalan ku", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "gawena acara iki dibaleni meneh", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "opo aku ngandi kowe kon ngelingke opo wae", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "ilingno aku jadwal manten tepat wektu kanggo tuku hadiah", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "manten"}, "split": "test"}
{"utterance": "atur pangeling eling rong dina sadurunge gawe acara iki", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "rong dina"}, "split": "test"}
{"utterance": "opo nang kene parkir khusus acara", "expected_intent": "calendar:calendar_query", "expected_slots": {"relation": "parkir khusus"}, "split": "test"}
{"utterance": "pangeling opo sing nang jadwalku sakdurunge sesok awan", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "sesok", "timeofday": "awan"}, "split": "test"}
{"utterance": "kandanono aku yen aku nduwe acara", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "kirimno pengiling sakdurunge rapat", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "rapat"}, "split": "test"}
{"utterance": "busek kabeh acara acara ing tanggalan ku", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "apa kowe isa mbusak cukuran rambut sing wis aku jadwalake ing dina jumat", "expected_intent": "calendar:calendar_remove", "expected_slots": {"event_name": "cukuran rambut", "date": "jumat"}, "split": "test"}
{"utterance": "dorothy perlu ngomong karo aku babagan pegatan tulung nyiyapake rapat sanalika aku kasedhiya", "expected_intent": "calendar:calendar_set", "expected_slots": {"person": "dorothy", "event_name": "rapat"}, "split": "test"}
{"utterance": "dina senin tanggal rongpuluh aku kudu ngobrol karo greg babagan perjalanan akhir minggu", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "rongpuluh", "event_name": "akhir minggu", "person": "greg"}, "split": "test"}
{"utterance": "tuduhake rapat ku ing sasi ngarep", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "rapat", "date": "sasi ngarep"}, "split": "test"}
{"utterance": "acara opo bakal teko dino iki", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "dino iki"}, "split": "test"}
{"utterance": "natal iku dino opo", "expected_intent": "datetime:datetime_query", "expected_slots": {"event_name": "natal"}, "split": "test"}
{"utterance": "ilengna aku ganti oli", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "ilengna aku suwatu hal kadhangkala", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "piye carane akeh wong sing nekani rapat ku ngarep", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "rapat"}, "split": "test"}
{"utterance": "jam piro janjian ku selanjute", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "janjian"}, "split": "test"}
{"utterance": "ono opo ing jadwal ku dina iki", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "dina iki"}, "split": "test"}
{"utterance": "mbusakna janjian aku tanggal pitu maret", "expected_intent": "calendar:calendar_remove", "expected_slots": {"event_name": "janjian", "date": "pitu maret"}, "split": "test"}
{"utterance": "apa aku duweni kencan ing dina jumat", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "jumat"}, "split": "test"}
{"utterance": "apa aku duwe rapat sales dina iki", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "rapat sales", "date": "dina iki"}, "split": "test"}
{"utterance": "jadwalno rapat sales gawe rebo jam sewelas awan", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "rebo", "time": "sewelas awan"}, "split": "test"}
{"utterance": "nyetel pangeling ing sejam kanggo roti sek tak panggang", "expected_intent": "calendar:calendar_set", "expected_slots": {"time": "sejam", "event_name": "roti sek tak panggang"}, "split": "test"}
{"utterance": "apa agenda acara ne", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "aku pengen nyetel tanggal kanggo minggu iki", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "minggu iki"}, "split": "test"}
{"utterance": "surel janji temu aku dijadwal meneh", "expected_intent": "email:email_sendemail", "expected_slots": {"event_name": "janji temu"}, "split": "test"}
{"utterance": "aturen acara ulang tahun kanggo doni", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "ulang tahun", "person": "doni"}, "split": "test"}
{"utterance": "tulung tambahno pengawasan ing tanggalan ku", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "pengawasan"}, "split": "test"}
{"utterance": "sak kabehe waktu antara tanggal siji februari tekan tanggal enem belas maret ono rapat opo wae", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "tanggal siji februari tekan tanggal enem belas maret", "event_name": "rapat"}, "split": "test"}
{"utterance": "ing ngendi pesta ulang taun mary dianakake", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "pesta ulang taun", "person": "mary"}, "split": "test"}
{"utterance": "gawe acara rapat ing tanggalan ku", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "rapat"}, "split": "test"}
{"utterance": "jadwalna acara rapat nang tanggalan aku", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "rapat"}, "split": "test"}
{"utterance": "apa pangeling eling sing aku isih duwe", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "atur pangeling tanggal telulas aku duwe acara mangan awan karo dita", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "telulas", "meal_type": "mangan awan"}, "split": "test"}
{"utterance": "opo aku ninggalake pangeling eling sembarang", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "apa aku duwe pangeling-eling pesta ulang taun", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "pesta ulang taun"}, "split": "test"}
{"utterance": "setengah siji awan ana rapat ing sepuluh menit", "expected_intent": "calendar:calendar_query", "expected_slots": {"time": "sepuluh menit", "event_name": "rapat"}, "split": "test"}
{"utterance": "apa kowe isa mbusak janjian dokter untu", "expected_intent": "calendar:calendar_remove", "expected_slots": {"event_name": "janjian dokter untu"}, "split": "test"}
{"utterance": "tanggal piro saiki", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "tulung elingno aku lungo kantor pos", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "ojo sampek aku lali tuku kado gawe dulur wadon ku", "expected_intent": "calendar:calendar_set", "expected_slots": {"relation": "dulur wadon"}, "split": "test"}
{"utterance": "piro suwene rapat mangan awan aku dino selasa", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "rapat mangan awan", "date": "selasa"}, "split": "test"}
{"utterance": "busek kabeh saka tanggalan ku sisa taun iki", "expected_intent": "calendar:calendar_remove", "expected_slots": {"date": "sisa taun iki"}, "split": "test"}
{"utterance": "aku butuh dikabari saka layanan gereja dina minggu jam sewelas awan", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "layanan gereja", "date": "minggu", "time": "sewelas awan"}, "split": "test"}
{"utterance": "tambahna mangan bengi sesuk nang tanggalan", "expected_intent": "calendar:calendar_set", "expected_slots": {"meal_type": "mangan bengi", "date": "sesuk"}, "split": "test"}
{"utterance": "lebokna acara mangan awan kanggo minggu ngarep", "expected_intent": "calendar:calendar_set", "expected_slots": {"meal_type": "mangan awan", "date": "minggu ngarep"}, "split": "test"}
{"utterance": "tulung wenehi tandha sak dina sadurunge ulang taun e jeff", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "sak dina sadurunge", "event_name": "ulang taun", "person": "jeff"}, "split": "test"}
{"utterance": "kirimi aku tandha lan jam sadurunge janjian sabanjure", "expected_intent": "calendar:calendar_set", "expected_slots": {"time": "jam sadurunge", "event_name": "janjian"}, "split": "test"}
{"utterance": "pangelingke telung puluh menit ing rapat kanggo selasa", "expected_intent": "calendar:calendar_set", "expected_slots": {"time": "telung puluh menit", "date": "selasa"}, "split": "test"}
{"utterance": "tulung busakno janjian ning jadwal ku sabanjure", "expected_intent": "calendar:calendar_remove", "expected_slots": {"event_name": "janjian"}, "split": "test"}
{"utterance": "aku kudu nyetel pangeling ing limalas maret", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "limalas maret"}, "split": "test"}
{"utterance": "busak ulang taun saka tanggalan", "expected_intent": "calendar:calendar_remove", "expected_slots": {"event_name": "ulang taun"}, "split": "test"}
{"utterance": "aturno pangeling rapat fakultas dina iki jam papat", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "rapat fakultas", "date": "dina iki", "time": "papat"}, "split": "test"}
{"utterance": "bukak pangeling bab rapat manajer minggu ngarep dino selasa", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "rapat manajer", "date": "selasa"}, "split": "test"}
{"utterance": "tambahake ning tanggalan lan baleni", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "simpen acara tanggal wolulas maret jam limo sore tekan enem sore", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "wolulas maret", "time": "jam limo sore tekan enem sore"}, "split": "test"}
{"utterance": "busakno rapat senin ngarep", "expected_intent": "calendar:calendar_remove", "expected_slots": {"event_name": "rapat", "date": "senin ngarep"}, "split": "test"}
{"utterance": "wingi awan ing times square apa sing protes", "expected_intent": "news:news_query", "expected_slots": {"date": "wingi", "time": "awan", "place_name": "times square"}, "split": "test"}
{"utterance": "aku kudu ngerti luwih akeh babagan parade akhir minggu iki", "expected_intent": "general:general_quirky", "expected_slots": {"event_name": "parade", "date": "akhir minggu iki"}, "split": "test"}
{"utterance": "aku pengin ngerti luwih akeh babagan pameran akhir minggu iki", "expected_intent": "general:general_quirky", "expected_slots": {"date": "akhir minggu iki"}, "split": "test"}
{"utterance": "kapan jajan awan ku karo jennifer", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "jajan awan", "person": "jennifer"}, "split": "test"}
{"utterance": "apa saiki dina rebo", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "rebo"}, "split": "test"}
{"utterance": "kabari aku yen rapat bakal kelakon", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "rapat"}, "split": "test"}
{"utterance": "ono opo neng tanggal papat desember", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "papat desember"}, "split": "test"}
{"utterance": "ilingno aku pekoro iki", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "gawe bola bali tanggal wolulas maret janjian kanggo ulang taune pearl", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "wolulas maret", "event_name": "janjian kanggo ulang taune pearl"}, "split": "test"}
{"utterance": "nggawe pangeling kanggo umbah-umbah ing wolu bengi", "expected_intent": "calendar:calendar_set", "expected_slots": {"time": "wolu bengi"}, "split": "test"}
{"utterance": "aku arep umbah umbah jam wolu bengi gawe pangeling eling", "expected_intent": "calendar:calendar_set", "expected_slots": {"time": "wolu bengi"}, "split": "test"}
{"utterance": "elingno aku ing rapat ku", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "rapat"}, "split": "test"}
{"utterance": "setelno pangeling saben dina ing wayah awan kanggo njupuk obat", "expected_intent": "calendar:calendar_set", "expected_slots": {"general_frequency": "saben dina", "timeofday": "awan"}, "split": "test"}
{"utterance": "jelaske luwih akeh babagan acaraku", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "aku pengen luwih ngerti bab acara iki", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "busak mangan bengi ku sesuk", "expected_intent": "calendar:calendar_remove", "expected_slots": {"meal_type": "mangan bengi", "date": "sesuk"}, "split": "test"}
{"utterance": "ilangono acara mangan bengi ku senen", "expected_intent": "calendar:calendar_remove", "expected_slots": {"meal_type": "mangan bengi", "date": "senen"}, "split": "test"}
{"utterance": "tulung elingno aku", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "ilengna aku lunga mangan bengi karo dani dino jumat jam lima sore", "expected_intent": "calendar:calendar_set", "expected_slots": {"meal_type": "mangan bengi", "person": "dani", "date": "jumat", "time": "lima sore"}, "split": "test"}
{"utterance": "tambahno ketemuan ning kantor karo brian jam telu sore dina selasa", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "ketemuan", "place_name": "kantor", "person": "brian", "time": "telu sore", "date": "selasa"}, "split": "test"}
{"utterance": "kandani aku acara acara saiki antara wingi lan esuk iki", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "wingi", "timeofday": "esuk"}, "split": "test"}
{"utterance": "batalna kabeh janjian aku", "expected_intent": "calendar:calendar_remove", "expected_slots": {"event_name": "janjian"}, "split": "test"}
{"utterance": "singkirno kabeh acara ku sing dijadwalake", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "tulung aturke rapat mangan awan jam rolas awan saben rebo ning sasi maret", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "rapat mangan awan", "time": "rolas awan", "general_frequency": "saben rebo", "date": "maret"}, "split": "test"}
{"utterance": "tulung owahi tanggalan ku karo acara iki", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "setelno pangeling eling kanggo ulang taun anak wedhok ku", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "ulang taun", "relation": "anak wedhok"}, "split": "test"}
{"utterance": "mangga lebokake acara ing tanggalan ku lan tandhani minangka acara bola-bali", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "duduhke acara ku", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "opo rencanaku sasi mei", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "sasi mei"}, "split": "test"}
{"utterance": "aku ana rapat jam sanga esuk ing dina rebo kirimi aku pangeling eling", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "rapat", "time": "sanga esuk", "date": "rebo"}, "split": "test"}
{"utterance": "apa sing dijadwalake ing tanggalan ku dina iki", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "dina iki"}, "split": "test"}
{"utterance": "tambahno pesta ulang taun e jane sesuk jam loro awan ing one hundred and twenty three main ing tanggalan ku", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "pesta ulang taun", "person": "jane", "date": "sesuk", "time": "loro awan", "place_name": "one hundred and twenty three main"}, "split": "test"}
{"utterance": "kaya apa jadwal ku dina iki", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "dina iki"}, "split": "test"}
{"utterance": "kandakne acara rapat rapat ku gawe sesuk esuk", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "rapat rapat", "date": "sesuk", "timeofday": "esuk"}, "split": "test"}
{"utterance": "ayo didelok kabeh pangeling sing ketundha", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "hapus kalender item", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "tambahno acara ning aplikasi tanggalan", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "pangeling rapat saka telu nganti lima", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "rapat", "time": "telu nganti lima"}, "split": "test"}
{"utterance": "iso ta ilingno aku gawe janjan karo dokter gigi pas rong jam iki", "expected_intent": "calendar:calendar_set", "expected_slots": {"time": "rong jam"}, "split": "test"}
{"utterance": "elingno aku babagan", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "tulung ilingno aku", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "tambahke rapat ing tanggalan ku jam sanga esuk karo tom", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "rapat", "time": "sanga esuk", "person": "tom"}, "split": "test"}
{"utterance": "opo aku duwe jadwal dina iki", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "dina iki"}, "split": "test"}
{"utterance": "busek rapat ku jam loro awan dina iki", "expected_intent": "calendar:calendar_remove", "expected_slots": {"event_name": "rapat", "time": "jam loro awan"}, "split": "test"}
{"utterance": "kirimna undangan nang joko lan ani kanggo mangan awan dino selasa jam sewelas esuk", "expected_intent": "calendar:calendar_set", "expected_slots": {"person": "joko lan ani", "event_name": "mangan awan", "date": "selasa", "time": "sewelas esuk"}, "split": "test"}
{"utterance": "kowe bakal menehi tandha yen aku sibuk kanggo acara sesuk jam loro awan", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "sesuk", "time": "loro awan"}, "split": "test"}
{"utterance": "informasi opo sing kudu aku ngerti kanggo rapat aku dina iki", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "rapat", "date": "dina iki"}, "split": "test"}
{"utterance": "ilingno aku yen aku nduwe pesta ulang taun tanggal telung puluh", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "pesta ulang taun", "date": "telung puluh"}, "split": "test"}
{"utterance": "ilingno aku nyusul mark ing bandara jam enem sore", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "nyusul mark", "place_name": "bandara", "time": "enem sore"}, "split": "test"}
{"utterance": "ngelingake aku nyirami tanduran ku saben dina selasa kemis lan setu", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "nyirami tanduran", "general_frequency": "setu"}, "split": "test"}
{"utterance": "mbusak iku seko tanggalan aku", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "sampeyan bisa ngelingake aku supaya mesen kalkun telung minggu sadurunge syukuran", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "mesen kalkun"}, "split": "test"}
{"utterance": "aku pengin nggawe cathetan ing tanggalan kanggo acara sesuk ing perpustakaan", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "sesuk", "place_name": "perpustakaan"}, "split": "test"}
{"utterance": "tambahno telpon konferensi jam papat sore neng pangeling eling ku gawe dina iki", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "telpon konferensi", "time": "papat sore", "date": "dina iki"}, "split": "test"}
{"utterance": "weruhi aku acara sing neng tanggalan ku", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "elingke aku acara sing neng tanggalan ku", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "busek kabeh acara acara saka tanggalan ku", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "ing telung sasi kepungkur pira rapat rapat ku karo pak richard", "expected_intent": "calendar:calendar_query", "expected_slots": {"time": "telung sasi kepungkur", "event_name": "rapat rapat", "person": "pak richard"}, "split": "test"}
{"utterance": "busak acara saka tanggalan", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "ning ngendi konsere kiss", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "konsere kiss"}, "split": "test"}
{"utterance": "ning endi rapat ku jam sanga esuk", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "rapat", "time": "sanga esuk"}, "split": "test"}
{"utterance": "dina iki dina saint patricks", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "dina iki", "event_name": "dina saint patricks"}, "split": "test"}
{"utterance": "apa ana sing ulang taun", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "ulang taun"}, "split": "test"}
{"utterance": "acara bakal kalebu walter lan gemma", "expected_intent": "calendar:calendar_set", "expected_slots": {"person": "gemma"}, "split": "test"}
{"utterance": "tulung aturke pangeling ing tanggalan ku kanggo rapat ku tanggal selawe maret", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "rapat", "date": "selawe maret"}, "split": "test"}
{"utterance": "nyetel weker pangeling bola-bali kanggo acara facebook aku kudu teka ing pitu april", "expected_intent": "alarm:alarm_set", "expected_slots": {"media_type": "facebook", "date": "pitu april"}, "split": "test"}
{"utterance": "mbusak kabeh tanggal", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "setel elingan kanggo loro awan", "expected_intent": "alarm:alarm_set", "expected_slots": {"time": "loro awan"}, "split": "test"}
{"utterance": "kandhani jadwal ku mengko sore iki", "expected_intent": "calendar:calendar_query", "expected_slots": {"timeofday": "sore iki"}, "split": "test"}
{"utterance": "ndelehke acara mangan wengi ku ing lobster abang ing tanggalan kanggo dino iki jam sanga", "expected_intent": "calendar:calendar_set", "expected_slots": {"meal_type": "mangan wengi", "place_name": "lobster abang", "date": "dino iki", "time": "sanga"}, "split": "test"}
{"utterance": "opo aku ana rapat sabtu tanggal selawe maret", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "rapat", "date": "selawe maret"}, "split": "test"}
{"utterance": "ulang taune jessica opo tanggal rolas april", "expected_intent": "calendar:calendar_query", "expected_slots": {"person": "jessica", "date": "rolas april"}, "split": "test"}
{"utterance": "mbusak acara mbesuk", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "busek lunga blanja sing wis aku jadwal tanggal telu likur maret", "expected_intent": "calendar:calendar_remove", "expected_slots": {"event_name": "lunga blanja", "date": "telu likur maret"}, "split": "test"}
{"utterance": "opo jadwal aku tanggal pitu juli wis rampung", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "tanggal pitu juli"}, "split": "test"}
{"utterance": "apa aku bebas ing papat sore", "expected_intent": "calendar:calendar_query", "expected_slots": {"time": "papat sore"}, "split": "test"}
{"utterance": "apa kulo duwe rapat awan iki", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "rapat", "timeofday": "awan iki"}, "split": "test"}
{"utterance": "informasi liyane acara iki", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "delokke pangeling sing ketundha", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "info acara acara sing bakal teka", "expected_intent": "recommendation:recommendation_events", "expected_slots": {}, "split": "test"}
{"utterance": "apa aku wis dijadwal kanggo tanggal sangalas ing loro awan", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "sangalas", "time": "loro awan"}, "split": "test"}
{"utterance": "kirimno aku pangeling eling rapat ku karo tom jumat ngarep", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "rapat", "person": "tom", "date": "jumat"}, "split": "test"}
{"utterance": "opo acara kalender e bener", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "opo aku nduwe sesuatu sing wis diatur tanggal papat juli taun iki", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "papat juli taun iki"}, "split": "test"}
{"utterance": "mbusak kegiatan sabanjure", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "busek kabeh acara acara ing tanggalan", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "ilengna rapat sing bakal teko karo anang hermansyah", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "rapat", "person": "anang hermansyah"}, "split": "test"}
{"utterance": "olly nyetel weker kanggo pangeling", "expected_intent": "alarm:alarm_set", "expected_slots": {}, "split": "test"}
{"utterance": "ilingno aku nelpon ibu saben selasa jam sepuluh esuk", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "nelpon ibu", "general_frequency": "saben selasa", "time": "sepuluh esuk"}, "split": "test"}
{"utterance": "atur pangeling eling rapat sesuk jam sanga esuk", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "rapat", "date": "sesuk", "time": "sanga esuk"}, "split": "test"}
{"utterance": "gawe weker kanggo rapat karo bob jam pitu dina iki", "expected_intent": "alarm:alarm_set", "expected_slots": {"event_name": "rapat", "person": "bob", "time": "pitu", "date": "dina iki"}, "split": "test"}
{"utterance": "hapus iki", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "atur pangeling eling balenan saben minggu", "expected_intent": "calendar:calendar_set", "expected_slots": {"general_frequency": "saben minggu"}, "split": "test"}
{"utterance": "informasi acara pungkasan", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "atur tanggal acara nang tanggalan karo liyane", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "sebutna acara ning tanggalan bareng liyane", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "kekono aku tanggalan dina iki sawise jam enem sore", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "dina iki", "time": "enem sore"}, "split": "test"}
{"utterance": "jam piro janjian ku tanggal papat april", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "janjian", "date": "papat april"}, "split": "test"}
{"utterance": "opo jadwalku dino iki", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "dino iki"}, "split": "test"}
{"utterance": "busek kabeh acara acara ing tanggalan ku", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "baby shower putrine hayathis", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "baby shower putrine", "person": "hayathis"}, "split": "test"}
{"utterance": "tambahna acara rapat karo juliardi", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "rapat", "person": "juliardi"}, "split": "test"}
{"utterance": "tulung ilangono pangeling eling", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "buka wektu rapat", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "rapat"}, "split": "test"}
{"utterance": "aku pengin kowe nggawe pangeling eling ing wayah sore babagan rapat sing bakal teka", "expected_intent": "calendar:calendar_set", "expected_slots": {"timeofday": "sore", "event_name": "rapat"}, "split": "test"}
{"utterance": "ilingno rong dina sadurunge ulang taun e bojo ku", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "ulang taun", "relation": "bojo"}, "split": "test"}
{"utterance": "kandani aku kiro kiro sing perlu di eling minggu iki", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "minggu iki"}, "split": "test"}
{"utterance": "rapat opo sing wis dijadwal dina iki", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "rapat", "date": "dina iki"}, "split": "test"}
{"utterance": "mung nyetel pangeling pembayaran tagihan sing ditundha", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "pembayaran tagihan sing ditundha"}, "split": "test"}
{"utterance": "kandani aku rapat penting karo bos minggu ngarep", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "rapat penting karo bos", "time": "minggu ngarep"}, "split": "test"}
{"utterance": "ok google mbusak ulang taun eric saka tanggalan", "expected_intent": "calendar:calendar_remove", "expected_slots": {"event_name": "ulang taun eric"}, "split": "test"}
{"utterance": "gawe acara", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "duduhno rapat rapat", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "rapat rapat"}, "split": "test"}
{"utterance": "ilangono acara ulang taun saka tanggalan ku", "expected_intent": "calendar:calendar_remove", "expected_slots": {"event_name": "ulang taun"}, "split": "test"}
{"utterance": "apa bener acara syukuran tanggal patbelas wulan iki", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "syukuran", "date": "patbelas wulan iki"}, "split": "test"}
{"utterance": "tulung atur notifikasi tanggal telu likur oktober pekoro rapat karo kolega ku", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "tanggal telu likur oktober", "event_name": "rapat", "relation": "kolega"}, "split": "test"}
{"utterance": "resiki kabeh acara nang tanggalan ku", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "rapat rapat saka rong puluh nganti selawe juni", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "rapat rapat", "time": "rong puluh nganti selawe juni"}, "split": "test"}
{"utterance": "busakno saka tanggalan janjian medis ku kanggo dina iki", "expected_intent": "calendar:calendar_remove", "expected_slots": {"event_name": "janjian medis", "date": "dina iki"}, "split": "test"}
{"utterance": "ilengna mantenane restu", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "mantenane", "person": "restu"}, "split": "test"}
{"utterance": "acara mbesuk ing tanggalan", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "acara mbesuk"}, "split": "test"}
{"utterance": "atur pangeling acara rapat karo mona dino selasa", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "rapat", "person": "mona", "date": "selasa"}, "split": "test"}
{"utterance": "pangeling eling acara mona selasa", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "mona", "date": "selasa"}, "split": "test"}
{"utterance": "wenehi tandha ing wektu acara", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "informasi apa sing takduweni ning pangeling", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "kowe isa nyelehke ulang taun lee ing rong puluh loro juni", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "ulang taun lee", "date": "rong puluh loro juni"}, "split": "test"}
{"utterance": "tulung busakno acara iku", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "mbusak kabeh sing ana nang tanggalan aku", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "mbusak nedho bengi karo santi", "expected_intent": "calendar:calendar_remove", "expected_slots": {"event_name": "nedho bengi karo santi"}, "split": "test"}
{"utterance": "apa ana rapat ing tanggalanku sore iki", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "rapat", "timeofday": "sore iki"}, "split": "test"}
{"utterance": "jam pira konsere zach brown tanggal telu juni diwiwiti", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "konsere zach brown", "date": "telu juni"}, "split": "test"}
{"utterance": "pameran rong ewu pitulas massal ing selawe maret gaweno cathetan ing tanggal sing cocok", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "pameran rong ewu pitulas massal", "date": "selawe maret"}, "split": "test"}
{"utterance": "tambahno iki ing tanggalan ku", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "gawe pangeling bola-bali kanggo acara ing tanggalan iki", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "apa kowe isa ngatur maneh rapat ku", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "rapat"}, "split": "test"}
{"utterance": "dino opo aku wes mesen", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "duduhno acara acara ing tanggalan kerja ku minggu ngarep", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "kerja", "date": "minggu ngarep"}, "split": "test"}
{"utterance": "jam piro warung ngopi tutup antarane mangan awan lan mangan bengi", "expected_intent": "calendar:calendar_query", "expected_slots": {"business_name": "warung ngopi"}, "split": "test"}
{"utterance": "kapan super bowl resmi dimulai", "expected_intent": "qa:qa_factoid", "expected_slots": {"event_name": "super bowl"}, "split": "test"}
{"utterance": "jam piro pentas seni kudune diwiwiti", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "pentas seni"}, "split": "test"}
{"utterance": "tulung tambahke mangan bengi karo mary ing tanggalan ku dina setu", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "mangan bengi karo mary", "date": "setu"}, "split": "test"}
{"utterance": "dina jumat tulung dhekekno janjian dokter gigi jam telu", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "jumat", "event_name": "janjian dokter gigi", "time": "telu"}, "split": "test"}
{"utterance": "elingno", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "apa tanggalan ku wis dianyari ing sepuluh menit pungkasan", "expected_intent": "calendar:calendar_query", "expected_slots": {"time": "sepuluh menit pungkasan"}, "split": "test"}
{"utterance": "batalna rencana ku kanggo methuk wong tuo nang bandara", "expected_intent": "calendar:calendar_remove", "expected_slots": {"event_name": "methuk wong tuo", "place_name": "bandara"}, "split": "test"}
{"utterance": "riset klien sing bakal rawuh ing rapat iku", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "rapat"}, "split": "test"}
{"utterance": "tulung setel tanggal iki kanggo mbaleni", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "tulung busakno acara iki saka tanggalan ku", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "apa aku wis ngrancang kanggo minggu iki", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "minggu iki"}, "split": "test"}
{"utterance": "tulung priksa pangeling eling ku", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "puteren stasiun radio ku", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "puter b. b. c. radio", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "b. b. c."}, "split": "test"}
{"utterance": "setel radio", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "setel stasiun aku", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "setel radio", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "buka aplikasi pandora", "expected_intent": "play:play_radio", "expected_slots": {"app_name": "pandora"}, "split": "test"}
{"utterance": "pindah saluran satus siji koma enem", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "satus siji koma enem"}, "split": "test"}
{"utterance": "buka radio lan setel saluran satus enem koma sanga", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "satus enem koma sanga"}, "split": "test"}
{"utterance": "aku pengin denger radio", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "setel satus siji koma enem f. m. radio s. k.", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "satus siji koma enem"}, "split": "test"}
{"utterance": "mbukak aplikasi radio", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "ngrungokake geronimo", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "geronimo"}, "split": "test"}
{"utterance": "setel geronimo", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "geronimo"}, "split": "test"}
{"utterance": "radio sangangatus sangangpuluh sanga f. m. iku siji sijine sing tayang nang radio", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "sangangatus sangangpuluh sanga f. m."}, "split": "test"}
{"utterance": "setel radio geronimo", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "setel prambors", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "puter cidro", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "setel geronimo f. m.", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "geronimo f. m."}, "split": "test"}
{"utterance": "setel lagu lawas", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "lagu lawas"}, "split": "test"}
{"utterance": "setel geronimo f. m. cidro", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "geronimo f. m."}, "split": "test"}
{"utterance": "uripno radio ne saiki", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "nyalakna radio saiki", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "mulai pandora", "expected_intent": "play:play_radio", "expected_slots": {"app_name": "pandora"}, "split": "test"}
{"utterance": "setel radio geronimo saiki", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "geronimo"}, "split": "test"}
{"utterance": "mangga pindai ing radio sak iki", "expected_intent": "play:play_radio", "expected_slots": {"date": "sak iki"}, "split": "test"}
{"utterance": "setel", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "alexa genti stasiun radio", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "setel radio tolong", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "miwiti radio muter musik", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "nyalakna saluran radio wolungatus karo wolungpuluh sanga", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "wolungatus karo wolungpuluh sanga"}, "split": "test"}
{"utterance": "setel radio", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "saluran radio", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "ayo setel hit nang radio", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "setel lagu kondang", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "aku pengen buka geronimo nang radio", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "geronimo"}, "split": "test"}
{"utterance": "setel radio c. n. n.", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "radio c. n. n."}, "split": "test"}
{"utterance": "setel radio", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "puterno stasiun radio geronimo satus enem titik siji", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "satus enem titik siji"}, "split": "test"}
{"utterance": "puter podkesmas", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "podkesmas"}, "split": "test"}
{"utterance": "puter na radio", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "aku arep ngerungokne stasiun dangdut koplo", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "stasiun dangdut koplo"}, "split": "test"}
{"utterance": "setel lagu rap soko radio", "expected_intent": "play:play_radio", "expected_slots": {"music_genre": "rap"}, "split": "test"}
{"utterance": "setel lagu let it go", "expected_intent": "play:play_music", "expected_slots": {"song_name": "let it go"}, "split": "test"}
{"utterance": "setel dangdut sangangpuluhan", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "dangdut sangangpuluhan"}, "split": "test"}
{"utterance": "puter na stasiun musik dangdut", "expected_intent": "play:play_radio", "expected_slots": {"music_genre": "dangdut"}, "split": "test"}
{"utterance": "golek stasiun radio f. m. sing setel lagu pop", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "f. m.", "music_genre": "pop"}, "split": "test"}
{"utterance": "olly ayo dengerno prambors", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "prambors"}, "split": "test"}
{"utterance": "golek saluran radio sing saiki nyiarke riski febian", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "setel sembarang saluran pop f. m.", "expected_intent": "play:play_radio", "expected_slots": {"music_genre": "pop", "radio_name": "f. m."}, "split": "test"}
{"utterance": "muter dhokter pungkasan ing radio", "expected_intent": "play:play_radio", "expected_slots": {"media_type": "radio"}, "split": "test"}
{"utterance": "setel acara dasyat", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "dasyat"}, "split": "test"}
{"utterance": "nguripake sawetara prambors lan muter saka salon sandi", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "prambors", "device_type": "salon"}, "split": "test"}
{"utterance": "muter tembang cidro radio", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "keparenga kula mirengaken program warta paling anyar ing radio", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "aku pengin ngerungokno siaran podkesmas", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "puterno romantis musik nash f. m. sangangpuluh loro koma pitu", "expected_intent": "play:play_radio", "expected_slots": {"music_genre": "romantis", "media_type": "musik", "radio_name": "nash f. m. sangangpuluh loro koma pitu"}, "split": "test"}
{"utterance": "puterno prambors di radio", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "prambors"}, "split": "test"}
{"utterance": "apa kowe iso muter program iki kanggo kula", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "muter radio karo lagu ora mendek", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "muter britney spears seri konser langsung", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "ok google puterno satus enem koma pitu", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "satus enem koma pitu"}, "split": "test"}
{"utterance": "ganti dadi radio wolungpuluh loro koma papat", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "wolungpuluh loro koma papat"}, "split": "test"}
{"utterance": "setel soleh solihun ning sangangpuluh siji koma telu f. m.", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "sangangpuluh siji koma telu f. m."}, "split": "test"}
{"utterance": "golekna acara ngobrol sing mbahas masalah wong lanang", "expected_intent": "play:play_podcasts", "expected_slots": {"media_type": "acara ngobrol", "podcast_descriptor": "masalah wong lanang"}, "split": "test"}
{"utterance": "lagu sangangpuluh telu koma lima f. m. radio", "expected_intent": "play:play_radio", "expected_slots": {"media_type": "lagu", "radio_name": "sangangpuluh telu koma lima f. m. radio"}, "split": "test"}
{"utterance": "puter radio dangdut", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "radio dangdut"}, "split": "test"}
{"utterance": "muter kula esuk iki nuduhake satus siji koma sanga", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "satus siji koma sanga"}, "split": "test"}
{"utterance": "muter prairie house kanca ing radio mobil", "expected_intent": "play:play_radio", "expected_slots": {"device_type": "radio mobil"}, "split": "test"}
{"utterance": "setel mandan kenthir soko radio ning kamar", "expected_intent": "play:play_radio", "expected_slots": {"house_place": "kamar"}, "split": "test"}
{"utterance": "tolong aku ngerungokna radio", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "setel radio geronimo", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "geronimo"}, "split": "test"}
{"utterance": "puter radio", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "setel daftar puterku nang i heart radio", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "i heart radio"}, "split": "test"}
{"utterance": "mbukak spotify terus puter cidro", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "muter netflix ku p. s. papat", "expected_intent": "play:play_radio", "expected_slots": {"app_name": "netflix", "device_type": "p. s. papat"}, "split": "test"}
{"utterance": "puterna aku lagu semangat saka speaker mu", "expected_intent": "play:play_music", "expected_slots": {"music_descriptor": "semangat"}, "split": "test"}
{"utterance": "aku pengin ngrungokake aboutlove saka tere liye", "expected_intent": "play:play_audiobook", "expected_slots": {"audiobook_name": "aboutlove", "audiobook_author": "tere liye"}, "split": "test"}
{"utterance": "setel audio book senengan aku api di bukit menoreh", "expected_intent": "play:play_audiobook", "expected_slots": {"audiobook_name": "api di bukit menoreh"}, "split": "test"}
{"utterance": "lanjutke audio book laskar pelangi aku", "expected_intent": "play:play_audiobook", "expected_slots": {"player_setting": "lanjutke", "audiobook_author": "laskar pelangi"}, "split": "test"}
{"utterance": "iso nyalakna the giver", "expected_intent": "play:play_audiobook", "expected_slots": {"player_setting": "nyalakna", "audiobook_name": "the giver"}, "split": "test"}
{"utterance": "lanjutke harry potter dari tempat saya berhenti mendengarkan terakhir kali aku", "expected_intent": "play:play_audiobook", "expected_slots": {"player_setting": "lanjutke", "audiobook_name": "harry potter"}, "split": "test"}
{"utterance": "mandekna buku ne", "expected_intent": "play:play_audiobook", "expected_slots": {"player_setting": "mandekna"}, "split": "test"}
{"utterance": "buka buku audio kisah tanah jawa", "expected_intent": "play:play_audiobook", "expected_slots": {"audiobook_name": "kisah tanah jawa"}, "split": "test"}
{"utterance": "terus dolanan bocah sing diarani", "expected_intent": "play:play_audiobook", "expected_slots": {"player_setting": "diarani"}, "split": "test"}
{"utterance": "setel biografi bung tomo", "expected_intent": "play:play_audiobook", "expected_slots": {"audiobook_name": "biografi bung tomo"}, "split": "test"}
{"utterance": "puter perlahan", "expected_intent": "play:play_music", "expected_slots": {"song_name": "perlahan"}, "split": "test"}
{"utterance": "mbukak media muter runtuh", "expected_intent": "play:play_music", "expected_slots": {"song_name": "runtuh"}, "split": "test"}
{"utterance": "lanjutke laskar pelangi", "expected_intent": "play:play_audiobook", "expected_slots": {"player_setting": "lanjutke", "audiobook_name": "laskar pelangi"}, "split": "test"}
{"utterance": "lanjutke buku kepapat harry potter", "expected_intent": "play:play_audiobook", "expected_slots": {"player_setting": "lanjutke", "audiobook_name": "buku kepapat harry potter"}, "split": "test"}
{"utterance": "endhegke buku audio", "expected_intent": "play:play_audiobook", "expected_slots": {"player_setting": "endhegke", "media_type": "buku audio"}, "split": "test"}
{"utterance": "buka audiobook si kancil", "expected_intent": "play:play_audiobook", "expected_slots": {"media_type": "audiobook", "audiobook_name": "si kancil"}, "split": "test"}
{"utterance": "setelno musik klasik", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "klasik"}, "split": "test"}
{"utterance": "setel kisah tanah jawa", "expected_intent": "play:play_audiobook", "expected_slots": {"audiobook_name": "kisah tanah jawa"}, "split": "test"}
{"utterance": "olly rungokne ronggeng dukuh paruk", "expected_intent": "play:play_audiobook", "expected_slots": {"audiobook_name": "ronggeng dukuh paruk"}, "split": "test"}
{"utterance": "mandek", "expected_intent": "play:play_audiobook", "expected_slots": {"player_setting": "mandek"}, "split": "test"}
{"utterance": "nahan", "expected_intent": "play:play_audiobook", "expected_slots": {"player_setting": "nahan"}, "split": "test"}
{"utterance": "setel audiobook atheis", "expected_intent": "play:play_audiobook", "expected_slots": {"media_type": "audiobook", "audiobook_name": "atheis"}, "split": "test"}
{"utterance": "tetep wacake audiobook", "expected_intent": "play:play_audiobook", "expected_slots": {"player_setting": "tetep wacake", "media_type": "audiobook"}, "split": "test"}
{"utterance": "ngelanjutke moco buku audio buku audio", "expected_intent": "play:play_audiobook", "expected_slots": {"player_setting": "ngelanjutke moco buku audio", "media_type": "buku audio"}, "split": "test"}
{"utterance": "setel tembang romantis", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "teruske bengawan solo", "expected_intent": "play:play_music", "expected_slots": {"player_setting": "teruske", "song_name": "bengawan solo"}, "split": "test"}
{"utterance": "setel audiobook harry potter lan teruske soko bab sing akhir diputer", "expected_intent": "play:play_audiobook", "expected_slots": {"media_type": "audiobook", "audiobook_name": "harry potter"}, "split": "test"}
{"utterance": "tulung setelen playback iki ing audiobook", "expected_intent": "play:play_audiobook", "expected_slots": {"media_type": "audiobook"}, "split": "test"}
{"utterance": "nerusake lagu soko wali ning audiobook", "expected_intent": "play:play_audiobook", "expected_slots": {"player_setting": "nerusake", "artist_name": "wali", "media_type": "audiobook"}, "split": "test"}
{"utterance": "teruske bagian terakhir audio book sing aku rungoake wingi", "expected_intent": "play:play_audiobook", "expected_slots": {"player_setting": "teruske", "media_type": "audio book"}, "split": "test"}
{"utterance": "nerusake layar terkembang soko bab sedurunge", "expected_intent": "play:play_audiobook", "expected_slots": {"player_setting": "nerusake", "audiobook_name": "layar terkembang"}, "split": "test"}
{"utterance": "alexa mulai saka sesi terakhir joes book", "expected_intent": "play:play_audiobook", "expected_slots": {"player_setting": "mulai", "audiobook_name": "joes book"}, "split": "test"}
{"utterance": "puter suarane kadi si kabayan maneh", "expected_intent": "play:play_audiobook", "expected_slots": {"player_setting": "puter", "audiobook_name": "si kabayan"}, "split": "test"}
{"utterance": "muter buku ayat-ayat cinta", "expected_intent": "play:play_audiobook", "expected_slots": {"audiobook_name": "ayat-ayat cinta"}, "split": "test"}
{"utterance": "pilihan ku gawe puter suara saka pertama", "expected_intent": "play:play_audiobook", "expected_slots": {}, "split": "test"}
{"utterance": "puteren buku kesenengan ku", "expected_intent": "play:play_audiobook", "expected_slots": {}, "split": "test"}
{"utterance": "moco luwih akeh buku si kancil kanggo aku", "expected_intent": "play:play_audiobook", "expected_slots": {"player_setting": "moco", "media_type": "buku", "audiobook_author": "si kancil"}, "split": "test"}
{"utterance": "lanjutke audiobook aku", "expected_intent": "play:play_audiobook", "expected_slots": {"player_setting": "lanjutke", "media_type": "audiobook"}, "split": "test"}
{"utterance": "puter buku sworo", "expected_intent": "play:play_audiobook", "expected_slots": {"media_type": "buku sworo"}, "split": "test"}
{"utterance": "puterke audio the notebook", "expected_intent": "play:play_audiobook", "expected_slots": {"audiobook_name": "the notebook"}, "split": "test"}
{"utterance": "terus setel kisah tanah jawa", "expected_intent": "play:play_audiobook", "expected_slots": {"player_setting": "terus setel", "audiobook_name": "kisah tanah jawa"}, "split": "test"}
{"utterance": "mulai bagian lima kisah tanah jawa", "expected_intent": "play:play_audiobook", "expected_slots": {"player_setting": "mulai bagian lima", "audiobook_name": "kisah tanah jawa"}, "split": "test"}
{"utterance": "setel tarian aurora soko tere liye", "expected_intent": "play:play_audiobook", "expected_slots": {"player_setting": "setel", "audiobook_name": "tarian aurora", "audiobook_author": "tere liye"}, "split": "test"}
{"utterance": "setel audio book bab tresna", "expected_intent": "play:play_audiobook", "expected_slots": {"media_type": "audio book"}, "split": "test"}
{"utterance": "terus muter sang pemimpi", "expected_intent": "play:play_audiobook", "expected_slots": {"player_setting": "terus muter", "audiobook_name": "sang pemimpi"}, "split": "test"}
{"utterance": "pirang suwi nggodok endhog", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"cooking_type": "nggodok", "food_type": "endhog"}, "split": "test"}
{"utterance": "piye carane gawe pizza", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "pizza"}, "split": "test"}
{"utterance": "pira suwi nggodog endhog", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"cooking_type": "nggodog", "food_type": "endhog"}, "split": "test"}
{"utterance": "golekno aku resep sego goreng", "expected_intent": "cooking:cooking_recipe", "expected_slots": {}, "split": "test"}
{"utterance": "pira suwi nggodok endhog", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"cooking_type": "nggodok", "food_type": "endhog"}, "split": "test"}
{"utterance": "piro suwi nggodok endhog", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"cooking_type": "nggodok", "food_type": "endhog"}, "split": "test"}
{"utterance": "golekno resep bolu cokelat", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "bolu cokelat"}, "split": "test"}
{"utterance": "piye carane masak ayam mentega", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"cooking_type": "masak", "food_type": "ayam mentega"}, "split": "test"}
{"utterance": "apa kabeh bahane roti gulung", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "roti gulung"}, "split": "test"}
{"utterance": "piro suwi gawe roti bakar", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "roti bakar"}, "split": "test"}
{"utterance": "golekno aku video tutorial masak", "expected_intent": "cooking:cooking_recipe", "expected_slots": {}, "split": "test"}
{"utterance": "golekno aku video ayam krispi", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"media_type": "video", "food_type": "ayam krispi"}, "split": "test"}
{"utterance": "opo penggantine mentega", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"ingredient": "mentega"}, "split": "test"}
{"utterance": "piro suhu paling apik manggang kentang", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"cooking_type": "manggang", "ingredient": "kentang"}, "split": "test"}
{"utterance": "piye carane gawe mie celor", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "mie celor"}, "split": "test"}
{"utterance": "opo wae cara ngolah makanan", "expected_intent": "cooking:cooking_recipe", "expected_slots": {}, "split": "test"}
{"utterance": "apa cara sing paling gampang gawe pasta", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "pasta"}, "split": "test"}
{"utterance": "opo bahan penggantine kencur", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"ingredient": "kencur"}, "split": "test"}
{"utterance": "endi sing apik antara panci karo cast iron", "expected_intent": "cooking:cooking_recipe", "expected_slots": {}, "split": "test"}
{"utterance": "duduhno aku daftar bahan gawe roti panggang keju pedes", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "roti panggang keju pedes"}, "split": "test"}
{"utterance": "golekno video youtube masakan padang", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"media_type": "video youtube", "food_type": "padang"}, "split": "test"}
{"utterance": "masakno aku oat", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"ingredient": "oat"}, "split": "test"}
{"utterance": "masakan dino iki sing onok sayur godok", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"date": "dino iki", "food_type": "sayur godok"}, "split": "test"}
{"utterance": "pira suwi nggodok banyu", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"cooking_type": "nggodok"}, "split": "test"}
{"utterance": "duduhno aku cara gawene kare india", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "kare india"}, "split": "test"}
{"utterance": "piye carane gawe opor ayam", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "opor ayam"}, "split": "test"}
{"utterance": "duduhno aku piye carane mbakar dua belas kukis sorgum", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "kukis sorgum"}, "split": "test"}
{"utterance": "piye carane gawe rendang", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "rendang"}, "split": "test"}
{"utterance": "duduhno aku carane gawe makanan", "expected_intent": "cooking:cooking_recipe", "expected_slots": {}, "split": "test"}
{"utterance": "golekno resep teko bahan-bahan belonjoan aku", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"list_name": "belonjoan"}, "split": "test"}
{"utterance": "golekno aku ide masakan", "expected_intent": "cooking:cooking_recipe", "expected_slots": {}, "split": "test"}
{"utterance": "golekno aku resep mie ayam sing enak", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "mie ayam"}, "split": "test"}
{"utterance": "piye carane masak panganan jogja", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "panganan jogja"}, "split": "test"}
{"utterance": "duduhno aku carane gawe roti lapis", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "roti lapis"}, "split": "test"}
{"utterance": "piye carane gawe pizza", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "pizza"}, "split": "test"}
{"utterance": "golekno resep pitik goreng", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "pitik goreng"}, "split": "test"}
{"utterance": "enake aku masak opo gawe nedha bengi", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"meal_type": "nedha bengi"}, "split": "test"}
{"utterance": "piro suwi manggang pitik", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"device_type": "manggang", "food_type": "pitik"}, "split": "test"}
{"utterance": "iso opo gak gantino soda kue karo bubuk pengembang", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"ingredient": "soda kue karo bubuk pengembang"}, "split": "test"}
{"utterance": "golekno resep gawe mangan bengi", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"meal_type": "mangan bengi"}, "split": "test"}
{"utterance": "opo ide gawe cemilan", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"event_name": "cemilan"}, "split": "test"}
{"utterance": "ayo gawe pentol", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "pentol"}, "split": "test"}
{"utterance": "duduhno aku carane gawe bakso", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "bakso"}, "split": "test"}
{"utterance": "golekno aku resep tuna", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "tuna"}, "split": "test"}
{"utterance": "piye carane gawe mie godhok", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "mie godhok"}, "split": "test"}
{"utterance": "golekno aku cara gawe burger keju", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "burger keju"}, "split": "test"}
{"utterance": "kepiye carane gawe jenang", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "jenang"}, "split": "test"}
{"utterance": "piye resep soto sing enak", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "soto"}, "split": "test"}
{"utterance": "piye carane masak steak setengah mateng", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "steak"}, "split": "test"}
{"utterance": "duduhno aku resep sego gurih", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "sego gurih"}, "split": "test"}
{"utterance": "piye carane masak bebek", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "bebek"}, "split": "test"}
{"utterance": "opo bedone dipanggang karo dibakar", "expected_intent": "cooking:cooking_recipe", "expected_slots": {}, "split": "test"}
{"utterance": "pira suwi masak sate sampek mateng", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "sate"}, "split": "test"}
{"utterance": "kepiye carane gawe taco", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "taco"}, "split": "test"}
{"utterance": "aku pengen ngerti carane masak terong krispi", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "terong krispi"}, "split": "test"}
{"utterance": "pisa suwi masak makaroni", "expected_intent": "cooking:cooking_recipe", "expected_slots": {}, "split": "test"}
{"utterance": "golekno resep pai apel", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "pai apel"}, "split": "test"}
{"utterance": "apa resep sop iwak sing enak", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "sop iwak"}, "split": "test"}
{"utterance": "piye carane gawe kolek", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "kolek"}, "split": "test"}
{"utterance": "piro endhog gawe endhog dadar", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "endhog dadar"}, "split": "test"}
{"utterance": "duduhno resep spaghetti sing enak", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "spaghetti"}, "split": "test"}
{"utterance": "piye carane nyiapne sego", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "sego"}, "split": "test"}
{"utterance": "daftar resep sego biryani sing kondhang", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "sego biryani"}, "split": "test"}
{"utterance": "golekno resep sing dimasak sak jam", "expected_intent": "cooking:cooking_recipe", "expected_slots": {}, "split": "test"}
{"utterance": "nandi tuku loyang gawe kue muffin", "expected_intent": "cooking:cooking_recipe", "expected_slots": {}, "split": "test"}
{"utterance": "golekno aku resep bubur sumsum ning cookpad", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "bubur sumsum", "app_name": "cookpad"}, "split": "test"}
{"utterance": "piro suwi ngoven bolu", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"cooking_type": "ngoven", "food_type": "bolu"}, "split": "test"}
{"utterance": "iki mesti enak", "expected_intent": "cooking:cooking_recipe", "expected_slots": {}, "split": "test"}
{"utterance": "duduhno aku resep pasta", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "pasta"}, "split": "test"}
{"utterance": "dolanan karo aku", "expected_intent": "play:play_game", "expected_slots": {}, "split": "test"}
{"utterance": "setel super mario", "expected_intent": "play:play_game", "expected_slots": {"game_name": "super mario"}, "split": "test"}
{"utterance": "ayo dolanan scrabble karo aku", "expected_intent": "play:play_game", "expected_slots": {"game_name": "scrabble"}, "split": "test"}
{"utterance": "buka catur lan mulai dolanan", "expected_intent": "play:play_game", "expected_slots": {"game_name": "catur"}, "split": "test"}
{"utterance": "ayo main o global thermonuclear war", "expected_intent": "play:play_game", "expected_slots": {"game_name": "global thermonuclear war"}, "split": "test"}
{"utterance": "ayo dolanan sekak", "expected_intent": "play:play_game", "expected_slots": {"game_name": "sekak"}, "split": "test"}
{"utterance": "setelke clash of clans", "expected_intent": "play:play_game", "expected_slots": {"game_name": "clash of clans"}, "split": "test"}
{"utterance": "setel clash of clans", "expected_intent": "play:play_game", "expected_slots": {"game_name": "clash of clans"}, "split": "test"}
{"utterance": "setelke aku dolanan tic tac toe", "expected_intent": "play:play_game", "expected_slots": {"game_name": "tic tac toe"}, "split": "test"}
{"utterance": "dolan game karo aku", "expected_intent": "play:play_game", "expected_slots": {}, "split": "test"}
{"utterance": "apa sampeyan bisa muter dolanan temple run kanggo kula", "expected_intent": "play:play_game", "expected_slots": {"game_name": "temple run"}, "split": "test"}
{"utterance": "peluncuran dolanan", "expected_intent": "play:play_game", "expected_slots": {}, "split": "test"}
{"utterance": "dolanan ping pong", "expected_intent": "play:play_game", "expected_slots": {"game_name": "ping pong"}, "split": "test"}
{"utterance": "puterke tic tac toe", "expected_intent": "play:play_game", "expected_slots": {"game_name": "tic tac toe"}, "split": "test"}
{"utterance": "ayo dolanan free fire", "expected_intent": "play:play_game", "expected_slots": {"game_name": "free fire"}, "split": "test"}
{"utterance": "ayo dolanan free fire", "expected_intent": "play:play_game", "expected_slots": {"game_name": "free fire"}, "split": "test"}
{"utterance": "ayo dolan", "expected_intent": "play:play_game", "expected_slots": {}, "split": "test"}
{"utterance": "buka saga", "expected_intent": "play:play_game", "expected_slots": {"game_name": "saga"}, "split": "test"}
{"utterance": "olly dolan remi karo aku", "expected_intent": "play:play_game", "expected_slots": {"game_name": "remi"}, "split": "test"}
{"utterance": "setel ke game free fire", "expected_intent": "play:play_game", "expected_slots": {"game_name": "free fire"}, "split": "test"}
{"utterance": "buka sekak lan dolanan bareng", "expected_intent": "play:play_game", "expected_slots": {"game_name": "sekak"}, "split": "test"}
{"utterance": "ayo dolanan karo aku", "expected_intent": "play:play_game", "expected_slots": {}, "split": "test"}
{"utterance": "ayo dolanan kowe dadi kiper lan ora ganti posisi", "expected_intent": "play:play_game", "expected_slots": {}, "split": "test"}
{"utterance": "setel balapan", "expected_intent": "play:play_game", "expected_slots": {"game_name": "balapan"}, "split": "test"}
{"utterance": "mainke free fire", "expected_intent": "play:play_game", "expected_slots": {"game_name": "free fire"}, "split": "test"}
{"utterance": "setelke free fire", "expected_intent": "play:play_game", "expected_slots": {"game_name": "free fire"}, "split": "test"}
{"utterance": "dolan catur", "expected_intent": "play:play_game", "expected_slots": {"game_name": "catur"}, "split": "test"}
{"utterance": "setel dolanan", "expected_intent": "play:play_game", "expected_slots": {}, "split": "test"}
{"utterance": "dolanan contra dadi pemain keloro", "expected_intent": "play:play_game", "expected_slots": {"game_name": "contra"}, "split": "test"}
{"utterance": "dewe kutu nyetel nfs cidro", "expected_intent": "play:play_game", "expected_slots": {"game_name": "nfs"}, "split": "test"}
{"utterance": "mulai dolanan t. t. s.", "expected_intent": "play:play_game", "expected_slots": {"game_name": "t. t. s."}, "split": "test"}
{"utterance": "buka lan dolanan sekak karo aku", "expected_intent": "play:play_game", "expected_slots": {"game_name": "sekak"}, "split": "test"}
{"utterance": "buka dolanan", "expected_intent": "play:play_game", "expected_slots": {}, "split": "test"}
{"utterance": "buka free fire kanggo wong loro", "expected_intent": "play:play_game", "expected_slots": {"game_name": "free fire"}, "split": "test"}
{"utterance": "apa maneh sing ora ana ing buku harian", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "tulungngresiki dhaptar blanja ku", "expected_intent": "lists:lists_remove", "expected_slots": {"list_name": "blanja"}, "split": "test"}
{"utterance": "mbusak item pisanan ing dhaptar", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "mbusak dhaptar tugas ku", "expected_intent": "lists:lists_remove", "expected_slots": {"list_name": "tugas"}, "split": "test"}
{"utterance": "apa maneh acara khusus apa wae ing dhaptar ku", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "mbusak acara saka dhaftar ku", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "hapusen gulo teko daftar belonjo", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "apa sing bakal daklakoni dina iki", "expected_intent": "lists:lists_query", "expected_slots": {"date": "dina iki"}, "split": "test"}
{"utterance": "apa ing dhaptar ku sing kudu ditindakake", "expected_intent": "lists:lists_query", "expected_slots": {"list_name": "kudu ditindakake"}, "split": "test"}
{"utterance": "njaluk nyisihaken saka dhaptar", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "aku kudu nggawe dhaptar sing kudu ditindakake", "expected_intent": "lists:lists_createoradd", "expected_slots": {"list_name": "sing kudu ditindakake"}, "split": "test"}
{"utterance": "bantuan kula miwiti dhaftar pawon", "expected_intent": "lists:lists_createoradd", "expected_slots": {"list_name": "pawon"}, "split": "test"}
{"utterance": "apa sing ana ing dhaptar ku sing kudu ditindakake", "expected_intent": "lists:lists_query", "expected_slots": {"list_name": "kudu ditindakake"}, "split": "test"}
{"utterance": "mbusak potlot saka toko alat tulis", "expected_intent": "lists:lists_remove", "expected_slots": {"list_name": "toko alat tulis"}, "split": "test"}
{"utterance": "apa aku bisa duwe dhaftar hotel bintang lima ing paris", "expected_intent": "qa:qa_factoid", "expected_slots": {"list_name": "hotel bintang lima", "place_name": "paris"}, "split": "test"}
{"utterance": "nambahake brokoli menyang dhaptar sembako", "expected_intent": "lists:lists_createoradd", "expected_slots": {"list_name": "sembako"}, "split": "test"}
{"utterance": "nambahake kantor pos menyang dhaptar tugas ku ing dina setu", "expected_intent": "lists:lists_createoradd", "expected_slots": {"list_name": "tugas", "date": "setu"}, "split": "test"}
{"utterance": "mbusak barang ing dhaptar", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "dhaptarke kabeh sing isih ana ing pitakonku", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "aku pengin nggawe dhaptar blanja minggu iki", "expected_intent": "lists:lists_createoradd", "expected_slots": {"list_name": "blanja", "time": "minggu"}, "split": "test"}
{"utterance": "mbusak saka dhaptar lagu dhaptar lagu inggris lawas ku", "expected_intent": "lists:lists_remove", "expected_slots": {"list_name": "inggris lawas"}, "split": "test"}
{"utterance": "mbusak pembayaran mobil ku ing tanggalan ku", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "mbusak dhaptar", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "piye carane dhaftar kanggo nindakake dina iki", "expected_intent": "lists:lists_query", "expected_slots": {"date": "dina iki"}, "split": "test"}
{"utterance": "tulung mbaleni dhaptar blanja ku", "expected_intent": "lists:lists_query", "expected_slots": {"list_name": "blanja"}, "split": "test"}
{"utterance": "apa kowe bisa nggawe dhaptar kanggo aku", "expected_intent": "lists:lists_createoradd", "expected_slots": {}, "split": "test"}
{"utterance": "mbusak kabeh dhaptar", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "mbusak dhaptar musik lawas", "expected_intent": "lists:lists_remove", "expected_slots": {"list_name": "musik lawas"}, "split": "test"}
{"utterance": "mriksa dhaptar ku sing kudu ditindakake", "expected_intent": "lists:lists_query", "expected_slots": {"list_name": "kudu ditindakake"}, "split": "test"}
{"utterance": "android", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "menehi aku kabeh dhaptar ku", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "ngreset dhaptar lokasi ku", "expected_intent": "lists:lists_remove", "expected_slots": {"list_name": "lokasi"}, "split": "test"}
{"utterance": "nuduhake isine dhaptar", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "mbusak baris kapindho saka dhaptar", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "tulung gawe anyar dhaftar sembako karo siji galon saka rong persen susu", "expected_intent": "lists:lists_createoradd", "expected_slots": {"list_name": "sembako"}, "split": "test"}
{"utterance": "nggoleki item kasebut", "expected_intent": "lists:lists_createoradd", "expected_slots": {}, "split": "test"}
{"utterance": "tambahke paav bhaji ing kartu menu", "expected_intent": "lists:lists_createoradd", "expected_slots": {}, "split": "test"}
{"utterance": "nggawe dhaptar iku sing kasedhiya", "expected_intent": "lists:lists_createoradd", "expected_slots": {}, "split": "test"}
{"utterance": "nambah deterjen menyang dhaptar barang sing kudu dituku", "expected_intent": "lists:lists_createoradd", "expected_slots": {"list_name": "sing kudu dituku"}, "split": "test"}
{"utterance": "nambah anggur abang menyang dhaptar blanja", "expected_intent": "lists:lists_createoradd", "expected_slots": {"list_name": "dhaptar blanja"}, "split": "test"}
{"utterance": "mbusak dhaptar sing disebut wektune pesta", "expected_intent": "lists:lists_remove", "expected_slots": {"list_name": "wektune pesta"}, "split": "test"}
{"utterance": "maca jadwal dhaptar", "expected_intent": "lists:lists_query", "expected_slots": {"list_name": "jadwal"}, "split": "test"}
{"utterance": "tulung mbusak dhaptar ing ngisor iki", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "buang dhaptar saiki", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "nambah ngginakaken limang dolar ing dhaptar pengeluaran ku", "expected_intent": "lists:lists_createoradd", "expected_slots": {"list_name": "pengeluaran"}, "split": "test"}
{"utterance": "apa ing dhaptar sing kudu ditindakake dina iki", "expected_intent": "lists:lists_query", "expected_slots": {"list_name": "kudu ditindakake", "date": "dina iki"}, "split": "test"}
{"utterance": "dhaptar apa sing aku wis takon", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "yen ana acara show banjur dibusak iku", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "ngganti", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "ngandhani aku barang ing dhaptar", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "nambah iki kanggo dhaptar", "expected_intent": "lists:lists_createoradd", "expected_slots": {}, "split": "test"}
{"utterance": "nggawe dhaptar anyar", "expected_intent": "lists:lists_createoradd", "expected_slots": {}, "split": "test"}
{"utterance": "apa kowe bisa mbusak barang iki saka dhaptar", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "wacake apa sing ana ing dhaptar ku", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "apa sampeyan bisa nambah item menyang dhaptar sembako", "expected_intent": "lists:lists_createoradd", "expected_slots": {"list_name": "sembako"}, "split": "test"}
{"utterance": "mbusak barang iku", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "apa aku nyelehake mudhun wis ing dhaftar walmart", "expected_intent": "lists:lists_query", "expected_slots": {"list_name": "dhaftar walmart"}, "split": "test"}
{"utterance": "tulung buang daftar tugas ku", "expected_intent": "lists:lists_remove", "expected_slots": {"list_name": "tugas"}, "split": "test"}
{"utterance": "mbusak dhaptar blanja", "expected_intent": "lists:lists_remove", "expected_slots": {"list_name": "blanja"}, "split": "test"}
{"utterance": "barang apa sing ana ing dhaptar blanja ku", "expected_intent": "lists:lists_query", "expected_slots": {"list_name": "blanja"}, "split": "test"}
{"utterance": "maca dhaptar kula kanggo blanja", "expected_intent": "lists:lists_query", "expected_slots": {"list_name": "blanja"}, "split": "test"}
{"utterance": "kandani aku dhaftar sing aku tulis rong dina kepungkur", "expected_intent": "lists:lists_query", "expected_slots": {"date": "rong dina"}, "split": "test"}
{"utterance": "mbusak sereal saka dhaptar blanja ku", "expected_intent": "lists:lists_remove", "expected_slots": {"list_name": "blanja"}, "split": "test"}
{"utterance": "buseken acara janjian karo dokter gigi seko jadwal dina iki", "expected_intent": "calendar:calendar_remove", "expected_slots": {"event_name": "janjian karo dokter gigi", "date": "dina iki"}, "split": "test"}
{"utterance": "apa aku duwe dhaptar sembako sing wis siap", "expected_intent": "lists:lists_query", "expected_slots": {"list_name": "sembako"}, "split": "test"}
{"utterance": "mbusak dhaptar kagiyatan ku kanggo dina iki", "expected_intent": "lists:lists_remove", "expected_slots": {"list_name": "kagiyatan", "date": "dina iki"}, "split": "test"}
{"utterance": "mbusak barang saka dhaptar", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "aku kudu nggawe dhaptar", "expected_intent": "lists:lists_createoradd", "expected_slots": {}, "split": "test"}
{"utterance": "maca dhaptar sembako", "expected_intent": "lists:lists_query", "expected_slots": {"list_name": "sembako"}, "split": "test"}
{"utterance": "tulung tuduhake dhaptar sing aku duwe", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "mbusak item pungkasan kadhaptar", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "nambah gedhang menyang dhaptar blanja", "expected_intent": "lists:lists_createoradd", "expected_slots": {"list_name": "blanja"}, "split": "test"}
{"utterance": "nambah odhol menyang dhaptar blanja", "expected_intent": "lists:lists_createoradd", "expected_slots": {"list_name": "blanja"}, "split": "test"}
{"utterance": "nggawe dhaptar tembang", "expected_intent": "lists:lists_createoradd", "expected_slots": {}, "split": "test"}
{"utterance": "olly busak dhaptar", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "mbusak dhaptar", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "mbusak dhaptar kanggo sembako", "expected_intent": "lists:lists_remove", "expected_slots": {"list_name": "sembako"}, "split": "test"}
{"utterance": "mbusak kabeh", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "olly opo seng tak rencanake berikute", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "mbusak susu saka dhaptar sembako ku", "expected_intent": "lists:lists_remove", "expected_slots": {"list_name": "sembako"}, "split": "test"}
{"utterance": "aku ora duwe cukup dhuwit kanggo tuku saklar nintendo saiki sampeyan bisa mbusak ing wishlist amazon", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "mbusak dhaptar iki saka liyane", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "apa dhaptar sing kasedhiya ku", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "njupuk iku sing mati ana kono", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "kudu mriksa dhaptar ku", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "dhaptar anyar", "expected_intent": "lists:lists_createoradd", "expected_slots": {}, "split": "test"}
{"utterance": "olly apa ana liyane kiwa ing dhaptar", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "mbusak dhaptar ku", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "tulung gawe dhaptar sembako", "expected_intent": "lists:lists_createoradd", "expected_slots": {"list_name": "sembako"}, "split": "test"}
{"utterance": "mbusak barang saka dhaptar ku", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "tambahake dhaptar barang sing kudu dituku kanggo pesta", "expected_intent": "lists:lists_createoradd", "expected_slots": {"event_name": "pesta"}, "split": "test"}
{"utterance": "olly maca dhaptar kanggo kula", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "miwiti daftar anyar", "expected_intent": "lists:lists_createoradd", "expected_slots": {}, "split": "test"}
{"utterance": "keparenga kula mirengaken dhaptar ku", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "apa sing ana ing dhaptar tembang ku", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "mangga mbusak dhaptar album kesenengan", "expected_intent": "lists:lists_remove", "expected_slots": {"list_name": "album kesenengan"}, "split": "test"}
{"utterance": "tulung nambah gula menyang dhaptar sembako", "expected_intent": "lists:lists_createoradd", "expected_slots": {"list_name": "sembako"}, "split": "test"}
{"utterance": "nggawe dhaptar blanja anyar", "expected_intent": "lists:lists_createoradd", "expected_slots": {"list_name": "blanja"}, "split": "test"}
{"utterance": "carane akeh dhaptar sing aku duwe ing kontak", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "grup apa sing didaftar ing kontak ku", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "elingno aku sepira akeh aku duwe dhaptar", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "ngeruk sing siji saka dhaptar", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "mbusak tembung pungkasan", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "apa sing ana ing dhaptar mu saiki", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "ngetogake aku ngerti dhaptar", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "nyelehake hamburger ing dhaptar sembako", "expected_intent": "lists:lists_createoradd", "expected_slots": {"list_name": "sembako"}, "split": "test"}
{"utterance": "mbusak tugas ku kanggo minggu iki", "expected_intent": "lists:lists_remove", "expected_slots": {"list_name": "tugas", "date": "minggu iki"}, "split": "test"}
{"utterance": "mbusak pel pawon ing gawean sing kudu ditindakake", "expected_intent": "lists:lists_remove", "expected_slots": {"list_name": "kudu ditindakake"}, "split": "test"}
{"utterance": "tambahake bob menyang dhaptar kontak ku", "expected_intent": "lists:lists_createoradd", "expected_slots": {"person": "bob", "list_name": "dhaptar kontak"}, "split": "test"}
{"utterance": "ngomongke dhaptar", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "mbusak dhaptar blanja", "expected_intent": "lists:lists_remove", "expected_slots": {"list_name": "blanja"}, "split": "test"}
{"utterance": "ngapus dhaptar sing kudu ditindakake", "expected_intent": "lists:lists_remove", "expected_slots": {"list_name": "kudu ditindakake"}, "split": "test"}
{"utterance": "nambah item anyar menyang dhaptar", "expected_intent": "lists:lists_createoradd", "expected_slots": {}, "split": "test"}
{"utterance": "ditambahake menyang dhaptar", "expected_intent": "lists:lists_createoradd", "expected_slots": {}, "split": "test"}
{"utterance": "njaluk nyisihaken saka dhaptar google", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "tulung nambah jeruk menyang dhaptar sembako", "expected_intent": "lists:lists_createoradd", "expected_slots": {"list_name": "sembako"}, "split": "test"}
{"utterance": "sepira akeh dhaptar sing aku duwe", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "dhaptar apa ing notebook ku", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "njupuk susu saka dhaptar blanja", "expected_intent": "lists:lists_remove", "expected_slots": {"list_name": "blanja"}, "split": "test"}
{"utterance": "njaluk nyisihaken saka dhaftar pajeg sewu sanga ngatus sangang puluh", "expected_intent": "lists:lists_remove", "expected_slots": {"list_name": "pajeg", "date": "sewu sanga ngatus sangang puluh"}, "split": "test"}
{"utterance": "apa dhaptar anyar ku saiki", "expected_intent": "lists:lists_query", "expected_slots": {"list_name": "anyar"}, "split": "test"}
{"utterance": "dhaptar barang ing dhaptar gawean ku", "expected_intent": "lists:lists_query", "expected_slots": {"list_name": "gawean"}, "split": "test"}
{"utterance": "menehi aku rincian ing urutan pesenan", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "mbusak dhaptar tamu sing tak gawe minggu wingi", "expected_intent": "lists:lists_remove", "expected_slots": {"list_name": "tamu", "date": "minggu wingi"}, "split": "test"}
{"utterance": "nyetel dhaptar", "expected_intent": "lists:lists_createoradd", "expected_slots": {}, "split": "test"}
{"utterance": "goleki kabeh jeneng diwiwiti kanthi alfabet a lan nggawe dhaptar", "expected_intent": "lists:lists_createoradd", "expected_slots": {}, "split": "test"}
{"utterance": "nambah kontak bisnis menyang dhaptar kontak", "expected_intent": "lists:lists_createoradd", "expected_slots": {"list_name": "dhaptar kontak"}, "split": "test"}
{"utterance": "mriksa dhaftar paling anyar kanggo ditindakake", "expected_intent": "lists:lists_query", "expected_slots": {"list_name": "kanggo ditindakake"}, "split": "test"}
{"utterance": "mangga nggawe dhaptar anyar", "expected_intent": "lists:lists_createoradd", "expected_slots": {}, "split": "test"}
{"utterance": "aku pengin mbusak apel saka dhaptar", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "adoh saka dhaptar", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "bukak google keep", "expected_intent": "lists:lists_query", "expected_slots": {"app_name": "google keep"}, "split": "test"}
{"utterance": "sampah dhaptar ku", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "menehi kula kabeh dhaptar kasedhiya", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "dhaptar kabeh dhaptar ing piranti iki", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "nambahake jam tangan menyang dhaptar blanja", "expected_intent": "lists:lists_createoradd", "expected_slots": {"list_name": "dhaptar blanja"}, "split": "test"}
{"utterance": "ngrancang pesta ku", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "pesta"}, "split": "test"}
{"utterance": "aku duwe dhaptar sandhangan ku", "expected_intent": "lists:lists_query", "expected_slots": {"list_name": "sandhangan"}, "split": "test"}
{"utterance": "golek dhaptar", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "informasi omah penting", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "dhaptar", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "mangga nggawe dhaptar anyar kanggo kula", "expected_intent": "lists:lists_createoradd", "expected_slots": {}, "split": "test"}
{"utterance": "waca maneh dhaptar sembako kanggo kula", "expected_intent": "lists:lists_query", "expected_slots": {"list_name": "sembako"}, "split": "test"}
{"utterance": "setel rekaman sakwise iki", "expected_intent": "play:play_podcasts", "expected_slots": {}, "split": "test"}
{"utterance": "lewati podcast selanjute", "expected_intent": "play:play_podcasts", "expected_slots": {"player_setting": "lewati", "podcast_descriptor": "podcast selanjute"}, "split": "test"}
{"utterance": "selanjute", "expected_intent": "play:play_podcasts", "expected_slots": {}, "split": "test"}
{"utterance": "puteren selanjute", "expected_intent": "play:play_podcasts", "expected_slots": {}, "split": "test"}
{"utterance": "puter podcast perpustakaan aku", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_name": "perpustakaan"}, "split": "test"}
{"utterance": "golek podcast bab pemenang piala citra paling anyar", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_descriptor": "pemenang piala citra"}, "split": "test"}
{"utterance": "muter podcast selanjute", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_descriptor": "podcast selanjute"}, "split": "test"}
{"utterance": "puter selanjute", "expected_intent": "play:play_podcasts", "expected_slots": {}, "split": "test"}
{"utterance": "setel episode sabanjure kadi pada sekbuah kapal nh. dini", "expected_intent": "play:play_audiobook", "expected_slots": {"audiobook_name": "pada sekbuah kapal", "audiobook_author": "nh. dini"}, "split": "test"}
{"utterance": "setel episode selanjute podcast mandan kenthir", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_descriptor": "episode selanjute", "podcast_name": "mandan kenthir"}, "split": "test"}
{"utterance": "puterno podcast podkesmas", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_name": "podkesmas"}, "split": "test"}
{"utterance": "unggah kabeh podcast duwekku", "expected_intent": "play:play_podcasts", "expected_slots": {}, "split": "test"}
{"utterance": "setel last libertarian podcast", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_name": "last libertarian"}, "split": "test"}
{"utterance": "setel podcast temukonco selanjute", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_name": "temukonco"}, "split": "test"}
{"utterance": "setel podcast sing tak rungokno ndek wingi", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_descriptor": "tak rungokno ndek wingi"}, "split": "test"}
{"utterance": "setel episode selanjute podcast iki", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_descriptor": "episode selanjute"}, "split": "test"}
{"utterance": "opo podcast paling duwur saiki", "expected_intent": "play:play_podcasts", "expected_slots": {"date": "saiki"}, "split": "test"}
{"utterance": "puter podcast mendoan", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_name": "mendoan"}, "split": "test"}
{"utterance": "nuduhake podcast tembang rock kang nduweni biji apik", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_descriptor": "tembang rock kang nduweni biji apik"}, "split": "test"}
{"utterance": "setel acak kabeh lagu alon", "expected_intent": "play:play_music", "expected_slots": {"player_setting": "setel acak"}, "split": "test"}
{"utterance": "puteren podcast ku sing paling sering ditonton", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_descriptor": "paling sering ditonton"}, "split": "test"}
{"utterance": "raditya dika opo duwe podcast anyar", "expected_intent": "play:play_podcasts", "expected_slots": {"person": "raditya dika"}, "split": "test"}
{"utterance": "golek podcast disney paling anyar", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_name": "disney"}, "split": "test"}
{"utterance": "setel temukonco episode salanjute", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_name": "temukonco", "podcast_descriptor": "episode salanjute"}, "split": "test"}
{"utterance": "puteren episode selanjute ing podcast", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_descriptor": "episode selanjute"}, "split": "test"}
{"utterance": "olly miwiti podcast aku miwiti wingi", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_descriptor": "aku miwiti wingi"}, "split": "test"}
{"utterance": "tudokne aku podcasts", "expected_intent": "play:play_podcasts", "expected_slots": {}, "split": "test"}
{"utterance": "rintik sedu siaran puteren iki", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_name": "rintik sedu"}, "split": "test"}
{"utterance": "balik maring episode sadurunge kadi podcast", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_descriptor": "episode sadurunge"}, "split": "test"}
{"utterance": "setel podcast dedy corbuzier", "expected_intent": "play:play_podcasts", "expected_slots": {"person": "dedy corbuzier"}, "split": "test"}
{"utterance": "aku pengen krungu podcast", "expected_intent": "play:play_podcasts", "expected_slots": {}, "split": "test"}
{"utterance": "unduh data podcastku lan langsung setel sepisan", "expected_intent": "play:play_podcasts", "expected_slots": {}, "split": "test"}
{"utterance": "tolong lewati podcast episode selanjute", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_descriptor": "podcast episode selanjute"}, "split": "test"}
{"utterance": "setelen episod selanjute", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_descriptor": "episod selanjute"}, "split": "test"}
{"utterance": "setel choki sitohang podcast paling anyar", "expected_intent": "play:play_podcasts", "expected_slots": {"person": "choki sitohang"}, "split": "test"}
{"utterance": "setel podcast aku paling anyar", "expected_intent": "play:play_podcasts", "expected_slots": {}, "split": "test"}
{"utterance": "mundurke telung puluh detik", "expected_intent": "play:play_podcasts", "expected_slots": {"player_setting": "mundurke", "time": "telung puluh detik"}, "split": "test"}
{"utterance": "geronimo", "expected_intent": "play:play_podcasts", "expected_slots": {"radio_name": "geronimo"}, "split": "test"}
{"utterance": "dhaftar paling akeh dideleng", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "puter podkesmas", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_name": "podkesmas"}, "split": "test"}
{"utterance": "tolong puterno podcast", "expected_intent": "play:play_podcasts", "expected_slots": {}, "split": "test"}
{"utterance": "tolong lanjut maring episode selanjute kadi podcast", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_descriptor": "episode selanjute"}, "split": "test"}
{"utterance": "setel podcast doni paling anyar", "expected_intent": "play:play_podcasts", "expected_slots": {"person": "doni"}, "split": "test"}
{"utterance": "setel podkesmas paling anyar", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_name": "podkesmas"}, "split": "test"}
{"utterance": "mulai podcast podcast temukonco", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_name": "temukonco"}, "split": "test"}
{"utterance": "pindah ning bagian selanjute", "expected_intent": "play:play_podcasts", "expected_slots": {"player_setting": "pindah"}, "split": "test"}
{"utterance": "teruske ning podcast episode selanjute", "expected_intent": "play:play_podcasts", "expected_slots": {"player_setting": "teruske", "podcast_descriptor": "podcast episode selanjute"}, "split": "test"}
{"utterance": "baleni episode terakhir podcast iki", "expected_intent": "play:play_podcasts", "expected_slots": {"player_setting": "baleni", "podcast_descriptor": "episode terakhir"}, "split": "test"}
{"utterance": "uripno podcast olahraga", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_name": "podcast olahraga"}, "split": "test"}
{"utterance": "setel podcast paling akhir kadi american life", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_name": "american life"}, "split": "test"}
{"utterance": "setel podcast kesenengan aku", "expected_intent": "play:play_podcasts", "expected_slots": {}, "split": "test"}
{"utterance": "lanjutke seri podcast", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_descriptor": "seri podcast"}, "split": "test"}
{"utterance": "setel podcast sadurunge", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_descriptor": "podcast sadurunge"}, "split": "test"}
{"utterance": "mulai podkesmas", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_name": "podkesmas"}, "split": "test"}
{"utterance": "puter show selanjute nang podcast", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_descriptor": "show selanjute"}, "split": "test"}
{"utterance": "tombol sawise", "expected_intent": "play:play_podcasts", "expected_slots": {}, "split": "test"}
{"utterance": "baleni podcast terakir aku", "expected_intent": "play:play_podcasts", "expected_slots": {"player_setting": "baleni"}, "split": "test"}
{"utterance": "setel podcast podkesmas", "expected_intent": "play:play_podcasts", "expected_slots": {}, "split": "test"}
{"utterance": "setel podcast podkesmas", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_name": "podkesmas"}, "split": "test"}
{"utterance": "setel podcast salanjute sing ono", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_descriptor": "podcast salanjute"}, "split": "test"}
{"utterance": "hey muter podcast kesenengan saka daftarku", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_descriptor": "kesenengan"}, "split": "test"}
{"utterance": "tambahke podcast kesenengan maring daftar puter lan di wiwiti", "expected_intent": "play:play_podcasts", "expected_slots": {"player_setting": "wiwiti"}, "split": "test"}
{"utterance": "wiwiti podcast selanjute", "expected_intent": "play:play_podcasts", "expected_slots": {"player_setting": "wiwiti"}, "split": "test"}
{"utterance": "puter kabeh jurnal risa saka minggu wingi", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_name": "jurnal risa"}, "split": "test"}
{"utterance": "aku pengen kowe puter podcast", "expected_intent": "play:play_podcasts", "expected_slots": {}, "split": "test"}
{"utterance": "kegiatan opo sing iso tak lakoni neng klaten", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"place_name": "klaten"}, "split": "test"}
{"utterance": "apa sing kedadeyan ing kota ku", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"place_name": "kota"}, "split": "test"}
{"utterance": "apa wae dangdutan ning semarang", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"movie_type": "dangdutan", "place_name": "semarang"}, "split": "test"}
{"utterance": "ono acara budaya opo neng bandung", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"place_name": "bandung"}, "split": "test"}
{"utterance": "mugi kula ngerti asu nuduhake acara arep ing kutha asal aku", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"place_name": "kutha asal"}, "split": "test"}
{"utterance": "pilem opo iso aku tonton wengi iki ning bandung", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"business_type": "pilem", "timeofday": "wengi iki", "place_name": "bandung"}, "split": "test"}
{"utterance": "menehi dhaptar bioskop ing semarang", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"business_type": "bioskop", "place_name": "semarang"}, "split": "test"}
{"utterance": "wenehi dhaptar pertunjukan sirkus ing kota saiki", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"event_name": "sirkus", "place_name": "kota"}, "split": "test"}
{"utterance": "apa konser ing bandung", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"event_name": "konser", "place_name": "bandung"}, "split": "test"}
{"utterance": "opo ono acara ning tengah kutha wengi iki", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"place_name": "tengah kutha", "timeofday": "wengi iki"}, "split": "test"}
{"utterance": "ning endi apotek ndek kendal", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"business_type": "apotek", "place_name": "kendal"}, "split": "test"}
{"utterance": "pilem bioskop dina iki", "expected_intent": "recommendation:recommendation_movies", "expected_slots": {"business_type": "bioskop", "date": "dina iki"}, "split": "test"}
{"utterance": "pilem apa aku kudu nonton dina iki", "expected_intent": "recommendation:recommendation_movies", "expected_slots": {"date": "dina iki"}, "split": "test"}
{"utterance": "opo pilem sing ono sekitaran aku", "expected_intent": "recommendation:recommendation_movies", "expected_slots": {}, "split": "test"}
{"utterance": "acara apa enggal", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"time": "enggal"}, "split": "test"}
{"utterance": "duduhno aku acara ning klaten", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"place_name": "klaten"}, "split": "test"}
{"utterance": "loro-lorone sopir enom lan sopir anyaran kerep kecelakaan tinimbang sopir liyane kerono padha durung duwe pengalaman kang cukup seng kudu diduweni supoyo biso nyetir aman dewek e penelitian pada nduduhno pengalaman nyopir iku faktor gede ngurangi kecelakaan ndek dalan lan iku waktu paling aman gawe sopir enom nalika sopir sopir iku pas nyetir ono seng ngawasi", "expected_intent": "recommendation:recommendation_events", "expected_slots": {}, "split": "test"}
{"utterance": "olly aku nggoleki bar apa sampeyan ngerti sing apik", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"business_type": "bar"}, "split": "test"}
{"utterance": "olly aku looking for sawetara peragaan busana sampeyan bisa nemokake toko sandhangan nang sak mil", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"business_type": "peragaan busana", "place_name": "nang sak mil"}, "split": "test"}
{"utterance": "goleki aku restoran lawang wangi", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"business_type": "restoran", "business_name": "lawang wangi"}, "split": "test"}
{"utterance": "aku pengin ngerti pub rating paling apik ing wilayah lokal", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"business_type": "pub"}, "split": "test"}
{"utterance": "tulung tuduhake aku maraton cedhak kula", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"event_name": "maraton"}, "split": "test"}
{"utterance": "aku bakal seneng yen sampeyan nganyari kula acara ing wilayah kita", "expected_intent": "recommendation:recommendation_events", "expected_slots": {}, "split": "test"}
{"utterance": "apa sampeyan duwe saran film aksi", "expected_intent": "recommendation:recommendation_movies", "expected_slots": {"movie_type": "aksi"}, "split": "test"}
{"utterance": "duduhno aku restoran sing lokasi e paling cedhak saka aku", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"business_type": "restoran", "place_name": "paling cedhak"}, "split": "test"}
{"utterance": "duduhno pagelaran lukis ing jogja nasional museum", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"event_name": "pagelaran lukis", "place_name": "jogja nasional museum"}, "split": "test"}
{"utterance": "toko apa sing ana ing kene sekitar", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {}, "split": "test"}
{"utterance": "nglangi", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"event_name": "nglangi"}, "split": "test"}
{"utterance": "piye film anyare laskar pelangi", "expected_intent": "recommendation:recommendation_movies", "expected_slots": {"movie_name": "laskar pelangi"}, "split": "test"}
{"utterance": "olly opo drama anyar kang dadi pilem pambuka akhir minggu iki", "expected_intent": "recommendation:recommendation_movies", "expected_slots": {"movie_type": "drama", "time": "akhir minggu"}, "split": "test"}
{"utterance": "toko opo sik jarake neng antara sepuluh kilo", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"business_type": "toko", "place_name": "antara sepuluh kilo"}, "split": "test"}
{"utterance": "sistem cisco", "expected_intent": "recommendation:recommendation_movies", "expected_slots": {}, "split": "test"}
{"utterance": "olly acara apa sing kedadeyan ing semarang akhir minggu iki", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"place_name": "semarang", "date": "akhir minggu iki"}, "split": "test"}
{"utterance": "acara apa wae akhir minggu iki ing bandung", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"date": "akhir minggu iki", "place_name": "bandung"}, "split": "test"}
{"utterance": "golekke film sing nominasi oskar", "expected_intent": "recommendation:recommendation_movies", "expected_slots": {}, "split": "test"}
{"utterance": "ngendi kafe apik cedhak kula", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"business_type": "kafe"}, "split": "test"}
{"utterance": "apa ana acara khusus cedhak kula akhir minggu iki", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"date": "akhir minggu iki"}, "split": "test"}
{"utterance": "endi bar seng duweni omben paling murah cedhak dalan semarang", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"place_name": "dalan semarang"}, "split": "test"}
{"utterance": "opo acara sakbanjure nang perpustakaan", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"place_name": "perpustakaan"}, "split": "test"}
{"utterance": "opo ono restoran pizza sing apik sekitaran kene", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"business_type": "restoran pizza"}, "split": "test"}
{"utterance": "film apa lagi diputer wengi iki", "expected_intent": "recommendation:recommendation_movies", "expected_slots": {"timeofday": "wengi iki"}, "split": "test"}
{"utterance": "goleki mall ing semarang kanggo klambi wadon", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"business_type": "mall", "place_name": "semarang"}, "split": "test"}
{"utterance": "nangdi aku iso lungo wengi iki", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"timeofday": "wengi iki"}, "split": "test"}
{"utterance": "opo sing kedhadiyan sekitaran aku", "expected_intent": "recommendation:recommendation_events", "expected_slots": {}, "split": "test"}
{"utterance": "apa ana pameran kerajinan ing wilayah iki", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"event_name": "pameran"}, "split": "test"}
{"utterance": "pantai", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"place_name": "pantai"}, "split": "test"}
{"utterance": "olly duduhno aku karo acara menarik nang daerah pantai", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"place_name": "daerah pantai"}, "split": "test"}
{"utterance": "pilem pilem sing ulasan e apik", "expected_intent": "recommendation:recommendation_movies", "expected_slots": {}, "split": "test"}
{"utterance": "tuduhake kula acara acara lokal", "expected_intent": "recommendation:recommendation_events", "expected_slots": {}, "split": "test"}
{"utterance": "apa film rating paling dhuwur saiki metu", "expected_intent": "recommendation:recommendation_movies", "expected_slots": {}, "split": "test"}
{"utterance": "rekomendasi aku film", "expected_intent": "recommendation:recommendation_movies", "expected_slots": {}, "split": "test"}
{"utterance": "apa mene ana acara olah raga nang salatiga", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"date": "mene", "event_name": "acara olah raga", "place_name": "salatiga"}, "split": "test"}
{"utterance": "nyaranake film sing diputer ing wilayah ku", "expected_intent": "recommendation:recommendation_movies", "expected_slots": {}, "split": "test"}
{"utterance": "kene festival panganan ning area iki", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"event_name": "festival panganan"}, "split": "test"}
{"utterance": "nggolekno toko lokal", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {}, "split": "test"}
{"utterance": "apa sing kedadeyan ing kene akhir minggu iki", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"date": "minggu iki"}, "split": "test"}
{"utterance": "olly duduhke aku bab kegiatan-kegiatan nang daerah ku minggu iki", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"date": "minggu iki"}, "split": "test"}
{"utterance": "sembarang acara kondhang minggon iki nang wilayah kene", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"date": "minggon iki"}, "split": "test"}
{"utterance": "olly aku kudu ngombe", "expected_intent": "iot:iot_coffee", "expected_slots": {}, "split": "test"}
{"utterance": "aku butuh ngombe", "expected_intent": "iot:iot_coffee", "expected_slots": {}, "split": "test"}
{"utterance": "apa sawetara pasar malem sing cedhak", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"event_name": "pasar malem"}, "split": "test"}
{"utterance": "minggu iki", "expected_intent": "recommendation:recommendation_movies", "expected_slots": {"date": "minggu iki"}, "split": "test"}
{"utterance": "tulung restoran", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"business_type": "restoran"}, "split": "test"}
{"utterance": "apa sing kudu aku tonton dina iki", "expected_intent": "recommendation:recommendation_movies", "expected_slots": {"date": "dina iki"}, "split": "test"}
{"utterance": "opo kowe iso golekno toko mebel cedhak aku", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"business_type": "toko mebel"}, "split": "test"}
{"utterance": "opo wae restoran ning cedhak aku", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"business_type": "restoran"}, "split": "test"}
{"utterance": "ngendi indomaret cedhak", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"business_name": "indomaret"}, "split": "test"}
{"utterance": "ngendi ana teater ing wilayah ku", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"business_type": "teater"}, "split": "test"}
{"utterance": "tuduhake aku opo toko sing cedhak", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"business_type": "toko"}, "split": "test"}
{"utterance": "opo ono sing special cedhak kene", "expected_intent": "recommendation:recommendation_events", "expected_slots": {}, "split": "test"}
{"utterance": "goleki pilem cedhak kula", "expected_intent": "recommendation:recommendation_movies", "expected_slots": {}, "split": "test"}
{"utterance": "opo pilem ing bioskop sing ora elek", "expected_intent": "recommendation:recommendation_movies", "expected_slots": {"place_name": "bioskop"}, "split": "test"}
{"utterance": "marang aku kabeh acara kanggo dina iki ing kuthaku", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"date": "dina iki"}, "split": "test"}
{"utterance": "olly mangga dhaptar toko klambi paling apik ing cedhak aku", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"business_type": "toko klambi"}, "split": "test"}
{"utterance": "apa ana acara seneng ing semarang dino iki", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"place_name": "semarang", "date": "dino iki"}, "split": "test"}
{"utterance": "golekno warung cedhak aku", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"business_type": "warung"}, "split": "test"}
{"utterance": "tuduhake apa toko klambi ing lima menit saka aku", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"business_type": "toko klambi"}, "split": "test"}
{"utterance": "aku butuh kado opo toko ing radius sekilometer", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"business_type": "toko", "place_name": "ing radius sekilometer"}, "split": "test"}
{"utterance": "apa sing kedadeyan nang kota", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"place_name": "nang kota"}, "split": "test"}
{"utterance": "toko opo cedhek ku", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"business_type": "toko"}, "split": "test"}
{"utterance": "kapan mall taman anggrek buka", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"business_name": "mall taman anggrek"}, "split": "test"}
{"utterance": "weruh acara lokal saiki", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"event_name": "acara lokal saiki"}, "split": "test"}
{"utterance": "tuduhake aku acara musik cedhak", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"event_name": "acara musik"}, "split": "test"}
{"utterance": "laskar pelangi", "expected_intent": "recommendation:recommendation_movies", "expected_slots": {"movie_name": "laskar pelangi"}, "split": "test"}
{"utterance": "book kula taksi kanggo bandung ing setengah jam", "expected_intent": "transport:transport_taxi", "expected_slots": {"transport_type": "taksi", "place_name": "bandung", "time": "setengah jam"}, "split": "test"}
{"utterance": "aku kudu lungo menyang bandung dina minggu jam lima isuk nggo sepur", "expected_intent": "transport:transport_ticket", "expected_slots": {"place_name": "bandung", "date": "minggu", "time": "lima isuk", "transport_type": "sepur"}, "split": "test"}
{"utterance": "olly book kula tiket kanggo bandung sinar jaya akhir minggu iki", "expected_intent": "transport:transport_ticket", "expected_slots": {"place_name": "bandung", "transport_name": "sinar jaya", "date": "akhir minggu iki"}, "split": "test"}
{"utterance": "opo kowe iso pesen uber gawe aku", "expected_intent": "transport:transport_taxi", "expected_slots": {"transport_agency": "uber"}, "split": "test"}
{"utterance": "opo iso kowe mesen gojek sesuk", "expected_intent": "transport:transport_taxi", "expected_slots": {"transport_agency": "gojek", "date": "sesuk"}, "split": "test"}
{"utterance": "opo kowe iso pesen uber mari aku ninggalno kantor", "expected_intent": "transport:transport_taxi", "expected_slots": {"transport_agency": "uber"}, "split": "test"}
{"utterance": "iso tulung pesenke tiket sepur", "expected_intent": "transport:transport_ticket", "expected_slots": {"transport_type": "sepur"}, "split": "test"}
{"utterance": "pesen karcis sepur soko bandung menyang bekasi nggo aku", "expected_intent": "transport:transport_ticket", "expected_slots": {"transport_type": "sepur", "place_name": "bekasi"}, "split": "test"}
{"utterance": "jagorawi macet ora", "expected_intent": "transport:transport_traffic", "expected_slots": {"place_name": "jagorawi"}, "split": "test"}
{"utterance": "carane aku menyang stasiun sepur kanggo njaluk tiket", "expected_intent": "transport:transport_query", "expected_slots": {"place_name": "stasiun sepur"}, "split": "test"}
{"utterance": "nelpon taksi kutha menyang bandara", "expected_intent": "transport:transport_taxi", "expected_slots": {"transport_type": "taksi", "place_name": "bandara"}, "split": "test"}
{"utterance": "nggolek angkot seko kene nang bandara", "expected_intent": "transport:transport_taxi", "expected_slots": {"transport_type": "angkot", "place_name": "bandara"}, "split": "test"}
{"utterance": "google tiket sepur nang jakarta", "expected_intent": "transport:transport_ticket", "expected_slots": {"transport_type": "sepur", "place_name": "jakarta"}, "split": "test"}
{"utterance": "tuku tiket sepur nggo minggu iki", "expected_intent": "transport:transport_ticket", "expected_slots": {"transport_type": "sepur", "time": "minggu iki"}, "split": "test"}
{"utterance": "pie lalu lintas nang dalan ku tekan omah jam limo", "expected_intent": "transport:transport_query", "expected_slots": {"place_name": "omah", "time": "limo"}, "split": "test"}
{"utterance": "pesenke taksi nggo nang bioskop jam siji", "expected_intent": "transport:transport_taxi", "expected_slots": {"transport_type": "taksi", "place_name": "bioskop", "time": "siji"}, "split": "test"}
{"utterance": "liihatno jadwal sepur surabaya malang", "expected_intent": "transport:transport_query", "expected_slots": {"transport_type": "sepur", "place_name": "surabaya malang"}, "split": "test"}
{"utterance": "olly golekno aku blue bird paling cedhak", "expected_intent": "transport:transport_taxi", "expected_slots": {"transport_agency": "blue bird"}, "split": "test"}
{"utterance": "golekno aku jam sepur lokal nang ragunan", "expected_intent": "transport:transport_query", "expected_slots": {"transport_type": "sepur", "place_name": "ragunan"}, "split": "test"}
{"utterance": "jam piro sepur menyang kebumen budal", "expected_intent": "transport:transport_query", "expected_slots": {"place_name": "kebumen"}, "split": "test"}
{"utterance": "tuduhke aku babagan lalu lintas kutha", "expected_intent": "transport:transport_traffic", "expected_slots": {"place_name": "kutha"}, "split": "test"}
{"utterance": "piye macet saiki cedhak malioboro", "expected_intent": "transport:transport_traffic", "expected_slots": {"place_name": "malioboro"}, "split": "test"}
{"utterance": "golekno jadwal sepur menyang kroya dino rebo utawa kemis", "expected_intent": "transport:transport_query", "expected_slots": {"transport_type": "sepur", "place_name": "kroya", "date": "kemis"}, "split": "test"}
{"utterance": "indonesia", "expected_intent": "transport:transport_query", "expected_slots": {"place_name": "indonesia"}, "split": "test"}
{"utterance": "bandung", "expected_intent": "transport:transport_query", "expected_slots": {"place_name": "bandung"}, "split": "test"}
{"utterance": "tulung pesenke karcis sepur seko jogja menyang semarang", "expected_intent": "transport:transport_ticket", "expected_slots": {"transport_type": "sepur", "place_name": "semarang"}, "split": "test"}
{"utterance": "opo ono macet ing rute ku", "expected_intent": "transport:transport_traffic", "expected_slots": {}, "split": "test"}
{"utterance": "tiket nang semarang", "expected_intent": "transport:transport_ticket", "expected_slots": {"place_name": "semarang"}, "split": "test"}
{"utterance": "tiket nang bandung", "expected_intent": "transport:transport_ticket", "expected_slots": {"place_name": "bandung"}, "split": "test"}
{"utterance": "nuduhake jadwal sepur menyang gedung opera monas", "expected_intent": "transport:transport_query", "expected_slots": {"transport_type": "sepur", "place_name": "monas"}, "split": "test"}
{"utterance": "olly pesen taksi", "expected_intent": "transport:transport_taxi", "expected_slots": {"transport_type": "taksi"}, "split": "test"}
{"utterance": "peseno aku tiket sepur kelas siji nang bandung", "expected_intent": "transport:transport_ticket", "expected_slots": {"transport_type": "sepur", "transport_descriptor": "kelas siji", "place_name": "bandung"}, "split": "test"}
{"utterance": "pesen aku tiket sepur", "expected_intent": "transport:transport_ticket", "expected_slots": {"transport_type": "sepur"}, "split": "test"}
{"utterance": "kekono aku dhaptar tiket sepur saka bandung nang bekasi", "expected_intent": "transport:transport_query", "expected_slots": {"transport_type": "sepur", "place_name": "bekasi"}, "split": "test"}
{"utterance": "tilpun taksi", "expected_intent": "transport:transport_taxi", "expected_slots": {"transport_type": "taksi"}, "split": "test"}
{"utterance": "pesen karcis sepur searah kanggo dina selasa jam sanga esuk", "expected_intent": "transport:transport_ticket", "expected_slots": {"transport_type": "sepur", "transport_descriptor": "searah", "date": "selasa", "time": "sanga esuk"}, "split": "test"}
{"utterance": "bisa pesen tiket sepur kanggo loro kanggo dina jumuah iki", "expected_intent": "transport:transport_ticket", "expected_slots": {"transport_type": "sepur", "date": "jumuah"}, "split": "test"}
{"utterance": "prikso jadwal sepur nomer sepuluh ewu wolungatus wolung puluh pitu soko stasiun wates dina seloso", "expected_intent": "transport:transport_query", "expected_slots": {"transport_type": "sepur", "transport_name": "sepuluh ewu wolungatus wolung puluh pitu", "place_name": "stasiun wates", "date": "seloso"}, "split": "test"}
{"utterance": "wenehi wektu sepur", "expected_intent": "transport:transport_query", "expected_slots": {"transport_type": "sepur"}, "split": "test"}
{"utterance": "opo ono sepur sambungan soko bandung menyang bekasi lan jam piro", "expected_intent": "transport:transport_query", "expected_slots": {"transport_type": "sepur", "place_name": "bekasi"}, "split": "test"}
{"utterance": "ngendi dalan paling cedhak nang jakarta", "expected_intent": "transport:transport_query", "expected_slots": {"place_name": "jakarta"}, "split": "test"}
{"utterance": "opo sepur sing pertama nang gondangdia", "expected_intent": "transport:transport_query", "expected_slots": {"transport_type": "sepur", "place_name": "gondangdia"}, "split": "test"}
{"utterance": "pesenke aku gojek", "expected_intent": "transport:transport_taxi", "expected_slots": {"transport_agency": "gojek"}, "split": "test"}
{"utterance": "pesen tiket sepur saka bandung nang bekasi", "expected_intent": "transport:transport_ticket", "expected_slots": {"transport_type": "sepur", "place_name": "bekasi"}, "split": "test"}
{"utterance": "golek taksi gawe di pesen", "expected_intent": "transport:transport_taxi", "expected_slots": {"transport_type": "taksi"}, "split": "test"}
{"utterance": "kandani aku tujuane dina iki", "expected_intent": "transport:transport_query", "expected_slots": {"date": "dina iki"}, "split": "test"}
{"utterance": "kapan sepur sabanjure lelungan ing kutha mangkat saka kene", "expected_intent": "transport:transport_query", "expected_slots": {"transport_type": "sepur"}, "split": "test"}
{"utterance": "nangdi pom bensin paling cedhak", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"business_type": "pom bensin"}, "split": "test"}
{"utterance": "piye kahanan lalu lintas saiki", "expected_intent": "transport:transport_traffic", "expected_slots": {}, "split": "test"}
{"utterance": "rute paling cepet kanggo bandung", "expected_intent": "transport:transport_query", "expected_slots": {"place_name": "bandung"}, "split": "test"}
{"utterance": "sebutke wayah tekane sepur nang jakarta", "expected_intent": "transport:transport_query", "expected_slots": {"transport_type": "sepur", "place_name": "jakarta"}, "split": "test"}
{"utterance": "pirang suwe gawe nang bandara", "expected_intent": "transport:transport_query", "expected_slots": {"place_name": "bandara"}, "split": "test"}
{"utterance": "piro suwe perjalanan nang teater", "expected_intent": "transport:transport_query", "expected_slots": {"place_name": "teater"}, "split": "test"}
{"utterance": "kepriye kahanan lalu lintas ne terminal arjosari", "expected_intent": "transport:transport_traffic", "expected_slots": {"place_name": "terminal arjosari"}, "split": "test"}
{"utterance": "apa sampeyan bisa ngomong kapan sepur mangkat menyang bandung", "expected_intent": "transport:transport_query", "expected_slots": {"transport_type": "sepur", "place_name": "bandung"}, "split": "test"}
{"utterance": "pesen gojek menyang bandara", "expected_intent": "transport:transport_taxi", "expected_slots": {"transport_agency": "gojek", "place_name": "bandara"}, "split": "test"}
{"utterance": "pesen sepur lagi diskon", "expected_intent": "transport:transport_ticket", "expected_slots": {"transport_type": "sepur"}, "split": "test"}
{"utterance": "goleke aku tiket sepur nang malang", "expected_intent": "transport:transport_ticket", "expected_slots": {"transport_type": "sepur", "place_name": "malang"}, "split": "test"}
{"utterance": "tukoke tiket nang jakarta nggo sepur", "expected_intent": "transport:transport_ticket", "expected_slots": {"place_name": "jakarta", "transport_type": "sepur"}, "split": "test"}
{"utterance": "carane aku omah saka kene", "expected_intent": "transport:transport_query", "expected_slots": {"place_name": "omah"}, "split": "test"}
{"utterance": "lelungan pesen tiket sepur", "expected_intent": "transport:transport_ticket", "expected_slots": {"transport_type": "sepur"}, "split": "test"}
{"utterance": "piye cara paling cepet menyang starbucks", "expected_intent": "transport:transport_query", "expected_slots": {"business_name": "starbucks"}, "split": "test"}
{"utterance": "arahke nang nggone", "expected_intent": "transport:transport_query", "expected_slots": {}, "split": "test"}
{"utterance": "pesen o tiket sepur nang bandung tulung", "expected_intent": "transport:transport_ticket", "expected_slots": {"transport_type": "sepur", "place_name": "bandung"}, "split": "test"}
{"utterance": "golekno aku tiket sepur sing paling murah nang jakarta", "expected_intent": "transport:transport_ticket", "expected_slots": {"transport_type": "sepur", "place_name": "jakarta"}, "split": "test"}
{"utterance": "aku kudu kulo ngomah", "expected_intent": "transport:transport_taxi", "expected_slots": {"place_name": "ngomah"}, "split": "test"}
{"utterance": "pesen o aku taksi nang lokasi", "expected_intent": "transport:transport_taxi", "expected_slots": {"transport_type": "taksi"}, "split": "test"}
{"utterance": "tulung pesen o taksi blue bird", "expected_intent": "transport:transport_taxi", "expected_slots": {"transport_type": "taksi", "transport_agency": "blue bird"}, "split": "test"}
{"utterance": "kapan sepur e budhal dina iki", "expected_intent": "transport:transport_query", "expected_slots": {"transport_type": "sepur", "date": "dina iki"}, "split": "test"}
{"utterance": "jam piro transjakarta teka pertama isuk", "expected_intent": "transport:transport_query", "expected_slots": {"transport_type": "transjakarta", "timeofday": "isuk"}, "split": "test"}
{"utterance": "pie carane aku mesen tiket sepur online", "expected_intent": "transport:transport_query", "expected_slots": {"transport_type": "sepur"}, "split": "test"}
{"utterance": "aku perlu tiket sepur nang bandung saka bekasi", "expected_intent": "transport:transport_ticket", "expected_slots": {"transport_type": "sepur", "place_name": "bandung saka bekasi"}, "split": "test"}
{"utterance": "aku perlu tiket sepur nggo nang bandung seko malang", "expected_intent": "transport:transport_ticket", "expected_slots": {"transport_type": "sepur", "place_name": "bandung seko malang"}, "split": "test"}
{"utterance": "jadwal mendhoan senen taksi kanggo ana awan", "expected_intent": "transport:transport_taxi", "expected_slots": {"date": "senen", "transport_type": "taksi", "timeofday": "awan"}, "split": "test"}
{"utterance": "pira regane tiket sepur pulang pergi nang bali", "expected_intent": "transport:transport_query", "expected_slots": {"transport_type": "sepur", "place_name": "bali"}, "split": "test"}
{"utterance": "golek jadwal sepur menyang bandung", "expected_intent": "transport:transport_query", "expected_slots": {"transport_type": "sepur", "place_name": "bandung"}, "split": "test"}
{"utterance": "jam piro sepur sikik dewe mangkat seko bandung", "expected_intent": "transport:transport_query", "expected_slots": {"transport_type": "sepur", "place_name": "bandung"}, "split": "test"}
{"utterance": "kapan sepur berikute budal namg manggarai", "expected_intent": "transport:transport_query", "expected_slots": {"transport_type": "sepur", "place_name": "manggarai"}, "split": "test"}
{"utterance": "pie lalu lintas nang kutha", "expected_intent": "transport:transport_traffic", "expected_slots": {}, "split": "test"}
{"utterance": "dalan sepi", "expected_intent": "transport:transport_traffic", "expected_slots": {}, "split": "test"}
{"utterance": "piye macet saiki", "expected_intent": "transport:transport_traffic", "expected_slots": {}, "split": "test"}
{"utterance": "book tiket sepur saka kene kanggo bandung ing wolu isuk dina iki", "expected_intent": "transport:transport_ticket", "expected_slots": {"transport_type": "sepur", "place_name": "bandung", "time": "wolu isuk", "date": "dina iki"}, "split": "test"}
{"utterance": "rute biasa aku lungo kantor macet ora", "expected_intent": "transport:transport_traffic", "expected_slots": {}, "split": "test"}
{"utterance": "telusuran pandhu arah", "expected_intent": "transport:transport_query", "expected_slots": {}, "split": "test"}
{"utterance": "tilpun taksi", "expected_intent": "transport:transport_taxi", "expected_slots": {"transport_type": "taksi"}, "split": "test"}
{"utterance": "undang gojek kanggo lungo menyang monas", "expected_intent": "transport:transport_taxi", "expected_slots": {"transport_type": "gojek", "place_name": "monas"}, "split": "test"}
{"utterance": "pie kahanan lalu lintas saiki", "expected_intent": "transport:transport_traffic", "expected_slots": {}, "split": "test"}
{"utterance": "pesenke karcis sepur menyang bandung", "expected_intent": "transport:transport_ticket", "expected_slots": {"transport_type": "sepur", "place_name": "bandung"}, "split": "test"}
{"utterance": "pesenke karcis menyang bandung", "expected_intent": "transport:transport_ticket", "expected_slots": {"place_name": "bandung"}, "split": "test"}
{"utterance": "golekno karcis sepur menyang bandung", "expected_intent": "transport:transport_ticket", "expected_slots": {"transport_type": "sepur", "place_name": "bandung"}, "split": "test"}
{"utterance": "dalan macet", "expected_intent": "transport:transport_traffic", "expected_slots": {}, "split": "test"}
{"utterance": "pesen gojek kanggo njupuk kula saiki", "expected_intent": "transport:transport_taxi", "expected_slots": {"transport_agency": "gojek"}, "split": "test"}
{"utterance": "wektu nyopir nang bandung", "expected_intent": "transport:transport_query", "expected_slots": {"place_name": "bandung"}, "split": "test"}
{"utterance": "pesenke gojek paling cedhak", "expected_intent": "transport:transport_taxi", "expected_slots": {"transport_agency": "gojek"}, "split": "test"}
{"utterance": "opo kowe iso ngandani aku pekoro macet", "expected_intent": "transport:transport_traffic", "expected_slots": {}, "split": "test"}
{"utterance": "wektu sepur tekan tempat cidak ku", "expected_intent": "transport:transport_query", "expected_slots": {"place_name": "tempat"}, "split": "test"}
{"utterance": "nangdi perpustakaan umum", "expected_intent": "transport:transport_query", "expected_slots": {"business_type": "perpustakaan umum"}, "split": "test"}
{"utterance": "pesen karcis sepur menyang bandung", "expected_intent": "transport:transport_ticket", "expected_slots": {"transport_type": "sepur", "place_name": "bandung"}, "split": "test"}
{"utterance": "mangga pesen tiket sepur malabar saka bandung", "expected_intent": "transport:transport_ticket", "expected_slots": {"transport_type": "sepur", "transport_name": "malabar", "place_name": "bandung"}, "split": "test"}
{"utterance": "mangga pesen tiket saka bandung menyang bekasi dina selasa", "expected_intent": "transport:transport_ticket", "expected_slots": {"place_name": "bekasi", "date": "selasa"}, "split": "test"}
{"utterance": "piye aku nang mall", "expected_intent": "transport:transport_query", "expected_slots": {"place_name": "mall"}, "split": "test"}
{"utterance": "piro tiket sepur nang bandung", "expected_intent": "transport:transport_query", "expected_slots": {"transport_type": "sepur", "place_name": "bandung"}, "split": "test"}
{"utterance": "gawe daftar kabeh jadwal sepur nang bandung", "expected_intent": "transport:transport_query", "expected_slots": {"transport_type": "sepur", "place_name": "bandung"}, "split": "test"}
{"utterance": "jampiro sepur e budal", "expected_intent": "transport:transport_query", "expected_slots": {"transport_type": "sepur"}, "split": "test"}
{"utterance": "piye macet e saiki", "expected_intent": "transport:transport_traffic", "expected_slots": {"time": "saiki"}, "split": "test"}
{"utterance": "gawaen aku nang klayatan", "expected_intent": "transport:transport_query", "expected_slots": {"place_name": "klayatan"}, "split": "test"}
{"utterance": "pesen taksi nang kantor gawe aku", "expected_intent": "transport:transport_taxi", "expected_slots": {"transport_type": "taksi", "place_name": "kantor"}, "split": "test"}
{"utterance": "tulung pesen o aku tiket sepur saka bandung nang bekasi sesuk isuk", "expected_intent": "transport:transport_ticket", "expected_slots": {"transport_type": "sepur", "place_name": "bekasi", "date": "sesuk", "timeofday": "isuk"}, "split": "test"}
{"utterance": "duduhno aku arah nang omah ku", "expected_intent": "transport:transport_query", "expected_slots": {"place_name": "omah"}, "split": "test"}
{"utterance": "tulung tunjukkan'", "expected_intent": "transport:transport_query", "expected_slots": {}, "split": "test"}
{"utterance": "jam piro sepur sinar jaya", "expected_intent": "transport:transport_query", "expected_slots": {"transport_name": "sinar jaya"}, "split": "test"}
{"utterance": "laporan lalu lintas", "expected_intent": "transport:transport_traffic", "expected_slots": {}, "split": "test"}
{"utterance": "karcis sepur", "expected_intent": "transport:transport_ticket", "expected_slots": {"transport_type": "sepur"}, "split": "test"}
{"utterance": "pesen karcis sepur", "expected_intent": "transport:transport_ticket", "expected_slots": {"transport_type": "sepur"}, "split": "test"}
{"utterance": "pesen tiket sepur akhir minggu tanggal rong puluh enem jayabaya surabaya", "expected_intent": "transport:transport_ticket", "expected_slots": {"transport_type": "sepur", "date": "akhir minggu tanggal rong puluh enem", "place_name": "jayabaya surabaya"}, "split": "test"}
{"utterance": "tulung pesen taksi berikute jam sanga isuk", "expected_intent": "transport:transport_taxi", "expected_slots": {"transport_type": "taksi", "time": "sanga isuk"}, "split": "test"}
{"utterance": "jam piro sepur e teka ing bandung", "expected_intent": "transport:transport_query", "expected_slots": {"transport_type": "sepur", "place_name": "bandung"}, "split": "test"}
{"utterance": "golek toko cedhak aku soko peta", "expected_intent": "transport:transport_query", "expected_slots": {"business_type": "toko"}, "split": "test"}
{"utterance": "olly aku butuh arah nang dalan pahlawan", "expected_intent": "transport:transport_query", "expected_slots": {"place_name": "dalan pahlawan"}, "split": "test"}
{"utterance": "apa bangunan paling dhuwur ing donya", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "donya"}, "split": "test"}
{"utterance": "netepake njlimet", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "njlimet"}, "split": "test"}
{"utterance": "tukung nemtokake forensik", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "forensik"}, "split": "test"}
{"utterance": "apa definisi forensik", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "forensik"}, "split": "test"}
{"utterance": "puncak ngendhi paling dhuwur ing dunya", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "dunya"}, "split": "test"}
{"utterance": "apa tegese turbulensi", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "turbulensi"}, "split": "test"}
{"utterance": "mriksa definisine capricious", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "capricious"}, "split": "test"}
{"utterance": "apa sampeyan bisa nglacak emot ku adhedhasar cara aku ngomong", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "pira umure mariah carey", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "mariah carey"}, "split": "test"}
{"utterance": "goleki definisi kleru", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "kleru"}, "split": "test"}
{"utterance": "duduhno aku resep", "expected_intent": "cooking:cooking_recipe", "expected_slots": {}, "split": "test"}
{"utterance": "opo restoran piza paling cedhak", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"business_type": "restoran piza"}, "split": "test"}
{"utterance": "pira rong atus dibagi sepuluh", "expected_intent": "qa:qa_maths", "expected_slots": {}, "split": "test"}
{"utterance": "apa akar kuadrat saka sanga", "expected_intent": "qa:qa_maths", "expected_slots": {}, "split": "test"}
{"utterance": "aku pengin pai ubi saka toko roti lokal", "expected_intent": "lists:lists_createoradd", "expected_slots": {}, "split": "test"}
{"utterance": "aku pengin tiket konser sing didol ing dina sabtu mbengi", "expected_intent": "general:general_quirky", "expected_slots": {"date": "sabtu", "timeofday": "mbengi"}, "split": "test"}
{"utterance": "jelaske fisika kuantum nggo bahasa sek tak ngerteni", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "apa kowe bisa nggawe diet tanpa gula kanggo aku lan nggawe dhaptar belanja kanggo bahan bahan kasebut", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "apa definisine oranye", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "oranye"}, "split": "test"}
{"utterance": "kok adam sandler ora lucu", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "adam sandler"}, "split": "test"}
{"utterance": "nalika ulang taun robin williams", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "robin williams"}, "split": "test"}
{"utterance": "kandani aku alamate billy crytals", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "billy crytals"}, "split": "test"}
{"utterance": "setir mobilku terus gowo kancaku ndene", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "sing saiki dadi perdana menteri inggris", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "inggris"}, "split": "test"}
{"utterance": "siji tambah siji piro", "expected_intent": "qa:qa_maths", "expected_slots": {}, "split": "test"}
{"utterance": "pira siji tambah siji", "expected_intent": "qa:qa_maths", "expected_slots": {}, "split": "test"}
{"utterance": "apa ibu kutha nigeria", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "nigeria"}, "split": "test"}
{"utterance": "opo faktor seko sepuluh", "expected_intent": "qa:qa_maths", "expected_slots": {}, "split": "test"}
{"utterance": "sepira gedhene kosmos", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "kapan tanggal lahire taylor lautner", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "taylor lautner"}, "split": "test"}
{"utterance": "critakake aku kabeh babagan prahara", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "prahara"}, "split": "test"}
{"utterance": "opo koe iso masak sek spesial nggo aku ro bojo ku", "expected_intent": "general:general_quirky", "expected_slots": {"relation": "bojo"}, "split": "test"}
{"utterance": "kowe ngerti nomer telpone jessica snout", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "jessica snout"}, "split": "test"}
{"utterance": "apa tegese osilasi", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "osilasi"}, "split": "test"}
{"utterance": "ngeja lan netepake oscillate", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "oscillate"}, "split": "test"}
{"utterance": "ngitung loro ping pingan loro", "expected_intent": "qa:qa_maths", "expected_slots": {}, "split": "test"}
{"utterance": "mriksa celebrity ngendi babagan", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "ilingno aku gerak supaya ora tambah lemu", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "ilengke ngontak meneh konco konco suweku sing wis enem wulan ora tak ajak ngomong sakdurunge lulus", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "mriksa kabeh prices bioskop lan kasedhiyan film mentas dirilis ing lokasi sandi", "expected_intent": "recommendation:recommendation_movies", "expected_slots": {}, "split": "test"}
{"utterance": "aku kudu ngomong karo mamak", "expected_intent": "general:general_quirky", "expected_slots": {"relation": "mamak"}, "split": "test"}
{"utterance": "kandhane piye hasil pemilu majelis ing indonesia arep metu", "expected_intent": "news:news_query", "expected_slots": {"place_name": "indonesia"}, "split": "test"}
{"utterance": "pira akar kuadrate nem atus limalikur", "expected_intent": "qa:qa_maths", "expected_slots": {}, "split": "test"}
{"utterance": "muga-muga bisa menehi saran", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "opo koe ngerti matematika", "expected_intent": "qa:qa_maths", "expected_slots": {}, "split": "test"}
{"utterance": "lokasi", "expected_intent": "qa:qa_definition", "expected_slots": {}, "split": "test"}
{"utterance": "opo dalan paling cepet nang kantor ku tengah kuto sing ora macet", "expected_intent": "transport:transport_query", "expected_slots": {"place_name": "tengah kuto"}, "split": "test"}
{"utterance": "apa sing ditindakake dian sastrowardoyo supaya katon ayu", "expected_intent": "general:general_quirky", "expected_slots": {"person": "dian sastrowardoyo"}, "split": "test"}
{"utterance": "ngendi hermawan tuku klambi anak-anake", "expected_intent": "general:general_quirky", "expected_slots": {"person": "hermawan"}, "split": "test"}
{"utterance": "kok koko haryanto katon enom banget", "expected_intent": "general:general_quirky", "expected_slots": {"person": "koko haryanto"}, "split": "test"}
{"utterance": "opo resep biskuit coklat paling enak", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "apa basuki cahaya purnama pisanan november el", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "basuki cahaya purnama"}, "split": "test"}
{"utterance": "tulung wenehi aku informasi bab john abraham lincon", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "john abraham lincon"}, "split": "test"}
{"utterance": "pinten dhuwit sing digawe dening bill gates", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "bill gates"}, "split": "test"}
{"utterance": "apa definisi saka tembung langgeng", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "langgeng"}, "split": "test"}
{"utterance": "sopo artis", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "apa sing ditindakake selebriti", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "sampeyan bisa nggawe nedha bengi kanggo kula", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "pira loro tambah loro", "expected_intent": "qa:qa_maths", "expected_slots": {}, "split": "test"}
{"utterance": "alexa aku wis entuk dolar kanggo sasi iki sepira aku isa nglampahi saben dina sasi iki", "expected_intent": "qa:qa_maths", "expected_slots": {"date": "sasi iki", "general_frequency": "saben dina"}, "split": "test"}
{"utterance": "endi supermarket cedhak paling apik roti ne", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"business_type": "supermarket", "food_type": "roti"}, "split": "test"}
{"utterance": "piro ukurane sperma paus", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "aku pengin bisa ngitung jawaban saka asil panelusuran kaya wolfram alpha", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "aku pengin ngelingi preferensiku lan menehi saran babagan perkara sing adhedhasar nalika aku takon", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "aku pengin bisa ngandhani statistik babagan apa sing ditindakake kanggo aku kaya sepira kerepe aku mangan ing bulan iki", "expected_intent": "general:general_quirky", "expected_slots": {"date": "bulan iki"}, "split": "test"}
{"utterance": "mung ngobrol sante", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "aku perlu takon koe piro jumlah e malaikat sek iso nari nang pinhead", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "rolas tambah satus sangang puluh enem piro", "expected_intent": "qa:qa_maths", "expected_slots": {}, "split": "test"}
{"utterance": "apa gambarane garis wektu", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "garis wektu"}, "split": "test"}
{"utterance": "kapan dunyo iki berahir", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "takon asisten pribadi babagan matematika", "expected_intent": "qa:qa_maths", "expected_slots": {}, "split": "test"}
{"utterance": "jam pira ana game hockey bengi iki", "expected_intent": "general:general_quirky", "expected_slots": {"timeofday": "bengi iki"}, "split": "test"}
{"utterance": "carane akeh negara duwe paukuman pati", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "pira sepuluh persen saka patang puluh dolar", "expected_intent": "qa:qa_maths", "expected_slots": {}, "split": "test"}
{"utterance": "kirim pesen lucu kanggo kabeh kanca-kanca ku", "expected_intent": "social:social_post", "expected_slots": {}, "split": "test"}
{"utterance": "toko apa sesuk dodolan", "expected_intent": "general:general_quirky", "expected_slots": {"date": "sesuk"}, "split": "test"}
{"utterance": "opo sek marake osteoporosis", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "tuduhna wangsulan kanggo masalah iki rong atus patang puluh enem ditambah nem atus seket papat", "expected_intent": "qa:qa_maths", "expected_slots": {}, "split": "test"}
{"utterance": "pira papat ditambah lima", "expected_intent": "qa:qa_maths", "expected_slots": {}, "split": "test"}
{"utterance": "pira umure j. k. rowling", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "j. k. rowling"}, "split": "test"}
{"utterance": "aku pengin robotku menehi panganan lan ngetutake asu nalika aku ora ana ing omah", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "kandani aku kapan jadwal acarane ben aku ora telat", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "rolas dibagi papat dadi piro", "expected_intent": "qa:qa_maths", "expected_slots": {}, "split": "test"}
{"utterance": "kandhani aku pira kasile wolulas tambah telung puluh siji", "expected_intent": "qa:qa_maths", "expected_slots": {}, "split": "test"}
{"utterance": "kenopo adewe nang kene", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "bakal apik yen bisa menehi konsultasi hukum", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "kapan amerika serikat entuk kebebasan", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "amerika serikat"}, "split": "test"}
{"utterance": "apa sampeyan bisa nuduhake aku kabeh dhaptar prentah sing anyar", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "olly apa ibukutha california", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "california"}, "split": "test"}
{"utterance": "please menehi kula nomer lotre menang kanggo akhir minggu iki", "expected_intent": "general:general_quirky", "expected_slots": {"date": "akhir minggu iki"}, "split": "test"}
{"utterance": "wenehno weruh artine motivasi", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "motivasi"}, "split": "test"}
{"utterance": "bisa ngomong wektu iku", "expected_intent": "datetime:datetime_query", "expected_slots": {}, "split": "test"}
{"utterance": "pira sikile asu", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "kok isa paus gedhe", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "bumi kok bunder", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "aku arep ngewangi nganalisis ide", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "pengen netflix karo nyante", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "apa film pungkasane will smith", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "will smith"}, "split": "test"}
{"utterance": "ngendi bakal budi katon wingi wengi", "expected_intent": "general:general_quirky", "expected_slots": {"person": "budi", "date": "wingi wengi"}, "split": "test"}
{"utterance": "aku pengin kowe nguripake tipi", "expected_intent": "iot:iot_wemo_on", "expected_slots": {}, "split": "test"}
{"utterance": "pira enem dibagi loro", "expected_intent": "qa:qa_maths", "expected_slots": {}, "split": "test"}
{"utterance": "sepira dhuwure brad pitt", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "brad pitt"}, "split": "test"}
{"utterance": "tulung konverterke kurse", "expected_intent": "qa:qa_currency", "expected_slots": {}, "split": "test"}
{"utterance": "nalika pungkasan academy award menang film", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "sepira dhuwure gunung everest", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "everest"}, "split": "test"}
{"utterance": "apa ibukuthane west virginia", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "west virginia"}, "split": "test"}
{"utterance": "ning ngendi new zealand dumunung ing peta", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "new zealand"}, "split": "test"}
{"utterance": "kandani aku ning ngendi steve jobs lair", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "steve jobs"}, "split": "test"}
{"utterance": "apa kowe isa konfirmasi yen leonardo wis nikah", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "leonardo"}, "split": "test"}
{"utterance": "ngendi nggone selebriti nongkrong", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "ngomong apa sing bisa daklakoni kanggo mbantu komunitasku dina iki", "expected_intent": "general:general_quirky", "expected_slots": {"date": "dina iki"}, "split": "test"}
{"utterance": "opo ono acara gratisan nang wilayahku dina iki", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"date": "dina iki"}, "split": "test"}
{"utterance": "apa meja paling gedhe", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "meja paling gedhe"}, "split": "test"}
{"utterance": "endi kebun binatang sing paling cedhak karo aku", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {}, "split": "test"}
{"utterance": "kapan ulang tahun arnold schwarzenegger", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "arnold schwarzenegger"}, "split": "test"}
{"utterance": "tambah apa ing nilai saham liwat minggu kepungkur saka disney", "expected_intent": "qa:qa_stock", "expected_slots": {"business_name": "disney"}, "split": "test"}
{"utterance": "pira regane poundsterling saiki", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "poundsterling"}, "split": "test"}
{"utterance": "apa sampeyan bisa ngomong apa weteng sapi", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "sepira akeh patrick stewart wis muter ing", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "patrick stewart"}, "split": "test"}
{"utterance": "semburan rambut merk apa sing digawe joko widodo", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "joko widodo"}, "split": "test"}
{"utterance": "pira regane dolar ing inr", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "inr"}, "split": "test"}
{"utterance": "kurs dollar opo wis munggah", "expected_intent": "qa:qa_currency", "expected_slots": {}, "split": "test"}
{"utterance": "apa kurs saiki ing cina", "expected_intent": "qa:qa_currency", "expected_slots": {"place_name": "cina"}, "split": "test"}
{"utterance": "apa kursi iku", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "kursi"}, "split": "test"}
{"utterance": "opo warna kursi iki", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "endi nggone meridian prima", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "biografi wong", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "apa iku sistem emisi elektronik", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "sistem emisi elektronik"}, "split": "test"}
{"utterance": "njlèntrèhaké kitiran", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "kitiran"}, "split": "test"}
{"utterance": "apa iku pelem", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "pelem"}, "split": "test"}
{"utterance": "apa kowe isa ndeleng rusia saka alaska", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "alaska"}, "split": "test"}
{"utterance": "dhaptar informasi kurs dina iki kanggo dolar amerika karo yen jepang", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "yen jepang"}, "split": "test"}
{"utterance": "apa saham terranova arep kanggo", "expected_intent": "qa:qa_stock", "expected_slots": {"business_name": "terranova"}, "split": "test"}
{"utterance": "pira kurs antarane amerika lan cina", "expected_intent": "qa:qa_currency", "expected_slots": {"place_name": "cina"}, "split": "test"}
{"utterance": "apa kurs mata uang kanggo cina", "expected_intent": "qa:qa_currency", "expected_slots": {"place_name": "cina"}, "split": "test"}
{"utterance": "apa kurs mata uang kanggo cina", "expected_intent": "qa:qa_currency", "expected_slots": {"place_name": "cina"}, "split": "test"}
{"utterance": "tulung bukakne karangan wikipedia kanggo carane gawe mangkok gelas", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "rega saham exxon mobil saiki", "expected_intent": "qa:qa_stock", "expected_slots": {"business_name": "exxon mobil"}, "split": "test"}
{"utterance": "pira umure marian carey", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "marian carey"}, "split": "test"}
{"utterance": "opo kui parsec", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "pinten kayu bisa chuck woodchuck yen woodchuck bisa chuck kayu", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "loro karo loro yaiku", "expected_intent": "qa:qa_maths", "expected_slots": {}, "split": "test"}
{"utterance": "sepira adoh california saka georgia", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "georgia"}, "split": "test"}
{"utterance": "bisa njlèntrèhaké kertu kredit", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "kertu kredit"}, "split": "test"}
{"utterance": "apa steph curry kawin", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "steph curry"}, "split": "test"}
{"utterance": "pira kurs antarane dolar amerika lan meksiko", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "meksiko"}, "split": "test"}
{"utterance": "piro adoh e jarak negoro negoro nek dunyo", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "apa definisine subjegant", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "subjegant"}, "split": "test"}
{"utterance": "apa sing kedadeyan karo dow jones dina iki", "expected_intent": "qa:qa_stock", "expected_slots": {"date": "dina iki"}, "split": "test"}
{"utterance": "sepira adohe srengenge", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "sepira kurs kanggo dhuwit indonesia", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "indonesia"}, "split": "test"}
{"utterance": "ing bumi ngendi sing paling gunung geni", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "kapan elvis mati", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "elvis"}, "split": "test"}
{"utterance": "opo tembang didi kempot paling kondang", "expected_intent": "music:music_query", "expected_slots": {"artist_name": "didi kempot"}, "split": "test"}
{"utterance": "daftarake aku saham apple saiki", "expected_intent": "qa:qa_stock", "expected_slots": {"business_name": "apple"}, "split": "test"}
{"utterance": "apa gambarane logika", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "logika"}, "split": "test"}
{"utterance": "ning ngendi taman yosemite", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "taman yosemite"}, "split": "test"}
{"utterance": "google tulung lokasi lan informasi gunung rushmore", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "carane sampeyan bakal njlèntrèhaké selamat ulang taun", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "selamat ulang taun"}, "split": "test"}
{"utterance": "tulung menehi aku informasi bab michael jackson", "expected_intent": "qa:qa_factoid", "expected_slots": {"artist_name": "michael jackson"}, "split": "test"}
{"utterance": "pira suhu ing indianapolis indiana", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "indianapolis indiana"}, "split": "test"}
{"utterance": "apa kowe isa ngomong bab wayne gretszky", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "wayne gretszky"}, "split": "test"}
{"utterance": "saka dolar dadi euro", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "euro"}, "split": "test"}
{"utterance": "gambarabe urip", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "urip"}, "split": "test"}
{"utterance": "nemtokake gumun", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "gumun"}, "split": "test"}
{"utterance": "kandani aku apa tegese gumun", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "gumun"}, "split": "test"}
{"utterance": "kapan ulang tahun hemingway", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "hemingway"}, "split": "test"}
{"utterance": "pira regane lebron james", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "lebron james"}, "split": "test"}
{"utterance": "ngomongi panggonan sing saiki ana salju", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "kepriye saiki umume kahanan saham", "expected_intent": "qa:qa_stock", "expected_slots": {}, "split": "test"}
{"utterance": "apa regane yen", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "yen"}, "split": "test"}
{"utterance": "ngendi iku laos", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "laos"}, "split": "test"}
{"utterance": "tarif dolar saiki", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "dolar"}, "split": "test"}
{"utterance": "nandhang sangsara jalaran", "expected_intent": "qa:qa_definition", "expected_slots": {}, "split": "test"}
{"utterance": "akibat kanggo tumindak", "expected_intent": "qa:qa_definition", "expected_slots": {}, "split": "test"}
{"utterance": "mobil model paling dhuwur", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "piro rata rata regane omah", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "njlèntrèhaké kemalasan", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "kemalasan"}, "split": "test"}
{"utterance": "marang kula kabeh sing ngerti bab sloths", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "nalika ulang taune dolly parton", "expected_intent": "qa:qa_factoid", "expected_slots": {"event_name": "ulang taune", "person": "dolly parton"}, "split": "test"}
{"utterance": "apa kuwi koordinat khatulistiwa", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "khatulistiwa"}, "split": "test"}
{"utterance": "nggambaraken neraka", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "neraka"}, "split": "test"}
{"utterance": "siji ditambah loro padha karo", "expected_intent": "qa:qa_maths", "expected_slots": {}, "split": "test"}
{"utterance": "umpomo petelot siji regane patang dolar lan buku siji regane sepuluh dolar aku kudu mbayar piro umpomo aku tuku petelot loro lan buku telu", "expected_intent": "qa:qa_maths", "expected_slots": {}, "split": "test"}
{"utterance": "pira kurs dolar amerika lan euro", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "euro"}, "split": "test"}
{"utterance": "kandhani aku kapan obama lair", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "obama"}, "split": "test"}
{"utterance": "ngendi lokasine moldova", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "sepiro duwure ade rai", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "apa kurs ing wilayah iki", "expected_intent": "qa:qa_currency", "expected_slots": {}, "split": "test"}
{"utterance": "ono ning tahun piro barry prima mulai akting", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "barry prima"}, "split": "test"}
{"utterance": "kapan ulang taune elvis presley", "expected_intent": "qa:qa_factoid", "expected_slots": {"event_name": "ulang taune", "person": "elvis presley"}, "split": "test"}
{"utterance": "ngomong apa sing dakanggo wingi", "expected_intent": "general:general_quirky", "expected_slots": {"date": "wingi"}, "split": "test"}
{"utterance": "siji dolar padha karo pinten inr", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "inr"}, "split": "test"}
{"utterance": "nang ngendi jackie chan saiki manggon", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "jackie chan"}, "split": "test"}
{"utterance": "kurs saham facebook saiki", "expected_intent": "qa:qa_stock", "expected_slots": {"business_name": "facebook"}, "split": "test"}
{"utterance": "ning ngendi gunung rocky", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "rossa lagi sibuk opo", "expected_intent": "general:general_quirky", "expected_slots": {"person": "rossa"}, "split": "test"}
{"utterance": "menehi rincian wedhi watu", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "wedhi watu"}, "split": "test"}
{"utterance": "nggambarake wedhi watu", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "wedhi watu"}, "split": "test"}
{"utterance": "ning ngendi piramida dumunung", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "piramida"}, "split": "test"}
{"utterance": "nuduhake rincian geografis piramida", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "piramida"}, "split": "test"}
{"utterance": "nuduhake bio saka rihana", "expected_intent": "qa:qa_factoid", "expected_slots": {"artist_name": "rihana"}, "split": "test"}
{"utterance": "pira regane googs saiki", "expected_intent": "qa:qa_stock", "expected_slots": {"business_name": "googs"}, "split": "test"}
{"utterance": "tulung kandhani aku apa definisine tabung", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "tabung"}, "split": "test"}
{"utterance": "pinten poundsterling inggris", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "poundsterling inggris"}, "split": "test"}
{"utterance": "nemtokake kemul", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "kemul"}, "split": "test"}
{"utterance": "apa sepatu converse iku", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "sepatu converse"}, "split": "test"}
{"utterance": "apa jinis kacamata sing dianggep aviator", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "infone afrika", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "afrika"}, "split": "test"}
{"utterance": "nggoleki lokalitas", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "ning ngendi amal clooney kuliah", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "amal clooney"}, "split": "test"}
{"utterance": "apa kim kardashian nganggo converse", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "kim kardashian"}, "split": "test"}
{"utterance": "sepira adoh kanada saka lokasi ku saiki", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "kanada"}, "split": "test"}
{"utterance": "rega saham apa ing starbuck", "expected_intent": "qa:qa_stock", "expected_slots": {"business_name": "starbuck"}, "split": "test"}
{"utterance": "pinten saham starbuck dina iki", "expected_intent": "qa:qa_stock", "expected_slots": {"business_name": "starbuck"}, "split": "test"}
{"utterance": "numpak opo wae menyang semarang", "expected_intent": "transport:transport_query", "expected_slots": {}, "split": "test"}
{"utterance": "wangsulane telu ping papat", "expected_intent": "qa:qa_maths", "expected_slots": {}, "split": "test"}
{"utterance": "sepira regane dolar amerika ing kanada", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "kanada"}, "split": "test"}
{"utterance": "film apa sing dibintangi emma watson", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "emma watson"}, "split": "test"}
{"utterance": "pinten dolar amerika nglawan pound", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "pound"}, "split": "test"}
{"utterance": "sepira regane euro lawan dolar amerika", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "dolar amerika"}, "split": "test"}
{"utterance": "rincian babagan wong", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "carane sampeyan bisa njaluk basalt", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "pinten sahame amazon", "expected_intent": "qa:qa_stock", "expected_slots": {"business_name": "amazon"}, "split": "test"}
{"utterance": "kowe isa nindakake sangang tambah loro", "expected_intent": "qa:qa_maths", "expected_slots": {}, "split": "test"}
{"utterance": "heh buku apa iki", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "buku"}, "split": "test"}
{"utterance": "kandhani aku bab jaipur", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "jaipur"}, "split": "test"}
{"utterance": "apa tarif antarane peso lan yen", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "yen"}, "split": "test"}
{"utterance": "nerangake lokasi geografise india", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "india"}, "split": "test"}
{"utterance": "pira bandhane leonardo dicaprio", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "opo iki kedadean sek paling biasa opo paling penting nang sejarah", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "sakpira gedhene alaska", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "alaska"}, "split": "test"}
{"utterance": "apa ukuran amerika serikat", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "opo warnane buah naga", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "neng ngendi steve jobs lair", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "steve jobs"}, "split": "test"}
{"utterance": "ngomong babagan ekonomi lan g. d. p. babagan indonesia lawan cina", "expected_intent": "general:general_quirky", "expected_slots": {"place_name": "cina"}, "split": "test"}
{"utterance": "pira regane saham saka hdfc", "expected_intent": "qa:qa_stock", "expected_slots": {"business_name": "hdfc"}, "split": "test"}
{"utterance": "hipotesis kuwi apa", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "hipotesis"}, "split": "test"}
{"utterance": "google apa sing paling dibutuhke menungsa", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "apa jawaban kanggo alam semesta", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "piro kulit kerang sing didol sally neg pinggir pantai", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "aku mikir aku bisa lelungan ing saindenging jagad sajrone sedina", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "apakah akan ada perang dunia keempat", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "pinten bakal populasi donya sawise rong puluh taun", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "kandani aku gaweane selebriti", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "definisi kacepetan", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "kacepetan"}, "split": "test"}
{"utterance": "sepira gedhene bangunan empire state", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "piro jerone bumi", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "kowe isa ndeleng rega saham saka motorolla", "expected_intent": "qa:qa_stock", "expected_slots": {"business_name": "motorolla"}, "split": "test"}
{"utterance": "jelaske aturan anyar bal balan", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "njlèntrèhaké bab hard disk komputer", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "hard disk komputer"}, "split": "test"}
{"utterance": "samodra endhi tumuju ing bawanane dewe", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "apa sing ditindakake jokowi sajrone urip saben dinane", "expected_intent": "general:general_quirky", "expected_slots": {"person": "jokowi"}, "split": "test"}
{"utterance": "apa angeline duwe film anyar taun iki", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "angeline"}, "split": "test"}
{"utterance": "apa iku kaftan", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "kaftan"}, "split": "test"}
{"utterance": "golek kurs tukeran kanggo dolar amerika kanggo poundsterling", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "poundsterling"}, "split": "test"}
{"utterance": "apa ibukutha meksiko", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "meksiko"}, "split": "test"}
{"utterance": "ngendi fiji iku", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "fiji"}, "split": "test"}
{"utterance": "apa film pisanan morgan freeman", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "morgan freeman"}, "split": "test"}
{"utterance": "apa pink duwe bayi anyar", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "pink"}, "split": "test"}
{"utterance": "kurs euro karo dollar", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "dollar"}, "split": "test"}
{"utterance": "golek dalan", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "fitur saka google pixel", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "arah menyang dufan", "expected_intent": "transport:transport_query", "expected_slots": {"place_name": "dufan"}, "split": "test"}
{"utterance": "mbukak rega saham kanggo jeneng", "expected_intent": "qa:qa_stock", "expected_slots": {}, "split": "test"}
{"utterance": "rincian rego saham", "expected_intent": "qa:qa_stock", "expected_slots": {}, "split": "test"}
{"utterance": "apa bisa dewe lungo ing matahari", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "kapan teater trans tv dibangun", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "teater trans tv"}, "split": "test"}
{"utterance": "menehi katrangan babagan smartphone", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "smartphone"}, "split": "test"}
{"utterance": "olly pirang suwe mahatma gandhi nindakake pertemuane", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "mahatma gandhi"}, "split": "test"}
{"utterance": "sapa sing saiki dadi perdana menteri rusia", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "rusia"}, "split": "test"}
{"utterance": "tulung ngringkeske buku paling anyar george r. r. martin sing judule es lan buku geni", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "ning ngendi laire mahatma gandhi", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "mahatma gandhi"}, "split": "test"}
{"utterance": "pirang rupiah regane", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "rupiah"}, "split": "test"}
{"utterance": "ngabari aku nalika rate poundsterling marang dolar amerika samesthine kaya aku", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "dolar amerika"}, "split": "test"}
{"utterance": "golek rincian geografis panggonan iki", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "tulung ngerteni rega saham saka microsoft ing nasdaq", "expected_intent": "qa:qa_stock", "expected_slots": {"business_name": "microsoft"}, "split": "test"}
{"utterance": "ngandani aku lokasine india", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "india"}, "split": "test"}
{"utterance": "gawe daftar jadwal konser selena gomez", "expected_intent": "lists:lists_createoradd", "expected_slots": {"person": "selena gomez"}, "split": "test"}
{"utterance": "jelaske pie nek pemanan global ki bener", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "kandhani aku babagan munggah lan mudhune rega saham perusahaan saham iki", "expected_intent": "qa:qa_stock", "expected_slots": {}, "split": "test"}
{"utterance": "nerangake carane amerika serikat luwih apik tinimbang negara liya", "expected_intent": "general:general_quirky", "expected_slots": {"place_name": "amerika serikat"}, "split": "test"}
{"utterance": "apa gunung geni aktif paling gedhe ing donya", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "donya"}, "split": "test"}
{"utterance": "sepira suwene lungo menyang jepang saka korea kidul", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "korea kidul"}, "split": "test"}
{"utterance": "wenehi aku katrangan babagan sirkuit tipi", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "sirkuit tipi"}, "split": "test"}
{"utterance": "menehi kula gambaran saka sirkuit smartphone", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "sirkuit smartphone"}, "split": "test"}
{"utterance": "populasi apa ing new york", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "new york"}, "split": "test"}
{"utterance": "ijol-ijolan mata uang", "expected_intent": "qa:qa_currency", "expected_slots": {}, "split": "test"}
{"utterance": "pirang taun anggone abraham lincoln dadi presiden amerika serikat", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "opo angelina jolie ninggalke brad pitt", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "brad pitt"}, "split": "test"}
{"utterance": "film anyar apa sing jennifer lawrence garap", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "jennifer lawrence"}, "split": "test"}
{"utterance": "bagi rong atus papat", "expected_intent": "qa:qa_maths", "expected_slots": {}, "split": "test"}
{"utterance": "kurs valuta manca", "expected_intent": "qa:qa_currency", "expected_slots": {}, "split": "test"}
{"utterance": "nerangake apa iku bal", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "bal"}, "split": "test"}
{"utterance": "rega saham", "expected_intent": "qa:qa_stock", "expected_slots": {}, "split": "test"}
{"utterance": "sebutke tiket pesawar paling murah nang jogja dino iki", "expected_intent": "transport:transport_ticket", "expected_slots": {"place_name": "jogja", "date": "dino iki"}, "split": "test"}
{"utterance": "tulung resep", "expected_intent": "cooking:cooking_recipe", "expected_slots": {}, "split": "test"}
{"utterance": "populasi apa rusia", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "rusia"}, "split": "test"}
{"utterance": "apa kurs euro lan dollar", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "dollar"}, "split": "test"}
{"utterance": "pira taun laire barack obama", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "barack obama"}, "split": "test"}
{"utterance": "njlèntrèhaké item xy", "expected_intent": "qa:qa_definition", "expected_slots": {}, "split": "test"}
{"utterance": "kowe bisa ora ngandhani babagan kerajaan kewan in alas kalimantan", "expected_intent": "general:general_quirky", "expected_slots": {"place_name": "alas kalimantan"}, "split": "test"}
{"utterance": "apa hobi ajay devgn", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "ajay devgn"}, "split": "test"}
{"utterance": "sapa sing dadi perdana menteri rusia", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "rusia"}, "split": "test"}
{"utterance": "ok google apa kuwi presiden", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "presiden"}, "split": "test"}
{"utterance": "nambal untu kuwi persis apa", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "nambal untu"}, "split": "test"}
{"utterance": "wenehno weruh carane dolanan kartu remi", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "dolanan kartu remi"}, "split": "test"}
{"utterance": "ok google ning ngendi sophia vergara manggon", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "sophia vergara"}, "split": "test"}
{"utterance": "ning ngendi sophia vergara manggon", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "sophia vergara"}, "split": "test"}
{"utterance": "piro euro dolar amerika sakiki", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "euro dolar amerika"}, "split": "test"}
{"utterance": "apa ibukutha kazakhstan", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "kazakhstan"}, "split": "test"}
{"utterance": "dibagi pitung puluh enem ing rong bagian", "expected_intent": "qa:qa_maths", "expected_slots": {}, "split": "test"}
{"utterance": "wenehi aku definisi saka tembung pontificate", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "pontificate"}, "split": "test"}
{"utterance": "kurs dolar kanggo euro", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "euro"}, "split": "test"}
{"utterance": "pra regane dolar dibandhingake euro", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "euro"}, "split": "test"}
{"utterance": "piye caranemu bakal njlèntrèhaké bal", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "bal"}, "split": "test"}
{"utterance": "kandhani aku segara paling gedhe ing donya", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "donya"}, "split": "test"}
{"utterance": "opo bedane antara roman karo kalender grigorean", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "kursi make-up apa", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "ngendi tilase mlaku cedhak aku", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {}, "split": "test"}
{"utterance": "elvis senenge numpak apa", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "elvis"}, "split": "test"}
{"utterance": "kerja keras e tenanan", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "rega saham luwih akeh", "expected_intent": "qa:qa_stock", "expected_slots": {}, "split": "test"}
{"utterance": "kanggo mbandingke karo uwong liyo", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "apa filter kapadhetan netral lan aku pengin gradien siji utawa sing padhet uga sing bakal luwih apik ing gaya antarane sekrup ing siji lan kothak", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "tulung kowe isa nerangake makna exorbitant kanggo aku", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "exorbitant"}, "split": "test"}
{"utterance": "pira kurs ing siji poundsterling", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "poundsterling"}, "split": "test"}
{"utterance": "deleng rega saham saka dinky donuts", "expected_intent": "qa:qa_stock", "expected_slots": {"business_name": "dinky donuts"}, "split": "test"}
{"utterance": "apa kahanan iklim ing wilayah kasebut", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "tegese saka", "expected_intent": "qa:qa_definition", "expected_slots": {}, "split": "test"}
{"utterance": "apa negara paling rawan tornado ing amerika", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "amerika"}, "split": "test"}
{"utterance": "tulung nerangake obyek kasebut kanggo aku", "expected_intent": "qa:qa_definition", "expected_slots": {}, "split": "test"}
{"utterance": "ing bidang apa wong kasebut unggul", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "apa ana saham munggah utawa mudhun", "expected_intent": "qa:qa_stock", "expected_slots": {}, "split": "test"}
{"utterance": "ning ngendi laire presiden madison", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "madison"}, "split": "test"}
{"utterance": "kapan album sabanjure mark lanegan metu", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "mark lanegan"}, "split": "test"}
{"utterance": "piye carane megatel sing dinggo bareng rampung minggu kepungkur", "expected_intent": "qa:qa_stock", "expected_slots": {"business_name": "megatel", "date": "minggu kepungkur"}, "split": "test"}
{"utterance": "apa regane saham walmart munggah utawa mudhun", "expected_intent": "qa:qa_stock", "expected_slots": {"business_name": "walmart"}, "split": "test"}
{"utterance": "pira biaya kanggo tuku saham ing apple", "expected_intent": "qa:qa_stock", "expected_slots": {"business_name": "apple"}, "split": "test"}
{"utterance": "kandani aku supaya ngerti babagan kurs rupee menyang dirham", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "dirham"}, "split": "test"}
{"utterance": "critani aku kabar ngenani geografi indonesia", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "indonesia"}, "split": "test"}
{"utterance": "aku butuh rincian bab bruce lee tulung dibantu", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "bruce lee"}, "split": "test"}
{"utterance": "golekono", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "internet tolong", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "pie carane aku mahami wong wadon", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "pira kurs dolar amerika serikat ditrapake kanggo rupee india", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "rupee india"}, "split": "test"}
{"utterance": "katrangan iphone pitu", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "iphone pitu"}, "split": "test"}
{"utterance": "apa film sabanjure denzel washington", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "denzel washington"}, "split": "test"}
{"utterance": "apa tegese kahanan", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "kahanan"}, "split": "test"}
{"utterance": "pira regane siji dolar amerika ning inggris", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "inggris"}, "split": "test"}
{"utterance": "pira umure clint eastwood", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "clint eastwood"}, "split": "test"}
{"utterance": "sepira siji dolar ing poundsterling", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "poundsterling"}, "split": "test"}
{"utterance": "olly saka ngendi gunung rocky miwiti", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "gunung rocky"}, "split": "test"}
{"utterance": "kutub sing luwih adhem kidul utawa lor", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "umure pacare emma watson sing paling anyar", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "emma watson"}, "split": "test"}
{"utterance": "tulung info babagan lisa ann", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "lisa ann"}, "split": "test"}
{"utterance": "olly ning ngendi wong-wong amerika pisanan manggon", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "golek katrangan bab tipi samsung", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "tipi samsung"}, "split": "test"}
{"utterance": "goleki jumlah wong sing manggon ing miami florida", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "miami florida"}, "split": "test"}
{"utterance": "wilayah apa dumunung miami", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "miami"}, "split": "test"}
{"utterance": "siri tulung priksane kurs", "expected_intent": "qa:qa_currency", "expected_slots": {}, "split": "test"}
{"utterance": "opo geologi nggo lokasi iki", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "sepira akeh siji dolar ning euro sing bisa tak tampa", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "euro"}, "split": "test"}
{"utterance": "nemtokake speaker", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "speaker"}, "split": "test"}
{"utterance": "carane i. b. m. nglakoni", "expected_intent": "qa:qa_stock", "expected_slots": {"business_name": "i. b. m."}, "split": "test"}
{"utterance": "dadi helikopter", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "mriksa jaringan sosial ku", "expected_intent": "social:social_query", "expected_slots": {"media_type": "jaringan sosial"}, "split": "test"}
{"utterance": "apa kowe bisa ngunggah selfie paling anyar ing akun facebook", "expected_intent": "social:social_post", "expected_slots": {"media_type": "akun facebook"}, "split": "test"}
{"utterance": "kirim bisnisku ing twitter", "expected_intent": "social:social_post", "expected_slots": {"media_type": "twitter"}, "split": "test"}
{"utterance": "please baleni cemluwitke postingan iki ing twitter", "expected_intent": "social:social_post", "expected_slots": {"media_type": "twitter"}, "split": "test"}
{"utterance": "apa aku duwe panjalukan kanca anyar", "expected_intent": "social:social_query", "expected_slots": {}, "split": "test"}
{"utterance": "kepinginan ing ulang taun", "expected_intent": "social:social_post", "expected_slots": {"event_name": "ulang taun"}, "split": "test"}
{"utterance": "kepinginane manten", "expected_intent": "social:social_post", "expected_slots": {"event_name": "manten"}, "split": "test"}
{"utterance": "sebarke kirimane kanca", "expected_intent": "social:social_post", "expected_slots": {}, "split": "test"}
{"utterance": "kirim ing twitter kunjunganku menyang jepang", "expected_intent": "social:social_post", "expected_slots": {"media_type": "twitter"}, "split": "test"}
{"utterance": "apa sing kedadeyan", "expected_intent": "social:social_query", "expected_slots": {}, "split": "test"}
{"utterance": "njaluk kula nganyari paling anyar saka facebook", "expected_intent": "social:social_query", "expected_slots": {"media_type": "facebook"}, "split": "test"}
{"utterance": "warta teranyar", "expected_intent": "social:social_query", "expected_slots": {}, "split": "test"}
{"utterance": "menehi aku gawe anyar facebook saben telung jam", "expected_intent": "social:social_query", "expected_slots": {"media_type": "facebook", "general_frequency": "saben telung jam"}, "split": "test"}
{"utterance": "kirim hey everyone ing facebook", "expected_intent": "social:social_post", "expected_slots": {"media_type": "facebook"}, "split": "test"}
{"utterance": "sing lagi sing lagi tren saiki", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "apa kabar dino iki", "expected_intent": "news:news_query", "expected_slots": {"date": "dino iki"}, "split": "test"}
{"utterance": "cemluwit sawijine kanggo aku", "expected_intent": "social:social_post", "expected_slots": {"media_type": "cemluwit"}, "split": "test"}
{"utterance": "nuduhake aku kabar paling anyar", "expected_intent": "social:social_query", "expected_slots": {}, "split": "test"}
{"utterance": "apa ana kiriman saka kanca ku mike ing facebook", "expected_intent": "social:social_query", "expected_slots": {"relation": "kanca", "person": "mike", "media_type": "facebook"}, "split": "test"}
{"utterance": "foto perjalananku menyang goa kirim ing instagram", "expected_intent": "social:social_post", "expected_slots": {"media_type": "instagram"}, "split": "test"}
{"utterance": "apa ana sing nyenengi foto ku sing kaitan tak kirim", "expected_intent": "social:social_query", "expected_slots": {}, "split": "test"}
{"utterance": "kirim iki menyang facebook l. o. l.", "expected_intent": "social:social_post", "expected_slots": {"media_type": "facebook"}, "split": "test"}
{"utterance": "mangga pindai media sosialku lan critakake apa sing kedadeyan", "expected_intent": "social:social_query", "expected_slots": {}, "split": "test"}
{"utterance": "kirim aku seneng ing facebook", "expected_intent": "social:social_post", "expected_slots": {"media_type": "facebook"}, "split": "test"}
{"utterance": "ngirim status anyar ing facebook matur yen aku seneng cuaca apik", "expected_intent": "social:social_post", "expected_slots": {"media_type": "facebook", "weather_descriptor": "cuaca apik"}, "split": "test"}
{"utterance": "facebook", "expected_intent": "social:social_query", "expected_slots": {"media_type": "facebook"}, "split": "test"}
{"utterance": "kirim pesen saiki", "expected_intent": "social:social_post", "expected_slots": {}, "split": "test"}
{"utterance": "maca kirim anyar ing feed", "expected_intent": "social:social_query", "expected_slots": {}, "split": "test"}
{"utterance": "olly apa topik media sosial sing lagi panas", "expected_intent": "social:social_query", "expected_slots": {}, "split": "test"}
{"utterance": "ana sing ngetutake aku ing twitter dina iki", "expected_intent": "social:social_query", "expected_slots": {"media_type": "twitter", "date": "dina iki"}, "split": "test"}
{"utterance": "apa aku duwe sembarang pangeling eling saka media sosial", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "ngomong apa sing kedadeyan karo facebook", "expected_intent": "social:social_query", "expected_slots": {"media_type": "facebook"}, "split": "test"}
{"utterance": "aku pengin matur nuwun marang kabeh wong kanggo ucapan ulang taun", "expected_intent": "social:social_post", "expected_slots": {"event_name": "ulang taun"}, "split": "test"}
{"utterance": "ana sing ngomentari statusku", "expected_intent": "social:social_query", "expected_slots": {}, "split": "test"}
{"utterance": "mangga waca feed facebook ku", "expected_intent": "social:social_query", "expected_slots": {"media_type": "facebook"}, "split": "test"}
{"utterance": "apa wae sing anyar ing insta", "expected_intent": "social:social_query", "expected_slots": {"media_type": "insta"}, "split": "test"}
{"utterance": "kirim video iki menyang facebook", "expected_intent": "social:social_post", "expected_slots": {"media_type": "facebook"}, "split": "test"}
{"utterance": "tulung priksa topik tren ing twitter", "expected_intent": "social:social_query", "expected_slots": {"media_type": "twitter"}, "split": "test"}
{"utterance": "sing nggawe facebook live saiki", "expected_intent": "social:social_query", "expected_slots": {"media_type": "facebook live"}, "split": "test"}
{"utterance": "aku ora seneng karo tesco tulungi aku", "expected_intent": "social:social_post", "expected_slots": {"business_name": "tesco"}, "split": "test"}
{"utterance": "olly cemluwit ing apple yen iphone ora bisa murup", "expected_intent": "social:social_post", "expected_slots": {"media_type": "cemluwit", "business_name": "apple"}, "split": "test"}
{"utterance": "mbukak tweet kanggo apple sing baterei iphone tansah lemes", "expected_intent": "social:social_post", "expected_slots": {"media_type": "tweet", "business_name": "apple"}, "split": "test"}
{"utterance": "apa sampeyan bisa ngerteni manawa amazon manawa kasus telpon anyar iki ajur", "expected_intent": "social:social_post", "expected_slots": {"business_name": "amazon"}, "split": "test"}
{"utterance": "apa sampeyan bisa ngubungi samsung lan ujar mesin cuci ku kobong", "expected_intent": "social:social_post", "expected_slots": {"business_name": "samsung"}, "split": "test"}
{"utterance": "tweet lokasi ku saiki", "expected_intent": "social:social_post", "expected_slots": {"media_type": "tweet"}, "split": "test"}
{"utterance": "nerusake keluhan menyang aircel kanggo masalah jaringan", "expected_intent": "social:social_post", "expected_slots": {"business_name": "aircel"}, "split": "test"}
{"utterance": "mbukak twitter ngirim pesen", "expected_intent": "social:social_post", "expected_slots": {"business_name": "twitter"}, "split": "test"}
{"utterance": "ngirime tweet barange elek", "expected_intent": "social:social_post", "expected_slots": {"media_type": "tweet"}, "split": "test"}
{"utterance": "mbukak twitter ketik keluhan ku lan kirim ing layanan konsumen", "expected_intent": "social:social_post", "expected_slots": {"media_type": "twitter", "business_name": "ing layanan konsumen"}, "split": "test"}
{"utterance": "njaluk aku wong a. s. a. p.", "expected_intent": "social:social_post", "expected_slots": {}, "split": "test"}
{"utterance": "loro jempol mudhun ing jeneng perusahaan", "expected_intent": "social:social_post", "expected_slots": {"business_name": "ing jeneng perusahaan"}, "split": "test"}
{"utterance": "ngomong ing aku sing kedadeyan ing instagram", "expected_intent": "social:social_query", "expected_slots": {"media_type": "instagram"}, "split": "test"}
{"utterance": "ngirim cemluwit babagan masalah volume sony", "expected_intent": "social:social_post", "expected_slots": {"media_type": "cemluwit", "business_name": "sony"}, "split": "test"}
{"utterance": "cemluwit ing united airlines aku nesu sampeyan ilang tas", "expected_intent": "social:social_post", "expected_slots": {"media_type": "cemluwit", "business_name": "united airlines"}, "split": "test"}
{"utterance": "aku pengin ngirim cuitan menyang united airlines aku nesu kowe ngilangke tasku", "expected_intent": "social:social_post", "expected_slots": {"media_type": "cuitan", "business_name": "united airlines"}, "split": "test"}
{"utterance": "aku duwe masalah karo burger sandi bisa sampeyan cuitan bk", "expected_intent": "social:social_post", "expected_slots": {"media_type": "cuitan", "business_name": "bk"}, "split": "test"}
{"utterance": "ngirim keluhan ing twitter", "expected_intent": "social:social_post", "expected_slots": {"media_type": "twitter"}, "split": "test"}
{"utterance": "aku ora entuk produk ing wektu ngirim cuitan menyang jcpenney", "expected_intent": "social:social_post", "expected_slots": {"media_type": "cuitan", "business_name": "jcpenney"}, "split": "test"}
{"utterance": "ngomong comcast aku sengit karo deen", "expected_intent": "social:social_post", "expected_slots": {"business_name": "comcast"}, "split": "test"}
{"utterance": "cemluwit complaint kanggo toko buku online", "expected_intent": "social:social_post", "expected_slots": {"media_type": "cemluwit", "business_name": "toko buku online"}, "split": "test"}
{"utterance": "kohls cemluwit babagan kebersihan toko", "expected_intent": "social:social_post", "expected_slots": {"business_name": "kohls", "media_type": "cemluwit"}, "split": "test"}
{"utterance": "tulung cemluwit ing pizzahut aku wis ngenteni kiriman kanggo saiki nomer ora seneng", "expected_intent": "social:social_post", "expected_slots": {"media_type": "cemluwit", "business_name": "ing pizzahut"}, "split": "test"}
{"utterance": "cemluwit anyar kanggo layanan pelanggan", "expected_intent": "social:social_post", "expected_slots": {"media_type": "cemluwit", "business_name": "layanan pelanggan"}, "split": "test"}
{"utterance": "siri mbukak cemluwitan twitter ing potus sucks", "expected_intent": "social:social_post", "expected_slots": {"media_type": "cemluwitan"}, "split": "test"}
{"utterance": "nuduhake kegiatan media sosial ku sing paling anyar", "expected_intent": "social:social_query", "expected_slots": {}, "split": "test"}
{"utterance": "apa ana kedadeyan penting ing media sosial", "expected_intent": "social:social_query", "expected_slots": {}, "split": "test"}
{"utterance": "kirim keluhan liwat tweet kanggo ramayana", "expected_intent": "social:social_post", "expected_slots": {"media_type": "tweet", "business_name": "ramayana"}, "split": "test"}
{"utterance": "olly cuitan walmart lan ngandhani layanan pelanggan sing nggegirisi", "expected_intent": "social:social_post", "expected_slots": {"media_type": "cuitan", "business_name": "walmart"}, "split": "test"}
{"utterance": "cemluwit babagan pizza kadhemen kanggo papa johns", "expected_intent": "social:social_post", "expected_slots": {"media_type": "cemluwit", "business_name": "papa johns"}, "split": "test"}
{"utterance": "tweet komplen seluler kanggo samsung", "expected_intent": "social:social_post", "expected_slots": {"media_type": "tweet", "business_name": "samsung"}, "split": "test"}
{"utterance": "tulung cemluwitke respon negatif ing layanan daikin", "expected_intent": "social:social_post", "expected_slots": {"media_type": "cemluwitke", "business_name": "layanan daikin"}, "split": "test"}
{"utterance": "mangga cemluwit ing layanan dell kanggo nundha layanan", "expected_intent": "social:social_post", "expected_slots": {"media_type": "cemluwit", "business_name": "layanan dell"}, "split": "test"}
{"utterance": "ayo cemluwit keluhan", "expected_intent": "social:social_post", "expected_slots": {"media_type": "cemluwit"}, "split": "test"}
{"utterance": "aku butuh kowe cemluwit keluhan", "expected_intent": "social:social_post", "expected_slots": {"media_type": "cemluwit"}, "split": "test"}
{"utterance": "posting neng facebook aku ngelih", "expected_intent": "social:social_post", "expected_slots": {"media_type": "facebook"}, "split": "test"}
{"utterance": "tulung digatekake masalahe", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "mbusak masalah", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "apa kowe bisa ngetogake delta supaya ngerti aku ora tau nggunaake kuwi maneh", "expected_intent": "social:social_post", "expected_slots": {"business_name": "delta"}, "split": "test"}
{"utterance": "mbukak galeri kirim jeneng gambar", "expected_intent": "social:social_post", "expected_slots": {"media_type": "galeri"}, "split": "test"}
{"utterance": "cemluwit keluhan ing comcast", "expected_intent": "social:social_post", "expected_slots": {"media_type": "cemluwit", "business_name": "ing comcast"}, "split": "test"}
{"utterance": "cemluwit keluhan ing comcast", "expected_intent": "social:social_post", "expected_slots": {"media_type": "cemluwit", "business_name": "ing comcast"}, "split": "test"}
{"utterance": "mbukak jeneng perusahaan lan golek keluhan", "expected_intent": "social:social_post", "expected_slots": {"business_name": "jeneng perusahaan"}, "split": "test"}
{"utterance": "ngirim tweet kaya ngene tumindak lanjut ingkang ala banget dening perusahaan a. b. c. perusahaan ora marem ing akun ku", "expected_intent": "social:social_post", "expected_slots": {"media_type": "tweet"}, "split": "test"}
{"utterance": "cemluwit ing esurance lan marang wong-wong mau padha nyedhot", "expected_intent": "social:social_post", "expected_slots": {"media_type": "cemluwit", "business_name": "esurance"}, "split": "test"}
{"utterance": "please cuitan keluhan kanggo comcast kanggo layanan customer ala", "expected_intent": "social:social_post", "expected_slots": {"media_type": "cuitan", "business_name": "comcast"}, "split": "test"}
{"utterance": "ok google cemluwit apa wong brengsek sing duwe ing pom bensin", "expected_intent": "social:social_post", "expected_slots": {"media_type": "cemluwit"}, "split": "test"}
{"utterance": "cuitan mcdonald kang mudhun reseda wis layanan elek", "expected_intent": "social:social_post", "expected_slots": {"media_type": "cuitan"}, "split": "test"}
{"utterance": "cemluwit keluhan kanggo ing", "expected_intent": "social:social_post", "expected_slots": {"media_type": "cemluwit"}, "split": "test"}
{"utterance": "ngirim laporan menyang layanan pelanggan", "expected_intent": "social:social_post", "expected_slots": {"business_name": "layanan pelanggan"}, "split": "test"}
{"utterance": "bantuan complaint kanggo layanan pelanggan", "expected_intent": "social:social_post", "expected_slots": {"business_name": "layanan pelanggan"}, "split": "test"}
{"utterance": "cemluwit menyang layanan pelanggan google telpon nexus anyarku butuh ditulungi", "expected_intent": "social:social_post", "expected_slots": {"media_type": "cemluwit"}, "split": "test"}
{"utterance": "cemluwit pesen menyang suqcom yen aku isih ngenteni kiriman ku", "expected_intent": "social:social_post", "expected_slots": {"media_type": "cemluwit", "business_name": "suqcom"}, "split": "test"}
{"utterance": "kirim kalebon ku paling anyar kanggo twitter ing n.s.a.", "expected_intent": "social:social_post", "expected_slots": {"media_type": "twitter", "business_name": "ing n.s.a."}, "split": "test"}
{"utterance": "ngirim cuitan keluhan", "expected_intent": "social:social_post", "expected_slots": {"media_type": "cuitan"}, "split": "test"}
{"utterance": "cemluwit menyang apple babagan ora nampa iphone sing dikirim kanggo ndandani minggu kepungkur", "expected_intent": "social:social_post", "expected_slots": {"media_type": "cemluwit", "business_name": "apple"}, "split": "test"}
{"utterance": "tambahake keluhan babagan layanan ing cuitan menyang kebon zaitun", "expected_intent": "social:social_post", "expected_slots": {"media_type": "cuitan", "business_name": "kebon zaitun"}, "split": "test"}
{"utterance": "halo barang sing daktuku saka wong liya wis rusak", "expected_intent": "social:social_post", "expected_slots": {}, "split": "test"}
{"utterance": "cemluwit sing ana serangga ing paket coklat", "expected_intent": "social:social_post", "expected_slots": {"media_type": "cemluwit"}, "split": "test"}
{"utterance": "produk kadaluwarsa ing pasar anyar", "expected_intent": "social:social_post", "expected_slots": {}, "split": "test"}
{"utterance": "cemluwit menyang destination x. l. sing padha mbukak metu saka ukuran cepet banget", "expected_intent": "social:social_post", "expected_slots": {"media_type": "cemluwit", "business_name": "destination x. l."}, "split": "test"}
{"utterance": "cemluwit ing", "expected_intent": "social:social_post", "expected_slots": {"media_type": "cemluwit"}, "split": "test"}
{"utterance": "ayo ngirim twit", "expected_intent": "social:social_post", "expected_slots": {"media_type": "twit"}, "split": "test"}
{"utterance": "kirim keluhan babagan layanan", "expected_intent": "social:social_post", "expected_slots": {}, "split": "test"}
{"utterance": "cuitan pasuryan jijik babagan mcdonalds", "expected_intent": "social:social_post", "expected_slots": {"media_type": "cuitan", "business_name": "mcdonalds"}, "split": "test"}
{"utterance": "nyetel status seneng ing facebook", "expected_intent": "social:social_post", "expected_slots": {"media_type": "facebook"}, "split": "test"}
{"utterance": "olly twit pesen neng telkomsel karo omongono doan nek layanan ku elek", "expected_intent": "social:social_post", "expected_slots": {"media_type": "twit", "business_name": "telkomsel"}, "split": "test"}
{"utterance": "cemluwit ing samsung lan kandhanana supaya ora mateni wong nganggo produke", "expected_intent": "social:social_post", "expected_slots": {"media_type": "cemluwit", "business_name": "samsung"}, "split": "test"}
{"utterance": "ngirim review negatif babagan perusahaan", "expected_intent": "social:social_post", "expected_slots": {}, "split": "test"}
{"utterance": "tambahna surel uwong iki", "expected_intent": "email:email_addcontact", "expected_slots": {"personal_info": "surel"}, "split": "test"}
{"utterance": "surel nang tim aku", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "tim"}, "split": "test"}
{"utterance": "lihaten email sing anyar", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "jawab surel surti", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "surti"}, "split": "test"}
{"utterance": "ngomong yen aku duwe email anyar", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "opo ana sing anyar nang kothak mlebu", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "olly apa ana surel anyar", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "sopo sing aku ketemu dina iki", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "ketemu", "date": "dina iki"}, "split": "test"}
{"utterance": "nang ngendi endah manggon", "expected_intent": "email:email_querycontact", "expected_slots": {"person": "endah", "personal_info": "manggon"}, "split": "test"}
{"utterance": "email cahyo", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "cahyo"}, "split": "test"}
{"utterance": "bales surel nang jono nek aku ora teka bengi iki", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "jono", "timeofday": "bengi iki"}, "split": "test"}
{"utterance": "hendro wis ngirim surel kanggo aku", "expected_intent": "email:email_query", "expected_slots": {"person": "hendro"}, "split": "test"}
{"utterance": "piro nomer telpon kerjo eka", "expected_intent": "email:email_querycontact", "expected_slots": {"personal_info": "nomer telpon kerjo", "person": "eka"}, "split": "test"}
{"utterance": "baleske nyang bapak ngabari aku bakal telat", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "bapak"}, "split": "test"}
{"utterance": "iki alamat email anyar sing arep ditambahke menyang kontak", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "menyang kontak lan ketik alamat email anyar", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "tema", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "gawe email anyar kanggo reynal", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "reynal"}, "split": "test"}
{"utterance": "piye carane iki iso teko nang awak dewe", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "piye carane etok kredit", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "kirim surel nang bos aku", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "bos"}, "split": "test"}
{"utterance": "kirim email anyar sing kedaftar", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "priksa surel seko ibu", "expected_intent": "email:email_query", "expected_slots": {"relation": "ibu"}, "split": "test"}
{"utterance": "prikso pesen pesen aku", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "tilikana menawa aku entuk email anyar seko bapakku", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "cek email anyar ku terus ngomong apa iku sing diomongke koe kabeh", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "bales suwun ming joni", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "joni"}, "split": "test"}
{"utterance": "siapke surel kanggo susan", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "susan"}, "split": "test"}
{"utterance": "aku duwe surel anyar opo", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "ngirim surel iki kanggo mbales surel teranyar", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "golekna asep kurnia nang kontak", "expected_intent": "email:email_querycontact", "expected_slots": {"person": "asep kurnia"}, "split": "test"}
{"utterance": "buka kontak terus telpon junaedi", "expected_intent": "email:email_querycontact", "expected_slots": {"person": "junaedi"}, "split": "test"}
{"utterance": "tanggepi email kadi joni ismail", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "joni ismail"}, "split": "test"}
{"utterance": "email aisyah supaya dheweke ngerti kita saiki ing dalan", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "aisyah"}, "split": "test"}
{"utterance": "opo aku ana surel anyar seko keni", "expected_intent": "email:email_query", "expected_slots": {"person": "keni"}, "split": "test"}
{"utterance": "kirim surel sing paling penting", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "nek seko tempat sing kenal tandhai dadi penting", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "opo subyek pungkasan ibu", "expected_intent": "email:email_query", "expected_slots": {"relation": "ibu"}, "split": "test"}
{"utterance": "opo email terakhir seko kerjoan", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "kekono nomer telpon e putra", "expected_intent": "email:email_querycontact", "expected_slots": {"personal_info": "nomer telpon", "person": "putra"}, "split": "test"}
{"utterance": "opo alamat surel tesi", "expected_intent": "email:email_querycontact", "expected_slots": {"personal_info": "alamat surel", "person": "tesi"}, "split": "test"}
{"utterance": "tambahna surel anyar iki nang kontak", "expected_intent": "email:email_addcontact", "expected_slots": {}, "split": "test"}
{"utterance": "kirim surel nang joni tekon kapan rapat diwiwiti", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "joni", "event_name": "rapat"}, "split": "test"}
{"utterance": "email karen kanggo rapat rego", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "karen", "event_name": "rapat rego"}, "split": "test"}
{"utterance": "cek emails ku kadi sing jenenge", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "cek mbok menowo ana email anyar", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "ngirim email kanggo joko at gmail dot com", "expected_intent": "email:email_sendemail", "expected_slots": {"email_address": "joko at gmail dot com"}, "split": "test"}
{"utterance": "kandani aku nek ana pesen anyar nang kothak mlebu aku", "expected_intent": "email:email_query", "expected_slots": {"email_folder": "kothak mlebu"}, "split": "test"}
{"utterance": "kirim surel nang roma omong nek aku sibuk sesuk", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "roma"}, "split": "test"}
{"utterance": "hey siri kirim email kanggo konco gawe", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "konco gawe"}, "split": "test"}
{"utterance": "tulung gawe email anyar kanggo kanca kerja", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "kanca kerja"}, "split": "test"}
{"utterance": "tulung kirim email ing saleh babagan rapat sesuk", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "saleh", "event_name": "rapat", "date": "sesuk"}, "split": "test"}
{"utterance": "heh opo joko ngirim aku sembarang email akhir akhir iki", "expected_intent": "email:email_query", "expected_slots": {"person": "joko"}, "split": "test"}
{"utterance": "kirim surel nang ismail kanggo jadwal pembukaan kantor", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "ismail"}, "split": "test"}
{"utterance": "delok surel aku mburi dewe", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "aku pengen ngirim surel nang kaluwarga aku opo kowe iso bantu", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "kaluwarga"}, "split": "test"}
{"utterance": "cek gmail", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "meriksa outlook", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "bales nang surel", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "apa aku entuk email anyar saka sepuluh menit terakhir", "expected_intent": "email:email_query", "expected_slots": {"time": "sepuluh menit terakhir"}, "split": "test"}
{"utterance": "email bos ku nek aku telat dino iki kanggo rapat", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "bos", "date": "dino iki", "event_name": "rapat"}, "split": "test"}
{"utterance": "tudokne email terakhir kadi joni", "expected_intent": "email:email_query", "expected_slots": {"person": "joni"}, "split": "test"}
{"utterance": "kirim surel nang putra tekon kabare lan opo sing iso tak rewangi", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "putra"}, "split": "test"}
{"utterance": "opo aku wis nerimo surel anyar sepuluh menit iki", "expected_intent": "email:email_query", "expected_slots": {"time": "sepuluh menit iki"}, "split": "test"}
{"utterance": "opo ani ana ngirim aku surel anyar", "expected_intent": "email:email_query", "expected_slots": {"person": "ani"}, "split": "test"}
{"utterance": "prikso surel sing durung diwaca seko ami", "expected_intent": "email:email_query", "expected_slots": {"person": "ami"}, "split": "test"}
{"utterance": "tolong cek email sing isine daftar kerja", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "kirim surel nang kakang aku lan omong slamet ulang taun perkawinan", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "kakang", "event_name": "slamet ulang taun perkawinan"}, "split": "test"}
{"utterance": "bantuan kudu dikirim nang joni wae", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "joni"}, "split": "test"}
{"utterance": "surel anyar iki tambahna nang kontakku", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "duduhno aku surel paling anyar", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "kekno aku berita anyar", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "bales cepet nang jeki tulung kirim surel", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "jeki"}, "split": "test"}
{"utterance": "prikso jadwal rapat nang surel dino iki", "expected_intent": "email:email_query", "expected_slots": {"event_name": "rapat", "date": "dino iki"}, "split": "test"}
{"utterance": "elinga email iki", "expected_intent": "email:email_addcontact", "expected_slots": {}, "split": "test"}
{"utterance": "kirim balesan", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "sing ngirim aku wingi", "expected_intent": "email:email_query", "expected_slots": {"date": "wingi"}, "split": "test"}
{"utterance": "apa dinda nanggapi", "expected_intent": "email:email_query", "expected_slots": {"person": "dinda"}, "split": "test"}
{"utterance": "apa sampeyan bisa mangsuli yono yen aku bakal sibuk karo proyek sajrone telung minggu ngarep", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "yono", "time": "telung minggu ngarep"}, "split": "test"}
{"utterance": "opo ana surel sing mlebu ing limolas menitan", "expected_intent": "email:email_query", "expected_slots": {"time": "limolas menitan"}, "split": "test"}
{"utterance": "prikso kothak mlebu terus prikso surel sing durung diwaca", "expected_intent": "email:email_query", "expected_slots": {"email_folder": "kothak mlebu"}, "split": "test"}
{"utterance": "ono mail saka tokopedia dino iki", "expected_intent": "email:email_query", "expected_slots": {"person": "tokopedia", "date": "dino iki"}, "split": "test"}
{"utterance": "prikso surel bab gawean aku", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "tulung muat surel anyar seko burhan lan kirim pesen saiki", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "burhan"}, "split": "test"}
{"utterance": "tarik surel kiki lan tulis nek aku bakal ngandani deweke", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "kiki"}, "split": "test"}
{"utterance": "kandani aku bab agnez mo", "expected_intent": "email:email_querycontact", "expected_slots": {"person": "agnez mo"}, "split": "test"}
{"utterance": "buka kontak", "expected_intent": "email:email_addcontact", "expected_slots": {}, "split": "test"}
{"utterance": "apa ana sing tak kenal ulang taun wulan iki", "expected_intent": "email:email_querycontact", "expected_slots": {"event_name": "ulang taun", "date": "wulan iki"}, "split": "test"}
{"utterance": "kontak endi sing rung aku kabari ing rolas wulan", "expected_intent": "email:email_querycontact", "expected_slots": {"time": "rolas wulan"}, "split": "test"}
{"utterance": "kirim surel nang joe at a. o. l. dot com", "expected_intent": "email:email_sendemail", "expected_slots": {"email_address": "joe at a. o. l. dot com"}, "split": "test"}
{"utterance": "prikso surel aku", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "apa aku nampa email anyar saka robi", "expected_intent": "email:email_query", "expected_slots": {"person": "robi"}, "split": "test"}
{"utterance": "nulis email kanggo kulawarga ku matur aku tresna sampeyan kabeh", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "kulawarga"}, "split": "test"}
{"utterance": "buka maneh kotak masuk ku lan ngomong babagan emails anyar", "expected_intent": "email:email_query", "expected_slots": {"email_folder": "kotak masuk"}, "split": "test"}
{"utterance": "carane kanggo tekan susi", "expected_intent": "email:email_querycontact", "expected_slots": {"personal_info": "tekan", "person": "susi"}, "split": "test"}
{"utterance": "miwiti polling kanggo email anyar", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "apa aku duwe email anyar", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "kirim email kanggo cassy sing ana ing dhaftar kaluwarga lan konco", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "cassy", "relation": "konco"}, "split": "test"}
{"utterance": "kirim surel nang suyuti asisten aku batalna kabeh janji temu kanggo sesuk", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "suyuti", "relation": "asisten", "event_name": "janji temu", "date": "sesuk"}, "split": "test"}
{"utterance": "kirim email kanggo ibu ngandhani yen pesta ulang taun agus kuwi ing dino minggu", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "ibu", "event_name": "pesta ulang taun", "person": "agus", "date": "dino minggu"}, "split": "test"}
{"utterance": "kirimono email nggo joko isine matur nuwun", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "joko"}, "split": "test"}
{"utterance": "kirim email kanggo maria", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "maria"}, "split": "test"}
{"utterance": "opo aku entuk email anyar seko sarah", "expected_intent": "email:email_query", "expected_slots": {"person": "sarah"}, "split": "test"}
{"utterance": "tanggepi surel", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "aku arep bales email bobi", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "bobi"}, "split": "test"}
{"utterance": "mriksa email saka sofi", "expected_intent": "email:email_query", "expected_slots": {"person": "sofi"}, "split": "test"}
{"utterance": "mriksa email saka juragan ku", "expected_intent": "email:email_query", "expected_slots": {"relation": "juragan"}, "split": "test"}
{"utterance": "opo aku ngirim surel nang tomi bab kontrol tembakan", "expected_intent": "email:email_query", "expected_slots": {"person": "tomi"}, "split": "test"}
{"utterance": "opo tomi wis surel aku bab amunisi", "expected_intent": "email:email_query", "expected_slots": {"person": "tomi"}, "split": "test"}
{"utterance": "opo aku duwe sembarang email email anyar soko sakjam pungkasan", "expected_intent": "email:email_query", "expected_slots": {"time": "sakjam pungkasan"}, "split": "test"}
{"utterance": "opo aku nrimo surel seko nomer pelacakan", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "ngumpulake email kanggo budi", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "budi"}, "split": "test"}
{"utterance": "alek kirim surel nang ibu", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "ibu"}, "split": "test"}
{"utterance": "kirim ibu email saiki", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "ibu"}, "split": "test"}
{"utterance": "hey aku duwe sembarang emails anyar", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "waca surel anyar", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "kirim email maring jono", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "jono"}, "split": "test"}
{"utterance": "apa aku entuk sembarang email anyar", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "kirim wa lan surel nang dona hei lagi opo dino iki", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "dona", "date": "dino iki"}, "split": "test"}
{"utterance": "email donna rencana kanggo dino iki", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "donna", "date": "dino iki"}, "split": "test"}
{"utterance": "ani wiwiti surel", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "tulis surel", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "nuduhake kabeh email sing dikirim menyang kula saka bosku", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "tulung email paman jono kanthi ing ngisor iki ya aku bisa nggawe", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "paman", "person": "jono"}, "split": "test"}
{"utterance": "pira email anyar sing aku tampa dina iki", "expected_intent": "email:email_query", "expected_slots": {"date": "dina iki"}, "split": "test"}
{"utterance": "kirim surel nang ibu karo bapak tekonna kabare", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "bapak"}, "split": "test"}
{"utterance": "kirimna surel iki nang konco aku", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "konco"}, "split": "test"}
{"utterance": "aku butuh ngirim email iki saiki", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "priksa surel anyar seko pengirim iki", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "nambah email anyar menyang kontakku marno at gmail dot com", "expected_intent": "email:email_addcontact", "expected_slots": {"email_address": "marno at gmail dot com"}, "split": "test"}
{"utterance": "pesen anyar nang newmail at gmail dot com", "expected_intent": "email:email_sendemail", "expected_slots": {"email_address": "newmail at gmail dot com"}, "split": "test"}
{"utterance": "apa aku duwe sembarang email sing durung diwaca", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "opo aku ana surel anyar seko kontak ku q.", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "tambahake email iki menyang kontakku", "expected_intent": "email:email_addcontact", "expected_slots": {}, "split": "test"}
{"utterance": "mriksa emails saka john", "expected_intent": "email:email_query", "expected_slots": {"person": "john"}, "split": "test"}
{"utterance": "balesna email", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "tulung kirim email menyang kanca ku diyah piye kabare", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "kanca", "person": "diyah"}, "split": "test"}
{"utterance": "tambahna alamat surel anyar seklian kirim surel", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "tambahna surel anyar juli susanti", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "juli susanti"}, "split": "test"}
{"utterance": "aku kudu nambahke surel anyar nang kontak aku", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "kandani aku informasi kontak si jojo", "expected_intent": "email:email_querycontact", "expected_slots": {}, "split": "test"}
{"utterance": "periksa nomer ibu", "expected_intent": "email:email_querycontact", "expected_slots": {"relation": "ibu"}, "split": "test"}
{"utterance": "telpon kanggo", "expected_intent": "email:email_querycontact", "expected_slots": {}, "split": "test"}
{"utterance": "sampeyan bisa nulis email menyang chelsea", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "chelsea"}, "split": "test"}
{"utterance": "ngirim wangsulan kanggo malik karo balesan patang atus telung puluh email sing dikirim esuk iki", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "malik", "timeofday": "esuk"}, "split": "test"}
{"utterance": "nanggapi email bos kanthi tembung yen aku bakal mlebu jam papat sore", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "bos"}, "split": "test"}
{"utterance": "oki prikso surel aku", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "opo pegawe perusahaan aku duwe nomer telpon omah", "expected_intent": "email:email_querycontact", "expected_slots": {"relation": "pegawe perusahaan", "personal_info": "nomer telpon omah"}, "split": "test"}
{"utterance": "sapa kontak terakhir sing nelpon aku", "expected_intent": "email:email_querycontact", "expected_slots": {}, "split": "test"}
{"utterance": "aku lagi wae etok surel seko bani aku kudu njawab saiki", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "surel keri dewe kudu cepet dibales", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "apa email sing dikirim telungpuluh menit kepungkur saka ibu", "expected_intent": "email:email_query", "expected_slots": {"time": "telungpuluh menit", "relation": "ibu"}, "split": "test"}
{"utterance": "tulis lan kirim surel nang bos aku", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "bos"}, "split": "test"}
{"utterance": "kandani aku nek ana surel anyar sing durung diwaca", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "kirim surel nang bos omongna aku bakal telat", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "bos"}, "split": "test"}
{"utterance": "ngirim email menyang kontak iki", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "aku butuh email sing kudu tak kirim ning telkom bab masalah layanan ku", "expected_intent": "email:email_sendemail", "expected_slots": {"business_name": "telkom"}, "split": "test"}
{"utterance": "prikso surel teranyar", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "kirim balesan surel keri dewe", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "prikso surel opo wae seko seli", "expected_intent": "email:email_query", "expected_slots": {"person": "seli"}, "split": "test"}
{"utterance": "prikso surel aku kanggo aku", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "opo surel beni ana lampirane", "expected_intent": "email:email_query", "expected_slots": {"person": "beni"}, "split": "test"}
{"utterance": "apa aku entuk sembarang emails anyar kadi dani", "expected_intent": "email:email_query", "expected_slots": {"person": "dani"}, "split": "test"}
{"utterance": "apa aku duwe sembarang surel sing anyar", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "opo ana surel sing teko seko patang ngatus dina iki", "expected_intent": "email:email_query", "expected_slots": {"time": "patang ngatus", "date": "dina iki"}, "split": "test"}
{"utterance": "d aku d i njaluk email saka puan", "expected_intent": "email:email_query", "expected_slots": {"person": "puan"}, "split": "test"}
{"utterance": "beni wis hubungi", "expected_intent": "email:email_query", "expected_slots": {"person": "beni"}, "split": "test"}
{"utterance": "opo aku ana surel anyar nang kothak mlebu aku dino iki", "expected_intent": "email:email_query", "expected_slots": {"email_folder": "kothak mlebu", "date": "dino iki"}, "split": "test"}
{"utterance": "tambahke lowes hardware maring email kontak ku nang pemalang jateng", "expected_intent": "email:email_addcontact", "expected_slots": {"place_name": "pemalang jateng"}, "split": "test"}
{"utterance": "luruh email e mayora terus simpen iku maring daftar kontak ku", "expected_intent": "email:email_addcontact", "expected_slots": {"business_name": "mayora", "list_name": "daftar kontak"}, "split": "test"}
{"utterance": "tulis balesan nang surel ibu aku", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "ibu"}, "split": "test"}
{"utterance": "aku pengen bales surel sarah", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "sarah"}, "split": "test"}
{"utterance": "aku kepingin ngebales email paling anyar", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "pinten kontakku seng aktif utawa kerja ing ngawi", "expected_intent": "email:email_querycontact", "expected_slots": {"place_name": "ngawi"}, "split": "test"}
{"utterance": "kontak aku luwih akeh wedok opo lanang", "expected_intent": "email:email_querycontact", "expected_slots": {}, "split": "test"}
{"utterance": "apa aku nduwe sembarang email anyar", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "prikso surel aku kandani nek ana surel anyar mlebu", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "surel si jono omong aku arep lungo", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "jono"}, "split": "test"}
{"utterance": "kandani nek ana surel anyar sing tak trimo", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "bales surel aku seko bobi jarne do ngerti aku bakal ketemu sesuk", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "bobi", "date": "sesuk"}, "split": "test"}
{"utterance": "tolong cek email anyar kadi yanto", "expected_intent": "email:email_query", "expected_slots": {"person": "yanto"}, "split": "test"}
{"utterance": "tampilna aku surel teranyar seko tokopedia", "expected_intent": "email:email_query", "expected_slots": {"business_name": "tokopedia"}, "split": "test"}
{"utterance": "apa ana sembarang emails anyar klanggo aku dino iki", "expected_intent": "email:email_query", "expected_slots": {"date": "dino iki"}, "split": "test"}
{"utterance": "dekte surel", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "ana email anyar wiwit pungkasan wektu", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "email email ing sedoso menit pungkasan", "expected_intent": "email:email_query", "expected_slots": {"time": "sedoso menit pungkasan"}, "split": "test"}
{"utterance": "jam piro wawancara seko surel wingi", "expected_intent": "email:email_query", "expected_slots": {"date": "wingi"}, "split": "test"}
{"utterance": "priksa email anyar", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "nuduhake kabeh email babagan pelanggaran", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "tampilna informasi kontak joni", "expected_intent": "email:email_querycontact", "expected_slots": {"person": "joni"}, "split": "test"}
{"utterance": "kirim surel nang juanpedro at gmail dot com", "expected_intent": "email:email_sendemail", "expected_slots": {"email_address": "juanpedro at gmail dot com"}, "split": "test"}
{"utterance": "tambahna alamat surel iki nang kontak aku sekalian dikirim surele", "expected_intent": "email:email_addcontact", "expected_slots": {}, "split": "test"}
{"utterance": "gawe email baru tur aku etok alamat surel anyar nang brandon at example dot com", "expected_intent": "email:email_sendemail", "expected_slots": {"email_address": "brandon at example dot com"}, "split": "test"}
{"utterance": "pira nomer telpon pak taxi nang kontak ku", "expected_intent": "email:email_querycontact", "expected_slots": {"personal_info": "nomer telpon", "business_name": "pak taxi"}, "split": "test"}
{"utterance": "opo aku ana surel ket awan", "expected_intent": "email:email_query", "expected_slots": {"timeofday": "awan"}, "split": "test"}
{"utterance": "pratiwi wes ngirim email babagan toni durung", "expected_intent": "email:email_query", "expected_slots": {"person": "toni"}, "split": "test"}
{"utterance": "bip pas aku etok surel seko jono", "expected_intent": "email:email_query", "expected_slots": {"person": "jono"}, "split": "test"}
{"utterance": "priksa kabeh email", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "kirim surel nang id surel sik anyar", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "tambahna surel joni dewa nang kontak aku johndoe at yahoo dot com", "expected_intent": "email:email_addcontact", "expected_slots": {"person": "joni dewa", "email_address": "johndoe at yahoo dot com"}, "split": "test"}
{"utterance": "notifikasi email", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "aku ngandani susan opo ning email ku sing keri dewe", "expected_intent": "email:email_query", "expected_slots": {"person": "susan"}, "split": "test"}
{"utterance": "golekna ningsih nang kontak aku lan kirim deweke surel", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "ningsih"}, "split": "test"}
{"utterance": "email nasri kanggo ulang taun e", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "nasri", "event_name": "ulang taun"}, "split": "test"}
{"utterance": "duwe piro nomer telpon fadil", "expected_intent": "email:email_querycontact", "expected_slots": {"personal_info": "nomer telpon", "person": "fadil"}, "split": "test"}
{"utterance": "surel budi babagan rapat", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "budi", "event_name": "rapat"}, "split": "test"}
{"utterance": "kirim surel nang jaka tekonke deweke mulih jam piro bengi iki", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "jaka", "timeofday": "bengi iki"}, "split": "test"}
{"utterance": "bales surel iki", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "piye surel anyar e", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "apa email anyar isine", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "kirim surel nang jono rembo", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "jono rembo"}, "split": "test"}
{"utterance": "wiwiti surel nang ahmad tohari", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "ahmad tohari"}, "split": "test"}
{"utterance": "apa aku nerima sembarang emails kadi budi darmawan", "expected_intent": "email:email_query", "expected_slots": {"person": "budi darmawan"}, "split": "test"}
{"utterance": "nomer telpon ne jaya", "expected_intent": "email:email_querycontact", "expected_slots": {"personal_info": "nomer telpon", "person": "jaya"}, "split": "test"}
{"utterance": "please sijine alamat email anyar kanggo kontak", "expected_intent": "email:email_addcontact", "expected_slots": {}, "split": "test"}
{"utterance": "opo aku etok surel seko pengirim iki", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "he bales layang sing tak tompo", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "priksa gmail aku kanggo surel anyar", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "delokna surel paling anyar", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "bales surel nang joni", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "joni"}, "split": "test"}
{"utterance": "kirim surel nang mbah wedok omongna awak dewe mampir dina setu sampe ketemu meneh", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "mbah wedok"}, "split": "test"}
{"utterance": "bales surel", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "email maring kontak anyar", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "kirim surel nang kontak anyar", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "kirimno surele", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "prikso kabeh surel penghasilan divisi pajak", "expected_intent": "email:email_query", "expected_slots": {"business_name": "penghasilan divisi pajak"}, "split": "test"}
{"utterance": "tulung goletna nomer kontake kirno lan kabari aku", "expected_intent": "email:email_querycontact", "expected_slots": {"personal_info": "nomer", "person": "kirno"}, "split": "test"}
{"utterance": "duwe nomer telpon kerjone joni", "expected_intent": "email:email_querycontact", "expected_slots": {"personal_info": "nomer telpon kerjone", "person": "joni"}, "split": "test"}
{"utterance": "ana surel anyar seko joni", "expected_intent": "email:email_query", "expected_slots": {"person": "joni"}, "split": "test"}
{"utterance": "kirimna email kanggo galih aku butuh duit cepet saiki", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "galih"}, "split": "test"}
{"utterance": "apa slamet rahardja uwis kirim surel ming aku", "expected_intent": "email:email_query", "expected_slots": {"person": "slamet rahardja"}, "split": "test"}
{"utterance": "kirimno email nang jessica", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "jessica"}, "split": "test"}
{"utterance": "priksa surel anyar", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "iso kirimke email menyang", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "wiwit bales", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "tulis balesan surel mburi dewe", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "bales surel sing mburi dewe ditrimo", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "kirim surel ming ibuk karo takon cuaca nang kono", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "ibuk"}, "split": "test"}
{"utterance": "tulis email kanggo joko at gmail dot com", "expected_intent": "email:email_sendemail", "expected_slots": {"email_address": "joko at gmail dot com"}, "split": "test"}
{"utterance": "kirim surel nang tim at hotmail dot com", "expected_intent": "email:email_sendemail", "expected_slots": {"email_address": "tim at hotmail dot com"}, "split": "test"}
{"utterance": "etokna aku surel anyar", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "golek nindi", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "cepet tambahna surel anyar nang kontak aku seko muhammad", "expected_intent": "email:email_addcontact", "expected_slots": {"person": "muhammad"}, "split": "test"}
{"utterance": "ana surel anyar nang outlook", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "apa ana email anyar sing ditampa sawise jam papat dina iki", "expected_intent": "email:email_query", "expected_slots": {"time": "papat", "date": "dina iki"}, "split": "test"}
{"utterance": "gawe surel nang pegawe pabrik nganggo dokumen teranyar", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "pegawe pabrik"}, "split": "test"}
{"utterance": "prikso surel anyar sing ditrimo seko sara", "expected_intent": "email:email_query", "expected_slots": {"person": "sara"}, "split": "test"}
{"utterance": "kontak kontak", "expected_intent": "email:email_querycontact", "expected_slots": {}, "split": "test"}
{"utterance": "opo surel faiz", "expected_intent": "email:email_querycontact", "expected_slots": {"personal_info": "surel", "person": "faiz"}, "split": "test"}
{"utterance": "delokke aku ana surel sing ditrimo sejam iki", "expected_intent": "email:email_query", "expected_slots": {"time": "sejam iki"}, "split": "test"}
{"utterance": "prikso surel surel anyar", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "kasih ku email terakhir", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "kontak rinci gilang", "expected_intent": "email:email_querycontact", "expected_slots": {"personal_info": "kontak rinci", "person": "gilang"}, "split": "test"}
{"utterance": "gawe surel nang yuli", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "yuli"}, "split": "test"}
{"utterance": "waca daftar email email anyar", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "tampilna dhaptar surel teranyar", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "cek sembarang pesen soko tokobagus", "expected_intent": "email:email_query", "expected_slots": {"person": "tokobagus"}, "split": "test"}
{"utterance": "wangun email kanggo regional v. p.", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "regional v. p."}, "split": "test"}
{"utterance": "ana surel warta penerangan", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "wacana pesenku sing anyar", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "mangga arsip pesen ku sing wis di maca", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "apa sing nang njero kotak masuk ku sejak terakhir tak longok", "expected_intent": "email:email_query", "expected_slots": {"email_folder": "kotak masuk"}, "split": "test"}
{"utterance": "kirim surel nang jono", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "jono"}, "split": "test"}
{"utterance": "delokna surel", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "bales surel nganggo isi konten halo kowe", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "kiki bales surel nganggo judul ngene piye kabarmu", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "konco ku joni wis ngirim kertu undhangan menyang omah sing mentas tuku matur nuwun marang dheweke ing id mail", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "konco", "person": "joni"}, "split": "test"}
{"utterance": "priksa emailku kanggo email anyar saka joko", "expected_intent": "email:email_query", "expected_slots": {"person": "joko"}, "split": "test"}
{"utterance": "apa aku duwe sembarang email anyar kadi joni", "expected_intent": "email:email_query", "expected_slots": {"person": "joni"}, "split": "test"}
{"utterance": "elingke aku nek joni emails aku", "expected_intent": "email:email_query", "expected_slots": {"person": "joni"}, "split": "test"}
{"utterance": "jono wis ngirim aku surel", "expected_intent": "email:email_query", "expected_slots": {"person": "jono"}, "split": "test"}
|