File size: 482,206 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": "deffra fi am pump y bore wythnos yma", "expected_intent": "alarm:alarm_set", "expected_slots": {"time": "pump y bore", "date": "wythnos yma"}, "split": "test"}
{"utterance": "tawel", "expected_intent": "audio:audio_volume_mute", "expected_slots": {}, "split": "test"}
{"utterance": "dim on pinc sydd angen", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"color_type": "pinc"}, "split": "test"}
{"utterance": "ac mae'r tywyllwch wedi cwympo", "expected_intent": "iot:iot_hue_lighton", "expected_slots": {}, "split": "test"}
{"utterance": "olly diffodd goleuadau y llofft", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"house_place": "llofft"}, "split": "test"}
{"utterance": "mae'n frwnt yma gwna peth sŵn", "expected_intent": "iot:iot_cleaning", "expected_slots": {}, "split": "test"}
{"utterance": "hwfra'r cyntedd", "expected_intent": "iot:iot_cleaning", "expected_slots": {"house_place": "cyntedd"}, "split": "test"}
{"utterance": "yr wyf eisiau y statws am ddisgleirdeb fy sgrîn", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "beth sydd ymlaen olly", "expected_intent": "general:general_greet", "expected_slots": {}, "split": "test"}
{"utterance": "faint o'r gloch yw hi yn awstralia", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "awstralia"}, "split": "test"}
{"utterance": "olly dywed wrthyf yr amser pump awr ar ôl g. m. t.", "expected_intent": "datetime:datetime_convert", "expected_slots": {"time_zone": "pump awr ar ôl g. m. t."}, "split": "test"}
{"utterance": "canslwch fy larwm saith o'r gloch y bore", "expected_intent": "alarm:alarm_remove", "expected_slots": {"time": "saith o'r gloch y bore"}, "split": "test"}
{"utterance": "pa larymau sydd gyda fi wedi gosod", "expected_intent": "alarm:alarm_query", "expected_slots": {}, "split": "test"}
{"utterance": "dwedwch wrtha i am fy larymau", "expected_intent": "alarm:alarm_query", "expected_slots": {}, "split": "test"}
{"utterance": "dwi'n hoffi caneuon sinatra", "expected_intent": "music:music_likeness", "expected_slots": {"artist_name": "sinatra"}, "split": "test"}
{"utterance": "gosod disgleirdeb y goleuadau yn uwch", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {}, "split": "test"}
{"utterance": "dywedwch ddyddiad heddiw wrtha i", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "heddiw"}, "split": "test"}
{"utterance": "pa ddyddiad yw hi heddiw", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "heddiw"}, "split": "test"}
{"utterance": "fedri di archebi swshi i swper heno", "expected_intent": "takeaway:takeaway_order", "expected_slots": {"food_type": "swshi", "meal_type": "swper", "timeofday": "heno"}, "split": "test"}
{"utterance": "beth yw rhagolygon yr wythnos", "expected_intent": "weather:weather_query", "expected_slots": {"time": "wythnos"}, "split": "test"}
{"utterance": "beth yw tywydd wythnos yma", "expected_intent": "weather:weather_query", "expected_slots": {"date": "wythnos yma"}, "split": "test"}
{"utterance": "dywed wrthyf sut y bydd y tywydd yr wythnos hon", "expected_intent": "weather:weather_query", "expected_slots": {"date": "yr wythnos hon"}, "split": "test"}
{"utterance": "anfon wên bach i mi", "expected_intent": "general:general_joke", "expected_slots": {}, "split": "test"}
{"utterance": "olly dywed jôc wrtha'i", "expected_intent": "general:general_joke", "expected_slots": {}, "split": "test"}
{"utterance": "beth yw'r dyddiad", "expected_intent": "datetime:datetime_query", "expected_slots": {}, "split": "test"}
{"utterance": "archeba tecawe", "expected_intent": "takeaway:takeaway_order", "expected_slots": {"order_type": "tecawe"}, "split": "test"}
{"utterance": "dwi'n hoffi'r gân hon", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "chwaraewch ef eto os gwelwch yn dda", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "gostwng y goleuadau", "expected_intent": "iot:iot_hue_lightdim", "expected_slots": {}, "split": "test"}
{"utterance": "ydi nhw'n darparu tecawe", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"order_type": "tecawe"}, "split": "test"}
{"utterance": "ydy'n nhw'n dosbarthu", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"order_type": "dosbarthu"}, "split": "test"}
{"utterance": "ydy'n nhw'n dosbarthu adref", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"order_type": "dosbarthu"}, "split": "test"}
{"utterance": "olly ydi nhw'n cludo adref", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"order_type": "cludo"}, "split": "test"}
{"utterance": "gosodwch dihuno dydd iau saith o'r gloch y bore", "expected_intent": "alarm:alarm_set", "expected_slots": {"date": "dydd iau", "time": "saith o'r gloch y bore"}, "split": "test"}
{"utterance": "dweud peth newyddion busnes i mi", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "busnes"}, "split": "test"}
{"utterance": "dywed y newyddion rhyngwladol wrthyf", "expected_intent": "news:news_query", "expected_slots": {"place_name": "rhyngwladol"}, "split": "test"}
{"utterance": "chwarae fy rhestr chwarae roc", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "roc"}, "split": "test"}
{"utterance": "tro fy rhestr chwarae ymlaen a chwarae'r trydydd gân yn y ciw", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "muda'r uchder", "expected_intent": "audio:audio_volume_mute", "expected_slots": {}, "split": "test"}
{"utterance": "faint o'r gloch yw hi", "expected_intent": "datetime:datetime_query", "expected_slots": {}, "split": "test"}
{"utterance": "dileur larwm rydw i newydd osod", "expected_intent": "alarm:alarm_remove", "expected_slots": {}, "split": "test"}
{"utterance": "sut y mae'r tywydd heddiw", "expected_intent": "weather:weather_query", "expected_slots": {"date": "heddiw"}, "split": "test"}
{"utterance": "a ddylwn i ddod ag ambarél fory", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "ambarél", "date": "fory"}, "split": "test"}
{"utterance": "chwarae cerddoriaeth o fy rhestr roc", "expected_intent": "play:play_music", "expected_slots": {"playlist_name": "rhestr roc"}, "split": "test"}
{"utterance": "dwi'n teimlo fel jazz nawr beth amdanoch chi", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "jazz"}, "split": "test"}
{"utterance": "chwarae trac da wrth fy hoff chwaraewr jazz", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "jazz"}, "split": "test"}
{"utterance": "dw'i methu dy glywed", "expected_intent": "audio:audio_volume_up", "expected_slots": {}, "split": "test"}
{"utterance": "dw'i prin yn gallu clywed ti", "expected_intent": "audio:audio_volume_up", "expected_slots": {}, "split": "test"}
{"utterance": "gad i ni gael y goleuadau yn las", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"color_type": "yn las"}, "split": "test"}
{"utterance": "beth yw rhagolygon heddiw yn aberhonddu", "expected_intent": "weather:weather_query", "expected_slots": {"date": "heddiw", "place_name": "aberhonddu"}, "split": "test"}
{"utterance": "beth yw y gyfradd gyfnewid rhwng doler uda a phunt sterling", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "gyfradd gyfnewid rhwng doler uda a phunt sterling"}, "split": "test"}
{"utterance": "goleua'r goleuadau yn y gegin", "expected_intent": "iot:iot_hue_lighton", "expected_slots": {"house_place": "gegin"}, "split": "test"}
{"utterance": "dechrau'r sugnwr llwch", "expected_intent": "iot:iot_cleaning", "expected_slots": {"device_type": "sugnwr llwch"}, "split": "test"}
{"utterance": "trowch y sugnwr llwch ymlaen", "expected_intent": "iot:iot_cleaning", "expected_slots": {"device_type": "sugnwr llwch"}, "split": "test"}
{"utterance": "chwaraewch rhestr chwarae plethyn", "expected_intent": "play:play_music", "expected_slots": {"playlist_name": "rhestr chwarae plethyn"}, "split": "test"}
{"utterance": "siffrwd caneuon gan plethyn", "expected_intent": "play:play_music", "expected_slots": {"player_setting": "siffrwd", "artist_name": "plethyn"}, "split": "test"}
{"utterance": "beth yw'r tywydd", "expected_intent": "weather:weather_query", "expected_slots": {}, "split": "test"}
{"utterance": "ar ba ddiwrnod mae nos galan eleni", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "eleni"}, "split": "test"}
{"utterance": "os gweli di'n dda aros yn dawel am awr arall", "expected_intent": "audio:audio_volume_mute", "expected_slots": {"time": "awr arall"}, "split": "test"}
{"utterance": "paid a siarad heddiw", "expected_intent": "audio:audio_volume_mute", "expected_slots": {"date": "heddiw"}, "split": "test"}
{"utterance": "dywedwch wrthyf y tywydd yn abertawe dau ddiwrnod o nawr", "expected_intent": "weather:weather_query", "expected_slots": {"place_name": "abertawe", "time": "dau ddiwrnod o nawr"}, "split": "test"}
{"utterance": "analluoga fy okug", "expected_intent": "iot:iot_wemo_off", "expected_slots": {"device_type": "okug"}, "split": "test"}
{"utterance": "galluogwch fy mhlwg", "expected_intent": "iot:iot_wemo_on", "expected_slots": {"device_type": "mhlwg"}, "split": "test"}
{"utterance": "saith mlynedd", "expected_intent": "play:play_music", "expected_slots": {"song_name": "saith mlynedd"}, "split": "test"}
{"utterance": "beth yw cyflwr y tywydd yn abertawe", "expected_intent": "weather:weather_query", "expected_slots": {"place_name": "abertawe"}, "split": "test"}
{"utterance": "hoffwn wybod y tywydd yn dinbych-y-pysgod", "expected_intent": "weather:weather_query", "expected_slots": {"place_name": "dinbych-y-pysgod"}, "split": "test"}
{"utterance": "fydd hi yn lawog yfory", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "lawog", "date": "yfory"}, "split": "test"}
{"utterance": "wnaiff hi fwrw glaw yfori", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "fwrw glaw", "date": "yfori"}, "split": "test"}
{"utterance": "ar ba ddiwrnod o'r wythnos mae y cyntaf o ebrill", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "y cyntaf o ebrill"}, "split": "test"}
{"utterance": "beth yw'r amser presennol", "expected_intent": "datetime:datetime_query", "expected_slots": {}, "split": "test"}
{"utterance": "chwarae'r ail gân o ganeuon jess", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "jess"}, "split": "test"}
{"utterance": "os gweli di'n dda dweud y newyddion diweddaraf i mi", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "diffodd y goleuadau", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {}, "split": "test"}
{"utterance": "dw'i eisiau arbed y gerddoriaeth fedri di wneud", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "beth sy'n syfrdanol yn y daily mail", "expected_intent": "news:news_query", "expected_slots": {"media_type": "y daily mail"}, "split": "test"}
{"utterance": "tro'r plwg smart ymlaen", "expected_intent": "iot:iot_wemo_on", "expected_slots": {"device_type": "plwg smart"}, "split": "test"}
{"utterance": "chware cân ar hap o fy rhestr chwarae", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "chwarae gân retro o'm rhestr chwarae", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "retro"}, "split": "test"}
{"utterance": "chwarae unrhyw gân gan al lewis", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "al lewis"}, "split": "test"}
{"utterance": "tynnwch y larwm gyntaf", "expected_intent": "alarm:alarm_remove", "expected_slots": {}, "split": "test"}
{"utterance": "dechrau chwarae", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "a fedri chwarae cerddoriaeth roc am yr awr nesaf", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "roc", "time": "awr nesaf"}, "split": "test"}
{"utterance": "allwch chi ddweud jôc wrtha i", "expected_intent": "general:general_joke", "expected_slots": {}, "split": "test"}
{"utterance": "adrodd jôc ddoniol wrthyf", "expected_intent": "general:general_joke", "expected_slots": {"joke_type": "ddoniol"}, "split": "test"}
{"utterance": "beth ydi'r newyddion diweddaraf", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "tro'r soced plwg un ymlaen", "expected_intent": "iot:iot_wemo_on", "expected_slots": {"device_type": "soced plwg un"}, "split": "test"}
{"utterance": "diffoddwch y goleuadau yn yr ystafell ymolchi", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"house_place": "ystafell ymolchi"}, "split": "test"}
{"utterance": "diffoddwch goleuadau yr ystafell ymolchi", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"house_place": "ystafell ymolchi"}, "split": "test"}
{"utterance": "sut mae'r tywydd nawr", "expected_intent": "weather:weather_query", "expected_slots": {}, "split": "test"}
{"utterance": "agor ffolder bad religion", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "bad religion"}, "split": "test"}
{"utterance": "beth yw'r pennawdau newyddion diweddaraf", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "beth sy'n digwydd yn y newyddion", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "cwyd yr uchder", "expected_intent": "audio:audio_volume_up", "expected_slots": {}, "split": "test"}
{"utterance": "rhed y peiriant coffi", "expected_intent": "iot:iot_coffee", "expected_slots": {"device_type": "peiriant coffi"}, "split": "test"}
{"utterance": "canfod y pris stociau costco diweddaraf", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "pris stociau costco"}, "split": "test"}
{"utterance": "newid goleuadau yr ystafell wely i gwyrdd", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"house_place": "ystafell wely", "color_type": "gwyrdd"}, "split": "test"}
{"utterance": "newid y goleuadau i fod wedi'i pylu", "expected_intent": "iot:iot_hue_lightdim", "expected_slots": {}, "split": "test"}
{"utterance": "chwarae weekend", "expected_intent": "play:play_music", "expected_slots": {"song_name": "weekend"}, "split": "test"}
{"utterance": "pa gamgymeriadau wyt ti'n gwneud fel arfer", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "pwy yw cantor y gân", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "faint o'r gloch yw hi yn efrog newydd", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "efrog newydd"}, "split": "test"}
{"utterance": "ydi hi yn oer y tu allan", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "oer"}, "split": "test"}
{"utterance": "beth sy'n jôc dda", "expected_intent": "general:general_joke", "expected_slots": {"joke_type": "dda"}, "split": "test"}
{"utterance": "agorwch ganeuon gan major lazer", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "major lazer"}, "split": "test"}
{"utterance": "pa larymau sydd wedi eu gosod", "expected_intent": "alarm:alarm_query", "expected_slots": {}, "split": "test"}
{"utterance": "gan edward h dafis", "expected_intent": "weather:weather_query", "expected_slots": {}, "split": "test"}
{"utterance": "paratowch yr archeb cyn gynted a phosib", "expected_intent": "takeaway:takeaway_query", "expected_slots": {}, "split": "test"}
{"utterance": "ydych chi'n gwybod unrhyw jôcs", "expected_intent": "general:general_joke", "expected_slots": {}, "split": "test"}
{"utterance": "gosodwch larwm ar gyfer naw o'r gloch y bore", "expected_intent": "alarm:alarm_set", "expected_slots": {"time": "naw o'r gloch y bore"}, "split": "test"}
{"utterance": "chwarae'r gân wedi'i chanu gan kizzie crawford", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "kizzie crawford"}, "split": "test"}
{"utterance": "chwarae unrhywbeth gan bryn terfel", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "bryn terfel"}, "split": "test"}
{"utterance": "trowch bant larwm wyth y bore", "expected_intent": "alarm:alarm_remove", "expected_slots": {"time": "wyth y bore"}, "split": "test"}
{"utterance": "newid lliw y golau", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {}, "split": "test"}
{"utterance": "chwarae bopeth o'r rhestr chwarae", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "dangoswch newyddion diweddaraf", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "beth yw newyddion newydd heddiw", "expected_intent": "news:news_query", "expected_slots": {"date": "heddiw"}, "split": "test"}
{"utterance": "beth yw'r tywydd presennol", "expected_intent": "weather:weather_query", "expected_slots": {}, "split": "test"}
{"utterance": "dadfuda ar ol", "expected_intent": "audio:audio_volume_up", "expected_slots": {}, "split": "test"}
{"utterance": "canwch y larwm dihuno am wyth o'r gloch y bore dydd sadwrn nesaf os gwelwch yn dda", "expected_intent": "alarm:alarm_set", "expected_slots": {"alarm_type": "dihuno", "date": "sadwrn"}, "split": "test"}
{"utterance": "dechrau y rhestr chwarae", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "os gwelwch yn dda chwarae'r gân duffy radio", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "duffy"}, "split": "test"}
{"utterance": "gosod hysbysiad ar gyfer cael newyddion am fferm ynni gwynt llyr", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "fferm ynni gwynt llyr"}, "split": "test"}
{"utterance": "dechrau y sugnwr llwch", "expected_intent": "iot:iot_cleaning", "expected_slots": {"device_type": "sugnwr llwch"}, "split": "test"}
{"utterance": "diffodd goleuadau'r ystafell", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"house_place": "ystafell"}, "split": "test"}
{"utterance": "amser presennol yn siapan", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "siapan"}, "split": "test"}
{"utterance": "fedri di ostwng y goleuadau", "expected_intent": "iot:iot_hue_lightdim", "expected_slots": {}, "split": "test"}
{"utterance": "mae eisiau dau byrgyr ac un coke archebu’n gloi", "expected_intent": "takeaway:takeaway_order", "expected_slots": {"food_type": "coke"}, "split": "test"}
{"utterance": "cadw fi wedi diweddaru am bris bitcoin", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "bris bitcoin"}, "split": "test"}
{"utterance": "beth yw'r amser nawr yn efrog newydd", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "efrog newydd"}, "split": "test"}
{"utterance": "fedri di droi'r goleuadau yn is", "expected_intent": "iot:iot_hue_lightdim", "expected_slots": {}, "split": "test"}
{"utterance": "dw'i eisiau clywed y newyddion diweddaraf wrth y b. b. c.", "expected_intent": "news:news_query", "expected_slots": {"media_type": "b. b. c."}, "split": "test"}
{"utterance": "rho grynodeb o fanylion y tywydd am yr wythnos", "expected_intent": "weather:weather_query", "expected_slots": {"time": "wythnos"}, "split": "test"}
{"utterance": "diffodd y goleuadau", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {}, "split": "test"}
{"utterance": "faint mor oer yw hi heddiw", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "oer", "date": "heddiw"}, "split": "test"}
{"utterance": "paid siarad nes mod i'n gofyn", "expected_intent": "audio:audio_volume_mute", "expected_slots": {}, "split": "test"}
{"utterance": "hoffwn wybod am y gân yma", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "beth yw rhagolygon y tywydd am yr wythnos hon", "expected_intent": "weather:weather_query", "expected_slots": {"date": "yr wythnos hon"}, "split": "test"}
{"utterance": "fedr'i di rhoi pennawdau newyddion amserol o fy nghyflenwr diweddaraf i mi", "expected_intent": "news:news_query", "expected_slots": {"media_type": "nghyflenwr diweddaraf"}, "split": "test"}
{"utterance": "fedri di gael y newyddion diweddaraf o ffynhonnell dw'i ddim yn arfer mynd ato os gweli di'n dda", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "dweud wrtha'i am y newyddion gwleidyddol diweddaraf", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "gwleidyddol"}, "split": "test"}
{"utterance": "dwi eisiau clywed snow gan y red hot chili peppers", "expected_intent": "play:play_music", "expected_slots": {"song_name": "snow", "artist_name": "red hot chili peppers"}, "split": "test"}
{"utterance": "chwarae harbwr diogel", "expected_intent": "play:play_music", "expected_slots": {"song_name": "harbwr diogel"}, "split": "test"}
{"utterance": "chwarae let me love you gan ariana grande", "expected_intent": "play:play_music", "expected_slots": {"song_name": "let me love you", "artist_name": "ariana grande"}, "split": "test"}
{"utterance": "chwarae caneuon serch", "expected_intent": "play:play_music", "expected_slots": {"song_name": "caneuon serch"}, "split": "test"}
{"utterance": "tywydd mwyn neu drwm", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "drwm"}, "split": "test"}
{"utterance": "cadarnhewch fy ngosodiadau larwm", "expected_intent": "alarm:alarm_query", "expected_slots": {}, "split": "test"}
{"utterance": "hei siri muda'r seinyddion", "expected_intent": "audio:audio_volume_mute", "expected_slots": {}, "split": "test"}
{"utterance": "beth yw'r tymheredd cyfredol yu allan", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "tymheredd"}, "split": "test"}
{"utterance": "chwaraewch rhestr chwarae bob dylan", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "bob dylan"}, "split": "test"}
{"utterance": "hei beth yw y tywydd a ragwelir ar gyfer yfory", "expected_intent": "weather:weather_query", "expected_slots": {"date": "yfory"}, "split": "test"}
{"utterance": "beth yw rhagfynegiadau pôl y b. b. c. am yr darpar etholiadau yn yr unol daleithiau", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "dechrau y robot roomba", "expected_intent": "iot:iot_cleaning", "expected_slots": {"device_type": "robot roomba"}, "split": "test"}
{"utterance": "fy larymau wedi gosod", "expected_intent": "alarm:alarm_query", "expected_slots": {}, "split": "test"}
{"utterance": "gosodiadau larwm", "expected_intent": "alarm:alarm_query", "expected_slots": {}, "split": "test"}
{"utterance": "glanha yr ystafell fyw gyda'r hoover robotaidd rwan", "expected_intent": "iot:iot_cleaning", "expected_slots": {"house_place": "ystafell fyw"}, "split": "test"}
{"utterance": "barn arbed", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "gosodwch larwm ar gyfer wyth o'r gloch y bore", "expected_intent": "alarm:alarm_set", "expected_slots": {"time": "wyth o'r gloch y bore"}, "split": "test"}
{"utterance": "chwaraewch rhyw gerddoriaeth cristnogol", "expected_intent": "play:play_music", "expected_slots": {"music_descriptor": "cristnogol"}, "split": "test"}
{"utterance": "gwna goleuadau'r tŷ yn felyn am chwech yr hwyr", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"house_place": "tŷ", "color_type": "felyn", "time": "chwech yr hwyr"}, "split": "test"}
{"utterance": "diffodd y goleuadau", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {}, "split": "test"}
{"utterance": "tynnwch fy larwm os gwelwch yn dda", "expected_intent": "alarm:alarm_remove", "expected_slots": {}, "split": "test"}
{"utterance": "dwi'n hoffi'r gân yma arbed ef os gweli di'n dda", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "agor lan a chwarae cerddoriaeth o fy rhestr chwarae loncian", "expected_intent": "play:play_music", "expected_slots": {"playlist_name": "rhestr chwarae loncian"}, "split": "test"}
{"utterance": "gosodwch fy larwm ar gyfer saith o'r gloch y bore", "expected_intent": "alarm:alarm_set", "expected_slots": {"time": "saith o'r gloch y bore"}, "split": "test"}
{"utterance": "trowch fy larwm bore mlan", "expected_intent": "alarm:alarm_set", "expected_slots": {"timeofday": "bore"}, "split": "test"}
{"utterance": "beth yw'r gwahaniaeth amser rhwng fan hyn a siapan", "expected_intent": "datetime:datetime_convert", "expected_slots": {"place_name": "siapan"}, "split": "test"}
{"utterance": "sut mae'r tywydd yn nghaerdydd ar hyn o bryd", "expected_intent": "weather:weather_query", "expected_slots": {"place_name": "nghaerdydd"}, "split": "test"}
{"utterance": "cynydda pa mor olau ydi y lampau", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {}, "split": "test"}
{"utterance": "dwi eisiau goleuadau mwy llwm", "expected_intent": "iot:iot_hue_lightdim", "expected_slots": {}, "split": "test"}
{"utterance": "galla'i gael cludfwyd o happy gathering", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"order_type": "cludfwyd", "business_name": "happy gathering"}, "split": "test"}
{"utterance": "erthyglau newyddion am bwnc penodol", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "faint o'r gloch yw hi yn efrog newydd nawr", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "efrog newydd"}, "split": "test"}
{"utterance": "diffodd golau yr ystafell fyw", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"house_place": "ystafell fyw"}, "split": "test"}
{"utterance": "diffodd y golau", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {}, "split": "test"}
{"utterance": "chwarae glaw o fy rhestr chwarae roc", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "glaw", "music_genre": "roc"}, "split": "test"}
{"utterance": "faint o'r gloch yw hi yng nghaerdydd y funud yma", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "nghaerdydd"}, "split": "test"}
{"utterance": "pyla'r goleuadau yn yr ystafell fyw", "expected_intent": "iot:iot_hue_lightdim", "expected_slots": {"house_place": "ystafell fyw"}, "split": "test"}
{"utterance": "agorwch app ffolder os gwelwch yn dda", "expected_intent": "takeaway:takeaway_order", "expected_slots": {}, "split": "test"}
{"utterance": "ffoniwch y bwyty thai agosaf sy'n dosbarthu", "expected_intent": "takeaway:takeaway_order", "expected_slots": {"business_type": "bwyty", "food_type": "thai", "order_type": "dosbarthu"}, "split": "test"}
{"utterance": "dw'i angen crio fedri di chwarae caneuon roc trist i mi", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "roc", "music_descriptor": "trist"}, "split": "test"}
{"utterance": "gostwng uchder y seinydd", "expected_intent": "audio:audio_volume_down", "expected_slots": {}, "split": "test"}
{"utterance": "tro'r hwfer robotaidd ymlaen", "expected_intent": "iot:iot_cleaning", "expected_slots": {"device_type": "hwfer robotaidd"}, "split": "test"}
{"utterance": "rho newyddion diweddaraf chwaraeon i mi", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "chwaraeon"}, "split": "test"}
{"utterance": "casgla hysbysiadau bob awr am newyddion am chwaraeon", "expected_intent": "news:news_query", "expected_slots": {"general_frequency": "bob awr", "news_topic": "chwaraeon"}, "split": "test"}
{"utterance": "ble mae'r gosodiad uchder", "expected_intent": "audio:audio_volume_other", "expected_slots": {}, "split": "test"}
{"utterance": "mwy o oleuni o'r lampau yn y cyntedd", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {"house_place": "cyntedd"}, "split": "test"}
{"utterance": "os gweli'n dda tro ddisgleirdeb y sgrîn i'w eithaf", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {"device_type": "sgrîn", "change_amount": "i'w eithaf"}, "split": "test"}
{"utterance": "paid chwarae metal roc", "expected_intent": "music:music_dislikeness", "expected_slots": {}, "split": "test"}
{"utterance": "hawdd i'w ddefnyddio", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "a fedri gynyddu pa mor llachar ydi hi yn yr ystafell", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {"house_place": "ystafell"}, "split": "test"}
{"utterance": "cer i wefan nation cymru", "expected_intent": "news:news_query", "expected_slots": {"media_type": "nation cymru"}, "split": "test"}
{"utterance": "ar ba ddiwrnod o'r wythnos mae'r pymthegfed o fis mawrth yn cwympo", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "pymthegfed o fis mawrth"}, "split": "test"}
{"utterance": "fy ngwanc yw gwrando ar peth cerddoriaeth canu gwlad", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "canu gwlad"}, "split": "test"}
{"utterance": "cydlyna pob genre caneuon pop", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "pop"}, "split": "test"}
{"utterance": "oes unrhywbeth o bwys yn gwleidyddiaeth", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "gwleidyddiaeth"}, "split": "test"}
{"utterance": "chwarae yr afanc gan bob delyn", "expected_intent": "play:play_music", "expected_slots": {"song_name": "yr afanc", "artist_name": "bob delyn"}, "split": "test"}
{"utterance": "chwarae trons dy dad gan gwibdaith hen fran nesaf", "expected_intent": "play:play_music", "expected_slots": {"song_name": "trons dy dad", "artist_name": "gwibdaith hen fran"}, "split": "test"}
{"utterance": "paratowch estella tân i chwarae nesaf", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "estella", "song_name": "tân"}, "split": "test"}
{"utterance": "chwarae holl ganeuon ar siffrwd", "expected_intent": "play:play_music", "expected_slots": {"player_setting": "siffrwd"}, "split": "test"}
{"utterance": "dw'i angen tipyn o rap", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "rap"}, "split": "test"}
{"utterance": "faint o'r gloch yw hi yn sydney nawr", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "sydney"}, "split": "test"}
{"utterance": "dechrau'r hwfer", "expected_intent": "iot:iot_cleaning", "expected_slots": {"device_type": "hwfer"}, "split": "test"}
{"utterance": "newyddion diweddaraf am ddiwrnod rhyngwladol menywod", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "ddiwrnod rhyngwladol menywod"}, "split": "test"}
{"utterance": "dywed jôc", "expected_intent": "general:general_joke", "expected_slots": {}, "split": "test"}
{"utterance": "pa mor oer fydd bob nos yr wythnos hon", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "oer", "general_frequency": "bob nos", "date": "yr wythnos hon"}, "split": "test"}
{"utterance": "pwy sy'n canu'r gân trên hir du", "expected_intent": "music:music_query", "expected_slots": {"song_name": "trên hir du"}, "split": "test"}
{"utterance": "canfod erthyglau golwg heddiw am trump", "expected_intent": "news:news_query", "expected_slots": {"media_type": "golwg", "date": "heddiw", "news_topic": "trump"}, "split": "test"}
{"utterance": "os yw hi'n godiad haul yn stockholm faint o'r gloch yw hi yn okinawa", "expected_intent": "datetime:datetime_convert", "expected_slots": {"time": "godiad haul", "place_name": "okinawa"}, "split": "test"}
{"utterance": "amser presennol yn efrog newydd", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "efrog newydd"}, "split": "test"}
{"utterance": "anablwch larwm ar gyfer tri o'r gloch y prynhawn", "expected_intent": "alarm:alarm_remove", "expected_slots": {"time": "tri o'r gloch y prynhawn"}, "split": "test"}
{"utterance": "olly newid y golau i las", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"color_type": "las"}, "split": "test"}
{"utterance": "pandora", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "dw'i angen gwybod os yw pizza hut yn dosbarthu", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"business_name": "pizza hut", "order_type": "dosbarthu"}, "split": "test"}
{"utterance": "sut y mae'r tywydd yn debygol o fod yr wythnos hon", "expected_intent": "weather:weather_query", "expected_slots": {"date": "yr wythnos hon"}, "split": "test"}
{"utterance": "dywedwch wrtha i beth yw'r amser presennol", "expected_intent": "datetime:datetime_query", "expected_slots": {}, "split": "test"}
{"utterance": "beth yw'r jôc mwyaf doniol rydych chi'n ei wybod", "expected_intent": "general:general_joke", "expected_slots": {"joke_type": "mwyaf doniol"}, "split": "test"}
{"utterance": "ydy fy larwm wedi ei osod ar gyfer bore fory", "expected_intent": "alarm:alarm_query", "expected_slots": {"timeofday": "bore", "date": "fory"}, "split": "test"}
{"utterance": "os yw hi'n bump o'r gloch y bore yn berlin faint o'r gloch yw hi fan hyn", "expected_intent": "datetime:datetime_convert", "expected_slots": {"time": "bump o'r gloch y bore", "place_name": "berlin"}, "split": "test"}
{"utterance": "dw'i eisiau coffi", "expected_intent": "iot:iot_coffee", "expected_slots": {}, "split": "test"}
{"utterance": "rho newyddion am gwobrau'r academi i mi", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "gwobrau'r academi"}, "split": "test"}
{"utterance": "cyflym", "expected_intent": "audio:audio_volume_up", "expected_slots": {}, "split": "test"}
{"utterance": "dywed wrthyf am bolisi tramor newydd trump", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "bolisi tramor newydd"}, "split": "test"}
{"utterance": "cael rhagolwg hinsawdd heddiw fan yma", "expected_intent": "weather:weather_query", "expected_slots": {"date": "heddiw"}, "split": "test"}
{"utterance": "dechrau yr app gerddoriaeth a chwarae gân i mi", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "dwi'n hoffi caneuon dafydd iwan chwaraewch e", "expected_intent": "music:music_likeness", "expected_slots": {"artist_name": "dafydd iwan"}, "split": "test"}
{"utterance": "fydd hi yn braf y tu allan yr wythnos hon", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "braf", "date": "yr wythnos hon"}, "split": "test"}
{"utterance": "os gweli di'n dda arafa uchder y seinydd", "expected_intent": "audio:audio_volume_down", "expected_slots": {}, "split": "test"}
{"utterance": "os gweli'n dda rho olau cryfach nid wyf yn gyfforddus efo hyn", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {}, "split": "test"}
{"utterance": "beth sydd gennym ar dudalen flaen nation cymru", "expected_intent": "news:news_query", "expected_slots": {"media_type": "nation cymru"}, "split": "test"}
{"utterance": "beth ydyw jôc dda", "expected_intent": "general:general_joke", "expected_slots": {"joke_type": "dda"}, "split": "test"}
{"utterance": "galli di droi'r uchder i fynu", "expected_intent": "audio:audio_volume_up", "expected_slots": {}, "split": "test"}
{"utterance": "diffodd y golau yn ystafell fy mab", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"house_place": "ystafell fy mab"}, "split": "test"}
{"utterance": "ydi pizza hut yn dosbarthu", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"business_name": "pizza hut", "order_type": "dosbarthu"}, "split": "test"}
{"utterance": "byddaf yn sylwgar ran amlaf", "expected_intent": "weather:weather_query", "expected_slots": {}, "split": "test"}
{"utterance": "yr wyf weithiau yn sylwgar", "expected_intent": "weather:weather_query", "expected_slots": {}, "split": "test"}
{"utterance": "os gweli di'n dda gaf i'r tywydd am yfori ym mhen llŷn", "expected_intent": "weather:weather_query", "expected_slots": {"date": "yfori", "place_name": "mhen llŷn"}, "split": "test"}
{"utterance": "fedri di wneud peth coffi i mi olly", "expected_intent": "iot:iot_coffee", "expected_slots": {}, "split": "test"}
{"utterance": "dweud wrtha'i am trump", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "trump"}, "split": "test"}
{"utterance": "gadael i mi wybod pan wnei glywed am ffrainc", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "ffrainc"}, "split": "test"}
{"utterance": "newid lliw y lampau i las olly", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"color_type": "las"}, "split": "test"}
{"utterance": "hoffem olau coch", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"color_type": "coch"}, "split": "test"}
{"utterance": "chwarae y caneuon roc diweddaraf efo sgôr o bedwar neu fwy", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "roc", "music_descriptor": "sgôr o bedwar neu fwy"}, "split": "test"}
{"utterance": "pryd mae pasg yn y flwyddyn dwy fil a deunaw", "expected_intent": "datetime:datetime_query", "expected_slots": {"event_name": "pasg", "date": "dwy fil a deunaw"}, "split": "test"}
{"utterance": "dileuwch y larwm ar gyfer yfory", "expected_intent": "alarm:alarm_remove", "expected_slots": {"date": "yfory"}, "split": "test"}
{"utterance": "gosodwch y larwm bant", "expected_intent": "alarm:alarm_remove", "expected_slots": {}, "split": "test"}
{"utterance": "pa mor boeth yw hi yn llanrwst", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "boeth", "place_name": "llanrwst"}, "split": "test"}
{"utterance": "chwarae yws gwynedd", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "yws gwynedd"}, "split": "test"}
{"utterance": "beth yw newyddion chwaraeon heddiw", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "chwaraeon", "date": "heddiw"}, "split": "test"}
{"utterance": "pa larymau wnes i osod", "expected_intent": "alarm:alarm_query", "expected_slots": {}, "split": "test"}
{"utterance": "chwarae'r caneuon diweddaraf gan kizzy crawford", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "kizzy crawford"}, "split": "test"}
{"utterance": "paid gwneud unrhyw sŵn nes y larwm bore", "expected_intent": "audio:audio_volume_mute", "expected_slots": {"timeofday": "bore"}, "split": "test"}
{"utterance": "modd tawel tan fydda'i adref o'r gwaith", "expected_intent": "audio:audio_volume_mute", "expected_slots": {}, "split": "test"}
{"utterance": "dangos y lliwiau goleuadau sydd ar gael", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {}, "split": "test"}
{"utterance": "beth yw'r tymheredd y tu allan", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "tymheredd"}, "split": "test"}
{"utterance": "archeba bitsa gyda selsig o domino's", "expected_intent": "takeaway:takeaway_order", "expected_slots": {"food_type": "bitsa", "ingredient": "selsig", "business_name": "domino's"}, "split": "test"}
{"utterance": "atgoffa fi fy mod yn hoffi'r gân yna", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "pa newyddion sydd wedi digwydd ar b. b. c. heddiw", "expected_intent": "news:news_query", "expected_slots": {"media_type": "b. b. c.", "date": "heddiw"}, "split": "test"}
{"utterance": "dangoswch yr amser presennol yn yr almaen i fi", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "yr almaen"}, "split": "test"}
{"utterance": "mae'r haul yn tywynnu bydd gyda ni'r tywydd yma am weddill y dydd", "expected_intent": "weather:weather_query", "expected_slots": {"time": "weddill y dydd"}, "split": "test"}
{"utterance": "chwarae fy rhestr chwarae jams haf", "expected_intent": "play:play_music", "expected_slots": {"playlist_name": "rhestr chwarae jams haf"}, "split": "test"}
{"utterance": "beth yw'r tywydd ar gyfer fy lleoliad yr wythnos hon", "expected_intent": "weather:weather_query", "expected_slots": {"date": "yr wythnos hon"}, "split": "test"}
{"utterance": "a fydd hi'n bwrw glaw yr wythnos hon", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "glaw", "date": "yr wythnos hon"}, "split": "test"}
{"utterance": "troi wemo ymlaen", "expected_intent": "iot:iot_wemo_on", "expected_slots": {"device_type": "wemo"}, "split": "test"}
{"utterance": "diffodd y lampiau", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"device_type": "lampiau"}, "split": "test"}
{"utterance": "dechrau y sugnwr llwch", "expected_intent": "iot:iot_cleaning", "expected_slots": {"device_type": "sugnwr llwch"}, "split": "test"}
{"utterance": "dywed jôc am rygbi wrthyf", "expected_intent": "general:general_joke", "expected_slots": {"joke_type": "rygbi"}, "split": "test"}
{"utterance": "beth yw'r diwrnod mis a blwyddyn presennol", "expected_intent": "datetime:datetime_query", "expected_slots": {}, "split": "test"}
{"utterance": "fydd hi yn heulog ddydd mawrth nesaf", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "heulog", "date": "ddydd mawrth"}, "split": "test"}
{"utterance": "gosod atgoffâd am newyddion byd", "expected_intent": "news:news_query", "expected_slots": {"media_type": "newyddion byd"}, "split": "test"}
{"utterance": "a fedri ddweud y newyddion diweddaraf wrthyf", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "dywedwch wrtha i faint o'r gloch yw hi yn los angeles", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "los angeles"}, "split": "test"}
{"utterance": "pan mae pwnc newydd am gwleidyddiaeth yn codi hysbysa fi", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "gwleidyddiaeth"}, "split": "test"}
{"utterance": "eglurhad o'r gân", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "cwyd uchder y gerddoriaeth cyfredol", "expected_intent": "audio:audio_volume_up", "expected_slots": {}, "split": "test"}
{"utterance": "pa amseroedd mae fy larymau yn mynd bant", "expected_intent": "alarm:alarm_query", "expected_slots": {}, "split": "test"}
{"utterance": "dangos y newyddion diweddaraf o'r guardian", "expected_intent": "news:news_query", "expected_slots": {"media_type": "guardian"}, "split": "test"}
{"utterance": "tro'r uchder i lawr", "expected_intent": "audio:audio_volume_down", "expected_slots": {}, "split": "test"}
{"utterance": "tro fe lan olly", "expected_intent": "audio:audio_volume_up", "expected_slots": {}, "split": "test"}
{"utterance": "oes yna unrhyw larymau yn mynd bant heddiw", "expected_intent": "alarm:alarm_query", "expected_slots": {"date": "heddiw"}, "split": "test"}
{"utterance": "pryd y bydd yn bwrw glaw nesaf", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "glaw"}, "split": "test"}
{"utterance": "a fydd hi'n bwrw eira ganol dydd yfory", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "bwrw eira", "timeofday": "ganol dydd", "date": "yfory"}, "split": "test"}
{"utterance": "dwi eisiau gweld yr holl larymau sydd wedi'u gosod", "expected_intent": "alarm:alarm_query", "expected_slots": {}, "split": "test"}
{"utterance": "beth yw'r newyddion mor lan o'r chwech awr diwethaf", "expected_intent": "news:news_query", "expected_slots": {"media_type": "mor lan", "time": "chwech awr diwethaf"}, "split": "test"}
{"utterance": "chwaraewch gerddoriaeth gafodd ei ryddhau rhwng y flwyddyn un mil naw cant a naw deg a dwy fil yn unig", "expected_intent": "play:play_music", "expected_slots": {"date": "dwy fil"}, "split": "test"}
{"utterance": "dileuwch larwm dydd mawrth naw o'r gloch y bore", "expected_intent": "alarm:alarm_remove", "expected_slots": {"date": "dydd mawrth", "time": "naw o'r gloch y bore"}, "split": "test"}
{"utterance": "pa gerddoriaeth sy'n chwarae ar hyn o bryd", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "mae tymheredd yfory am fod yn boeth ie ynteu na", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "boeth", "date": "yfory"}, "split": "test"}
{"utterance": "ie ynteu na bydd y tymheredd yn boeth yfory", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "tymheredd yn boeth", "date": "yfory"}, "split": "test"}
{"utterance": "chwilia am dipyn o jazz llyfn i mi", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "jazz llyfn"}, "split": "test"}
{"utterance": "dyla'i fy sugnwr llwch ddechrau rhwng deg ac unarddeg y bore pob dydd", "expected_intent": "iot:iot_cleaning", "expected_slots": {"device_type": "sugnwr llwch", "time": "unarddeg y bore", "general_frequency": "pob dydd"}, "split": "test"}
{"utterance": "newidiwch modd y gerddoriaeth i roc", "expected_intent": "music:music_settings", "expected_slots": {"player_setting": "newidiwch", "music_genre": "roc"}, "split": "test"}
{"utterance": "gostwng yr uchder o hanner cant y cant", "expected_intent": "audio:audio_volume_down", "expected_slots": {"change_amount": "o hanner cant y cant"}, "split": "test"}
{"utterance": "gosodwch larwm ar gyfer bore dydd llun yn unig am chwech o'r gloch y bore", "expected_intent": "alarm:alarm_set", "expected_slots": {"timeofday": "bore", "date": "dydd llun", "time": "chwech o'r gloch y bore"}, "split": "test"}
{"utterance": "beth ydyw tymheredd isaf abertawe", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "tymheredd", "place_name": "abertawe"}, "split": "test"}
{"utterance": "hei olly dywed wrthyf enw y gân hon sy'n chwarae rwan", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "beth ydych chi'n meddwl", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "chi'n hoffi'r gân", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "diffodd pob golau", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"device_type": "pob golau"}, "split": "test"}
{"utterance": "disgleiria y goleuadau", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {}, "split": "test"}
{"utterance": "rho newyddion am yr arlywydd trump i mi", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "arlywydd trump"}, "split": "test"}
{"utterance": "newyddion diweddaraf ar derfysgaeth", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "derfysgaeth"}, "split": "test"}
{"utterance": "trowch y larwm bant", "expected_intent": "alarm:alarm_remove", "expected_slots": {}, "split": "test"}
{"utterance": "y gân nesaf", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "pyla'r goleuadau", "expected_intent": "iot:iot_hue_lightdim", "expected_slots": {}, "split": "test"}
{"utterance": "diffodd yr ystafell fwyta", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"house_place": "ystafell fwyta"}, "split": "test"}
{"utterance": "diffodd y prif ystafell wely", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"house_place": "prif ystafell wely"}, "split": "test"}
{"utterance": "bydd trump yn ymweld a rwsia yn fuan", "expected_intent": "news:news_query", "expected_slots": {"person": "trump", "place_name": "rwsia"}, "split": "test"}
{"utterance": "dyddiad heddiw", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "heddiw"}, "split": "test"}
{"utterance": "pa dîmoedd sy'n chwarae yn y prif gynghrair heddiw", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "prif gynghrair", "date": "heddiw"}, "split": "test"}
{"utterance": "mwy o oleuadau", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {}, "split": "test"}
{"utterance": "teitl cân", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "teitl", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "dechrau y rhestr chwarae a chwarae cerddoriaeth", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "gwna goffi heb felysydd", "expected_intent": "iot:iot_coffee", "expected_slots": {"coffee_type": "heb felysydd"}, "split": "test"}
{"utterance": "dw'i eisiau bwyta rhywbeth sbeislyd", "expected_intent": "takeaway:takeaway_order", "expected_slots": {"food_type": "sbeislyd"}, "split": "test"}
{"utterance": "archeba un pitsa o pizza hut", "expected_intent": "takeaway:takeaway_order", "expected_slots": {"food_type": "pitsa", "business_name": "pizza hut"}, "split": "test"}
{"utterance": "chwarae albwm coldplay", "expected_intent": "play:play_music", "expected_slots": {"playlist_name": "coldplay"}, "split": "test"}
{"utterance": "fedri di lwpio'r rhestr chwarae themâu", "expected_intent": "play:play_music", "expected_slots": {"playlist_name": "themâu"}, "split": "test"}
{"utterance": "pryd mae fy larwm yn mynd bant", "expected_intent": "alarm:alarm_query", "expected_slots": {}, "split": "test"}
{"utterance": "adroddiad tywydd ar hyn o bryd", "expected_intent": "weather:weather_query", "expected_slots": {}, "split": "test"}
{"utterance": "pa fis yw hi heddiw", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "heddiw"}, "split": "test"}
{"utterance": "cân gwych am deithio i'r gwaith", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "adia'r gân i rhestr rhedeg", "expected_intent": "music:music_likeness", "expected_slots": {"playlist_name": "rhedeg"}, "split": "test"}
{"utterance": "tyrd ac uchafbwyntiau'r gêm i mi", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "uchafbwyntiau'r gêm"}, "split": "test"}
{"utterance": "dihunwch fi am bump o'r gloch y bore", "expected_intent": "alarm:alarm_set", "expected_slots": {"time": "bump o'r gloch y bore"}, "split": "test"}
{"utterance": "trowch ymlaen y sugnwr llwch", "expected_intent": "iot:iot_cleaning", "expected_slots": {"device_type": "sugnwr llwch"}, "split": "test"}
{"utterance": "bydd cwymp yn y tymheredd erbyn heno", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "tymheredd", "timeofday": "heno"}, "split": "test"}
{"utterance": "chwarae'r teitl y gân", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "glanha fy nhŷ", "expected_intent": "iot:iot_cleaning", "expected_slots": {"house_place": "nhŷ"}, "split": "test"}
{"utterance": "newid y golau i lliw pinc", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"color_type": "pinc"}, "split": "test"}
{"utterance": "chwarae rhestr chwarae gwallgof i mi yn fy ap spotify", "expected_intent": "play:play_music", "expected_slots": {"playlist_name": "gwallgof"}, "split": "test"}
{"utterance": "gosodwch larwm am chwech o'r gloch y bore", "expected_intent": "alarm:alarm_set", "expected_slots": {"time": "chwech o'r gloch y bore"}, "split": "test"}
{"utterance": "fedri di droi'r goleuadau i fyny", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {}, "split": "test"}
{"utterance": "fedri di agor fy itunes", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "chwaraewch tebot piws", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "tebot piws"}, "split": "test"}
{"utterance": "chwarae gyda ti", "expected_intent": "play:play_music", "expected_slots": {"song_name": "gyda ti"}, "split": "test"}
{"utterance": "lleiha'r goleuadau yn y gegin", "expected_intent": "iot:iot_hue_lightdim", "expected_slots": {"house_place": "gegin"}, "split": "test"}
{"utterance": "gwneud coffi nawr", "expected_intent": "iot:iot_coffee", "expected_slots": {}, "split": "test"}
{"utterance": "beth yw'r gân sy'n chwarae ar hyn o bryd", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "olly ble mae fy mwyd", "expected_intent": "takeaway:takeaway_query", "expected_slots": {}, "split": "test"}
{"utterance": "dw'i byth eisiau clywed y gân yna eto", "expected_intent": "music:music_dislikeness", "expected_slots": {}, "split": "test"}
{"utterance": "rhowch y gân yna yn fy rhestr ffefrynau", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "dw'i eisiau peth cerddoriaeth jazz i chwarae", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "jazz"}, "split": "test"}
{"utterance": "dw'i eisiau mwy o olau", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {}, "split": "test"}
{"utterance": "cwyd y golau", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {}, "split": "test"}
{"utterance": "alexa hoffem glywed unrhyw gerddoriaeth clasurol heblaw am bach neu schubert", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "clasurol", "artist_name": "schubert"}, "split": "test"}
{"utterance": "tyrd a theitl y gerddoriaeth sy'n chwarae i mi", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "beth yw'r gerddoriaeth sy'n chwarae ar hyn o bryd", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "beth sy'n mynd ymlaen yn y byd dyddiau yma", "expected_intent": "news:news_query", "expected_slots": {"place_name": "byd"}, "split": "test"}
{"utterance": "chwarae summer lovin nesaf", "expected_intent": "play:play_music", "expected_slots": {"song_name": "summer lovin"}, "split": "test"}
{"utterance": "dywed wrtha'i am y digwyddiadau cyfredol yn fy nhref enedigol", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"place_name": "nhref enedigol"}, "split": "test"}
{"utterance": "dyla'i lliw y golau fod wedi'i leihau", "expected_intent": "iot:iot_hue_lightdim", "expected_slots": {}, "split": "test"}
{"utterance": "deffra fi", "expected_intent": "alarm:alarm_set", "expected_slots": {}, "split": "test"}
{"utterance": "beth yw dyddiad heuldro'r gaeaf dwy flynedd o nawr", "expected_intent": "datetime:datetime_query", "expected_slots": {"event_name": "heuldro'r gaeaf", "time": "dwy flynedd"}, "split": "test"}
{"utterance": "dwi angen gwybod yr amser y funud yma beth yw e", "expected_intent": "datetime:datetime_query", "expected_slots": {}, "split": "test"}
{"utterance": "dwi'n mynd i gysgu nawr", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {}, "split": "test"}
{"utterance": "sut mae'r archeb bwyd yn mynd", "expected_intent": "takeaway:takeaway_query", "expected_slots": {}, "split": "test"}
{"utterance": "pryd gallwn ni fwyta", "expected_intent": "takeaway:takeaway_query", "expected_slots": {}, "split": "test"}
{"utterance": "ydi swper yn barod eto", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"meal_type": "swper"}, "split": "test"}
{"utterance": "gosodwch larwm ar gyfer yfory am chwech o'r gloch yn y bore", "expected_intent": "alarm:alarm_set", "expected_slots": {"date": "yfory", "time": "chwech", "timeofday": "bore"}, "split": "test"}
{"utterance": "dihunwch fi mewn hanner awr", "expected_intent": "alarm:alarm_set", "expected_slots": {"time": "hanner awr"}, "split": "test"}
{"utterance": "trowch fy larwm bant", "expected_intent": "alarm:alarm_remove", "expected_slots": {}, "split": "test"}
{"utterance": "pwy sy'n cany ysbryd solfa", "expected_intent": "music:music_query", "expected_slots": {"song_name": "ysbryd solfa"}, "split": "test"}
{"utterance": "beth yw y tywydd ar hyn o bryd yn fy nghartref", "expected_intent": "weather:weather_query", "expected_slots": {"place_name": "fy nghartref"}, "split": "test"}
{"utterance": "pa ddiwrnod o'r wythnos oedd rhagfyr y pedwerydd mil naw wyth dau", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "rhagfyr y pedwerydd mil naw wyth dau"}, "split": "test"}
{"utterance": "pennawdau'r b. b. c.", "expected_intent": "news:news_query", "expected_slots": {"media_type": "b. b. c."}, "split": "test"}
{"utterance": "penawdau newyddion byd y b. b. c.", "expected_intent": "news:news_query", "expected_slots": {"media_type": "byd y b. b. c."}, "split": "test"}
{"utterance": "tawelwch am ddwy awr", "expected_intent": "audio:audio_volume_mute", "expected_slots": {"time": "ddwy awr"}, "split": "test"}
{"utterance": "muda o nawr ymlaen", "expected_intent": "audio:audio_volume_mute", "expected_slots": {}, "split": "test"}
{"utterance": "addasa'n dawel", "expected_intent": "audio:audio_volume_mute", "expected_slots": {}, "split": "test"}
{"utterance": "wwwwww", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "y tywydd yng nghaerdydd", "expected_intent": "weather:weather_query", "expected_slots": {"place_name": "nghaerdydd"}, "split": "test"}
{"utterance": "chwarae ceidwad y goleudy gan elin fflur", "expected_intent": "play:play_music", "expected_slots": {"song_name": "ceidwad y goleudy", "artist_name": "elin fflur"}, "split": "test"}
{"utterance": "diffodd golau y gegin", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"house_place": "gegin"}, "split": "test"}
{"utterance": "dw'i methu gweld tro'r goleuadau i fynu", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {}, "split": "test"}
{"utterance": "darllen y newyddion rhyngwladol diweddaraf i mi", "expected_intent": "news:news_query", "expected_slots": {"place_name": "rhyngwladol"}, "split": "test"}
{"utterance": "fedra'i archebu cludfwyd o agnellis", "expected_intent": "takeaway:takeaway_order", "expected_slots": {"order_type": "cludfwyd", "business_name": "agnellis"}, "split": "test"}
{"utterance": "oes angen siwmper arna i heddiw", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "siwmper", "date": "heddiw"}, "split": "test"}
{"utterance": "dangos y lliw pylaf i mi", "expected_intent": "iot:iot_hue_lightdim", "expected_slots": {}, "split": "test"}
{"utterance": "lliw y golau yn y swyddfa", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {"house_place": "swyddfa"}, "split": "test"}
{"utterance": "dywed wrthyf sut y mae'r tywydd yn llanddaniel fab môn ar hyn o bryd", "expected_intent": "weather:weather_query", "expected_slots": {"place_name": "llanddaniel fab môn"}, "split": "test"}
{"utterance": "chwarae caneuon dwi wedi prynu a ffefrynnu os gwelwch yn dda", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "dw'i angen newid lliw goleuadau fy nhŷ i las", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"house_place": "nhŷ", "color_type": "las"}, "split": "test"}
{"utterance": "dechreua goffi am chwech y bore", "expected_intent": "iot:iot_coffee", "expected_slots": {"time": "chwech y bore"}, "split": "test"}
{"utterance": "cadw fi wedi diweddaru gyda'r sgoriau rygbi heddiw", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "sgoriau rygbi", "date": "heddiw"}, "split": "test"}
{"utterance": "diffodd y goleuadau nawr", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {}, "split": "test"}
{"utterance": "mae hi'n saith o'r gloch y bore mewn amser safonol pasiffig", "expected_intent": "datetime:datetime_convert", "expected_slots": {"time": "saith o'r gloch y bore", "time_zone": "pasiffig"}, "split": "test"}
{"utterance": "alexa gostwng y goleuadau lawr i saith", "expected_intent": "iot:iot_hue_lightdim", "expected_slots": {"change_amount": "i saith"}, "split": "test"}
{"utterance": "beth yw'r newyddion am heddiw", "expected_intent": "news:news_query", "expected_slots": {"date": "heddiw"}, "split": "test"}
{"utterance": "alexa rho pennawdau y newyddion i mi", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "sut dywydd fydd hi ddydd gwener", "expected_intent": "weather:weather_query", "expected_slots": {"date": "ddydd gwener"}, "split": "test"}
{"utterance": "sut mae'r tywydd fory", "expected_intent": "weather:weather_query", "expected_slots": {"date": "fory"}, "split": "test"}
{"utterance": "arddangoswch amser lleol caerdydd ar y foment hon", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "caerdydd"}, "split": "test"}
{"utterance": "ychwanegwch larwm ar gyfer bore fory am chwech o'r gloch y bore", "expected_intent": "alarm:alarm_set", "expected_slots": {"timeofday": "bore", "date": "fory", "time": "chwech o'r gloch y bore"}, "split": "test"}
{"utterance": "un pecyn o nwdls gwna fe'n gludfwyd", "expected_intent": "takeaway:takeaway_order", "expected_slots": {"food_type": "nwdls", "order_type": "gludfwyd"}, "split": "test"}
{"utterance": "gwna archeb am un pecyn o nwdls a gwna fe'n archeb cludfwyd", "expected_intent": "takeaway:takeaway_order", "expected_slots": {"food_type": "nwdls", "order_type": "cludfwyd"}, "split": "test"}
{"utterance": "rho liwiau tywyll yn lle y rhai golau yn y tŷ", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"color_type": "tywyll", "house_place": "tŷ"}, "split": "test"}
{"utterance": "olly rho oleuadau tywyll yn y tŷ yn lle rhai golau", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"color_type": "tywyll", "house_place": "tŷ"}, "split": "test"}
{"utterance": "pa fath o gerddoriaeth yw e", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "o ba ffilm mae'r gerddoriaeth yn dod a beth yw enw'r gerddoriaeth", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "pa gân sydd ar y radio", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "gwybodaeth cân", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "beth sy'n digwydd o gwmpas y byd", "expected_intent": "news:news_query", "expected_slots": {"place_name": "byd"}, "split": "test"}
{"utterance": "rho'r newyddion diweddaraf i mi", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "pwy ysgrifennodd y gân hon", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "dechrau caneuon celine dion", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "celine dion"}, "split": "test"}
{"utterance": "yn dydi e'n gân hyfryd arbed hwn i mi", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "rho mwy o olau i mi", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {}, "split": "test"}
{"utterance": "chwilia am fwy o ganeuon gan y band", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "allwch chi ddweud wrtha i beth yw'r amser yng nghaerdydd", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "nghaerdydd"}, "split": "test"}
{"utterance": "dw'i eisiau archebu pitsa o pizza express", "expected_intent": "takeaway:takeaway_order", "expected_slots": {"food_type": "pitsa", "business_name": "pizza express"}, "split": "test"}
{"utterance": "rhowch ragolwg heddiw i mi ar gyfer dinas caerdydd", "expected_intent": "weather:weather_query", "expected_slots": {"date": "heddiw", "place_name": "dinas caerdydd"}, "split": "test"}
{"utterance": "sut mae fy archeb", "expected_intent": "takeaway:takeaway_query", "expected_slots": {}, "split": "test"}
{"utterance": "dechrau y sugnwr llwch robot", "expected_intent": "iot:iot_cleaning", "expected_slots": {"device_type": "sugnwr llwch robot"}, "split": "test"}
{"utterance": "danfon newyddion technoleg", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "technoleg"}, "split": "test"}
{"utterance": "diffodd golau y sied", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"house_place": "sied"}, "split": "test"}
{"utterance": "dwi'n teimlo fel cael cawl i ginio o fwyty happy gathering cawl manchow cyw iâr", "expected_intent": "takeaway:takeaway_order", "expected_slots": {"food_type": "cawl", "meal_type": "ginio", "business_type": "fwyty", "business_name": "happy gathering"}, "split": "test"}
{"utterance": "saith cant", "expected_intent": "datetime:datetime_convert", "expected_slots": {}, "split": "test"}
{"utterance": "ydy'r amser yn gywir ar gyfer fy lleoliad", "expected_intent": "datetime:datetime_query", "expected_slots": {}, "split": "test"}
{"utterance": "galwa am gludfwyd", "expected_intent": "takeaway:takeaway_order", "expected_slots": {"order_type": "gludfwyd"}, "split": "test"}
{"utterance": "newyddion dyddiol", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "beth yw dyddiad heddiw", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "heddiw"}, "split": "test"}
{"utterance": "siri beth yw dyddiad heddiw", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "heddiw"}, "split": "test"}
{"utterance": "sut ydw i'n gosod fy mheiriant coffi i wneud coffi", "expected_intent": "iot:iot_coffee", "expected_slots": {"device_type": "mheiriant coffi"}, "split": "test"}
{"utterance": "sut ydw i'n cychwyn y sugnwr llwch robot", "expected_intent": "iot:iot_cleaning", "expected_slots": {"device_type": "sugnwr llwch robot"}, "split": "test"}
{"utterance": "chwarae roc clasurol", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "roc clasurol"}, "split": "test"}
{"utterance": "alexa chwarae gân rap a roc i fi un ar ôl y llall", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "roc"}, "split": "test"}
{"utterance": "gwna golau'r ystafell yn las", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"house_place": "ystafell", "color_type": "las"}, "split": "test"}
{"utterance": "gwna goleuadau yr ystafell wely yn goch a goleuadau y neuadd y lliw arferol", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"house_place": "neuadd", "color_type": "arferol"}, "split": "test"}
{"utterance": "sut mae'r tywydd", "expected_intent": "weather:weather_query", "expected_slots": {}, "split": "test"}
{"utterance": "unrhywbeth diddorol o newyddion bob", "expected_intent": "news:news_query", "expected_slots": {"media_type": "newyddion bob"}, "split": "test"}
{"utterance": "newid y goleuadau yn fy nghartref i wyrdd", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"house_place": "nghartref", "color_type": "wyrdd"}, "split": "test"}
{"utterance": "chwarae cerddoriaeth random", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "gosod larwm ar gyfer hanner awr wedi chwech y bore dydd gwener nesaf", "expected_intent": "alarm:alarm_set", "expected_slots": {"time": "hanner awr wedi chwech y bore", "date": "gwener"}, "split": "test"}
{"utterance": "diffodd fy soced wemo", "expected_intent": "iot:iot_wemo_off", "expected_slots": {"device_type": "soced wemo"}, "split": "test"}
{"utterance": "chwarae fy rhestr chwarae dawns spotify", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "diffodd golau y cyntedd", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"house_place": "cyntedd"}, "split": "test"}
{"utterance": "beth yw'r newyddion diweddaraf o c. n. n.", "expected_intent": "news:news_query", "expected_slots": {"media_type": "c. n. n."}, "split": "test"}
{"utterance": "cwyd y disgleirdeb", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {}, "split": "test"}
{"utterance": "dweud wrtha'i am y newyddion amgylcheddol diweddaraf", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "amgylcheddol"}, "split": "test"}
{"utterance": "chwaraewch fy hoff gerddoriaeth nawr", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "dw'i wedi canslo'r archeb gyda mcdonald's ydi e wedi mynd twyddo", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"business_name": "mcdonald's"}, "split": "test"}
{"utterance": "rhagolygon tywydd presennol", "expected_intent": "weather:weather_query", "expected_slots": {}, "split": "test"}
{"utterance": "a fydd angen i mi wisgo siaced dydd mercher nesaf", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "siaced", "date": "dydd mercher"}, "split": "test"}
{"utterance": "dangos newyddion am trump i mi", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "trump"}, "split": "test"}
{"utterance": "dangos newyddion am yr amgylchedd i mi", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "amgylchedd"}, "split": "test"}
{"utterance": "a allech chi greu sianel pandora ar gyfer adele", "expected_intent": "music:music_settings", "expected_slots": {"artist_name": "adele"}, "split": "test"}
{"utterance": "newyddion mwyaf diweddar o'r ardal", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "wnes i gofio gosod larwm atgoffa ar gyfer fy apwyntiad meddyg nesaf", "expected_intent": "alarm:alarm_query", "expected_slots": {"event_name": "apwyntiad meddyg"}, "split": "test"}
{"utterance": "ydi hi'n bwrw glaw heno", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "bwrw glaw", "timeofday": "heno"}, "split": "test"}
{"utterance": "a wnaiff y tymheredd aros tua'r un fath ynteu a yw am fynd yn oerach", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "tymheredd"}, "split": "test"}
{"utterance": "ydy'r archeb olaf yn barod", "expected_intent": "takeaway:takeaway_query", "expected_slots": {}, "split": "test"}
{"utterance": "diffodd y soced", "expected_intent": "iot:iot_wemo_off", "expected_slots": {"device_type": "soced"}, "split": "test"}
{"utterance": "chwarae gerddoriaeth gwerin i mi os gweli'n dda", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "gwerin"}, "split": "test"}
{"utterance": "gadewch i ni glywed peth indi roc ocê", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "indi roc"}, "split": "test"}
{"utterance": "olly dwi'n teimlo fel dawnsio chwarae cerdd dant i fi", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "cerdd dant"}, "split": "test"}
{"utterance": "olly yr wyf angen clwyed rhai caneuon digalon heddiw", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "caneuon digalon", "date": "heddiw"}, "split": "test"}
{"utterance": "diffodd y goleuadau", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {}, "split": "test"}
{"utterance": "dwi eisiau clywed mr duw", "expected_intent": "play:play_music", "expected_slots": {"song_name": "mr duw"}, "split": "test"}
{"utterance": "oes gen ti jôc ddoniol i mi", "expected_intent": "general:general_joke", "expected_slots": {"joke_type": "ddoniol"}, "split": "test"}
{"utterance": "rho'r newyddion o'r b. b. c. i mi", "expected_intent": "news:news_query", "expected_slots": {"media_type": "b. b. c."}, "split": "test"}
{"utterance": "dechrau pot o goffi", "expected_intent": "iot:iot_coffee", "expected_slots": {}, "split": "test"}
{"utterance": "dw'i angen paned o goffi", "expected_intent": "iot:iot_coffee", "expected_slots": {}, "split": "test"}
{"utterance": "chwaraea gerddoriaeth o'r genre jazz", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "jazz"}, "split": "test"}
{"utterance": "faint mor hir tan bod fy archeb yn barod", "expected_intent": "takeaway:takeaway_query", "expected_slots": {}, "split": "test"}
{"utterance": "diffodd y goleuadau", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {}, "split": "test"}
{"utterance": "diffodd y goleuadau", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {}, "split": "test"}
{"utterance": "a ddylwn i fynd ag ymbarél heddiw", "expected_intent": "weather:weather_query", "expected_slots": {"date": "heddiw"}, "split": "test"}
{"utterance": "oes unrhyw gyngherddau yn dod i fynu", "expected_intent": "music:music_likeness", "expected_slots": {"event_name": "gyngherddau"}, "split": "test"}
{"utterance": "chwarae peth cerddoriaeth jazz os gwelwch yn dda", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "cerddoriaeth jazz"}, "split": "test"}
{"utterance": "tawela'r seinyddion", "expected_intent": "audio:audio_volume_mute", "expected_slots": {}, "split": "test"}
{"utterance": "tawela'r uchder ar y seinyddion", "expected_intent": "audio:audio_volume_mute", "expected_slots": {}, "split": "test"}
{"utterance": "alexa chwarae cân dros yr enfys", "expected_intent": "play:play_music", "expected_slots": {"song_name": "dros yr enfys"}, "split": "test"}
{"utterance": "faint o'r gloch yw hi yn llundain", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "llundain"}, "split": "test"}
{"utterance": "galli di wneud paned o goffi i mi", "expected_intent": "iot:iot_coffee", "expected_slots": {}, "split": "test"}
{"utterance": "gosod goleuadau yr ystafell fyw i hanner cant y cant", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"house_place": "ystafell fyw", "change_amount": "hanner cant y cant"}, "split": "test"}
{"utterance": "pa ddiwrnod yw rhagfyr y trydydd ar ddeg", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "rhagfyr y trydydd ar ddeg"}, "split": "test"}
{"utterance": "ar pa ddiwrnod y mae yr ail o mis nesaf", "expected_intent": "datetime:datetime_query", "expected_slots": {"event_name": "ail o mis nesaf"}, "split": "test"}
{"utterance": "oes cludfwyd yn pizza hut", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"business_name": "pizza hut"}, "split": "test"}
{"utterance": "olly faint o'r gloch yw hi yn y ddinas hon", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "y ddinas hon"}, "split": "test"}
{"utterance": "cael y peiriant coffi i wneud mwy o goffi", "expected_intent": "iot:iot_coffee", "expected_slots": {"device_type": "peiriant coffi"}, "split": "test"}
{"utterance": "olly dwedwch fy larymau wrtha i", "expected_intent": "alarm:alarm_query", "expected_slots": {}, "split": "test"}
{"utterance": "dangos unrhyw erthyglau ynglun a'r tywydd yn y newyddion bore", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "tywydd", "media_type": "newyddion bore"}, "split": "test"}
{"utterance": "y tywydd ar hyn o bryd", "expected_intent": "weather:weather_query", "expected_slots": {}, "split": "test"}
{"utterance": "oes yna unrhyw ddiweddariadau parthed yr etholiad", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "etholiad"}, "split": "test"}
{"utterance": "dechrau y sugnwr llwch", "expected_intent": "iot:iot_cleaning", "expected_slots": {"device_type": "sugnwr llwch"}, "split": "test"}
{"utterance": "lefel y goleuni yn naw deg y cant", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"change_amount": "naw deg y cant"}, "split": "test"}
{"utterance": "dweud wrtha'i os yw wahaca yn cludo", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"business_name": "wahaca"}, "split": "test"}
{"utterance": "dywedwch wrtha i beth yw'r dyddiad heddiw", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "heddiw"}, "split": "test"}
{"utterance": "adroddiad tywydd wythnosol", "expected_intent": "weather:weather_query", "expected_slots": {}, "split": "test"}
{"utterance": "pa straeon newyddion sydd ar gwefan y b. b. c.", "expected_intent": "news:news_query", "expected_slots": {"media_type": "b. b. c."}, "split": "test"}
{"utterance": "faint o'r gloch yw hi yn austin", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "austin"}, "split": "test"}
{"utterance": "chwarae harbwr diogel nesaf", "expected_intent": "play:play_music", "expected_slots": {"song_name": "harbwr diogel"}, "split": "test"}
{"utterance": "oes larwm am ddeg o'r gloch y bore", "expected_intent": "alarm:alarm_query", "expected_slots": {"time": "ddeg o'r gloch y bore"}, "split": "test"}
{"utterance": "dechrau'r hwfer robotaidd", "expected_intent": "iot:iot_cleaning", "expected_slots": {"device_type": "hwfer robotaidd"}, "split": "test"}
{"utterance": "dechrau'r hwfer", "expected_intent": "iot:iot_cleaning", "expected_slots": {"device_type": "hwfer"}, "split": "test"}
{"utterance": "chwarae gân gan bruno mars", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "bruno mars"}, "split": "test"}
{"utterance": "diffodd goleuadau y swyddfa", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"house_place": "swyddfa"}, "split": "test"}
{"utterance": "newid lliwiau'r golau i goch", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"color_type": "goch"}, "split": "test"}
{"utterance": "dileu y larwm a osodwyd", "expected_intent": "alarm:alarm_remove", "expected_slots": {}, "split": "test"}
{"utterance": "canslo larwm", "expected_intent": "alarm:alarm_remove", "expected_slots": {}, "split": "test"}
{"utterance": "dywedwch wrthyf newyddion yn ymwneud â'r farchnad stoc", "expected_intent": "qa:qa_stock", "expected_slots": {"news_topic": "farchnad stoc"}, "split": "test"}
{"utterance": "chwaraewch ganeuon gan y band y beatles", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "beatles"}, "split": "test"}
{"utterance": "fedri di godi y goleuadau i mi", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {}, "split": "test"}
{"utterance": "adfer y golau imi", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {}, "split": "test"}
{"utterance": "ydi florentina's yn gwneud cludfwyd", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"business_name": "florentina's"}, "split": "test"}
{"utterance": "cludfwyd ar gael yn ultracomida", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"business_name": "ultracomida"}, "split": "test"}
{"utterance": "dwi'n casau'r gân hon", "expected_intent": "music:music_dislikeness", "expected_slots": {}, "split": "test"}
{"utterance": "dwi'n caru'r gân yma", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "dwi eisiau chwarae'r gân eto", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "dweud y tymheredd wrtha'i", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "tymheredd"}, "split": "test"}
{"utterance": "erthyglau o'r tudalennau blaen os gweli'n dda", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "beth sy'n newydd yn y newyddion", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "newid lliw fy ngolau i glas a diffodd golau y gegin", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"color_type": "glas", "house_place": "gegin"}, "split": "test"}
{"utterance": "beth yw'r newyddion o'r ffynhonnell newyddion", "expected_intent": "news:news_query", "expected_slots": {"media_type": "ffynhonnell newyddion"}, "split": "test"}
{"utterance": "diffodd y soced", "expected_intent": "iot:iot_wemo_off", "expected_slots": {}, "split": "test"}
{"utterance": "mae'n amser am fwyd sothach", "expected_intent": "takeaway:takeaway_order", "expected_slots": {"food_type": "fwyd sothach"}, "split": "test"}
{"utterance": "faint o'r gloch yw hi yn amser safonol pasiffig", "expected_intent": "datetime:datetime_query", "expected_slots": {"time_zone": "pasiffig"}, "split": "test"}
{"utterance": "sut dywydd yw hi yn aberdaron", "expected_intent": "weather:weather_query", "expected_slots": {"place_name": "aberdaron"}, "split": "test"}
{"utterance": "diffodd y goleuadau", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {}, "split": "test"}
{"utterance": "dangos rhai digwyddiadau lleol i fi", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "olly tro'r newyddion ymlaen", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "paid â chwarae y gân hon eto", "expected_intent": "music:music_dislikeness", "expected_slots": {}, "split": "test"}
{"utterance": "rydw i'n caru'r gerddoriaeth yma arbedwch hwn i fy rhestr dawns os gwelwch yn dda a chofiwch fy mod yn ei hoffi", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "chwarae fy hoff gân o llynedd", "expected_intent": "play:play_music", "expected_slots": {"date": "llynedd"}, "split": "test"}
{"utterance": "chwaraewch rhywbeth o albwm gedon bob delyn a'r ebillion", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "bob delyn"}, "split": "test"}
{"utterance": "beth yw'r amser safonol dwyreiniol y funud yma", "expected_intent": "datetime:datetime_query", "expected_slots": {"time_zone": "dwyreiniol"}, "split": "test"}
{"utterance": "chwarae cân ar hap o fy rhestr chwarae", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "faint o gorwyntoedd sydd wedi bod y mis hwn", "expected_intent": "general:general_quirky", "expected_slots": {"news_topic": "gorwyntoedd", "date": "y mis hwn"}, "split": "test"}
{"utterance": "olly sawl corwynt fuodd yna y mis hwn", "expected_intent": "general:general_quirky", "expected_slots": {"news_topic": "corwynt", "date": "y mis hwn"}, "split": "test"}
{"utterance": "gwna paned o goffi gyda hufen blas caramel hallt i mi", "expected_intent": "iot:iot_coffee", "expected_slots": {"coffee_type": "hufen blas caramel hallt"}, "split": "test"}
{"utterance": "chwarae trac un o fy rhestr chwarae david bowie", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "david bowie"}, "split": "test"}
{"utterance": "oes unrhyw larymau gyda fi wedi eu gosod ar gyfer chwech y bore yfory", "expected_intent": "alarm:alarm_query", "expected_slots": {"time": "chwech y bore", "date": "yfory"}, "split": "test"}
{"utterance": "dangoswch i fi fy larymau sydd wedi eu gosod", "expected_intent": "alarm:alarm_query", "expected_slots": {}, "split": "test"}
{"utterance": "diffodd fy ngoleuadau ystafell wely", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"house_place": "ystafell wely"}, "split": "test"}
{"utterance": "chwarae rhestr chwarae cerddoriaeth", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "diffodd y seinyddion", "expected_intent": "audio:audio_volume_mute", "expected_slots": {}, "split": "test"}
{"utterance": "pa flwyddyn ddaeth y gân yma allan", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "stopia dechrau y sudd", "expected_intent": "iot:iot_wemo_on", "expected_slots": {}, "split": "test"}
{"utterance": "barnwch pump", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "hei olly fedri di wneud goffi hufennog i mi", "expected_intent": "iot:iot_coffee", "expected_slots": {"coffee_type": "hufennog"}, "split": "test"}
{"utterance": "dwi'n hoffi jazz a casau disco", "expected_intent": "music:music_likeness", "expected_slots": {"music_genre": "jazz", "place_name": "disco"}, "split": "test"}
{"utterance": "chwarae plant y fflam gan lady gaga", "expected_intent": "play:play_music", "expected_slots": {"song_name": "plant y fflam", "artist_name": "lady gaga"}, "split": "test"}
{"utterance": "gweddarlledwch poker face gan lady gaga", "expected_intent": "play:play_music", "expected_slots": {"song_name": "poker face", "artist_name": "lady gaga"}, "split": "test"}
{"utterance": "atgoffa fi i wneud rhywbeth yr adeg hynny", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "gosodwch larwm newydd ar gyfer yr amser yna", "expected_intent": "alarm:alarm_set", "expected_slots": {}, "split": "test"}
{"utterance": "beth yw sefyllfa cyfredol yr ymchwiliad mewn i gysylltiadau trump gyda rwsia", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "ymchwiliad mewn i gysylltiadau trump", "place_name": "rwsia"}, "split": "test"}
{"utterance": "dw'i eisiau golau is", "expected_intent": "iot:iot_hue_lightdim", "expected_slots": {}, "split": "test"}
{"utterance": "ar ba ddiwrnod o'r wythnos mae nadolig yn cwympo eleni", "expected_intent": "datetime:datetime_query", "expected_slots": {"event_name": "nadolig", "date": "eleni"}, "split": "test"}
{"utterance": "dylem ddisgwyl glaw prynhawn yma", "expected_intent": "weather:weather_query", "expected_slots": {"timeofday": "prynhawn"}, "split": "test"}
{"utterance": "chwaraewch gerddoriaeth reggae", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "reggae"}, "split": "test"}
{"utterance": "olly ydi yo sushi yn cludo", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"business_name": "yo sushi"}, "split": "test"}
{"utterance": "lleiha'r goleuadau os gweli di'n dda", "expected_intent": "iot:iot_hue_lightdim", "expected_slots": {}, "split": "test"}
{"utterance": "ydi'r domino's lleol yn cludo", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"business_name": "domino's"}, "split": "test"}
{"utterance": "diffodd y plwg wemo", "expected_intent": "iot:iot_wemo_off", "expected_slots": {"device_type": "plwg wemo"}, "split": "test"}
{"utterance": "beth fydd y tywydd yr wythnos hon yn nefyn", "expected_intent": "weather:weather_query", "expected_slots": {"date": "yr wythnos hon", "place_name": "nefyn"}, "split": "test"}
{"utterance": "beth yw rhagolygon yr wythnos", "expected_intent": "weather:weather_query", "expected_slots": {"date": "wythnos"}, "split": "test"}
{"utterance": "actifada fy mhot coffi i mi", "expected_intent": "iot:iot_coffee", "expected_slots": {"device_type": "mhot coffi"}, "split": "test"}
{"utterance": "gwna baned o goffi i mi os gweli di'n dda", "expected_intent": "iot:iot_coffee", "expected_slots": {}, "split": "test"}
{"utterance": "tro fy mhot coffi ymlaen", "expected_intent": "iot:iot_coffee", "expected_slots": {"device_type": "mhot coffi"}, "split": "test"}
{"utterance": "tro'r plwg i ffwrdd", "expected_intent": "iot:iot_wemo_off", "expected_slots": {}, "split": "test"}
{"utterance": "dw'i eisiau gweld y newyddion", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "yr wyf eisiau clywed jôc", "expected_intent": "general:general_joke", "expected_slots": {}, "split": "test"}
{"utterance": "adroddiad tywydd ar gyfer tri deg tri mil saith cant a saith deg pedwar", "expected_intent": "weather:weather_query", "expected_slots": {}, "split": "test"}
{"utterance": "adroddiad tywydd am abertawe", "expected_intent": "weather:weather_query", "expected_slots": {"place_name": "abertawe"}, "split": "test"}
{"utterance": "ble mae'r car", "expected_intent": "audio:audio_volume_up", "expected_slots": {}, "split": "test"}
{"utterance": "beth yw'r dyddiad ar gyfer dydd mawrth nesaf", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "dydd mawrth"}, "split": "test"}
{"utterance": "cnoc cnoc", "expected_intent": "general:general_joke", "expected_slots": {}, "split": "test"}
{"utterance": "dim goleuadau yn y gegin", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"house_place": "gegin"}, "split": "test"}
{"utterance": "tro'r goleuadau i lawr i canolig", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {}, "split": "test"}
{"utterance": "gwna fe'n goch fan hyn", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"color_type": "goch"}, "split": "test"}
{"utterance": "gosodwch fy larwm ar gyfer pump o'r gloch yr hwyr", "expected_intent": "alarm:alarm_set", "expected_slots": {"time": "pump o'r gloch yr hwyr"}, "split": "test"}
{"utterance": "chwaraea fersiwn byw o elton john", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "elton john"}, "split": "test"}
{"utterance": "chwarae cân mwyaf poblogaidd bryn fon", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "bryn fon"}, "split": "test"}
{"utterance": "beth yw y rhagolygon deg diwrnod", "expected_intent": "weather:weather_query", "expected_slots": {"date": "deg diwrnod"}, "split": "test"}
{"utterance": "a oes unrhyw ragolygon o law neu eira yr wythnos yma", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "law neu eira", "date": "yr wythnos yma"}, "split": "test"}
{"utterance": "a yw y tywydd am fod yn braf dros y sul", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "braf", "date": "dros y sul"}, "split": "test"}
{"utterance": "ydych chi'n gwybod amcangyfrif o amser cyrraedd fy archeb", "expected_intent": "takeaway:takeaway_query", "expected_slots": {}, "split": "test"}
{"utterance": "galli di osod fy mheiriant coffi i wneud coffi am saith y bore", "expected_intent": "iot:iot_coffee", "expected_slots": {"device_type": "mheiriant coffi", "time": "saith y bore"}, "split": "test"}
{"utterance": "sawl gradd ydi hi allan", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "gradd"}, "split": "test"}
{"utterance": "cerddoriaeth bop newydd", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "bop"}, "split": "test"}
{"utterance": "cerddoriaeth rap gorau", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "rap"}, "split": "test"}
{"utterance": "tynnwch y larwm diweddaraf", "expected_intent": "alarm:alarm_remove", "expected_slots": {}, "split": "test"}
{"utterance": "ydy'r ail ar hugain ar ddydd mercher", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "ail ar hugain"}, "split": "test"}
{"utterance": "ydy hi'n ddeg", "expected_intent": "datetime:datetime_query", "expected_slots": {"time": "ddeg"}, "split": "test"}
{"utterance": "ydi hi'n addo glaw dydd sadwrn", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "glaw", "date": "dydd sadwrn"}, "split": "test"}
{"utterance": "amser tawel", "expected_intent": "audio:audio_volume_mute", "expected_slots": {}, "split": "test"}
{"utterance": "lleihau uchder y gerddoriaeth os gweli di'n dda", "expected_intent": "audio:audio_volume_down", "expected_slots": {}, "split": "test"}
{"utterance": "chwarae'r gân mwyaf poblogaidd gan artist penodol", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "siarad yn is os gweli di'n dda", "expected_intent": "audio:audio_volume_down", "expected_slots": {}, "split": "test"}
{"utterance": "chwarae cerddoriaeth nawr", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "gadewch i ni chwarae fy rhestr caneuon chwaraewyd fwyaf", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "beth yw'r tywydd yn penrhyn", "expected_intent": "weather:weather_query", "expected_slots": {"place_name": "penrhyn"}, "split": "test"}
{"utterance": "oes eira yn y rhagolygon", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "eira"}, "split": "test"}
{"utterance": "chwarae dim ond fy rhestr", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "beth yw'r siawns o gael cyddwysiad yn y tywydd heddiw", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "cyddwysiad", "date": "heddiw"}, "split": "test"}
{"utterance": "tro goleuadau fy malconi ymlaen", "expected_intent": "iot:iot_hue_lighton", "expected_slots": {"house_place": "malconi"}, "split": "test"}
{"utterance": "newid y parth amser i ganada", "expected_intent": "datetime:datetime_convert", "expected_slots": {"place_name": "ganada"}, "split": "test"}
{"utterance": "chwarae harbwr diogel gan elin fflur", "expected_intent": "play:play_music", "expected_slots": {"song_name": "harbwr diogel", "artist_name": "elin fflur"}, "split": "test"}
{"utterance": "newid y goleuadau yn yr ystafell fyw yn wyrdd a coch", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"house_place": "ystafell fyw", "color_type": "wyrdd a coch"}, "split": "test"}
{"utterance": "dw'i eisiau'r golau i fod tipyn yn fwy cochaidd", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"color_type": "cochaidd"}, "split": "test"}
{"utterance": "hoffwn glywed gerddoriaeth jazz", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "jazz"}, "split": "test"}
{"utterance": "rhowch mlan peth edward h dafis", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "edward h dafis"}, "split": "test"}
{"utterance": "fedri di rhoi'r rhestr chwarae cariad ymlaen", "expected_intent": "play:play_music", "expected_slots": {"playlist_name": "rhestr chwarae cariad"}, "split": "test"}
{"utterance": "chwarae unwaith eto gymru annwyl", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "beth yw'r amser presennol yn chennai", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "chennai"}, "split": "test"}
{"utterance": "gosod fy mheiriant coffi", "expected_intent": "iot:iot_coffee", "expected_slots": {"device_type": "mheiriant coffi"}, "split": "test"}
{"utterance": "diffodd goleuadau y patio", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"house_place": "patio"}, "split": "test"}
{"utterance": "beth ydi'r stori ddiweddaraf gan nation cymru", "expected_intent": "news:news_query", "expected_slots": {"media_type": "nation cymru"}, "split": "test"}
{"utterance": "diffodd y sain", "expected_intent": "audio:audio_volume_mute", "expected_slots": {}, "split": "test"}
{"utterance": "muda os gweli di'n dda", "expected_intent": "audio:audio_volume_mute", "expected_slots": {}, "split": "test"}
{"utterance": "sut dywydd yw hi yn y bala", "expected_intent": "weather:weather_query", "expected_slots": {"place_name": "bala"}, "split": "test"}
{"utterance": "siarad yn uchel", "expected_intent": "audio:audio_volume_up", "expected_slots": {}, "split": "test"}
{"utterance": "mwy disglair", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {}, "split": "test"}
{"utterance": "beth amdanat ti", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "atgoffa fi ar ôl deg munud", "expected_intent": "calendar:calendar_set", "expected_slots": {"time": "ar ôl deg munud"}, "split": "test"}
{"utterance": "beth ydi'r newyddion diweddaraf o nation cymru", "expected_intent": "news:news_query", "expected_slots": {"media_type": "nation cymru"}, "split": "test"}
{"utterance": "beth yw'r newyddion diweddaraf ar y b. b. c.", "expected_intent": "news:news_query", "expected_slots": {"media_type": "b. b. c."}, "split": "test"}
{"utterance": "beth yw'r amser yn beijing", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "beijing"}, "split": "test"}
{"utterance": "mae hi yn ddiwrnod heulog heddiw yn tydi", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "heulog", "date": "heddiw"}, "split": "test"}
{"utterance": "beth sydd ymlaen yn y byd heddiw", "expected_intent": "news:news_query", "expected_slots": {"date": "heddiw"}, "split": "test"}
{"utterance": "newyddion gan s. pedwar c.", "expected_intent": "news:news_query", "expected_slots": {"media_type": "s. pedwar c."}, "split": "test"}
{"utterance": "hei google chwarae rhywfaint o gerddoriaeth jazz i mi", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "jazz"}, "split": "test"}
{"utterance": "pa fath o gerddoriaeth ydych chi'n meddwl dwi'n hoffi", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "dywedwch wrtha i faint o'r gloch yw hi yn rhywle", "expected_intent": "datetime:datetime_convert", "expected_slots": {}, "split": "test"}
{"utterance": "galla'i gludo allan gada'r bwyty yma", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"business_type": "bwyty"}, "split": "test"}
{"utterance": "hoffwn i'r golau yn y gegin fod yn lliw gwahanol", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"house_place": "gegin"}, "split": "test"}
{"utterance": "arbed yr holl ganeuon dw'i wedi gwrando arnynt mwy nag unwaith", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "tro'r rhestr chwarae dw'i wedi ymroi i gerddoriaeth roc ymlaen", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "roc"}, "split": "test"}
{"utterance": "dwi angen larwm wedi ei osod ar gyfer hanner awr wedi pump y bore yfory", "expected_intent": "alarm:alarm_set", "expected_slots": {"time": "hanner awr wedi pump y bore", "date": "yfory"}, "split": "test"}
{"utterance": "dwi eisiau larwm am dri heddiw", "expected_intent": "alarm:alarm_set", "expected_slots": {"time": "dri", "date": "heddiw"}, "split": "test"}
{"utterance": "lampau ar y cant", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {}, "split": "test"}
{"utterance": "olly oes larwm gyda fi wedi ei osod ar gyfer yfory", "expected_intent": "alarm:alarm_query", "expected_slots": {"date": "yfory"}, "split": "test"}
{"utterance": "chwarae fy rhestr chwarae yn dechrau o'r gwaelod", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "chwarae fy nghaneuon poblogaidd o rap y nawdegau", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "rap y nawdegau"}, "split": "test"}
{"utterance": "hoffem glywed harbwr diogel elin fflur ar ôl y gân hon", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "elin fflur"}, "split": "test"}
{"utterance": "pa ddyddiad yw heddiw", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "heddiw"}, "split": "test"}
{"utterance": "chwaraewch yma o hyd gan dafydd iwan", "expected_intent": "play:play_music", "expected_slots": {"song_name": "yma o hyd", "artist_name": "dafydd iwan"}, "split": "test"}
{"utterance": "trowch y goleuadau i lliw coch", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"color_type": "coch"}, "split": "test"}
{"utterance": "pa gân sy'n chwarae ar hyn o bryd", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "ydych chi'n adnabod enw'r gân sy'n chwarae", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "os oes unrhyw newyddion newydd yn dod mas am y llif gad i fi wybod cyn gynted a phosib", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "llif"}, "split": "test"}
{"utterance": "dihunwch fi am wyth o'r gloch y bore", "expected_intent": "alarm:alarm_set", "expected_slots": {"time": "wyth o'r gloch y bore"}, "split": "test"}
{"utterance": "coda'r goleuadau", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {}, "split": "test"}
{"utterance": "dywedwch wrtha i am larymau", "expected_intent": "alarm:alarm_query", "expected_slots": {}, "split": "test"}
{"utterance": "diffodd y soced smart", "expected_intent": "iot:iot_wemo_off", "expected_slots": {"device_type": "soced smart"}, "split": "test"}
{"utterance": "dw'i eisiau'r soced smart i ffwrdd nawr", "expected_intent": "iot:iot_wemo_off", "expected_slots": {"device_type": "soced smart"}, "split": "test"}
{"utterance": "chwarae rhestr chwarae youtube yn wag", "expected_intent": "play:play_music", "expected_slots": {"media_type": "youtube"}, "split": "test"}
{"utterance": "chwarae fy rhestr chwarae canol nos cariadus", "expected_intent": "play:play_music", "expected_slots": {"playlist_name": "canol nos cariadus"}, "split": "test"}
{"utterance": "rho i mi adroddiad am y tywydd yn llandudno", "expected_intent": "weather:weather_query", "expected_slots": {"place_name": "llandudno"}, "split": "test"}
{"utterance": "diffodd golau yr ystafell ymolchi", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"house_place": "ystafell ymolchi"}, "split": "test"}
{"utterance": "arafa uchder y seinydd", "expected_intent": "audio:audio_volume_down", "expected_slots": {}, "split": "test"}
{"utterance": "muda am bymtheg munud", "expected_intent": "audio:audio_volume_mute", "expected_slots": {"time": "bymtheg munud"}, "split": "test"}
{"utterance": "rhowch bum seren i'r gân hon os gwelwch yn dda", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "chwilia am wybodaeth am geir i mi", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "geir"}, "split": "test"}
{"utterance": "dileuwch y larwm sydd wedi ei osod ar gyfer dyddiau gwaith am naw os gwelwch yn dda", "expected_intent": "alarm:alarm_remove", "expected_slots": {"date": "dyddiau gwaith", "time": "naw"}, "split": "test"}
{"utterance": "tro'r goleuadau i lawr", "expected_intent": "iot:iot_hue_lightdim", "expected_slots": {}, "split": "test"}
{"utterance": "dw'i eisiau archebu cludfwyd tseiniaidd", "expected_intent": "takeaway:takeaway_order", "expected_slots": {"order_type": "cludfwyd", "food_type": "tseiniaidd"}, "split": "test"}
{"utterance": "muda'r gerddoriaeth", "expected_intent": "audio:audio_volume_mute", "expected_slots": {}, "split": "test"}
{"utterance": "diffodd y synau", "expected_intent": "audio:audio_volume_mute", "expected_slots": {}, "split": "test"}
{"utterance": "actifadwch y roomba", "expected_intent": "iot:iot_cleaning", "expected_slots": {"device_type": "roomba"}, "split": "test"}
{"utterance": "pa fath o dywydd maen nhw'n ei gael yn aberffraw môn ar hyn o bryd", "expected_intent": "weather:weather_query", "expected_slots": {"place_name": "aberffraw môn"}, "split": "test"}
{"utterance": "rhowch ar fy hoff restr chwarae gerddoriaeth rapio", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "rapio"}, "split": "test"}
{"utterance": "pwy sy'n canu'r gân rydw i'n gwrando arni nawr", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "beth yw'r amser dihuno ar gyfer fy larwm dwi wedi gosod ar gyfer yr hedfaniad penwythnos yma", "expected_intent": "alarm:alarm_query", "expected_slots": {"alarm_type": "dihuno", "date": "penwythnos yma"}, "split": "test"}
{"utterance": "goleua fwy ar y lampau", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {}, "split": "test"}
{"utterance": "rhestrwch larymau wedi gosod ar hyn o bryd", "expected_intent": "alarm:alarm_query", "expected_slots": {}, "split": "test"}
{"utterance": "unrhyw larymau wedi eu rhestru yn bresennol", "expected_intent": "alarm:alarm_query", "expected_slots": {}, "split": "test"}
{"utterance": "darllen hwnna yn ôl", "expected_intent": "play:play_audiobook", "expected_slots": {}, "split": "test"}
{"utterance": "chwarae caneuon poblogaidd llynedd", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "dwi eisiau clywed unrhyw ganeuon wnaeth ennill grammy eleni", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "hoffem glywed cerddoriaeth canu gwlad", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "canu gwlad"}, "split": "test"}
{"utterance": "mae hwn yn dôn da noda'r ffeil i ddweud hynny", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "sut mae'r tymheredd", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "tymheredd"}, "split": "test"}
{"utterance": "dywedwch yr amser", "expected_intent": "datetime:datetime_query", "expected_slots": {}, "split": "test"}
{"utterance": "rapio", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "rapio"}, "split": "test"}
{"utterance": "chwarae shape of you gan ed sheeran", "expected_intent": "play:play_music", "expected_slots": {"song_name": "shape of you", "artist_name": "ed sheeran"}, "split": "test"}
{"utterance": "dewiswch y gân gyntaf yn fy llyfrgell itunes os gwelwch yn dda", "expected_intent": "play:play_music", "expected_slots": {"playlist_name": "llyfrgell itunes"}, "split": "test"}
{"utterance": "gosodwch larwm am chwech o'r gloch y bore", "expected_intent": "alarm:alarm_set", "expected_slots": {"time": "chwech o'r gloch y bore"}, "split": "test"}
{"utterance": "fedri di wneud i'r goleuadau fynd allan", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {}, "split": "test"}
{"utterance": "olly pa ddiwrnod o'r wythnos mae calan gaeaf", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "ddiwrnod o'r wythnos", "event_name": "calan gaeaf"}, "split": "test"}
{"utterance": "beth ddigwyddodd ar pobol y cwm", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "pobol y cwm"}, "split": "test"}
{"utterance": "gad i ni sugno'r dwst allan", "expected_intent": "iot:iot_cleaning", "expected_slots": {}, "split": "test"}
{"utterance": "dileuwch fy larymau cyfredol", "expected_intent": "alarm:alarm_remove", "expected_slots": {}, "split": "test"}
{"utterance": "beth sydd yn y newyddion", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "diffodd os gweli di'n dda", "expected_intent": "iot:iot_wemo_off", "expected_slots": {}, "split": "test"}
{"utterance": "diffodd y pŵer", "expected_intent": "iot:iot_wemo_off", "expected_slots": {}, "split": "test"}
{"utterance": "chwarae harbwr diogel ar pandora", "expected_intent": "play:play_music", "expected_slots": {"song_name": "harbwr diogel"}, "split": "test"}
{"utterance": "chwarae'r gân dwi'n gwrando arno fwyaf", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "rhed yr hwfer", "expected_intent": "iot:iot_cleaning", "expected_slots": {"device_type": "hwfer"}, "split": "test"}
{"utterance": "gwiria os yw nandos yn cludo", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"business_name": "nandos"}, "split": "test"}
{"utterance": "hoffwn glywed rhywfaint o cerddoriaeth rap", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "rap"}, "split": "test"}
{"utterance": "pa ddiwrnod yw'r pumed", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "pumed"}, "split": "test"}
{"utterance": "diffodd goleuadau y gegin", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"house_place": "gegin"}, "split": "test"}
{"utterance": "dwi eisiau gosod larwm pan dwi'n gyrru adref yfory i gofio stopio yn y siop i brynu bwyd", "expected_intent": "alarm:alarm_set", "expected_slots": {"date": "yfory", "event_name": "stopio yn y siop i brynu bwyd"}, "split": "test"}
{"utterance": "gwna goffi", "expected_intent": "iot:iot_coffee", "expected_slots": {}, "split": "test"}
{"utterance": "geiriau neis", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "diffodd y golau uwchben", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {}, "split": "test"}
{"utterance": "tro lan uchder fy seinyddion", "expected_intent": "audio:audio_volume_up", "expected_slots": {}, "split": "test"}
{"utterance": "sut y bydd y tywydd heddiw yn trefriw", "expected_intent": "weather:weather_query", "expected_slots": {"date": "heddiw", "place_name": "trefriw"}, "split": "test"}
{"utterance": "troswch yr amser presennol o g. m. t. i e. s. t.", "expected_intent": "datetime:datetime_convert", "expected_slots": {"time_zone": "e. s. t."}, "split": "test"}
{"utterance": "chwarae fy rhestr chwarae wedi'i siffrwd", "expected_intent": "play:play_music", "expected_slots": {"playlist_name": "rhestr chwarae wedi'i siffrwd"}, "split": "test"}
{"utterance": "dw'i eisiau gwybod popeth sy'n torri am yr argae yn hollti yng nghaliffornia", "expected_intent": "news:news_query", "expected_slots": {"place_name": "nghaliffornia"}, "split": "test"}
{"utterance": "faint o'r gloch wyt ti wedi gosod y larwm", "expected_intent": "alarm:alarm_query", "expected_slots": {}, "split": "test"}
{"utterance": "ble galla'i gael joch o decila a bwyd mecsicanaidd i fynd", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"food_type": "mecsicanaidd"}, "split": "test"}
{"utterance": "ydy fy larwm atgoffa wedi ei osod ar gyfer dosbarth dawns", "expected_intent": "alarm:alarm_query", "expected_slots": {"event_name": "dosbarth dawns"}, "split": "test"}
{"utterance": "dywedwch wrthyf beth yw'r ganran o'r siawns o law yn dunvant abertawe ar gyfer heddiw", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "law", "place_name": "dunvant abertawe", "date": "heddiw"}, "split": "test"}
{"utterance": "allwch chi chwarae imogen heap os gwelwch yn dda", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "imogen heap"}, "split": "test"}
{"utterance": "galli di gadarnhau bod paradwys yn gwneud tecawe", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"business_name": "paradwys", "order_type": "tecawe"}, "split": "test"}
{"utterance": "pa larymau oeddwn in osod heddiw", "expected_intent": "alarm:alarm_query", "expected_slots": {"date": "heddiw"}, "split": "test"}
{"utterance": "chwaraewch y gân mynd nôl i flaenau ffestiniog os gwelwch yn dda", "expected_intent": "play:play_music", "expected_slots": {"song_name": "mynd nôl i flaenau ffestiniog"}, "split": "test"}
{"utterance": "diffoddwch fy wifi", "expected_intent": "iot:iot_wemo_off", "expected_slots": {}, "split": "test"}
{"utterance": "newid uchder i tri deg pump y cant", "expected_intent": "audio:audio_volume_other", "expected_slots": {"change_amount": "tri deg pump y cant"}, "split": "test"}
{"utterance": "newid lefel yr uchder i'r eithaf", "expected_intent": "audio:audio_volume_other", "expected_slots": {"change_amount": "i'r eithaf"}, "split": "test"}
{"utterance": "gwiria y tywydd ym mhenfro os gweli'n dda", "expected_intent": "weather:weather_query", "expected_slots": {"place_name": "mhenfro"}, "split": "test"}
{"utterance": "diffodd goleuadau y gegin", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"house_place": "gegin"}, "split": "test"}
{"utterance": "actifada'r sugnwr llwch a defnyddia fe", "expected_intent": "iot:iot_cleaning", "expected_slots": {"device_type": "sugnwr llwch"}, "split": "test"}
{"utterance": "hei olly newid y gosodiadau golau cyfredol", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {}, "split": "test"}
{"utterance": "rhowch y penawdau gwleidyddol diweddaraf ledled y byd i mi", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "gwleidyddol", "place_name": "byd"}, "split": "test"}
{"utterance": "oes unrhyw newyddion am yr arlywyddiaeth", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "arlywyddiaeth"}, "split": "test"}
{"utterance": "amser presennol efrog newydd", "expected_intent": "datetime:datetime_query", "expected_slots": {"time_zone": "amser", "place_name": "efrog newydd"}, "split": "test"}
{"utterance": "hei olly faint o'r gloch yw hi", "expected_intent": "datetime:datetime_query", "expected_slots": {}, "split": "test"}
{"utterance": "hei siri faint o'r gloch yw hi", "expected_intent": "datetime:datetime_query", "expected_slots": {}, "split": "test"}
{"utterance": "beth fyddet ti'n alw y math yma o gerddoriaeth", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "wemo ymlaen", "expected_intent": "iot:iot_wemo_on", "expected_slots": {"device_type": "wemo"}, "split": "test"}
{"utterance": "dw'i eisiau clywed tân gan estella", "expected_intent": "play:play_music", "expected_slots": {"song_name": "tân", "artist_name": "estella"}, "split": "test"}
{"utterance": "fyddai'n gallu torri'r gwair heno", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "torri'r gwair", "timeofday": "heno"}, "split": "test"}
{"utterance": "adrodd y jôc mwyaf doniol a adroddwyd erioed wrthyf", "expected_intent": "general:general_joke", "expected_slots": {"joke_type": "mwyaf doniol"}, "split": "test"}
{"utterance": "hoffwn glywed rhai jôcs doniol da", "expected_intent": "general:general_joke", "expected_slots": {"joke_type": "doniol da"}, "split": "test"}
{"utterance": "pryd fydd fy mwyd tseiniaidd yn cael ei ddosbarthu", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"food_type": "tseiniaidd"}, "split": "test"}
{"utterance": "a oes rhywfaint o law yn y rhagolygon ar gyfer yr wythnos nesaf", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "law", "date": "yr wythnos nesaf"}, "split": "test"}
{"utterance": "chwarae sleepyhead gan passion pit", "expected_intent": "play:play_music", "expected_slots": {"song_name": "sleepyhead", "artist_name": "passion pit"}, "split": "test"}
{"utterance": "ydi hi yn brynhawn eto", "expected_intent": "datetime:datetime_query", "expected_slots": {}, "split": "test"}
{"utterance": "tro y dyson ymlaen", "expected_intent": "iot:iot_cleaning", "expected_slots": {"device_type": "dyson"}, "split": "test"}
{"utterance": "stopia siarad os gweli di'n dda", "expected_intent": "audio:audio_volume_mute", "expected_slots": {}, "split": "test"}
{"utterance": "olly tro'r peiriant coffi ymlaen a gwna peth goffi", "expected_intent": "iot:iot_coffee", "expected_slots": {"device_type": "peiriant coffi"}, "split": "test"}
{"utterance": "newidiwch holl oleuadau y tŷ i las", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"color_type": "las"}, "split": "test"}
{"utterance": "goleuadau y tŷ yn las", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"color_type": "las"}, "split": "test"}
{"utterance": "fedri di wneud goleuadau y tŷ i gyd yn las", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"house_place": "tŷ", "color_type": "las"}, "split": "test"}
{"utterance": "beth yw'r amser presennol mewn amser safonol dwyreiniol", "expected_intent": "datetime:datetime_query", "expected_slots": {"time_zone": "dwyreiniol"}, "split": "test"}
{"utterance": "faint o'r gloch yw hi ar arfordir dwyreiniol yr unol daleithiau", "expected_intent": "datetime:datetime_query", "expected_slots": {"time_zone": "arfordir dwyreiniol", "place_name": "unol daleithiau"}, "split": "test"}
{"utterance": "beth yw'r newyddion diweddaraf", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "beth yw'r tywydd heddiw", "expected_intent": "weather:weather_query", "expected_slots": {"date": "heddiw"}, "split": "test"}
{"utterance": "symudwch i'r gân nesaf ar y rhestr", "expected_intent": "music:music_settings", "expected_slots": {"player_setting": "symudwch"}, "split": "test"}
{"utterance": "paratoa goffi nawr", "expected_intent": "iot:iot_coffee", "expected_slots": {}, "split": "test"}
{"utterance": "mae fy nghoffi yn oer gwna mwy o goffi os gweli di'n dda", "expected_intent": "iot:iot_coffee", "expected_slots": {}, "split": "test"}
{"utterance": "chwarae cân aces high", "expected_intent": "play:play_music", "expected_slots": {"song_name": "aces high"}, "split": "test"}
{"utterance": "cwyd y golau yn yr ystafell hon", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {"house_place": "yr ystafell hon"}, "split": "test"}
{"utterance": "a ddylwn fynd a siaced efo fi heno", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "siaced", "timeofday": "heno"}, "split": "test"}
{"utterance": "gwna'r golau fan hyn yn gochach", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"color_type": "gochach"}, "split": "test"}
{"utterance": "chwaraewch y gân major tom gan david bowie", "expected_intent": "play:play_music", "expected_slots": {"song_name": "major tom", "artist_name": "david bowie"}, "split": "test"}
{"utterance": "mewn sawl awr fydd hi yn ganol nos yng nghaerdydd cymru", "expected_intent": "datetime:datetime_query", "expected_slots": {"time": "ganol nos", "place_name": "nghaerdydd cymru"}, "split": "test"}
{"utterance": "fydd y tymheredd yn llai na deg gradd yn paris", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "llai na deg gradd", "place_name": "paris"}, "split": "test"}
{"utterance": "a fydd glaw fory yn abertawe", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "glaw", "date": "fory", "place_name": "abertawe"}, "split": "test"}
{"utterance": "dwi angen codi am ddeg yfory", "expected_intent": "alarm:alarm_set", "expected_slots": {"time": "ddeg", "date": "yfory"}, "split": "test"}
{"utterance": "beth mae fy ffrwd facebook yn edrych fel", "expected_intent": "social:social_query", "expected_slots": {"media_type": "facebook"}, "split": "test"}
{"utterance": "faint o'r gloch yw hi yn tseina", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "tseina"}, "split": "test"}
{"utterance": "diffodd y goleuadau", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {}, "split": "test"}
{"utterance": "stopia weithredu y goleuadau", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {}, "split": "test"}
{"utterance": "sut mae'r tywydd lle ydwyf fi", "expected_intent": "weather:weather_query", "expected_slots": {}, "split": "test"}
{"utterance": "rho rhyw synau da i mi", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "faint o'r gloch yw hi yn cleveland", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "cleveland"}, "split": "test"}
{"utterance": "adolygwch holl larymau", "expected_intent": "alarm:alarm_query", "expected_slots": {}, "split": "test"}
{"utterance": "sut y mae hi y tu allan heddiw", "expected_intent": "weather:weather_query", "expected_slots": {"date": "heddiw"}, "split": "test"}
{"utterance": "beth yw'r tywydd presennol", "expected_intent": "weather:weather_query", "expected_slots": {}, "split": "test"}
{"utterance": "sut fydd y tywydd yfory", "expected_intent": "weather:weather_query", "expected_slots": {"date": "yfory"}, "split": "test"}
{"utterance": "beth yw'r pennawdau ar c. n. n.", "expected_intent": "news:news_query", "expected_slots": {"media_type": "c. n. n."}, "split": "test"}
{"utterance": "beth ydi'r erthyglau poblogaidd yn y new york times", "expected_intent": "news:news_query", "expected_slots": {"media_type": "new york times"}, "split": "test"}
{"utterance": "bydd angen i mi gario ymbarél heddiw", "expected_intent": "weather:weather_query", "expected_slots": {"date": "heddiw"}, "split": "test"}
{"utterance": "sut dywydd yw hi yn porthmadog", "expected_intent": "weather:weather_query", "expected_slots": {"place_name": "porthmadog"}, "split": "test"}
{"utterance": "enw'r cân", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "pa siaced ddylwn ei gwisgo", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "siaced"}, "split": "test"}
{"utterance": "sut dywydd ydi hi yng nghasnewydd", "expected_intent": "weather:weather_query", "expected_slots": {"place_name": "nghasnewydd"}, "split": "test"}
{"utterance": "gwna goffi am dri", "expected_intent": "iot:iot_coffee", "expected_slots": {"time": "dri"}, "split": "test"}
{"utterance": "dechrau'r peiriant coffi am dri", "expected_intent": "iot:iot_coffee", "expected_slots": {"device_type": "peiriant coffi", "time": "dri"}, "split": "test"}
{"utterance": "ydi hi'n mynd i lawio am un y p'nawn heddiw", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "mynd i lawio", "time": "un y p'nawn", "date": "heddiw"}, "split": "test"}
{"utterance": "chwaraea ganeuon", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "ydi'r golden dragon yn bwyta mewn yn unig", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"business_name": "golden dragon"}, "split": "test"}
{"utterance": "faint o sadyrnau sydd yn mis mawrth", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "sadyrnau sydd yn mis mawrth"}, "split": "test"}
{"utterance": "chwarae cân nesaf", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "a fyddaf angen rhaw i ddod allan o fy dreif bore yma", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "dreif", "timeofday": "bore"}, "split": "test"}
{"utterance": "tyrd â'r rhagolygon tywydd ar gyfer yr wythnos hon i mi", "expected_intent": "weather:weather_query", "expected_slots": {"date": "yr wythnos hon"}, "split": "test"}
{"utterance": "a fydd yn glawio dydd iau", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "glawio", "date": "dydd iau"}, "split": "test"}
{"utterance": "bneth yw'r newyddion diweddaraf am donald trump", "expected_intent": "news:news_query", "expected_slots": {"person": "donald trump"}, "split": "test"}
{"utterance": "beth yw'r ystadegau trosedd diweddaraf o fy ardal", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "ystadegau trosedd"}, "split": "test"}
{"utterance": "beth wnaeth lol bostio heddiw", "expected_intent": "news:news_query", "expected_slots": {"media_type": "lol", "date": "heddiw"}, "split": "test"}
{"utterance": "hei faint o'r gloch yw hi yn llundain nawr", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "llundain"}, "split": "test"}
{"utterance": "olly newid lliw y goleuadau", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {}, "split": "test"}
{"utterance": "olly beth yw rhagolygon y tywydd ar gyfer heddiw", "expected_intent": "weather:weather_query", "expected_slots": {"date": "heddiw"}, "split": "test"}
{"utterance": "archeba honey mustard wing combo deuddeg darn gyda sawrflas ar y sglodion a sprite fel diod", "expected_intent": "takeaway:takeaway_order", "expected_slots": {"food_type": "honey mustard wing combo", "drink_type": "sprite"}, "split": "test"}
{"utterance": "dechrau rhestr chwarae cerdded y ci", "expected_intent": "play:play_music", "expected_slots": {"playlist_name": "rhestr chwarae cerdded y ci"}, "split": "test"}
{"utterance": "hei olly dwi'n hoffi cerddoriaeth gan caryl parry jones", "expected_intent": "music:music_likeness", "expected_slots": {"artist_name": "caryl parry jones"}, "split": "test"}
{"utterance": "galli di wneud goffi i mi", "expected_intent": "iot:iot_coffee", "expected_slots": {}, "split": "test"}
{"utterance": "pa gân yw hon", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "darllen y pennawdau diweddaraf wrth nation cymru", "expected_intent": "news:news_query", "expected_slots": {"media_type": "nation cymru"}, "split": "test"}
{"utterance": "beth yw'r amser yn chicago", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "chicago"}, "split": "test"}
{"utterance": "chwaraewch fy ffefrynnau", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "gosod hysbysiad ar gyfer gêm chwaraeon", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "gêm chwaraeon"}, "split": "test"}
{"utterance": "dwedwch wrtha i pan fydd hi'n bump o'r gloch yr hwyr", "expected_intent": "alarm:alarm_set", "expected_slots": {"time": "bump o'r gloch yr hwyr"}, "split": "test"}
{"utterance": "chwilia am newyddion am stociau heddiw", "expected_intent": "news:news_query", "expected_slots": {"date": "heddiw"}, "split": "test"}
{"utterance": "bydd y tymheredd yn uwch na deugain yfory", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "tymheredd yn uwch na deugain", "date": "yfory"}, "split": "test"}
{"utterance": "galluoga'r soced smart", "expected_intent": "iot:iot_wemo_on", "expected_slots": {"device_type": "soced smart"}, "split": "test"}
{"utterance": "tro'r soced smart newydd ymlaen", "expected_intent": "iot:iot_wemo_on", "expected_slots": {"device_type": "soced smart"}, "split": "test"}
{"utterance": "newid gosodiadau uchder yn y negyddol alexa", "expected_intent": "audio:audio_volume_other", "expected_slots": {}, "split": "test"}
{"utterance": "gosod y seinyddion i fud", "expected_intent": "audio:audio_volume_mute", "expected_slots": {}, "split": "test"}
{"utterance": "gosodwch fy larwm ar gyfer hanner awr wedi chwech y bore", "expected_intent": "alarm:alarm_set", "expected_slots": {"time": "hanner awr wedi chwech y bore"}, "split": "test"}
{"utterance": "paid a siarad", "expected_intent": "audio:audio_volume_mute", "expected_slots": {}, "split": "test"}
{"utterance": "newyddion o'r b. b. c.", "expected_intent": "news:news_query", "expected_slots": {"media_type": "b. b. c."}, "split": "test"}
{"utterance": "amser presennol yn", "expected_intent": "datetime:datetime_query", "expected_slots": {}, "split": "test"}
{"utterance": "rwy'n mwynhau'r gân yma yn fawr iawn", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "dyma'r grwp gorau erioed", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "rhestrwch fy holl larymau os gwelwch yn dda", "expected_intent": "alarm:alarm_query", "expected_slots": {}, "split": "test"}
{"utterance": "ddylem wisgo sandalau ynteu esgidiau a sannau", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "sandalau ynteu esgidiau a sannau"}, "split": "test"}
{"utterance": "wyt ti'n gwybod y tywydd", "expected_intent": "weather:weather_query", "expected_slots": {}, "split": "test"}
{"utterance": "chwarae gân gan bryn fôn i mi", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "bryn fôn"}, "split": "test"}
{"utterance": "tro fy seinyddion arno os gweli di'n dda google", "expected_intent": "audio:audio_volume_up", "expected_slots": {}, "split": "test"}
{"utterance": "ar ba ddiwrnod mae calan gaeaf eleni", "expected_intent": "datetime:datetime_query", "expected_slots": {"event_name": "calan gaeaf", "date": "eleni"}, "split": "test"}
{"utterance": "peidiwch â dihuno fi yfory", "expected_intent": "alarm:alarm_remove", "expected_slots": {"date": "yfory"}, "split": "test"}
{"utterance": "ydy hi'n mynd i fwrw glaw ar ddydd llun", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "glaw", "date": "ddydd llun"}, "split": "test"}
{"utterance": "oes unrhyw wybodaeth newydd am y ffîn rhwng cymru a lloegr", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "y ffîn rhwng cymru a lloegr"}, "split": "test"}
{"utterance": "dywedwch yr amser wrtha i yn y rhanbarth amser yma", "expected_intent": "datetime:datetime_query", "expected_slots": {"time_zone": "y rhanbarth amser yma"}, "split": "test"}
{"utterance": "dywedwch wrthyf pa larymau sydd ymlaen", "expected_intent": "alarm:alarm_query", "expected_slots": {}, "split": "test"}
{"utterance": "ar ba ddiwrnod mae fy mhenblwydd yn cwympo eleni mehefin y seithfed ar hugain", "expected_intent": "datetime:datetime_query", "expected_slots": {"event_name": "mhenblwydd", "date": "mehefin y seithfed ar hugain"}, "split": "test"}
{"utterance": "a wyf angen siaced", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "siaced"}, "split": "test"}
{"utterance": "yr wyf eisiau coffi yn ddyddiol", "expected_intent": "iot:iot_coffee", "expected_slots": {"date": "yn ddyddiol"}, "split": "test"}
{"utterance": "tro'r soced plwg wemo ymlaen", "expected_intent": "iot:iot_wemo_on", "expected_slots": {"device_type": "soced plwg wemo"}, "split": "test"}
{"utterance": "newid y lampau i fod yn lliw gwahanol", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {}, "split": "test"}
{"utterance": "cofiwch sut deimlais i am y gân yma", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "faint o'r gloch yw hi mewn dinas arall", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "dinas arall"}, "split": "test"}
{"utterance": "gwna'r goleuadau yn binc", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {"color_type": "binc"}, "split": "test"}
{"utterance": "cwyd uchder seinydd", "expected_intent": "audio:audio_volume_up", "expected_slots": {}, "split": "test"}
{"utterance": "cliria'r data", "expected_intent": "audio:audio_volume_mute", "expected_slots": {}, "split": "test"}
{"utterance": "oes na unrhyw newyddion olly", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "chwarae yr holl gerddoriaeth gan billy joel", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "billy joel"}, "split": "test"}
{"utterance": "faint o oriau o bellter sydd rhwng fy lleoliad ac efrog newydd", "expected_intent": "datetime:datetime_convert", "expected_slots": {"place_name": "efrog newydd"}, "split": "test"}
{"utterance": "dihunwch fi mewn tri deg munud", "expected_intent": "alarm:alarm_set", "expected_slots": {"time": "tri deg munud"}, "split": "test"}
{"utterance": "ydy fy larwm wedi osod", "expected_intent": "alarm:alarm_query", "expected_slots": {}, "split": "test"}
{"utterance": "cau lawr y sŵn", "expected_intent": "audio:audio_volume_mute", "expected_slots": {}, "split": "test"}
{"utterance": "sut mae hi tu allan", "expected_intent": "weather:weather_query", "expected_slots": {}, "split": "test"}
{"utterance": "mewnbyna awgrymiad cân", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "chwiliwch am yr amser lleol presennol a rhanbarth amser", "expected_intent": "datetime:datetime_query", "expected_slots": {}, "split": "test"}
{"utterance": "faint o'r gloch yw hi mewn dinas", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "dinas"}, "split": "test"}
{"utterance": "arbed fy marn ar gân elin fflur", "expected_intent": "music:music_likeness", "expected_slots": {"artist_name": "elin fflur"}, "split": "test"}
{"utterance": "gosod hysbysiadau ar y trychinebau tywydd cyfredol yn ewrop", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "trychinebau tywydd", "place_name": "ewrop"}, "split": "test"}
{"utterance": "lleihewch y goleuadau uwchben", "expected_intent": "iot:iot_hue_lightdim", "expected_slots": {"house_place": "uwchben"}, "split": "test"}
{"utterance": "chwarae caneuon gan edward h. dafis", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "edward h. dafis"}, "split": "test"}
{"utterance": "wyddost ti am y jôc hon", "expected_intent": "general:general_joke", "expected_slots": {}, "split": "test"}
{"utterance": "y tymheredd y tu allan", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "tymheredd"}, "split": "test"}
{"utterance": "trowch bant fy larwm cyntaf", "expected_intent": "alarm:alarm_remove", "expected_slots": {}, "split": "test"}
{"utterance": "chwarae fy trac sain", "expected_intent": "play:play_music", "expected_slots": {"playlist_name": "fy trac sain"}, "split": "test"}
{"utterance": "trowch larwm mlan ar gyfer hanner awr wedi tri y prynhawn heddiw", "expected_intent": "alarm:alarm_set", "expected_slots": {"time": "hanner awr wedi tri y prynhawn", "date": "heddiw"}, "split": "test"}
{"utterance": "a fydd hi'n bwrw glaw nawr", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "glaw"}, "split": "test"}
{"utterance": "faint o'r gloch mae fy archeb domino's yn debygol o gyrraedd", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"business_name": "domino's"}, "split": "test"}
{"utterance": "hoffwn wybod faint o'r gloch yw hi y funud yma", "expected_intent": "datetime:datetime_query", "expected_slots": {}, "split": "test"}
{"utterance": "newyddion am y damwain trên", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "damwain trên"}, "split": "test"}
{"utterance": "bydde ti'n hoffi gweld", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {}, "split": "test"}
{"utterance": "ar ba ddiwrnod o'r wythnos mae yr ail ar hugain o fis yma", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "yr ail ar hugain o fis yma"}, "split": "test"}
{"utterance": "cerddoriaeth diffiniad", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "diffiniad"}, "split": "test"}
{"utterance": "helo dw'i eisiau diffodd fy mhlwg wemo", "expected_intent": "iot:iot_wemo_off", "expected_slots": {"device_type": "mhlwg wemo"}, "split": "test"}
{"utterance": "pwy a enillodd yr etholiad arlywyddol eleni", "expected_intent": "qa:qa_factoid", "expected_slots": {"news_topic": "yr etholiad arlywyddol", "date": "eleni"}, "split": "test"}
{"utterance": "olly chwarae ni allaf deimlo fy wyneb", "expected_intent": "play:play_music", "expected_slots": {"song_name": "ni allaf deimlo fy wyneb"}, "split": "test"}
{"utterance": "beth yw'r jôc mwyaf doniol erioed", "expected_intent": "general:general_joke", "expected_slots": {"joke_type": "mwyaf doniol"}, "split": "test"}
{"utterance": "hoffem arbed fy marn a gwybod pa chwaraewyr sy'n medru chwarae y gân yna", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "paratoa paned o goffi i mi", "expected_intent": "iot:iot_coffee", "expected_slots": {}, "split": "test"}
{"utterance": "diffoddwch y socedi", "expected_intent": "iot:iot_wemo_off", "expected_slots": {}, "split": "test"}
{"utterance": "os gweli di'n dda muda fy seinydd", "expected_intent": "audio:audio_volume_mute", "expected_slots": {}, "split": "test"}
{"utterance": "ychwanega y gân hon fel y gân nesaf i'w chwarae", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "am faint o'r gloch mae fy larymau wedi eu gosod", "expected_intent": "alarm:alarm_query", "expected_slots": {}, "split": "test"}
{"utterance": "a fyddaf angen ambarel yr wythnos yma", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "ambarel", "date": "wythnos yma"}, "split": "test"}
{"utterance": "gwna fy arferol", "expected_intent": "iot:iot_coffee", "expected_slots": {"coffee_type": "arferol"}, "split": "test"}
{"utterance": "fedri di wneud yr ystafell yn oleuach", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {"house_place": "ystafell"}, "split": "test"}
{"utterance": "dywed wrthyf y newyddion am lan a lawr y farchnad cyfranddaliadau", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "lan a lawr y farchnad cyfranddaliadau"}, "split": "test"}
{"utterance": "galli di wneud coffi os gweli di'n dda", "expected_intent": "iot:iot_coffee", "expected_slots": {}, "split": "test"}
{"utterance": "gwnewch y goleuadau yn naturiol", "expected_intent": "iot:iot_hue_lightchange", "expected_slots": {}, "split": "test"}
{"utterance": "pryd mae'r dydd gwener y trydydd ar ddeg nesaf", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "dydd gwener y trydydd ar ddeg"}, "split": "test"}
{"utterance": "pa mor oer yw hi heddiw", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "oer", "date": "heddiw"}, "split": "test"}
{"utterance": "sut mae'r tywydd am wythnos yma", "expected_intent": "weather:weather_query", "expected_slots": {"date": "wythnos yma"}, "split": "test"}
{"utterance": "beth yw'r tywydd nawr", "expected_intent": "weather:weather_query", "expected_slots": {}, "split": "test"}
{"utterance": "gosodwch fy larwm ar gyfer canol dydd", "expected_intent": "alarm:alarm_set", "expected_slots": {"time": "canol dydd"}, "split": "test"}
{"utterance": "alexa gostwng y goleuadau yn y tŷ", "expected_intent": "iot:iot_hue_lightdim", "expected_slots": {"house_place": "tŷ"}, "split": "test"}
{"utterance": "diffodd pob dyfais actif", "expected_intent": "iot:iot_wemo_off", "expected_slots": {}, "split": "test"}
{"utterance": "gwnewch larwm newydd", "expected_intent": "alarm:alarm_set", "expected_slots": {}, "split": "test"}
{"utterance": "chwaraewch ganeuon o'r wythdegau i fi os gwelwch yn dda", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "wythdegau"}, "split": "test"}
{"utterance": "beth oedd y tywydd ar gyfer yr wythnos", "expected_intent": "weather:weather_query", "expected_slots": {"time": "yr wythnos"}, "split": "test"}
{"utterance": "larwm newydd ar gyfer chwech o'r gloch y bore", "expected_intent": "alarm:alarm_set", "expected_slots": {"time": "chwech o'r gloch y bore"}, "split": "test"}
{"utterance": "beth yw'r rhagolygon am ddydd sadwrn", "expected_intent": "weather:weather_query", "expected_slots": {"date": "ddydd sadwrn"}, "split": "test"}
{"utterance": "olly cansla pob larwm ymarfer pêl droed", "expected_intent": "alarm:alarm_remove", "expected_slots": {"alarm_type": "ymarfer pêl droed"}, "split": "test"}
{"utterance": "sai eisiau unrhyw larymau", "expected_intent": "alarm:alarm_remove", "expected_slots": {}, "split": "test"}
{"utterance": "nid oes neb yn gwybod", "expected_intent": "play:play_music", "expected_slots": {"song_name": "nid oes neb yn gwybod"}, "split": "test"}
{"utterance": "gwiriwch a yw'r larwm diofyn wedi ei osod", "expected_intent": "alarm:alarm_query", "expected_slots": {}, "split": "test"}
{"utterance": "dyma'r gwirionedd ynglŷn â phryd ar glud on ran cyllideb rhywun", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "cadarnhau tocyn teithio i'r gymraeg", "expected_intent": "transport:transport_ticket", "expected_slots": {"place_name": "gymraeg"}, "split": "test"}
{"utterance": "dywedwch wrtha i beth yw'r amser yn san francisco os gwelwch yn dda", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "san francisco"}, "split": "test"}
{"utterance": "dod o hyd i ganeuon o fy rhestr chwarae fand mawr", "expected_intent": "play:play_music", "expected_slots": {"playlist_name": "rhestr chwarae fand mawr"}, "split": "test"}
{"utterance": "gosod y peiriant coffi i fod ymlaen", "expected_intent": "iot:iot_coffee", "expected_slots": {"device_type": "peiriant coffi"}, "split": "test"}
{"utterance": "sgipia dau gân", "expected_intent": "music:music_settings", "expected_slots": {"player_setting": "sgipia"}, "split": "test"}
{"utterance": "diffodd golau yr ystafell fyw", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"house_place": "ystafell fyw"}, "split": "test"}
{"utterance": "olly diffodd y golau yn yr ystafell fyw", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"house_place": "ystafell fyw"}, "split": "test"}
{"utterance": "chwarae'r gân ddiweddaraf o'r albwm y gath os gweli'n dda", "expected_intent": "play:play_music", "expected_slots": {"music_album": "y gath"}, "split": "test"}
{"utterance": "fedri di chwarae y gân gan yr artist madonna", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "madonna"}, "split": "test"}
{"utterance": "allwch chi chwarae cân michael jackson os gwelwch yn dda", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "michael jackson"}, "split": "test"}
{"utterance": "lleihau dwyster y golau", "expected_intent": "iot:iot_hue_lightdim", "expected_slots": {}, "split": "test"}
{"utterance": "pa fath o dywydd y dylwn ei ddisgwyl yr wythnos hon", "expected_intent": "weather:weather_query", "expected_slots": {"date": "yr wythnos hon"}, "split": "test"}
{"utterance": "dwi eisiau gwybod am y brexit", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "brexit"}, "split": "test"}
{"utterance": "tagia'r gân yma gyda pum seren", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "adia fy marn i'r gân hon gwych", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "troi fy ngoleuadau i lawr i lefel is o ddisgleirdeb", "expected_intent": "iot:iot_hue_lightdim", "expected_slots": {}, "split": "test"}
{"utterance": "troswch wyth o'r gloch y bore amser manila i amser efrog newydd", "expected_intent": "datetime:datetime_convert", "expected_slots": {"time": "wyth o'r gloch y bore", "place_name": "efrog newydd"}, "split": "test"}
{"utterance": "gostwng uchder y seinydd os gweli di'n dda", "expected_intent": "audio:audio_volume_down", "expected_slots": {}, "split": "test"}
{"utterance": "diffodd y cryndod ar y seinydd", "expected_intent": "audio:audio_volume_mute", "expected_slots": {}, "split": "test"}
{"utterance": "beth yw'r dyddiad dydd mercher nesaf", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "dydd mercher"}, "split": "test"}
{"utterance": "yr ydw i yn hoffi cerddoriaeth", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "siri diffodd y goleuadau yn yr ystafell ymolchi", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"house_place": "ystafell ymolchi"}, "split": "test"}
{"utterance": "gosod hysbysiad am newyddion amgylcheddol", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "amgylcheddol"}, "split": "test"}
{"utterance": "enw cân", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "arbed y gân hwn i'r rhestr chwarae", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "ydy'r gân gan linda healy", "expected_intent": "music:music_query", "expected_slots": {"artist_name": "linda healy"}, "split": "test"}
{"utterance": "beth ydi'r newyddion sy'n torri ar y foment", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "os gwelwch yn dda chwarae cerddoriaeth o gymysgedd pop yn unig", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "gymysgedd pop"}, "split": "test"}
{"utterance": "chwarae dim ond caneuon trist yn y chwaraewr cerdd", "expected_intent": "play:play_music", "expected_slots": {"music_descriptor": "trist", "device_type": "chwaraewr cerdd"}, "split": "test"}
{"utterance": "dangos newyddion y b. b. c. am ymfudiad", "expected_intent": "news:news_query", "expected_slots": {"media_type": "b. b. c.", "news_topic": "ymfudiad"}, "split": "test"}
{"utterance": "trwsio larwm", "expected_intent": "alarm:alarm_set", "expected_slots": {}, "split": "test"}
{"utterance": "olly cael y newyddion poblogaidd o'r b. b. c.", "expected_intent": "news:news_query", "expected_slots": {"media_type": "b. b. c."}, "split": "test"}
{"utterance": "cael y newyddion poblogaidd o'r b. b. c.", "expected_intent": "news:news_query", "expected_slots": {"media_type": "b. b. c."}, "split": "test"}
{"utterance": "sut y bydd y tywydd ar fawrth yr ugeinfed dwy fil ac un deg saith", "expected_intent": "weather:weather_query", "expected_slots": {"date": "fawrth yr ugeinfed dwy fil ac un deg saith"}, "split": "test"}
{"utterance": "ydy hi'n ugeinfed o fawrth heddiw", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "ugeinfed o fawrth heddiw"}, "split": "test"}
{"utterance": "chwaraewch ganeuon gwyneth glyn yn unig os gwelwch yn dda", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "gwyneth glyn"}, "split": "test"}
{"utterance": "dangos y tywydd", "expected_intent": "weather:weather_query", "expected_slots": {}, "split": "test"}
{"utterance": "ydi chi'n dosbarthu", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"order_type": "dosbarthu"}, "split": "test"}
{"utterance": "roc", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "roc"}, "split": "test"}
{"utterance": "rho y dyson ymlaen rwan a glanha yr ystafell fyw", "expected_intent": "iot:iot_cleaning", "expected_slots": {"device_type": "dyson", "house_place": "ystafell fyw"}, "split": "test"}
{"utterance": "amser rhwng unol daleithiau a chanada", "expected_intent": "datetime:datetime_convert", "expected_slots": {"place_name": "chanada"}, "split": "test"}
{"utterance": "gwahaniaeth amser rhwng cymru a'r unol daleithiau", "expected_intent": "datetime:datetime_convert", "expected_slots": {"place_name": "unol daleithiau"}, "split": "test"}
{"utterance": "cyflwr oeri isel", "expected_intent": "weather:weather_query", "expected_slots": {}, "split": "test"}
{"utterance": "atgoffa fi o'r amser", "expected_intent": "datetime:datetime_query", "expected_slots": {}, "split": "test"}
{"utterance": "chwarae cerddoriaeth techno", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "techno"}, "split": "test"}
{"utterance": "olly rho dipyn o olau gwan i mi", "expected_intent": "iot:iot_hue_lightdim", "expected_slots": {}, "split": "test"}
{"utterance": "diweddarwch i amser presennol", "expected_intent": "datetime:datetime_query", "expected_slots": {}, "split": "test"}
{"utterance": "gosod larwm chwech o'r gloch y bore", "expected_intent": "alarm:alarm_set", "expected_slots": {"time": "chwech o'r gloch y bore"}, "split": "test"}
{"utterance": "beth ydi'r diweddaraf am lanastr trump", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "lanastr trump"}, "split": "test"}
{"utterance": "s.", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "diffodd y soced", "expected_intent": "iot:iot_wemo_off", "expected_slots": {}, "split": "test"}
{"utterance": "cerddoriaeth", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "ydi golden dragon yn gwneud bwyd i fynd", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"business_name": "golden dragon", "order_type": "bwyd i fynd"}, "split": "test"}
{"utterance": "darllen y pennawdau cylchgrawn golwg diweddaraf i mi", "expected_intent": "news:news_query", "expected_slots": {"media_type": "cylchgrawn golwg"}, "split": "test"}
{"utterance": "beth yw'r storiau pennaf ar c. n. n.", "expected_intent": "news:news_query", "expected_slots": {"media_type": "c. n. n."}, "split": "test"}
{"utterance": "chwarae'r cerddoriaeth", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "wnewch chi roi'r gerddoriaeth mlan", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "faint o'r gloch yw hi yng nghanada nawr", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "nghanada"}, "split": "test"}
{"utterance": "ydi hi'n mynd i fwrw glaw yn hwyrach", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "fwrw glaw"}, "split": "test"}
{"utterance": "oes angen ymbarél am y nos", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "ymbarél", "timeofday": "nos"}, "split": "test"}
{"utterance": "a fedraf wisgo fy sandalau heddiw", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "sandalau", "date": "heddiw"}, "split": "test"}
{"utterance": "oes angen i mi gymryd gwydraid haul", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "gwydraid haul"}, "split": "test"}
{"utterance": "dwi angen i chi ddihuno fi am chwech o'r gloch y bore", "expected_intent": "alarm:alarm_set", "expected_slots": {"time": "chwech o'r gloch y bore"}, "split": "test"}
{"utterance": "torra lawr yr uchder", "expected_intent": "audio:audio_volume_down", "expected_slots": {}, "split": "test"}
{"utterance": "archeba pitsa i'w ddosbarthu", "expected_intent": "takeaway:takeaway_order", "expected_slots": {"food_type": "pitsa", "order_type": "ddosbarthu"}, "split": "test"}
{"utterance": "beth yw'r gwahaniaeth amser rhwng california ac efrog newydd", "expected_intent": "datetime:datetime_convert", "expected_slots": {"place_name": "efrog newydd"}, "split": "test"}
{"utterance": "rho'r holl oleuadau", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {"device_type": "holl oleuadau"}, "split": "test"}
{"utterance": "trosa hanner awr wedi wyth o amser canolog i g. m. t.", "expected_intent": "datetime:datetime_convert", "expected_slots": {"time": "hanner awr wedi wyth", "time_zone": "g. m. t."}, "split": "test"}
{"utterance": "tywydd ar hyn o bryd", "expected_intent": "weather:weather_query", "expected_slots": {"time": "hyn o bryd"}, "split": "test"}
{"utterance": "muda am un awr", "expected_intent": "audio:audio_volume_mute", "expected_slots": {"time": "un awr"}, "split": "test"}
{"utterance": "pa bryd y dylwn fynd am dro", "expected_intent": "weather:weather_query", "expected_slots": {"event_name": "am dro"}, "split": "test"}
{"utterance": "mae'r gân yn y cefndir yn dda", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "pwy yw cyfarwyddwr cerddorol y gân yma", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "paid gwneud unrhyw syniau", "expected_intent": "audio:audio_volume_mute", "expected_slots": {}, "split": "test"}
{"utterance": "pwy sy'n dosbarthu gyflymaf", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"order_type": "dosbarthu"}, "split": "test"}
{"utterance": "ydi'r gân yma gan ed sheeran", "expected_intent": "music:music_query", "expected_slots": {"artist_name": "ed sheeran"}, "split": "test"}
{"utterance": "dw'i eisiau reggae", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "reggae"}, "split": "test"}
{"utterance": "gosodwch larwm ar gyfer naw o'r gloch y bore dydd sul nesaf", "expected_intent": "alarm:alarm_set", "expected_slots": {"time": "naw o'r gloch y bore", "date": "dydd sul nesaf"}, "split": "test"}
{"utterance": "canfod bwyd ac archebu", "expected_intent": "takeaway:takeaway_order", "expected_slots": {}, "split": "test"}
{"utterance": "gosod golau y gegin i lefel addas", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {"house_place": "gegin"}, "split": "test"}
{"utterance": "goleua'r goleuadau yn yr ystafell fyw", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {"house_place": "ystafell fyw"}, "split": "test"}
{"utterance": "bydd angen siaced sy'n cau dros bopeth os yw hi'n rhy stormus gyda'r nos", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "rhy stormus", "timeofday": "gyda'r nos"}, "split": "test"}
{"utterance": "bydd angen sanau gynnes arnaf yn y gaeaf yn y bore", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "gaeaf", "timeofday": "bore"}, "split": "test"}
{"utterance": "galli di newid yr uchder", "expected_intent": "audio:audio_volume_other", "expected_slots": {}, "split": "test"}
{"utterance": "tro'r goleuadau i ffwrdd", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {}, "split": "test"}
{"utterance": "agor tymheredd", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "tymheredd"}, "split": "test"}
{"utterance": "chwaraewch yma o hyd gan dafydd iwan", "expected_intent": "play:play_music", "expected_slots": {"song_name": "yma o hyd", "artist_name": "dafydd iwan"}, "split": "test"}
{"utterance": "gwiria pris y pryd a popeth", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"food_type": "pryd"}, "split": "test"}
{"utterance": "lleihau uchder", "expected_intent": "audio:audio_volume_down", "expected_slots": {}, "split": "test"}
{"utterance": "beth sydd ar y radio ar hyn o bryd", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "beth yw enw'r darn rydych chi'n chwarae", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "chwarae cân ddiwethaf", "expected_intent": "play:play_music", "expected_slots": {"song_name": "cân", "music_descriptor": "ddiwethaf"}, "split": "test"}
{"utterance": "larwm deg o'r gloch y bore", "expected_intent": "alarm:alarm_set", "expected_slots": {"time": "deg o'r gloch y bore"}, "split": "test"}
{"utterance": "chwarae peth cerddoriaeth gan y beatles", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "beatles"}, "split": "test"}
{"utterance": "sicrhewch fy mod i'n gorffod codi am chwech o'r gloch y bore", "expected_intent": "alarm:alarm_set", "expected_slots": {"time": "chwech", "timeofday": "bore"}, "split": "test"}
{"utterance": "arddongoswch dyddiad", "expected_intent": "datetime:datetime_query", "expected_slots": {}, "split": "test"}
{"utterance": "gofyn am y tywydd gyda'r nos heddiw", "expected_intent": "weather:weather_query", "expected_slots": {"timeofday": "gyda'r nos", "date": "heddiw"}, "split": "test"}
{"utterance": "diffodd y soced plwg wemo", "expected_intent": "iot:iot_wemo_off", "expected_slots": {"device_type": "soced plwg wemo"}, "split": "test"}
{"utterance": "chware'r gerddoriaeth gan bob delyn a'r ebillion i fi", "expected_intent": "play:play_music", "expected_slots": {"artist_name": "bob delyn a'r ebillion"}, "split": "test"}
{"utterance": "a ddylwn i fynd â fy nghot law gyda mi nawr", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "nghot law"}, "split": "test"}
{"utterance": "faint o'r gloch yw hi yn las vegas", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "las vegas"}, "split": "test"}
{"utterance": "pa ddiwrnod o'r wythnos yw awst y pymthegfed", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "awst y pymthegfed"}, "split": "test"}
{"utterance": "chwarae fy rhestr chwarae caneuon parti", "expected_intent": "play:play_music", "expected_slots": {"playlist_name": "caneuon parti"}, "split": "test"}
{"utterance": "dweud y pennawdau newyddion wrtha'i", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "bryn terfel", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "dechrau hwfro", "expected_intent": "iot:iot_cleaning", "expected_slots": {"device_type": "hwfro"}, "split": "test"}
{"utterance": "amser nawr", "expected_intent": "datetime:datetime_query", "expected_slots": {}, "split": "test"}
{"utterance": "gwrando i fy ffefrynnau", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "dangos y tywydd yfory yn yr ardal yma i mi", "expected_intent": "weather:weather_query", "expected_slots": {"date": "yfory", "place_name": "yr ardal yma"}, "split": "test"}
{"utterance": "dangos rhagolygon saith diwrnod am yr wythnos hon", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "rhagolygon saith diwrnod", "date": "yr wythnos hon"}, "split": "test"}
{"utterance": "goleua golau y neuadd", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {"house_place": "neuadd"}, "split": "test"}
{"utterance": "a ddylwn newid teiars fy nghar am deiars eira yn fuan", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "eira"}, "split": "test"}
{"utterance": "chwarter i ddau", "expected_intent": "datetime:datetime_query", "expected_slots": {"time": "chwarter i ddau"}, "split": "test"}
{"utterance": "sut mae'r tywydd yn y brifddinas", "expected_intent": "weather:weather_query", "expected_slots": {"place_name": "y brifddinas"}, "split": "test"}
{"utterance": "amser yn llundain ar y foment", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "llundain"}, "split": "test"}
{"utterance": "ddyle'n ni wisgo cot glaw cyn mynd allan", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "cot glaw"}, "split": "test"}
{"utterance": "gosod y gosodiad sain diofyn", "expected_intent": "audio:audio_volume_other", "expected_slots": {}, "split": "test"}
{"utterance": "chwarae cân tawel", "expected_intent": "play:play_music", "expected_slots": {"song_name": "tawel"}, "split": "test"}
{"utterance": "trons dy dad gan gwibdaith hen fran", "expected_intent": "play:play_music", "expected_slots": {"song_name": "trons dy dad", "artist_name": "gwibdaith hen fran"}, "split": "test"}
{"utterance": "gostwng ugain y cant", "expected_intent": "audio:audio_volume_down", "expected_slots": {"change_amount": "ugain y cant"}, "split": "test"}
{"utterance": "dweud wrtha'i am dywydd yr wythnos hon", "expected_intent": "weather:weather_query", "expected_slots": {"date": "wythnos hon"}, "split": "test"}
{"utterance": "dw'i angen archebu peth bwyd o pizza hut", "expected_intent": "takeaway:takeaway_order", "expected_slots": {"business_name": "pizza hut"}, "split": "test"}
{"utterance": "diffodd y soced plwg smart", "expected_intent": "iot:iot_wemo_off", "expected_slots": {"device_type": "soced plwg smart"}, "split": "test"}
{"utterance": "sut y mae hinsawdd aberystwyth heddiw", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "hinsawdd aberystwyth", "date": "heddiw"}, "split": "test"}
{"utterance": "pwnc llosg", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "diffodd y pŵer os gweli di'n dda", "expected_intent": "iot:iot_wemo_off", "expected_slots": {}, "split": "test"}
{"utterance": "gwiriwch ydy'r larwm wedi ei osod ar gyfer chwech o'r gloch y bore", "expected_intent": "alarm:alarm_query", "expected_slots": {"time": "chwech o'r gloch y bore"}, "split": "test"}
{"utterance": "ailchwarae y gerddoriaeth", "expected_intent": "music:music_settings", "expected_slots": {"player_setting": "ailchwarae"}, "split": "test"}
{"utterance": "torr y caneuon yn y gerddoriaeth yma", "expected_intent": "music:music_settings", "expected_slots": {}, "split": "test"}
{"utterance": "gwna goffi os gweli di'n dda", "expected_intent": "iot:iot_coffee", "expected_slots": {}, "split": "test"}
{"utterance": "beth yw'r diweddariad diweddaraf am uwchraddio yr m. pedwar", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "uwchraddio yr m. pedwar"}, "split": "test"}
{"utterance": "unrhyw newyddion sy'n torri o'r huffington post", "expected_intent": "news:news_query", "expected_slots": {"media_type": "huffington post"}, "split": "test"}
{"utterance": "chwarae gân dda oddi ar fy rhestr chwarae", "expected_intent": "play:play_music", "expected_slots": {"music_descriptor": "gân dda"}, "split": "test"}
{"utterance": "dywed jôc dda wrthyf y funud yma", "expected_intent": "general:general_joke", "expected_slots": {"joke_type": "dda"}, "split": "test"}
{"utterance": "ydi'r ddinas yn rhatach neu drytach i fyw", "expected_intent": "weather:weather_query", "expected_slots": {"place_name": "ddinas"}, "split": "test"}
{"utterance": "pa mor ddiogel ywr dinas ynglyn a gyfraith a threfn", "expected_intent": "weather:weather_query", "expected_slots": {}, "split": "test"}
{"utterance": "galli di stopio siarad os gweli di'n dda", "expected_intent": "audio:audio_volume_mute", "expected_slots": {}, "split": "test"}
{"utterance": "fedri di archebu peth bwyd i mi", "expected_intent": "takeaway:takeaway_order", "expected_slots": {}, "split": "test"}
{"utterance": "yr wyf eisiau i ti chwarae bohemian rhapsody i mi", "expected_intent": "play:play_music", "expected_slots": {"song_name": "bohemian rhapsody"}, "split": "test"}
{"utterance": "wnes i osod larwm i gael tabledi ganol dydd", "expected_intent": "alarm:alarm_query", "expected_slots": {"event_name": "i gael tabledi", "timeofday": "ganol dydd"}, "split": "test"}
{"utterance": "dangos y newyddion diweddaraf i mi o'r cenhedloedd unedig", "expected_intent": "news:news_query", "expected_slots": {"media_type": "cenhedloedd unedig"}, "split": "test"}
{"utterance": "addasa'r goleuadau i osodiad is", "expected_intent": "iot:iot_hue_lightdim", "expected_slots": {}, "split": "test"}
{"utterance": "a fyddaf angen fy esgidiau eira p'nawn yma", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "esgidiau eira", "timeofday": "p'nawn yma"}, "split": "test"}
{"utterance": "faint o'r gloch yw hi yn rhanbarth amser canolog", "expected_intent": "datetime:datetime_query", "expected_slots": {"time_zone": "canolog"}, "split": "test"}
{"utterance": "pwy yw hwn ar y radio", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "pa artist yw hwn", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "gostwng disgleirdeb y goleuadau", "expected_intent": "iot:iot_hue_lightdim", "expected_slots": {}, "split": "test"}
{"utterance": "fydd hi yn noson drymaidd", "expected_intent": "weather:weather_query", "expected_slots": {"timeofday": "noson", "weather_descriptor": "drymaidd"}, "split": "test"}
{"utterance": "a ddylwn fynd a siwmper ynteu côt i'r gwaith heddiw", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "côt", "date": "heddiw"}, "split": "test"}
{"utterance": "a fyddaf angen eli haul y prynhawn yma", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "eli haul", "timeofday": "y prynhawn yma"}, "split": "test"}
{"utterance": "trowch mlan hoff ganeuon", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "coffi", "expected_intent": "iot:iot_coffee", "expected_slots": {}, "split": "test"}
{"utterance": "a fydd hi'n ddiwrnod glawog yfory", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "glawog", "date": "yfory"}, "split": "test"}
{"utterance": "hei olly diffodd y golau", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {}, "split": "test"}
{"utterance": "ychwanega'r gân ddewisol", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "a fyddaf angen eli haul", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "eli haul"}, "split": "test"}
{"utterance": "a wnes adael y lamp ymlaen yn y garej", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"house_place": "garej"}, "split": "test"}
{"utterance": "chwarae cerddoriaeth rap", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "rap"}, "split": "test"}
{"utterance": "dechrau y pot coffi os gweli di'n dda", "expected_intent": "iot:iot_coffee", "expected_slots": {"device_type": "pot coffi"}, "split": "test"}
{"utterance": "gwna'r coffi", "expected_intent": "iot:iot_coffee", "expected_slots": {}, "split": "test"}
{"utterance": "paid siarad am awr", "expected_intent": "audio:audio_volume_mute", "expected_slots": {"time": "am awr"}, "split": "test"}
{"utterance": "mae stormydd yn debygol heddiw", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "stormydd", "date": "heddiw"}, "split": "test"}
{"utterance": "sawl munud sydd rhaid i mi aros i gasglu fy mwyd o golden dragon", "expected_intent": "takeaway:takeaway_query", "expected_slots": {"business_name": "golden dragon"}, "split": "test"}
{"utterance": "diffoddwch golau porth", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"house_place": "porth"}, "split": "test"}
{"utterance": "diffodd golau yr ystafell wely am hanner awr wedi naw y nos", "expected_intent": "iot:iot_hue_lightoff", "expected_slots": {"house_place": "ystafell wely", "time": "hanner awr wedi naw y nos"}, "split": "test"}
{"utterance": "hoffwn glywed newyddion diweddaraf y byd ar gyfer heddiw", "expected_intent": "news:news_query", "expected_slots": {"place_name": "byd", "date": "heddiw"}, "split": "test"}
{"utterance": "creuwch larwm ar gyfer heddiw am ddeg o'r gloch y bore", "expected_intent": "alarm:alarm_set", "expected_slots": {"date": "heddiw", "time": "ddeg o'r gloch y bore"}, "split": "test"}
{"utterance": "a ddylwn i agor y to haul", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "agor y to haul"}, "split": "test"}
{"utterance": "oes unrhyw larymau wedi eu gosod yn bresennol", "expected_intent": "alarm:alarm_query", "expected_slots": {}, "split": "test"}
{"utterance": "hei sut y bydd y tywydd heddiw yn blaenau ffestiniog gwynedd", "expected_intent": "weather:weather_query", "expected_slots": {"date": "heddiw", "place_name": "blaenau ffestiniog gwynedd"}, "split": "test"}
{"utterance": "cadw fy marn am y gân", "expected_intent": "music:music_likeness", "expected_slots": {}, "split": "test"}
{"utterance": "archeba dwy aden gyda sglodion o'r siop fwyd tseiniaidd", "expected_intent": "takeaway:takeaway_order", "expected_slots": {"food_type": "aden gyda sglodion", "business_name": "siop fwyd tseiniaidd"}, "split": "test"}
{"utterance": "gwybodaeth am dywydd yr wythnos hon", "expected_intent": "weather:weather_query", "expected_slots": {"date": "yr wythnos hon"}, "split": "test"}
{"utterance": "hei faint o'r gloch yw hi yn dallas texas", "expected_intent": "datetime:datetime_query", "expected_slots": {"place_name": "dallas texas"}, "split": "test"}
{"utterance": "fyddet ti'n awgrymu ymbarél", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "ymbarél"}, "split": "test"}
{"utterance": "cadw fi lan gyda newyddion y byd", "expected_intent": "news:news_query", "expected_slots": {"place_name": "byd"}, "split": "test"}
{"utterance": "canfod pa gân yw hwn a dweud yr enw wrtha'i", "expected_intent": "music:music_query", "expected_slots": {}, "split": "test"}
{"utterance": "chwilia am jôcs doniol", "expected_intent": "general:general_joke", "expected_slots": {"joke_type": "doniol"}, "split": "test"}
{"utterance": "dw'i eisiau gwybod tywydd heddiw", "expected_intent": "weather:weather_query", "expected_slots": {"date": "heddiw"}, "split": "test"}
{"utterance": "glanha'r llawr", "expected_intent": "iot:iot_cleaning", "expected_slots": {"house_place": "llawr"}, "split": "test"}
{"utterance": "dileu larwm", "expected_intent": "alarm:alarm_remove", "expected_slots": {}, "split": "test"}
{"utterance": "muda am bum munud os gweli di'n dda", "expected_intent": "audio:audio_volume_mute", "expected_slots": {"time": "bum munud"}, "split": "test"}
{"utterance": "ydi sbectol haul yn ddewis da am heddiw", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "sbectol haul", "date": "heddiw"}, "split": "test"}
{"utterance": "gwnewch hi yn fwy disglair yma", "expected_intent": "iot:iot_hue_lightup", "expected_slots": {}, "split": "test"}
{"utterance": "a fydd angen ambarél arnaf heddiw", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "ambarél", "date": "heddiw"}, "split": "test"}
{"utterance": "ddyle'n ni wisgo siaced", "expected_intent": "weather:weather_query", "expected_slots": {"weather_descriptor": "siaced"}, "split": "test"}
{"utterance": "hei olly collais i ti", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "sut y mae'r tywydd heddiw", "expected_intent": "weather:weather_query", "expected_slots": {"date": "heddiw"}, "split": "test"}
{"utterance": "beth sydd ar dy feddwl", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "mi oedd fy niwrnod yn llawn gwaith olly", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "hei ddweud mwy wrthyf am fy nghyfarfodydd heddiw", "expected_intent": "general:general_quirky", "expected_slots": {"event_name": "nghyfarfodydd", "date": "heddiw"}, "split": "test"}
{"utterance": "pa bryd y mae pen blwydd fy ffrind cyn bo hir", "expected_intent": "general:general_quirky", "expected_slots": {"event_name": "pen blwydd", "relation": "ffrind"}, "split": "test"}
{"utterance": "os gweli di'n dda edrych beth ysgrifennaist ti am y cwestiwn yma", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "dw'i ddim yn gwybod sut i ateb y cwestin yma ti wedi gadael gair neu ddau allan", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "yr wyf mynd i weithio heddiw", "expected_intent": "general:general_quirky", "expected_slots": {"date": "heddiw"}, "split": "test"}
{"utterance": "cefais ddiwrnod gwael", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "fe wnes i helpu anghenus tlawd heddiw", "expected_intent": "general:general_quirky", "expected_slots": {"date": "heddiw"}, "split": "test"}
{"utterance": "yr wyf mor hapus heddiw cefais docynnau ar gyfer y cyngerdd", "expected_intent": "general:general_quirky", "expected_slots": {"date": "heddiw", "event_name": "cyngerdd"}, "split": "test"}
{"utterance": "faint mor hen wyt ti", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "beth yw dy enw", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "os oedd rhaid i ti ladd un person er mwyn achub tri bydde ti'n gwneud a pham", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "gadael i gael sgwrs", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "cefais fwyd cyn gynted ac y codais", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "hei sut mae'r tywydd heddiw", "expected_intent": "weather:weather_query", "expected_slots": {"date": "heddiw"}, "split": "test"}
{"utterance": "beth fyddech chi'n ei hargymell i mi ei ddarllen", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "hei olly fe wnês gyfarfod un o'm hen gyd-ddisgyblion heddiw", "expected_intent": "general:general_quirky", "expected_slots": {"date": "heddiw"}, "split": "test"}
{"utterance": "olly dw'i newydd lanhau fy nghar", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "mae yn gâs gen i pa mor hir y mae'r tagfeydd traffig yn mynd", "expected_intent": "general:general_quirky", "expected_slots": {"time": "hir"}, "split": "test"}
{"utterance": "beth yw bacwn wedi ei ysgwyd", "expected_intent": "general:general_quirky", "expected_slots": {"food_type": "bacwn wedi ei ysgwyd"}, "split": "test"}
{"utterance": "sut wyt ti'n teimlo heddiw", "expected_intent": "general:general_quirky", "expected_slots": {"date": "heddiw"}, "split": "test"}
{"utterance": "beth ydych chi am ei wneud heddiw", "expected_intent": "general:general_quirky", "expected_slots": {"date": "heddiw"}, "split": "test"}
{"utterance": "gwelais ci tarw heddiw", "expected_intent": "general:general_quirky", "expected_slots": {"date": "heddiw"}, "split": "test"}
{"utterance": "wyt ti yn meddwl y dylwn fynd i'r theatr heddiw", "expected_intent": "general:general_quirky", "expected_slots": {"place_name": "theatr", "date": "heddiw"}, "split": "test"}
{"utterance": "dywed sgor y gêm wrthaf os gweli di'n dda", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "mi oedd fy niwrnod yn anodd iawn", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "prynais docynnau pêl fas cyn y tymor", "expected_intent": "general:general_quirky", "expected_slots": {"event_name": "pêl fas cyn y tymor"}, "split": "test"}
{"utterance": "olly mae'n rhaid i mi ddweud wrthot am fy niwrnod", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "mi es i'r siop", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "yr wyf angen prynu petrol", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "dywed wrthai'r llefydd gorau i ymwelwyr ym mhen llŷn", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"place_name": "mhen llŷn"}, "split": "test"}
{"utterance": "sut mae fy wythnos sydd i ddod yn edrych", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "wythnos sydd i ddod"}, "split": "test"}
{"utterance": "feganiaeth", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "newyddion bwyd fegan", "expected_intent": "news:news_query", "expected_slots": {"news_topic": "bwyd fegan"}, "split": "test"}
{"utterance": "beth sy'n ffilm iranaidd da o dwy fil un deg chwech", "expected_intent": "recommendation:recommendation_movies", "expected_slots": {"date": "dwy fil un deg chwech"}, "split": "test"}
{"utterance": "beth yr wyt yn ei wneud efo fy nata a'm gwybodaeth", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "hei beth o ddiddordeb sydd wedi bod yn digwydd ym myd chwaraeon", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "pa nodweddion sydd gennyt wedi gynllunio am y dyfodol", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "mi oedd fy niwrnod yn wych", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "rho dipyn o gyngor iechyd i mi", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "sut i gyrraedd rhywle", "expected_intent": "transport:transport_query", "expected_slots": {}, "split": "test"}
{"utterance": "pa sŵn mae ci yn gwneud", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "beth sy'n digwydd yn ffrainc heddiw", "expected_intent": "news:news_query", "expected_slots": {"place_name": "ffrainc", "date": "heddiw"}, "split": "test"}
{"utterance": "beth fydd y tywydd dydd mercher nesaf", "expected_intent": "weather:weather_query", "expected_slots": {"date": "dydd mercher"}, "split": "test"}
{"utterance": "mae fy niwrnod yn un da gwna nodyn", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "helo sut mae dy ddydd", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "technoleg", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "ges i gyfarfod gyda sior heddiw", "expected_intent": "general:general_quirky", "expected_slots": {"event_name": "gyfarfod", "person": "sior", "date": "heddiw"}, "split": "test"}
{"utterance": "heddiw digwyddodd y canlynol i mi cefais gyfarfod â aled", "expected_intent": "general:general_quirky", "expected_slots": {"date": "heddiw", "event_name": "gyfarfod", "person": "aled"}, "split": "test"}
{"utterance": "cofia y cefais gyfarfod gyda gruff heddiw", "expected_intent": "general:general_quirky", "expected_slots": {"event_name": "gyfarfod", "person": "gruff"}, "split": "test"}
{"utterance": "galli di ddweud rhywbeth bach am ti dy hun", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "heddiw fe chwiliais ym mhobman am fy ffôn ond methais â dod o hyd iddi", "expected_intent": "general:general_quirky", "expected_slots": {"date": "heddiw"}, "split": "test"}
{"utterance": "wyt ti wedi clywed unrhyw gerddoriaeth da yn ddiweddar", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "oes yna le torri gwallt cathod yn unig yn y dref", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "trump", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "wyt ti'n glyfar", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "rhywbeth ar dy feddwl", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "yr oedd y tywydd yn ddrwg heddiw", "expected_intent": "general:general_quirky", "expected_slots": {"date": "heddiw"}, "split": "test"}
{"utterance": "sgoriau pêl fâs", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "beth rydw i'n ei hoffi heddiw", "expected_intent": "general:general_quirky", "expected_slots": {"date": "heddiw"}, "split": "test"}
{"utterance": "chwiliadau gwe", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "a fedri gynghori os gweli'n dda", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "taclau newydd", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "cyfryngau cymdeithasol", "expected_intent": "social:social_query", "expected_slots": {}, "split": "test"}
{"utterance": "cefais fy ngwrso gan gi", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "gofyn fân gwestiynau", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "sut mae'ch diwrnod wedi bod heddiw", "expected_intent": "general:general_quirky", "expected_slots": {"date": "heddiw"}, "split": "test"}
{"utterance": "ydi hi wedi bod yn ddiwrnod prysur", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "hanes", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "wyt ti'n hapus", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "marciwch heddiw fel dechrau fy neiet", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "heddiw", "event_name": "dechrau fy neiet"}, "split": "test"}
{"utterance": "yn gaws meddal yn well na chaled", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "gaws meddal"}, "split": "test"}
{"utterance": "fe gefais fy nyrchafu heddiw mae yn teimlo yn wych", "expected_intent": "general:general_quirky", "expected_slots": {"date": "heddiw"}, "split": "test"}
{"utterance": "chwarae fideos", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "hei olly wyt ti'n hoffi fy nghariad", "expected_intent": "general:general_quirky", "expected_slots": {"relation": "nghariad"}, "split": "test"}
{"utterance": "chwilio am wybodaeth arlein", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "mathemateg", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "beth wnaiff ddigwydd i mi os doi di yn ymdeimladol", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "oes gyda ti gariad", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "planhigion", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "cariad", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "helo ti fan yna", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "dechrau clecs", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "beth ydych chi'n ei wneud heddiw", "expected_intent": "general:general_quirky", "expected_slots": {"date": "heddiw"}, "split": "test"}
{"utterance": "pan ddeuais adref o'r lle hwn", "expected_intent": "general:general_quirky", "expected_slots": {"place_name": "o'r lle hwn"}, "split": "test"}
{"utterance": "iechyd", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "magu plant", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "beth yw dy oedran", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "beth wyt ti'n meddwl am y dyfodol", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "dweud newyddion diddorol", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "ffilmiau diweddaraf yn y sinemâu", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "pwy yw dy ddatblygwyr", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "gêmau fideo", "expected_intent": "play:play_game", "expected_slots": {}, "split": "test"}
{"utterance": "swyddi sy'n talu orau yn fy ardal ym maes marchnata digidol", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "wyt ti'n gweithio i m. i. pump", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "am beth y chwiliwyd amdano fwyaf ar google heddiw", "expected_intent": "general:general_quirky", "expected_slots": {"date": "heddiw"}, "split": "test"}
{"utterance": "alexa faint wyt ti'n ei wybod amdanaf", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "sticio i'r deiet", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "mannau gwyliau", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "wyt ti'n gwybod am unrhyw patrymau gweu da am ddim", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "dere ymlaen siarad yn dyner i mi", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "etholiadau yn yr arfaeth", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "materion economaidd", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "hei rydw i'n cael diwrnod gwael heddiw beth alla i ei wylio i godi fy nghalon", "expected_intent": "general:general_quirky", "expected_slots": {"date": "heddiw"}, "split": "test"}
{"utterance": "awgrymiadau iechyd cyffredinol", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "diweddariadau cyfeillion", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "wyt ti'n go iawn", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "cansla'r cyfarfod busnes ar dydd mercher", "expected_intent": "calendar:calendar_remove", "expected_slots": {"event_name": "cyfarfod busnes", "date": "dydd mercher"}, "split": "test"}
{"utterance": "beth wyt ti'n ei wybod am maes-b yn yr eisteddfod y flwyddyn nesaf", "expected_intent": "general:general_quirky", "expected_slots": {"event_name": "maes-b", "place_name": "eisteddfod", "date": "y flwyddyn nesaf"}, "split": "test"}
{"utterance": "a oes yna rywbeth y dylwn gael fy atgoffa amdano", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "atgoffa fi am fy amserlen ar gyfer y prynhawn", "expected_intent": "calendar:calendar_set", "expected_slots": {"timeofday": "prynhawn"}, "split": "test"}
{"utterance": "canslwch cyfarfod nesaf", "expected_intent": "calendar:calendar_remove", "expected_slots": {"event_name": "cyfarfod"}, "split": "test"}
{"utterance": "canslwch y brecwast yn nhŷ lleucu", "expected_intent": "calendar:calendar_remove", "expected_slots": {"meal_type": "brecwast", "place_name": "nhŷ lleucu"}, "split": "test"}
{"utterance": "ychwanegu nodyn atgoffa gyfarfod dydd sul gyda fy rhieni yng nghyfraith", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "gyfarfod", "date": "dydd sul", "relation": "rhieni yng nghyfraith"}, "split": "test"}
{"utterance": "olly byddaf yn cymryd diwrnod o wyliau yfory", "expected_intent": "general:general_quirky", "expected_slots": {"date": "yfory"}, "split": "test"}
{"utterance": "gosod gyfarfod dewi zephaniah phillips am ddeg y boreu fory", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "gyfarfod", "person": "dewi zephaniah phillips", "time": "ddeg y boreu", "date": "fory"}, "split": "test"}
{"utterance": "gosod wythnos gyntaf mis mehefin fel gwyliau yn fy nghalendr", "expected_intent": "calendar:calendar_set", "expected_slots": {"time": "wythnos gyntaf mis mehefin", "event_name": "gwyliau"}, "split": "test"}
{"utterance": "faint o nodiadau atgoffa sydd gyda fi", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "glanhewch fy nghalendr os gwelwch yn dda", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "tynna y cyfarfod am naw y bore oddi ar fy nghalendr", "expected_intent": "calendar:calendar_remove", "expected_slots": {"event_name": "cyfarfod", "time": "naw y bore"}, "split": "test"}
{"utterance": "atgoffa fi i olchi'r ffenestri", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "olchi'r ffenestri"}, "split": "test"}
{"utterance": "gosod ddigwyddiad ar gyfer dydd gwener", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "dydd gwener"}, "split": "test"}
{"utterance": "beth yw fy atgoffâd nesaf", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "gosod cyfarfod gyda sian ar ddydd sadwrn pedwar y p'nawn", "expected_intent": "calendar:calendar_set", "expected_slots": {"person": "sian", "date": "ddydd sadwrn", "time": "pedwar y p'nawn"}, "split": "test"}
{"utterance": "dileu fy nigwyddiad nesaf", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "dangoswch i mi fy nghyfarfodydd dydd gwener yma", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "dydd gwener yma"}, "split": "test"}
{"utterance": "dangos fy digwyddiad calendr prynhawn dydd gwener yma", "expected_intent": "calendar:calendar_query", "expected_slots": {"timeofday": "prynhawn", "date": "dydd gwener yma"}, "split": "test"}
{"utterance": "atgoffa fi am benblwydd fy mam wythnos ynghynt", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "benblwydd", "relation": "mam", "time": "wythnos ynghynt"}, "split": "test"}
{"utterance": "mae band da yn chwarae heno am naw yn y bar jazz dw'i eisiau mynd", "expected_intent": "calendar:calendar_set", "expected_slots": {"timeofday": "heno", "time": "am naw", "place_name": "bar jazz"}, "split": "test"}
{"utterance": "atgoffa fi am y gyfarfod fory am chwech", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "gyfarfod", "date": "fory", "time": "chwech"}, "split": "test"}
{"utterance": "rhestrwch fy amserlen heddiw", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "heddiw"}, "split": "test"}
{"utterance": "rhoi hysbysiad atgoffa i mi am y gyfarfod fory am ddeg y bore", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "gyfarfod", "date": "fory", "time": "ddeg y bore"}, "split": "test"}
{"utterance": "oes yna unrhyw ddigwyddiadau yn yr arfaeth", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "sefydlu hysbysiad am gyfarfod fory am ddeg", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "gyfarfod", "date": "fory", "time": "ddeg"}, "split": "test"}
{"utterance": "trefnu gyfarfod gyda'r adran gyfrifo ar ddau ddeg ar hugain o'r gloch ar ddydd gwener", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "gyfarfod", "business_name": "adran gyfrifo", "time": "ddau ddeg ar hugain o'r gloch", "date": "ddydd gwener"}, "split": "test"}
{"utterance": "a oes sioeau fore ar gael", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "sioeau", "timeofday": "fore"}, "split": "test"}
{"utterance": "rho amserlen y ffilm i mi", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "ffilm"}, "split": "test"}
{"utterance": "atgoffa fi godi linda am bump yn y nos ar y seithfed", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "godi", "person": "linda", "time": "bump", "timeofday": "y nos", "date": "seithfed"}, "split": "test"}
{"utterance": "atgoffa fi fory am ddeg y bore am y gyfarfod", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "fory", "time": "ddeg y bore", "event_name": "gyfarfod"}, "split": "test"}
{"utterance": "gosod nodyn atgoffa fis nesaf i newid fy olew", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "fis nesaf", "event_name": "newid fy olew"}, "split": "test"}
{"utterance": "beth sy'n digwydd ar ôl un a chyn dri p. m.", "expected_intent": "calendar:calendar_query", "expected_slots": {"time": "chyn dri p. m."}, "split": "test"}
{"utterance": "dileu ddigwyddiadau o'r calendr", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "gosod atgoffâd i argraffu'r dogfennau ar fore dydd mawrth", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "argraffu'r dogfennau", "timeofday": "fore", "date": "dydd mawrth"}, "split": "test"}
{"utterance": "ydi hi'n dydd gwener", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "dydd gwener"}, "split": "test"}
{"utterance": "dileu yr holl digwyddiadau", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "atgoffa fi i gymryd fy meddygyniaeth am naw y bore", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "meddygyniaeth", "time": "naw y bore"}, "split": "test"}
{"utterance": "gosod atgoffâd am hanner dydd i gael cinio gyda'r bos", "expected_intent": "calendar:calendar_set", "expected_slots": {"timeofday": "hanner dydd", "event_name": "cinio gyda'r bos"}, "split": "test"}
{"utterance": "a oes unrhyw gyfarfodydd wedi'u trefnu ar gyfer dydd mercher nesaf", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "gyfarfodydd", "date": "dydd mercher"}, "split": "test"}
{"utterance": "gwna'n siwr nad oes unrhyw ddigwyddiadau yn fy nghalendr", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "atgoffa fi am fy nghyfarfod awr cyn i'w ddechrau", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "nghyfarfod", "time": "awr"}, "split": "test"}
{"utterance": "ga i wybod beth sy'n rhaid i mi wneud y dydd sadwrn nesaf am chwech p. m.", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "dydd sadwrn", "time": "chwech p. m."}, "split": "test"}
{"utterance": "allwch chi atgoffa fy nghyfarfod nesaf gyda fy mhennaeth awr cyn iddo ddigwydd", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "nghyfarfod", "relation": "mhennaeth", "time": "awr cyn"}, "split": "test"}
{"utterance": "fedri di wirio'r ffeithiau ar y mater yma", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "dw'i angen cadarnhau holl gyfarfodydd heddiw", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "gyfarfodydd", "date": "heddiw"}, "split": "test"}
{"utterance": "chwanegu nodyn atgoffa o gynhadledd ar gyfer fory yn abertawe", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "gynhadledd", "date": "fory", "place_name": "abertawe"}, "split": "test"}
{"utterance": "mae gennyf ddigwyddiad yn abersoch yfory atgoffa fi", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "ddigwyddiad", "place_name": "abersoch", "date": "yfory"}, "split": "test"}
{"utterance": "rhowchi mi rhestr o bethau mae angen gwneud", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "dangos ddigwyddiadau yn y dyfodol", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "atgoffa fi yn", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "dileu'r digwyddiad olynnol", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "digwyddiad newydd", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "ychwanegu nodyn atgoffa at fy nghalendr bob blwyddyn ar y dyddiad hwn", "expected_intent": "calendar:calendar_set", "expected_slots": {"general_frequency": "bob blwyddyn"}, "split": "test"}
{"utterance": "canslwch y ddigwyddiad nesaf ar y calendr", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "rho'r amserlen am ddigwyddiadau heddiw", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "heddiw"}, "split": "test"}
{"utterance": "tynnu blwyddyn newydd o'r calendr", "expected_intent": "calendar:calendar_remove", "expected_slots": {"event_name": "blwyddyn newydd"}, "split": "test"}
{"utterance": "pa ddigwyddiadau sydd ymlaen yn fy nhref i yr wythnos hon", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"place_name": "nhref", "date": "yr wythnos hon"}, "split": "test"}
{"utterance": "gosod cyfarfod gyda jesse dydd mawrth nesaf am unarddeg y bore", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "cyfarfod", "person": "jesse", "date": "dydd mawrth", "time": "unarddeg y bore"}, "split": "test"}
{"utterance": "atgoffa fi i ddechrau paratoi erbyn pump o'r gloch os gwelwch yn dda", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "paratoi", "time": "pump o'r gloch"}, "split": "test"}
{"utterance": "adia cyfarfod tomos ar y cyntaf ar hugain am saith", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "cyfarfod tomos", "date": "cyntaf ar hugain", "time": "saith"}, "split": "test"}
{"utterance": "trefnwch cyfarfod gyda matt am unarddeg am ar ddydd iau", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "cyfarfod", "person": "matt", "time": "unarddeg am", "date": "ddydd iau"}, "split": "test"}
{"utterance": "trefna gyfarfod cinio efo bryn dydd mercher ganol dydd", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "gyfarfod cinio", "person": "bryn", "date": "dydd mercher", "timeofday": "ganol dydd"}, "split": "test"}
{"utterance": "rho atgoffâd pedair awr ar hugain cyn fy nghyfarfod gyda bt dydd gwener", "expected_intent": "calendar:calendar_set", "expected_slots": {"time": "pedair awr ar hugain", "event_name": "nghyfarfod", "person": "bt", "date": "dydd gwener"}, "split": "test"}
{"utterance": "chwilia fy nghalendr am y digwyddiad nesaf ac atgoffa fi cyn iddo ddigwydd", "expected_intent": "calendar:calendar_set", "expected_slots": {"time": "cyn"}, "split": "test"}
{"utterance": "dileuwch popeth ar fy nghalendr", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "cansla cyfarfod yfory o fy nghalendr", "expected_intent": "calendar:calendar_remove", "expected_slots": {"event_name": "cyfarfod", "date": "yfory"}, "split": "test"}
{"utterance": "adia fy nhaliad car ar y deuddegfed i fy nghalendr", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "nhaliad car", "date": "deuddegfed"}, "split": "test"}
{"utterance": "atgoffwch fi y diwrnod cyn bod fy nghar yn ddyledus", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "diwrnod cyn bod", "event_name": "nghar"}, "split": "test"}
{"utterance": "pa bryd y mae fy apwyntiad meddygol ar fawrth tri deg un", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "apwyntiad meddygol", "date": "fawrth tri deg un"}, "split": "test"}
{"utterance": "a fydd yna ddigwyddiadau yn y pentref y penwythnos yma", "expected_intent": "calendar:calendar_query", "expected_slots": {"place_name": "yn y pentref", "date": "penwythnos yma"}, "split": "test"}
{"utterance": "dilewuch y digwyddiadau ar gyfer y pedwerydd ar bymtheg o fy nghalendr", "expected_intent": "calendar:calendar_remove", "expected_slots": {"date": "pedwerydd ar bymtheg"}, "split": "test"}
{"utterance": "beth mae fy amserlen yn edrych fel heddiw", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "heddiw"}, "split": "test"}
{"utterance": "fedri di ailadrodd y digwyddiad yma", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "gosod nodyn atgoffa i fy hysbysu awr cyn gyfarfod cinio", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "gyfarfod cinio"}, "split": "test"}
{"utterance": "ydi'r rhaglen yma wedi'i drefnu", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "am bob dydd sul odrif setia atgoffâd am", "expected_intent": "calendar:calendar_set", "expected_slots": {"general_frequency": "dydd sul odrif"}, "split": "test"}
{"utterance": "setia cinio bob dydd am hanner awr wedi deuddeg", "expected_intent": "calendar:calendar_set", "expected_slots": {"meal_type": "cinio", "general_frequency": "bob dydd", "time": "hanner awr wedi deuddeg"}, "split": "test"}
{"utterance": "atgoffwch fi am y digwyddiad yma yn y dyfodol", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "a fedri roi fanylion i mi am y digwyddiad blynyddol sydd ar y chweched ar hugain o fawrth", "expected_intent": "general:general_quirky", "expected_slots": {"event_name": "digwyddiad", "general_frequency": "blynyddol", "date": "chweched ar hugain o fawrth"}, "split": "test"}
{"utterance": "mae penblwydd fy mam heddiw anfonwch hysbysiad i fi bob blwyddyn ar y dyddiad hwn", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "penblwydd", "relation": "mam", "date": "heddiw", "general_frequency": "bob blwyddyn"}, "split": "test"}
{"utterance": "deffra fi am chwech o'r gloch y bore dydd iau fel bod gennyf fi amser ar gyfer y cyfarfod", "expected_intent": "calendar:calendar_set", "expected_slots": {"time": "chwech o'r gloch y bore", "date": "dydd iau", "event_name": "cyfarfod"}, "split": "test"}
{"utterance": "pa bryd y mae fy apwyntiad nesaf gyda doctor evans", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "apwyntiad", "person": "doctor evans"}, "split": "test"}
{"utterance": "a oes gennyf fi unrhyw beth wedi ei gynllunio", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "dwi'n cael cyfarfod yfory gosod ef", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "cyfarfod", "date": "yfory"}, "split": "test"}
{"utterance": "atgoffa fi am y cyfarfod efo alun mis mawrth y pymthegfed", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "cyfarfod", "person": "alun", "time": "mawrth y pymthegfed"}, "split": "test"}
{"utterance": "gosod hysbysiad ar gyfer tair awr a hanner cyn gêm derfynol lloegr yr wythnos nesaf", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "gêm derfynol lloegr", "date": "yr wythnos nesaf"}, "split": "test"}
{"utterance": "fedri di fy atgoffa i fynd â'r sbwriel allan ar ddydd mawrth", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "sbwriel allan", "date": "ddydd mawrth"}, "split": "test"}
{"utterance": "mae'n argraff cyntaf da", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "wnaethoch chi roi'r atgoffâd ynglŷn â'r cyfarfod ar gyfer yfory", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "cyfarfod", "date": "yfory"}, "split": "test"}
{"utterance": "ble y mae lleoliad ble y cynhelir priodas tom", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "priodas"}, "split": "test"}
{"utterance": "beth yw'r digwyddiadau wythnos nesaf", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "wythnos nesaf"}, "split": "test"}
{"utterance": "atgoffa fi i ffonio mam mewn hanner awr os gweli'n dda", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "ffonio", "relation": "mam", "time": "mewn hanner awr"}, "split": "test"}
{"utterance": "atgoffa fi i anfon ebost i'r meistr ar ôl un awr", "expected_intent": "calendar:calendar_set", "expected_slots": {"relation": "meistr"}, "split": "test"}
{"utterance": "creuwch hysbysiad atgoffâd ar gyfer cyfarfod yfory", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "cyfarfod", "date": "yfory"}, "split": "test"}
{"utterance": "beth yw fy nghasgiau sydd yn yr afaeth", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "atgoffa fi am benblwydd elin bedair awr ar hugain ymlaen llaw", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "benblwydd", "person": "elin", "time": "bedair awr ar hugain ymlaen llaw"}, "split": "test"}
{"utterance": "atgoffa fi am ben blwydd fy mhriodas un diwrnod ymlaen llaw", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "ben blwydd fy mhriodas", "date": "un diwrnod ymlaen llaw"}, "split": "test"}
{"utterance": "cael gwared ar bob digwyddiadau gyda jeff", "expected_intent": "calendar:calendar_remove", "expected_slots": {"person": "jeff"}, "split": "test"}
{"utterance": "blociwch un awr o ddeg bore fory", "expected_intent": "calendar:calendar_set", "expected_slots": {"time": "ddeg", "timeofday": "bore", "date": "fory"}, "split": "test"}
{"utterance": "dwi ddim ar gael o bedwar tan chwech yn yr hwyrnos yfory marciwch fy nghalendr", "expected_intent": "calendar:calendar_set", "expected_slots": {"time": "chwech", "timeofday": "hwyrnos", "date": "yfory"}, "split": "test"}
{"utterance": "trefnwch apwyntiad un awr ar gyfer dydd sadwrn", "expected_intent": "calendar:calendar_set", "expected_slots": {"time": "un awr", "date": "dydd sadwrn"}, "split": "test"}
{"utterance": "dileuwch yr apwyntiad gyda george adams o fy nghalendr", "expected_intent": "calendar:calendar_remove", "expected_slots": {"event_name": "apwyntiad", "person": "george adams"}, "split": "test"}
{"utterance": "cliriwch fy nghalendr", "expected_intent": "calendar:calendar_remove", "expected_slots": {"time": "cliriwch"}, "split": "test"}
{"utterance": "beth sydd am heddiw", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "heddiw"}, "split": "test"}
{"utterance": "oes gen i unrhyw apwyntiadau", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "apwyntiadau"}, "split": "test"}
{"utterance": "beth sy'm mynd mlan heddiw o ddau tan bedwar y prynhawn", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "heddiw", "time": "ddau tan bedwar y prynhawn"}, "split": "test"}
{"utterance": "dim ond dweud wrthyf sut y bydd y tywydd yr wythnos nesaf yn sir benfro", "expected_intent": "email:email_query", "expected_slots": {"time": "yr wythnos nesaf", "place_name": "sir benfro"}, "split": "test"}
{"utterance": "atgoffa fi i wirio'r cawl am chwech o'r gloch", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "wirio'r cawl", "time": "chwech"}, "split": "test"}
{"utterance": "dangoswch cyfarfod gyda chleientiaid heddiw os gwelwch yn dda", "expected_intent": "calendar:calendar_query", "expected_slots": {"relation": "chleientiaid", "date": "heddiw"}, "split": "test"}
{"utterance": "oes unrhyw ddigwyddiadau wedi'i trefnu am y tri mis nesaf", "expected_intent": "calendar:calendar_query", "expected_slots": {"time": "tri mis nesaf"}, "split": "test"}
{"utterance": "trefnwch gyfarfod gyda'r person yma os gwelwch yn dda", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "gyfarfod"}, "split": "test"}
{"utterance": "dw'i angen cyfarfod wedi'i drefnu gyda'r person yma", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "cyfarfod"}, "split": "test"}
{"utterance": "atgoffa fi am y barti fory", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "barti", "date": "fory"}, "split": "test"}
{"utterance": "gwahodd pobl i'r ddigwyddiad calendr", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "rhowch wybod i fy ngrwp mai yfory yw'r dyddiad cyfarfod newydd", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "yfory", "event_name": "cyfarfod"}, "split": "test"}
{"utterance": "rhowch amseroedd y digwyddiadau i fi", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "atgoffa fi ar y pumed o fawrth bob blwyddyn i drefnu anrhegion penblwydd priodas", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "pumed o fawrth", "general_frequency": "bob blwyddyn", "event_name": "anrhegion penblwydd priodas"}, "split": "test"}
{"utterance": "oes gyda fi apwyntiadau heddiw", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "apwyntiadau", "date": "heddiw"}, "split": "test"}
{"utterance": "gwnewch amserlen newydd ar gyfer cyfarfod yfory", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "cyfarfod", "date": "yfory"}, "split": "test"}
{"utterance": "allwch chi ddileu'r digwyddiad nesaf", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "beth sydd ar yr agenda ar gyfer y cyfarfod pedwar o'r gloch y prynhawn gyda joe", "expected_intent": "calendar:calendar_query", "expected_slots": {"time": "pedwar o'r gloch y prynhawn", "person": "joe"}, "split": "test"}
{"utterance": "ble yn d. c. mae'r cyfarfod yna am un o'r gloch y prynhawn ar ddydd gwener", "expected_intent": "calendar:calendar_query", "expected_slots": {"place_name": "d. c.", "event_name": "cyfarfod", "time": "un o'r gloch y prynhawn", "date": "ddydd gwener"}, "split": "test"}
{"utterance": "atgoffwch fi bob dydd am ddau y prynhawn ar gyfer cinio", "expected_intent": "calendar:calendar_set", "expected_slots": {"general_frequency": "bob dydd", "time": "ddau y prynhawn", "meal_type": "cinio"}, "split": "test"}
{"utterance": "faint mae mehta yn fodlon buddsoddi yn fy nghwmni yn y cyfarfod a gynhaliwyd heddiw am ugain munud wedi pump yr hwyr", "expected_intent": "calendar:calendar_query", "expected_slots": {"person": "mehta", "event_name": "cyfarfod", "date": "heddiw", "time": "ugain munud wedi pump yr hwyr"}, "split": "test"}
{"utterance": "mae trydydd mehefin ar ddeg yn ddiwrnod o ganlyniad etholiad gosodwch ef", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "trydydd mehefin ar ddeg", "event_name": "ganlyniad etholiad"}, "split": "test"}
{"utterance": "ychwanega fy niwrnodau cyflog", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "niwrnodau cyflog"}, "split": "test"}
{"utterance": "oes unrhyw beth mlan gyda fi", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "atgoffa fi ynglŷn â hyn yfory os gwelwch yn dda", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "yfory"}, "split": "test"}
{"utterance": "dwi eisiau cyfarfod tan tri o'r gloch", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "cyfarfod", "time": "tri o'r gloch"}, "split": "test"}
{"utterance": "gosod fy nghalendr i'm atgoffa i brynu nwyddau groser bob dydd gwener", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "brynu nwyddau groser", "general_frequency": "bob dydd gwener"}, "split": "test"}
{"utterance": "gwnewch nodyn atgoffa o leoliad a ar calendr", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "atgoffwch fi heno i gasglu fy sychlanhau am wyth o'r gloch y nos", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "gasglu fy sychlanhau", "time": "wyth o'r gloch y nos"}, "split": "test"}
{"utterance": "atgoffa fi am y gyfarfod fory awr ynghynt", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "gyfarfod", "date": "fory"}, "split": "test"}
{"utterance": "nodyn atgoffa gyfarfod", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "gyfarfod"}, "split": "test"}
{"utterance": "penblwydd", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "penblwydd"}, "split": "test"}
{"utterance": "cynllun ar gyfer yfory", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "yfory"}, "split": "test"}
{"utterance": "beth sydd wedi ei drefnu ar ar gyfer heddiw", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "digwyddiad ychwanegu cyfeillion yn eich calendr", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "trefnwch gyfarfod gyda derrick yn abertawe am hanner dydd os gwelwch yn dda", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "gyfarfod", "person": "derrick", "place_name": "abertawe", "timeofday": "hanner dydd"}, "split": "test"}
{"utterance": "gosodwch gyfarfod i drafod terfysgaeth gyda fred ar y diwrnod cyfarfod nesaf sydd ar gael", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "drafod terfysgaeth", "person": "fred", "date": "nesaf sydd ar gael"}, "split": "test"}
{"utterance": "cwrdd â joe yfory am dri", "expected_intent": "calendar:calendar_set", "expected_slots": {"person": "joe", "date": "yfory", "time": "dri"}, "split": "test"}
{"utterance": "dileu atgoffâd cyfarfod dydd mawrth", "expected_intent": "calendar:calendar_remove", "expected_slots": {"event_name": "cyfarfod", "date": "dydd mawrth"}, "split": "test"}
{"utterance": "beth oedd y digwyddiad i ddod", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "atgoffa fi pan fyddaf yn y llyfrgell i gael cerdyn llyfrgell newydd", "expected_intent": "calendar:calendar_set", "expected_slots": {"place_name": "llyfrgell", "event_name": "gael cerdyn llyfrgell newydd"}, "split": "test"}
{"utterance": "noda ebrill yr ugeinfed fel pen-blwydd fy mrawd", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "ebrill yr ugeinfed", "event_name": "pen-blwydd", "relation": "mrawd"}, "split": "test"}
{"utterance": "gosod nodyn atgoffa ar gyfer ebrill yr ugeinfed fel penblwydd fy mrawd", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "ebrill yr ugeinfed", "event_name": "penblwydd", "relation": "mrawd"}, "split": "test"}
{"utterance": "canslo fy holl penodiadau ar ôl dri p. m. heddiw a rhowch y manylion i mi", "expected_intent": "calendar:calendar_remove", "expected_slots": {"event_name": "penodiadau", "time": "dri p. m.", "date": "heddiw"}, "split": "test"}
{"utterance": "allwch chi restru fy nghyfarfodydd heddiw", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "nghyfarfodydd", "date": "heddiw"}, "split": "test"}
{"utterance": "ychwanegu ginio gyda bryn terfel", "expected_intent": "calendar:calendar_set", "expected_slots": {"meal_type": "ginio", "person": "bryn terfel"}, "split": "test"}
{"utterance": "a wnewch chi nodi fy mod yn cael gyfarfod gyda iwan am dri fory", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "gyfarfod", "person": "iwan", "time": "dri", "date": "fory"}, "split": "test"}
{"utterance": "yn fy nghalendr dileuwch fy holl ddigwyddiadau golff ar gyfer y mis presennol", "expected_intent": "calendar:calendar_remove", "expected_slots": {"event_name": "ddigwyddiadau", "date": "mis"}, "split": "test"}
{"utterance": "cynnwys iwan a rhys i galendr yr ŵyl", "expected_intent": "calendar:calendar_set", "expected_slots": {"person": "rhys", "event_name": "ŵyl"}, "split": "test"}
{"utterance": "beth sydd gen i yn dod i fyny", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "oes unrhyw beth gyda fi wedi ei gynllunio ar gyfer yr unfed ar hugain", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "unfed ar hugain"}, "split": "test"}
{"utterance": "gosodwch nodyn atgoffa ar gyfer hwn", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "hei cansla fy holl ddigwyddiadau a galwadau eraill ar gyfer mawrth yr ail gan ei fod yn ddiwrnod penblwydd jim a noda hynny fel digwyddiad yn dy galendr", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "mawrth yr ail", "event_name": "penblwydd", "person": "jim"}, "split": "test"}
{"utterance": "hei olly diddyma fy holl gyfarfodydd eraill a'r galwadau ar gyfer yr ail o fawrth gan ei bod yn benblwydd jim a marcia fo fel digwyddiad yn dy galendr", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "ail o fawrth", "event_name": "benblwydd", "person": "jim"}, "split": "test"}
{"utterance": "hei anfonwch wahoddiad cyfarfod i mr. ross ar gyfer cyfarfod dydd gwener yma a blociwch fy nghalendr ar gyfer prynhawn dydd gwener", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "cyfarfod", "person": "mr. ross", "date": "prynhawn dydd gwener"}, "split": "test"}
{"utterance": "dwi angen i rywbeth bob dydd llun gosod nodyn atgoffa ar ei gyfer", "expected_intent": "calendar:calendar_set", "expected_slots": {"general_frequency": "bob dydd llun"}, "split": "test"}
{"utterance": "dwi angen i chi farcio dydd llun nesaf", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "dydd llun"}, "split": "test"}
{"utterance": "clirio fy nghalendr ar gyfer dydd sadwrn", "expected_intent": "calendar:calendar_remove", "expected_slots": {"date": "dydd sadwrn"}, "split": "test"}
{"utterance": "atgoffa fi i fynd a'r sbwriel allan bob dydd llun", "expected_intent": "calendar:calendar_set", "expected_slots": {"general_frequency": "bob dydd llun"}, "split": "test"}
{"utterance": "pa atgoffwyr sydd gennyf", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "ychwanegu arfer at y calendr ar chwefror pedwar ym harlech castle am ddau p. m.", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "chwefror pedwar", "place_name": "harlech castle", "time": "ddau p. m."}, "split": "test"}
{"utterance": "ychwanegwch ymarfer ar y pedwerydd o chwefror ym mharc y dderwen am ddau o'r gloch y prynhawn os gwelwch yn dda", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "y pedwerydd o chwefror", "place_name": "mharc y dderwen", "time": "ddau o'r gloch y prynhawn"}, "split": "test"}
{"utterance": "ychwanegu siopa i fy nghalendr ar gyfer yfory", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "yfory"}, "split": "test"}
{"utterance": "a oes gen i apwyntiad heddiw", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "apwyntiad", "date": "heddiw"}, "split": "test"}
{"utterance": "atgoffa fi beth dwi'n gwneud ar p'nawn sul", "expected_intent": "calendar:calendar_set", "expected_slots": {"timeofday": "p'nawn", "date": "sul"}, "split": "test"}
{"utterance": "atgoffa fi dwi'n mynd â mam i'r triniwr gwallt dydd iau am unarddeg y bore", "expected_intent": "calendar:calendar_set", "expected_slots": {"relation": "triniwr gwallt", "date": "dydd iau", "time": "unarddeg y bore"}, "split": "test"}
{"utterance": "ydi hyn yn wir am y dyddiad hwn", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "dileu'r holl ddigwyddiadau yn y calendr", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "dileu pob nigwyddiadau", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "gad i mi wybod mewn dwy awr fod rhaid i mi adael fy ngwers ffidil am bedwar o'r gloch yn y prynhawn yn musicworkz", "expected_intent": "calendar:calendar_set", "expected_slots": {"time": "bedwar o'r gloch", "event_name": "ngwers ffidil", "place_name": "musicworkz"}, "split": "test"}
{"utterance": "pa atgoffwyr a osodais", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "gad i mi wybod pan mae cofrestru yn agor", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "cofrestru"}, "split": "test"}
{"utterance": "mae gen i gyfarfod am hanner dydd heddiw", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "gyfarfod", "timeofday": "hanner dydd", "date": "heddiw"}, "split": "test"}
{"utterance": "atgoffa fi i ddechrau swper p'nawn heddiw am bump", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "swper", "time": "p'nawn heddiw am bump"}, "split": "test"}
{"utterance": "dileu nigwyddiad o'r calendr", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "beth sydd wedi bod yn digwydd yn y deufis diwethaf", "expected_intent": "news:news_query", "expected_slots": {"date": "deufis diwethaf"}, "split": "test"}
{"utterance": "dileu fy nghalendr", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "beth yw fy nhri digwyddiadau nesaf", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "faint o'r gloch fydd y gêm bêl-droed heno", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "gêm bêl-droed", "timeofday": "heno"}, "split": "test"}
{"utterance": "cliria torri gwallt heddiw", "expected_intent": "calendar:calendar_remove", "expected_slots": {"event_name": "torri gwallt", "date": "heddiw"}, "split": "test"}
{"utterance": "canslo ginio heno", "expected_intent": "calendar:calendar_remove", "expected_slots": {"meal_type": "ginio", "timeofday": "heno"}, "split": "test"}
{"utterance": "dileu'r digwyddiad nesaf heddiw", "expected_intent": "calendar:calendar_remove", "expected_slots": {"date": "heddiw"}, "split": "test"}
{"utterance": "rhowch ddiweddariad i mi ar yr etholiad mewn un awr", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "etholiad", "time": "un awr"}, "split": "test"}
{"utterance": "gosodwch gyfarfod rhwng fi a ioan am ddau o'r gloch y prynhawn yfory", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "gyfarfod", "person": "ioan", "time": "ddau o'r gloch y prynhawn", "date": "yfory"}, "split": "test"}
{"utterance": "oes angen i mi wneud unrhywbeth heddiw", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "heddiw"}, "split": "test"}
{"utterance": "alexa tynnu swper gyda elfyn o fy nghalendr", "expected_intent": "calendar:calendar_remove", "expected_slots": {"meal_type": "swper", "person": "elfyn"}, "split": "test"}
{"utterance": "atgoffa fi i gymryd y sbwriel allan am chwech o'r gloch y nos", "expected_intent": "calendar:calendar_set", "expected_slots": {"time": "chwech o'r gloch y nos"}, "split": "test"}
{"utterance": "digwyddiad calendr gwahodd bill malinda", "expected_intent": "calendar:calendar_set", "expected_slots": {"person": "bill malinda"}, "split": "test"}
{"utterance": "cyfarfod newydd ychwanega y bydd berwyn a mari yno", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "cyfarfod", "person": "berwyn a mari"}, "split": "test"}
{"utterance": "agor tasgiau a dileu digwyddiadau y dyfodol", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "beth sydd gyda fi i wneud yr wythnos hon", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "yr wythnos hon"}, "split": "test"}
{"utterance": "beth yw'r cyngherddau sy'n dod lan yn abertawe", "expected_intent": "calendar:calendar_query", "expected_slots": {"place_name": "abertawe"}, "split": "test"}
{"utterance": "dileu yr apwyntiad gyda fy meddyg ar ddydd sadwrn", "expected_intent": "calendar:calendar_remove", "expected_slots": {"event_name": "apwyntiad", "relation": "fy meddyg", "date": "ddydd sadwrn"}, "split": "test"}
{"utterance": "rhowch y digwyddiad hwn mewn patrwn ailadroddol ar fy nghalendr", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "fedri di wneud hwn yn ddigwyddiad ailadroddus", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "a wnes ddweud wrthyt i'm atgoffa am rywbeth", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "atgoffa fi i am y briodas mewn digon o bryd i brynu anrheg", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "briodas"}, "split": "test"}
{"utterance": "gosod atgoffiad am dau ddiwrnod cyn y digwyddiad", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "dau ddiwrnod"}, "split": "test"}
{"utterance": "a oes gwasanaeth valet yn y digwyddiad", "expected_intent": "calendar:calendar_query", "expected_slots": {"relation": "gwasanaeth valet"}, "split": "test"}
{"utterance": "pa nodiadau atgoffa rydw i wedi'u hamserlennu cyn canol dydd yfory", "expected_intent": "calendar:calendar_query", "expected_slots": {"timeofday": "canol dydd", "date": "yfory"}, "split": "test"}
{"utterance": "dweud wrtha i pan fydd gyda fi ddigwyddiad", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "anfon rhybudd cyn cyfarfod", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "cyfarfod"}, "split": "test"}
{"utterance": "dileuwch holl ddigwyddiadau o fy nghalendr", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "allwch chi ddileu y toriad gwallt sydd gyda fi wedi ei drefnu ar gyfer dydd gwener", "expected_intent": "calendar:calendar_remove", "expected_slots": {"event_name": "toriad gwallt", "date": "dydd gwener"}, "split": "test"}
{"utterance": "mae angen i delyth siarad efo fi am ein ysgariad fedri di drefnu i ni gyfarfod cyn gynted ac yr wyf ar gael", "expected_intent": "calendar:calendar_set", "expected_slots": {"person": "delyth", "event_name": "gyfarfod"}, "split": "test"}
{"utterance": "ar ddydd llun yr ugeinfed dwi angen cael sgwrs gyda greg ynglŷn â'n taith penwythnos", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "ddydd llun yr ugeinfed", "event_name": "taith penwythnos", "person": "greg"}, "split": "test"}
{"utterance": "dangos fy nghyfarfod ar gyfer y mis nesaf", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "nghyfarfod", "date": "mis nesaf"}, "split": "test"}
{"utterance": "pa ddigwyddiadau sydd ar y ffordd heddiw", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "heddiw"}, "split": "test"}
{"utterance": "ar ba ddiwrnod mae pasg yn cwympo", "expected_intent": "datetime:datetime_query", "expected_slots": {"event_name": "pasg"}, "split": "test"}
{"utterance": "atgoffwch fi i gael yr olew wedi newid", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "atgoffa fi i rhywbeth rhywbryd", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "faint o bobl sy'n dod i fy nghyfarfod nesaf", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "nghyfarfod"}, "split": "test"}
{"utterance": "faint o'r gloch mae fy apwyntiad nesaf", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "apwyntiad"}, "split": "test"}
{"utterance": "beth yw fy amserlen heddiw", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "heddiw"}, "split": "test"}
{"utterance": "dileuwch fy apwyntiad ar gyfer mawrth y seithfed", "expected_intent": "calendar:calendar_remove", "expected_slots": {"event_name": "apwyntiad", "date": "mawrth y seithfed"}, "split": "test"}
{"utterance": "a oes gennyf i drefniadau ddydd gwener", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "ddydd gwener"}, "split": "test"}
{"utterance": "oes gen i gyfarfod gwerthu heddiw", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "gyfarfod gwerthu", "date": "heddiw"}, "split": "test"}
{"utterance": "trefnwch cyfarfod gwerthiant ar gyfer dydd mercher am unarddeg o'r gloch y bore", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "cyfarfod gwerthiant", "date": "dydd mercher", "time": "unarddeg o'r gloch y bore"}, "split": "test"}
{"utterance": "atgoffa fi mewn un awr i roi fy mara i bobi", "expected_intent": "calendar:calendar_set", "expected_slots": {"time": "un awr", "event_name": "mara i bobi"}, "split": "test"}
{"utterance": "beth yw agenda y digwyddiad", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "hoffwn osod dyddiad ar gyfer yr wythnos hon", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "yr wythnos hon"}, "split": "test"}
{"utterance": "ebostia fy apwyntiadau sydd angen eu haildrefnu", "expected_intent": "email:email_sendemail", "expected_slots": {"event_name": "apwyntiadau"}, "split": "test"}
{"utterance": "gosod digwyddiad penblwydd i martin", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "penblwydd", "person": "martin"}, "split": "test"}
{"utterance": "ychwanega goruchwyliaeth at fy nghalendr os gweli'n dda", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "goruchwyliaeth"}, "split": "test"}
{"utterance": "pa gyfarfodydd ddigwyddodd rhwng chwefror y cyntaf a mawrth yr unfed ar bymtheg", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "gyfarfodydd", "date": "chwefror y cyntaf a mawrth yr unfed ar bymtheg"}, "split": "test"}
{"utterance": "ble mae parti penblwydd mari yn cael ei gynnal", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "parti penblwydd", "person": "mari"}, "split": "test"}
{"utterance": "creu digwyddiad cyfarfod yn fy nghalendr", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "cyfarfod"}, "split": "test"}
{"utterance": "amserlena ddigwyddiad o gyfarfod yn fy nghalendr", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "gyfarfod"}, "split": "test"}
{"utterance": "pa nodiadau atgoffa sydd dal gyda fi", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "gosod atgoffâd ar y trydydd ar ddeg bod gyda fi ginio gyda dale", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "trydydd ar ddeg", "meal_type": "ginio"}, "split": "test"}
{"utterance": "wnes i adael unrhyw nodiadau atgoffa i'n hunan", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "oes gyda fi unrhyw atgoffâd am barti penblwydd", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "barti penblwydd"}, "split": "test"}
{"utterance": "hanner awr wedi canol dydd yn barod bydd gyda chi gyfarfod mewn deg munud", "expected_intent": "calendar:calendar_query", "expected_slots": {"time": "deg munud", "event_name": "gyfarfod"}, "split": "test"}
{"utterance": "allwch chi ddileu'r apwyntiad deintydd", "expected_intent": "calendar:calendar_remove", "expected_slots": {"event_name": "apwyntiad deintydd"}, "split": "test"}
{"utterance": "pa ddyddiad ydyw", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "atgoffa fi i fynd i'r swyddfa bost", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "peidiwch gadael i fi anghofio prynu anrheg i fy chwaer", "expected_intent": "calendar:calendar_set", "expected_slots": {"relation": "chwaer"}, "split": "test"}
{"utterance": "pa mor hir fydd fy nghyfarfod amser cinio ar ddydd mawrth", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "nghyfarfod amser cinio", "date": "ddydd mawrth"}, "split": "test"}
{"utterance": "cliriwch popeth oddi ar fy nghalendr ar gyfer gweddill y flwyddyn", "expected_intent": "calendar:calendar_remove", "expected_slots": {"date": "gweddill y flwyddyn"}, "split": "test"}
{"utterance": "byddai angen i fi gael fy hysbysu am wasanaethau eglwys ar ddyddiau sul am unarddeg o'r gloch y bore", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "wasanaethau eglwys", "date": "ddyddiau sul", "time": "unarddeg o'r gloch y bore"}, "split": "test"}
{"utterance": "ychwanega swper nos yfory i'r calendr", "expected_intent": "calendar:calendar_set", "expected_slots": {"meal_type": "swper", "date": "yfory"}, "split": "test"}
{"utterance": "dwi angen rhoi cinio yr wythnos nesaf yn y calendr", "expected_intent": "calendar:calendar_set", "expected_slots": {"meal_type": "cinio", "date": "yr wythnos nesaf"}, "split": "test"}
{"utterance": "rhybuddiwch fi ddiwrnod cyn penblwydd jeff os gwelwch yn dda", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "ddiwrnod cyn", "event_name": "penblwydd", "person": "jeff"}, "split": "test"}
{"utterance": "anfonwch rybudd i fi awr cyn fy apwyntiad nesaf", "expected_intent": "calendar:calendar_set", "expected_slots": {"time": "awr cyn", "event_name": "apwyntiad"}, "split": "test"}
{"utterance": "nodyn atgoffa tri deg munud ar y cyfarfod ar gyfer dydd mawrth", "expected_intent": "calendar:calendar_set", "expected_slots": {"time": "tri deg munud", "date": "dydd mawrth"}, "split": "test"}
{"utterance": "dileuwch fy apwyntiad sydd wedi ei amserlennu nesaf os gwelwch yn dda", "expected_intent": "calendar:calendar_remove", "expected_slots": {"event_name": "apwyntiad"}, "split": "test"}
{"utterance": "dwi angen gosod atgoffâd ar y pymthegfed o fawrth", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "pymthegfed o fawrth"}, "split": "test"}
{"utterance": "dileu pen blwydd o'r calendr", "expected_intent": "calendar:calendar_remove", "expected_slots": {"event_name": "pen blwydd"}, "split": "test"}
{"utterance": "gosodwch atgoffâd ar gyfer cyfarfod y gyfadran heddiw am bedwar", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "cyfarfod y gyfadran", "date": "heddiw", "time": "bedwar"}, "split": "test"}
{"utterance": "agorwch atgoffâd ynglŷn â chyfarfod y rheolwyr wythnos nesaf ar ddydd mawrth", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "chyfarfod y rheolwyr", "date": "ddydd mawrth"}, "split": "test"}
{"utterance": "ychwanegu i'r calendr ac ailadrodd", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "arbedwch ddigwyddiad ar gyfer pump yr hwyr tan chwech yr hwyr ar fawrth y deunawfed", "expected_intent": "calendar:calendar_set", "expected_slots": {"time": "pump yr hwyr tan chwech yr hwyr", "date": "fawrth y deunawfed"}, "split": "test"}
{"utterance": "dileu gyfarfod dydd llun nesaf", "expected_intent": "calendar:calendar_remove", "expected_slots": {"event_name": "gyfarfod", "date": "dydd llun nesaf"}, "split": "test"}
{"utterance": "am beth yr oedd y brotest yn heol y castell ganol dydd ddoe", "expected_intent": "news:news_query", "expected_slots": {"place_name": "heol y castell", "time": "ganol dydd", "date": "ddoe"}, "split": "test"}
{"utterance": "mae angen i mi wybod mwy am yr orymdaith y penwythnos hwn", "expected_intent": "general:general_quirky", "expected_slots": {"event_name": "orymdaith", "date": "penwythnos hwn"}, "split": "test"}
{"utterance": "yr wyf eisiau gwybod mwy am y ffair sydd dros y sul nesaf", "expected_intent": "general:general_quirky", "expected_slots": {"date": "dros y sul nesaf"}, "split": "test"}
{"utterance": "pa bryd mae fy brunch gyda duffy", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "brunch", "person": "duffy"}, "split": "test"}
{"utterance": "ydy hi'n ddydd mercher", "expected_intent": "datetime:datetime_query", "expected_slots": {"date": "ddydd mercher"}, "split": "test"}
{"utterance": "gadewch i mi wybod pan fydd y gyfarfod yn digwydd", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "gyfarfod"}, "split": "test"}
{"utterance": "beth sy'n digwydd rhagfyr pedwerydd", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "rhagfyr pedwerydd"}, "split": "test"}
{"utterance": "atgoffa fi ynglŷn â hyn", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "gwnewch mawrth y deunawfed yn apwyntiad ailadroddol ar gyfer penblwydd pearl", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "mawrth y deunawfed", "event_name": "apwyntiad ailadroddol ar gyfer penblwydd pearl"}, "split": "test"}
{"utterance": "creu nodyn atgoffa ar gyfer golchi dillad am wyth p. m.", "expected_intent": "calendar:calendar_set", "expected_slots": {"time": "wyth p. m."}, "split": "test"}
{"utterance": "rydw i eisiau gwneud golchi dillad am wyth p. m. creu nodyn atgoffa", "expected_intent": "calendar:calendar_set", "expected_slots": {"time": "wyth p. m."}, "split": "test"}
{"utterance": "atgoffa fi o fy nghyfarfod ar", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "nghyfarfod"}, "split": "test"}
{"utterance": "gosod nodyn atgoffa bob dydd am hanner dydd i gymryd meddyginiaeth", "expected_intent": "calendar:calendar_set", "expected_slots": {"general_frequency": "bob dydd", "timeofday": "hanner dydd"}, "split": "test"}
{"utterance": "dywed fwy wrthyf am fy nigwyddiadau", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "rwyf eisiau gwybod mwy am y digwyddiad hwn", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "dileu fy nghinio fory", "expected_intent": "calendar:calendar_remove", "expected_slots": {"meal_type": "nghinio", "date": "fory"}, "split": "test"}
{"utterance": "tynnu fy nigwyddiad ginio ar gyfer dydd llun", "expected_intent": "calendar:calendar_remove", "expected_slots": {"meal_type": "ginio", "date": "dydd llun"}, "split": "test"}
{"utterance": "rhybuddia fi os gweli'n dda", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "atgoffa fi i fynd i swper gyda dave ar ddydd gwener am bump yr hwyr", "expected_intent": "calendar:calendar_set", "expected_slots": {"meal_type": "swper", "person": "dave", "date": "ddydd gwener", "time": "bump yr hwyr"}, "split": "test"}
{"utterance": "adia gyfarfod gyda brian yn y swyddfa am dri y prynhawn ar ddydd mawrth", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "gyfarfod", "person": "brian", "place_name": "swyddfa", "time": "dri y prynhawn", "date": "ddydd mawrth"}, "split": "test"}
{"utterance": "dywedwch wrtha i ddigwyddiadau cyfredol rhwng ddoe a bore 'ma", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "ddoe", "timeofday": "bore"}, "split": "test"}
{"utterance": "canslwch fy apwyntiadau i gyd", "expected_intent": "calendar:calendar_remove", "expected_slots": {"event_name": "apwyntiadau"}, "split": "test"}
{"utterance": "cael gwared ar fy holl ddigwyddiadau a drefnwyd", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "os gwelwch yn dda gosod gyfarfod cinio am ddeuddeg p. m. ar gyfer pob dydd mercher ym mis fawrth", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "gyfarfod cinio", "time": "ddeuddeg p. m.", "general_frequency": "pob dydd mercher", "date": "fawrth"}, "split": "test"}
{"utterance": "newidiwch fy nghalendr gyda'r digwyddiad hwn os gwelwch yn dda", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "gosod nodyn atgoffa ar gyfer pen-blwydd fy merched", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "pen-blwydd", "relation": "merched"}, "split": "test"}
{"utterance": "rho ddigwyddiad yn fy nghalendr a'i farcio fel digwyddiad sy'n ailadrodd", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "dangos i mi fy nigwyddiadau", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "beth yw fy nghynlluniau ar gyfer mis mai", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "mis mai"}, "split": "test"}
{"utterance": "mae gen i gyfarfod naw a. m. ar ddydd mercher anfon nodyn atgoffa ataf", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "gyfarfod", "time": "naw a. m.", "date": "ddydd mercher"}, "split": "test"}
{"utterance": "beth sydd wedi ei drefnu yn fy nghalendr heddiw", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "heddiw"}, "split": "test"}
{"utterance": "ychwanegwch parti penblwydd mali ar gyfer yfory am ddau o'r gloch y prynhawn yn cant dau ddeg tri stryd fawr ar fy nghalendr", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "parti penblwydd", "person": "mali", "date": "yfory", "time": "ddau o'r gloch y prynhawn", "place_name": "cant dau ddeg tri stryd fawr"}, "split": "test"}
{"utterance": "sut mae fy amserlen yn edrych heddiw", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "heddiw"}, "split": "test"}
{"utterance": "dywedwch wrtha i fy nghyfarfodydd ar gyfer bore yfory", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "nghyfarfodydd", "timeofday": "bore", "date": "yfory"}, "split": "test"}
{"utterance": "gadewch i ni fynd drwy'r holl nodiadau atgoffa sydd yn yr arfaeth", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "dileu eitem calendr", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "ychwanegu nigwyddiad at app calendr", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "atgoffiadau cyfarfod o dri i bump", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "cyfarfod", "time": "dri i bump"}, "split": "test"}
{"utterance": "a wnei fy atgoffa am yr apwyntiad deintyddol sydd gennyf fi mewn dwy awr", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "apwyntiad deintyddol", "time": "dwy awr"}, "split": "test"}
{"utterance": "atgoffa i am", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "atgoffa fi os gwelwch yn dda", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "ychwanegu gyfarfod at fy nghalendr am naw y bore gyda iwan", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "gyfarfod", "time": "naw y bore", "person": "iwan"}, "split": "test"}
{"utterance": "a oes gennyf unrhyw beth wedi'i drefnu ar gyfer heddiw", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "heddiw"}, "split": "test"}
{"utterance": "dileu fy nghyfarfod am ddau o'r gloch p. m. heddiw", "expected_intent": "calendar:calendar_remove", "expected_slots": {"event_name": "nghyfarfod", "time": "ddau o'r gloch p. m."}, "split": "test"}
{"utterance": "a wnewch chi anfon gwahoddiad calendr allan i james ac alice i gael brecinio am unarddeg o'r gloch y bore dydd fawrth", "expected_intent": "calendar:calendar_set", "expected_slots": {"person": "james ac alice", "event_name": "brecinio", "time": "unarddeg o'r gloch y bore", "date": "dydd fawrth"}, "split": "test"}
{"utterance": "wnewch chi farcio fy mod yn brysur ar gyfer digwyddiad yfory am ddau o'r gloch y prynhawn", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "yfory", "time": "ddau o'r gloch y prynhawn"}, "split": "test"}
{"utterance": "pa wybodaeth ddylwn i ei wybod ar gyfer fy nghyfarfodydd heddiw", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "nghyfarfodydd", "date": "heddiw"}, "split": "test"}
{"utterance": "atgoffa fi fod gen i barti penblwydd ar y degfed ar hugain", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "barti penblwydd", "date": "degfed ar hugain"}, "split": "test"}
{"utterance": "atgoffa fi i gasglu mark o'r maes awyr am chwech yr hwyr", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "gasglu mark", "place_name": "maes awyr", "time": "chwech yr hwyr"}, "split": "test"}
{"utterance": "atgoffwch fi i ddyfrio fy mhlanhigion bob dydd mawrth dydd iau a dydd sadwrn", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "ddyfrio fy mhlanhigion", "general_frequency": "bob dydd mawrth dydd iau a dydd sadwrn"}, "split": "test"}
{"utterance": "dileu hwnna o fy nghalendr", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "allwch chi fy atgoffa i archebu'r twrci dair wythnos cyn diolchgarwch", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "archebu'r twrci"}, "split": "test"}
{"utterance": "rwyf am wneud nodyn ar fy nghalendr ar gyfer y digwyddiad fory yn y llyfrgell", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "fory", "place_name": "y llyfrgell"}, "split": "test"}
{"utterance": "ychwanega alwad ffôn gynhadledd am bedwar y p'nawn i fy atgoffâon am heddiw", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "alwad ffôn gynhadledd", "time": "bedwar", "date": "heddiw"}, "split": "test"}
{"utterance": "hysbyswch fi ynglŷn â'r digwyddiad yn fy nghalendr", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "atgoffa fi o'r digwyddiad yn fy nghalendr", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "dileu pob nigwyddiadau o fy nghalendr", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "o fewn y tri mis diwethaf faint o gyfarfodydd ges i gyda mr. richards", "expected_intent": "calendar:calendar_query", "expected_slots": {"time": "tri mis diwethaf", "event_name": "gyfarfodydd", "person": "mr. richards"}, "split": "test"}
{"utterance": "dileu digwyddiadau o calendr", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "ble mae'r cyngerdd cusan", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "cyngerdd cusan"}, "split": "test"}
{"utterance": "pa le y mae fy nghyfarfod am naw a. m.", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "nghyfarfod", "time": "naw a. m."}, "split": "test"}
{"utterance": "ai heddiw yw diwrnod san padrig", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "heddiw", "event_name": "diwrnod san padrig"}, "split": "test"}
{"utterance": "ydi hi'n pen-blwydd ar unrhywun", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "pen-blwydd"}, "split": "test"}
{"utterance": "bydd y digwyddiad yn cynnwys flash morgan webster a mason ryan", "expected_intent": "calendar:calendar_set", "expected_slots": {"person": "mason ryan"}, "split": "test"}
{"utterance": "a fyddech cystal â gosod nodyn atgoffa yn fy nghalendr ar gyfer fy nghyfarfod ar fawrth dau ddeg pump", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "nghyfarfod", "date": "fawrth dau ddeg pump"}, "split": "test"}
{"utterance": "gosod larwm atgoffa sy'n ailadrodd ar gyfer y digwyddiad facebook y mae'n rhaid i mi ei fynychu ar y seithfed o ebrill", "expected_intent": "alarm:alarm_set", "expected_slots": {"media_type": "facebook", "date": "y seithfed o ebrill"}, "split": "test"}
{"utterance": "dileu pob dyddiad", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "gosodwch rhybudd ar gyfer dau o'r gloch y prynhawn", "expected_intent": "alarm:alarm_set", "expected_slots": {"time": "dau o'r gloch y prynhawn"}, "split": "test"}
{"utterance": "dywedwch wrtha i fy amserlen ar gyfer hwyrach y prynhawn yma", "expected_intent": "calendar:calendar_query", "expected_slots": {"timeofday": "prynhawn yma"}, "split": "test"}
{"utterance": "rhowch fy swper yn caffi meic ar y calendr ar gyfer heddiw am naw", "expected_intent": "calendar:calendar_set", "expected_slots": {"meal_type": "swper", "place_name": "caffi meic", "date": "heddiw", "time": "naw"}, "split": "test"}
{"utterance": "oes gen i gyfarfod ar dydd sadwrn mawrth y pumed ar hugain", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "gyfarfod", "date": "sadwrn mawrth y pumed ar hugain"}, "split": "test"}
{"utterance": "ydy penblwydd jessica ar ebrill y deuddegfed", "expected_intent": "calendar:calendar_query", "expected_slots": {"person": "jessica", "date": "ebrill y deuddegfed"}, "split": "test"}
{"utterance": "dileuwch digwyddiad sydd ar ddod", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "dileuwch y wibdaith siopa sydd gyda fi wedi ei drefnu mawrth y trydydd ar hugain", "expected_intent": "calendar:calendar_remove", "expected_slots": {"event_name": "wibdaith siopa", "date": "mawrth y trydydd ar hugain"}, "split": "test"}
{"utterance": "ydi fy amserlen ar gyfer gorffennaf y seithfed yn llwyr agored", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "gorffennaf y seithfed"}, "split": "test"}
{"utterance": "ydw i'n rhydd am bedwar p. m.", "expected_intent": "calendar:calendar_query", "expected_slots": {"time": "bedwar p. m."}, "split": "test"}
{"utterance": "oes gyda fi gyfarfod prynhawn yma", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "gyfarfod", "timeofday": "prynhawn yma"}, "split": "test"}
{"utterance": "mwy o wybodaeth am y digwyddiad hwn", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "dangos nodiadau atgoffa sydd ar ddod", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "gwybodaeth am y digwyddiadau sydd i ddod", "expected_intent": "recommendation:recommendation_events", "expected_slots": {}, "split": "test"}
{"utterance": "beth sydd gyda fi wedi ei drefnu ar y pedwerydd ar bymtheg am ddau o'r gloch y prynhawn", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "y pedwerydd ar bymtheg", "time": "ddau o'r gloch y prynhawn"}, "split": "test"}
{"utterance": "danfon atgoffâd ataf am fy nghyfarfod gyda tom dydd gwener", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "nghyfarfod", "person": "tom", "date": "dydd gwener"}, "split": "test"}
{"utterance": "ydi'r digwyddiad calendr yn wir", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "a oes rhywbeth wedi ei drefnu gennyf ar gyfer y pedwerydd o orffennaf eleni", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "y pedwerydd o orffennaf eleni"}, "split": "test"}
{"utterance": "cliria fy ngweithgaredd nesaf", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "dileuwch holl ddigwyddiadau yn fy nghalendr", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "atgoffwch cyfarfod ar y ffordd gyda eminem", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "cyfarfod", "person": "eminem"}, "split": "test"}
{"utterance": "olly gosodwch larwm am atgoffâd", "expected_intent": "alarm:alarm_set", "expected_slots": {}, "split": "test"}
{"utterance": "atgoffa fi i ffonio mam bob dydd mawrth am ddeg y bore", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "ffonio mam", "general_frequency": "bob dydd mawrth", "time": "ddeg y bore"}, "split": "test"}
{"utterance": "gosod atgoffâd ar gyfer y cyfarfod yfory am naw o'r gloch y bore", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "cyfarfod", "date": "yfory", "time": "naw o'r gloch y bore"}, "split": "test"}
{"utterance": "gwnewch larwm ar gyfer y cyfarfod gyda dafydd am saith heddiw", "expected_intent": "alarm:alarm_set", "expected_slots": {"event_name": "cyfarfod", "person": "dafydd", "time": "saith", "date": "heddiw"}, "split": "test"}
{"utterance": "dileu ef", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "gosodwch atgoffâd yn ailadross ar gyfer bob dydd sul", "expected_intent": "calendar:calendar_set", "expected_slots": {"general_frequency": "bob dydd sul"}, "split": "test"}
{"utterance": "gwybodaeth digwyddiadau diweddar", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "gosod dyddiad y digwyddiad yn y calendr gydag eraill", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "cyfeiria at y digwyddiad wrth eraill", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "rhowch ddigwyddiadau calendr heddiw i fi ar ôl chwech yr hwyr", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "heddiw", "time": "ar ôl chwech yr hwyr"}, "split": "test"}
{"utterance": "faint o'r gloch mae fy apwyntiad ar ebrill y pedwerydd", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "apwyntiad", "date": "ebrill y pedwerydd"}, "split": "test"}
{"utterance": "beth yw fy amserlen ar gyfer y diwrnod", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "y diwrnod"}, "split": "test"}
{"utterance": "dileu'r holl ddigwyddiadau yn fy nghalendr", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "cawod babi merch hanna", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "cawod babi merch", "person": "hanna"}, "split": "test"}
{"utterance": "ychwanegwch ddigwyddiad ar gyfer cyfarfod gyda jâms", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "cyfarfod", "person": "jâms"}, "split": "test"}
{"utterance": "dileu y nodyn atgoffa", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "agor amser cyfarfod", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "cyfarfod"}, "split": "test"}
{"utterance": "dwi eisau i chi greu rhybudd yn yr hwyrnos ynglŷn â chyfarfod sydd ar ddod", "expected_intent": "calendar:calendar_set", "expected_slots": {"timeofday": "hwyrnos", "event_name": "chyfarfod"}, "split": "test"}
{"utterance": "atgoffa fi ddau ddiwrnod cyn penblwydd fy ngwraig", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "penblwydd", "relation": "ngwraig"}, "split": "test"}
{"utterance": "dywedwch rhywbeth wrtha i i atgoffa yr wythnos hon", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "yr wythnos hon"}, "split": "test"}
{"utterance": "beth yw'r cyfarfodydd wedi'u trefnu ar gyfer heddiw", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "cyfarfodydd", "date": "heddiw"}, "split": "test"}
{"utterance": "gosodwch nodiadau atgoffa ar gyfer taliadau biliau sydd i'w gwneud yn fuan yn unig", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "taliadau biliau sydd i'w gwneud yn fuan"}, "split": "test"}
{"utterance": "gad i mi wybod am y cyfarfodydd pwysig efo fy meistr yn ystod yr wythnos", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "cyfarfodydd pwysig efo fy meistr", "time": "yn ystod yr wythnos"}, "split": "test"}
{"utterance": "dileu penblwydd eric o'r calendr", "expected_intent": "calendar:calendar_remove", "expected_slots": {"event_name": "penblwydd eric"}, "split": "test"}
{"utterance": "gwneud digwyddiad", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "dangos cyfarfodydd", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "cyfarfodydd"}, "split": "test"}
{"utterance": "dileuwch ddigwyddiad penblwydd priodas o fy nghalendr", "expected_intent": "calendar:calendar_remove", "expected_slots": {"event_name": "penblwydd priodas"}, "split": "test"}
{"utterance": "ydy'r digwyddiad diolchgarwch ar y pedwerydd ar ddeg o'r mis hwn yn wir", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "diolchgarwch", "date": "pedwerydd ar ddeg o'r mis hwn"}, "split": "test"}
{"utterance": "gosodwch hysbysiad ar y trydydd ar hugain o hydref ynglŷn â chyfarfod gyda fy nghydweithiwr os gwelwch yn dda", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "trydydd ar hugain o hydref", "event_name": "chyfarfod", "relation": "nghydweithiwr"}, "split": "test"}
{"utterance": "cliriwch yr holl ddigwyddiadau o fy nghalendr", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "cyfarfodydd o'r ugeinfed i'r pumed ar hugain o fehefin", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "cyfarfodydd", "time": "ugeinfed i'r pumed ar hugain o fehefin"}, "split": "test"}
{"utterance": "dileuwch o fy nghalendr fy apwyntiad meddygol ar gyfer heddiw", "expected_intent": "calendar:calendar_remove", "expected_slots": {"event_name": "apwyntiad meddygol", "date": "heddiw"}, "split": "test"}
{"utterance": "atgoffâd priodas deio", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "priodas", "person": "deio"}, "split": "test"}
{"utterance": "digwyddiadau yn calendr sy'n yr arfaeth", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "sy'n yr arfaeth"}, "split": "test"}
{"utterance": "gosod atgoffâd o ddigwyddiad cyfarfod efo menna ddydd mawrth", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "cyfarfod", "person": "menna", "date": "ddydd mawrth"}, "split": "test"}
{"utterance": "atgoffâd digwyddiad mona dydd mawrth", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "mona", "date": "dydd mawrth"}, "split": "test"}
{"utterance": "rhybuddia fi pan fydd hi'n amser y digwyddiad", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "pa wybodaeth sydd gyda fi ar nodiadau atgoffa", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "allwch chi roi penblwydd lee ar yr ail ar hugain o fehefin", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "penblwydd lee", "date": "ail ar hugain o fehefin"}, "split": "test"}
{"utterance": "dileu y digwyddiad yna os gweli'n dda", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "dileu popeth ar fy nghalendr", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "dileuwch swper heno gyda shelly", "expected_intent": "calendar:calendar_remove", "expected_slots": {"event_name": "swper heno gyda shelly"}, "split": "test"}
{"utterance": "oes cyfarfod ar y calendr p'nawn yma", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "cyfarfod", "timeofday": "p'nawn yma"}, "split": "test"}
{"utterance": "faint o'r gloch mae cyngerdd bryn terfel ar fehefin trydydd yn dechrau", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "cyngerdd bryn terfel", "date": "fehefin trydydd"}, "split": "test"}
{"utterance": "mae arddangosfa offeren dwy fil ac un deg saith ymlaen mawrth dau ddeg pump gwna nodyn o hynny ar y diwrnod perthnasol", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "arddangosfa offeren dwy fil ac un deg saith", "date": "mawrth dau ddeg pump"}, "split": "test"}
{"utterance": "cofia ychwanegu hwn i'm calendr", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "gwnewch nodyn atgoffa ailadroddol ar gyfer y digwyddiad calendr hwn", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "allwch chi aildrefnu fy nghyfarfod", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "nghyfarfod"}, "split": "test"}
{"utterance": "pa ddiwrnodau ydw i wedi archebu", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "dangoswch y digwyddiadau yn fy nghalendr gwaith am yr wythnos nesaf", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "gwaith", "date": "wythnos nesaf"}, "split": "test"}
{"utterance": "am faint o'r gloch mae'r caffi eidalaidd ar gau rhwng cinio a swper", "expected_intent": "calendar:calendar_query", "expected_slots": {"business_name": "caffi eidalaidd"}, "split": "test"}
{"utterance": "pa bryd y mae dechrau swyddogol cwpan y byd", "expected_intent": "qa:qa_factoid", "expected_slots": {"event_name": "cwpan y byd"}, "split": "test"}
{"utterance": "faint o'r gloch mae'r cinio gala tei du i fod i ddechrau", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "cinio gala tei du"}, "split": "test"}
{"utterance": "ychwanegwch swper gyda mair i fy nghalendr ar ddydd sadwrn os gwelwch yn dda", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "swper gyda mair", "date": "ddydd sadwrn"}, "split": "test"}
{"utterance": "ar ddydd gwener rhowch apwyntiad deintydd am dri", "expected_intent": "calendar:calendar_set", "expected_slots": {"date": "ddydd gwener", "event_name": "apwyntiad deintydd", "time": "dri"}, "split": "test"}
{"utterance": "atgoffa", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "a yw fy nghalendr wedi'i ddiweddaru yn ystod y deng munud diwethaf", "expected_intent": "calendar:calendar_query", "expected_slots": {"time": "deng munud diwethaf"}, "split": "test"}
{"utterance": "canslwch fy nghynlluniau i nôl fy rhieni o'r maes awyr", "expected_intent": "calendar:calendar_remove", "expected_slots": {"event_name": "nôl fy rhieni", "place_name": "maes awyr"}, "split": "test"}
{"utterance": "ymchwilia y cleientiau a fydd yn mynychu y cyfarfod", "expected_intent": "calendar:calendar_set", "expected_slots": {"event_name": "y cyfarfod"}, "split": "test"}
{"utterance": "gosodwch y dyddiad hwn i ailadrodd os gwelwch yn dda", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "dileu y digwyddiad hwn o fy nghalendr", "expected_intent": "calendar:calendar_remove", "expected_slots": {}, "split": "test"}
{"utterance": "beth ydw i wedi cynllunio ar gyfer yr wythnos hon", "expected_intent": "calendar:calendar_query", "expected_slots": {"date": "wythnos hon"}, "split": "test"}
{"utterance": "gwiriwch fy nodiadau atgoffa os gwelwch yn dda", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "chwarae fy ngorsaf radio", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "dechrau b. b. c. radio", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "b. b. c."}, "split": "test"}
{"utterance": "rhywun yn chwarae'r radio", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "chwarae fy ngorsaf", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "fedri di droi'r radio ymlaen", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "agor pandora", "expected_intent": "play:play_radio", "expected_slots": {"app_name": "pandora"}, "split": "test"}
{"utterance": "dos i sianel cant a chwech pwynt naw", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "cant a chwech pwynt naw"}, "split": "test"}
{"utterance": "trowch y radio ymlaen a chwarae sianel cant chwe phwynt naw", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "cant chwe phwynt naw"}, "split": "test"}
{"utterance": "dw'i eisiau gwrando i'r radio", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "tiwniwch naw cant tri deg wyth f. m. radio cymru os gwelwch yn dda", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "naw cant tri deg wyth f. m."}, "split": "test"}
{"utterance": "agorwch yr ap radio", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "tiwnia i wyth cant naw deg saith f. m.", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "wyth cant naw deg saith f. m."}, "split": "test"}
{"utterance": "dim ond chwarae naw cant tri deg saith f. m.", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "naw cant tri deg saith f. m."}, "split": "test"}
{"utterance": "dim ond naw cant naw deg naw f. m. sydd i'w chwarae ar y radio", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "naw cant naw deg naw f. m."}, "split": "test"}
{"utterance": "chwarae f. m.", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "rhoi ymlaen", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "chwarae radio cymru f. m.", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "chwarae yr orsaf sy'n chwarae hen gerddoriaeth", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "hen gerddoriaeth"}, "split": "test"}
{"utterance": "tiwnia i b. b. c. radio cymru", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "b. b. c. radio cymru"}, "split": "test"}
{"utterance": "chwarae radio cymru i mi", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "radio cymru"}, "split": "test"}
{"utterance": "cychwyn y radio nawr", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "tro'r radio ymlaen nawr", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "dechrau pandora", "expected_intent": "play:play_radio", "expected_slots": {"app_name": "pandora"}, "split": "test"}
{"utterance": "chwaraewch gorsaf radio un ar unwaith os gwelwch yn dda", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "gorsaf radio un"}, "split": "test"}
{"utterance": "scania'r deial a. m. ar y radio ar unwaith", "expected_intent": "play:play_radio", "expected_slots": {"date": "ar unwaith"}, "split": "test"}
{"utterance": "chwarae", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "alexa newid yr orsaf radio", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "chwaraewch y radio os gwelwch yn dda", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "dechrau ychydig o gerddoriaeth chwarae'r radio", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "dechreuwch sianel radio cymru", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "cymru"}, "split": "test"}
{"utterance": "gwrando ar y radio", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "sianeli radio", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "gad i ni chwarae caneuon poblogaidd ar y radio", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "gad i ni chwarae llwyddiannau cerddoriaeth", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "dw'i eisiau i ti fnd i radio cymru ar y radio", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "radio cymru"}, "split": "test"}
{"utterance": "chwarae radio y b. b. c.", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "hei olly chwarae'r radio", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "chwarae naw cant wyth deg naw yr orsaf radio", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "naw cant wyth deg naw"}, "split": "test"}
{"utterance": "dechreuwch sianel heart f. m.", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "sianel heart f. m."}, "split": "test"}
{"utterance": "dechrau chwarae radio", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "dw'i eisiau gwrando ar gorsaf sy'n chwarae r. a b.", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "gorsaf sy'n chwarae r. a b."}, "split": "test"}
{"utterance": "allwch chi chwarae cân rap ar y radio i fi", "expected_intent": "play:play_radio", "expected_slots": {"music_genre": "rap"}, "split": "test"}
{"utterance": "chwarae'r gân ceidwad y goleudy", "expected_intent": "play:play_music", "expected_slots": {"song_name": "ceidwad y goleudy"}, "split": "test"}
{"utterance": "chwaraewch hip hop o'r nawdegau", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "hip hop o'r nawdegau"}, "split": "test"}
{"utterance": "trowch mlan orsaf gerddoriaeth canu gwlad", "expected_intent": "play:play_radio", "expected_slots": {"music_genre": "canu gwlad"}, "split": "test"}
{"utterance": "allech chi chwarae'r orsaf f. m. sy'n chwarae caneuon bop os gwelwch yn dda", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "f. m.", "music_genre": "bop"}, "split": "test"}
{"utterance": "olly gad i ni glywed radio cymru cant a thri pwynt pump", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "radio cymru cant a thri pwynt pump"}, "split": "test"}
{"utterance": "canfod yr orsaf radio sy'n chwarae howard stern yn gyfredol", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "chwarae unrhyw sianel bop f. m.", "expected_intent": "play:play_radio", "expected_slots": {"music_genre": "bop", "radio_name": "f. m."}, "split": "test"}
{"utterance": "chwaraewch y darllediad radio doctor who diwethaf", "expected_intent": "play:play_radio", "expected_slots": {"media_type": "darllediad radio"}, "split": "test"}
{"utterance": "trowch rhaglen ar radio cymru", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "radio cymru"}, "split": "test"}
{"utterance": "trowch mlan radio cymru a chwaraewch e mas o fy seinyddion", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "radio cymru", "device_type": "seinyddion"}, "split": "test"}
{"utterance": "chwaraewch y gân hoffus ar radio", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "gadewch i fi wrando ar y rhaglen newyddion ddiweddaraf ar y radio", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "dw'i eisiau clywed sioe tudur owen", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "chwarae cerddoriaeth rhamantus ar radio cymru", "expected_intent": "play:play_radio", "expected_slots": {"media_type": "cerddoriaeth", "music_genre": "rhamantus", "radio_name": "radio cymru"}, "split": "test"}
{"utterance": "chwarae radio cymru yn y radio", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "radio cymru"}, "split": "test"}
{"utterance": "fedri di plis chwarae'r rhaglen ym i mi", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "chwaraewch radio gyda chaneuon di-stop", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "chwarae cyfres cyngerdd byw britney spears", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "ok google chwaraewch radio cymru", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "radio cymru"}, "split": "test"}
{"utterance": "newidiwch yr orsaf i radio cymru", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "radio cymru"}, "split": "test"}
{"utterance": "chwarae rhaglen trystan ac emma ar radio cymru", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "radio cymru"}, "split": "test"}
{"utterance": "canfod podlediadau sy'n trafod materion dynion", "expected_intent": "play:play_podcasts", "expected_slots": {"media_type": "podlediadau", "podcast_descriptor": "materion dynion"}, "split": "test"}
{"utterance": "caneuon radio cymru", "expected_intent": "play:play_radio", "expected_slots": {"media_type": "caneuon", "radio_name": "radio cymru"}, "split": "test"}
{"utterance": "chwaraewch radio canu gwlad", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "radio canu gwlad"}, "split": "test"}
{"utterance": "chwaraewch rhaglen bore 'ma i di o radio cymru", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "radio cymru"}, "split": "test"}
{"utterance": "chwarae beti a'i phobol ar radio'r car", "expected_intent": "play:play_radio", "expected_slots": {"device_type": "radio'r car"}, "split": "test"}
{"utterance": "alla i gael delilah ar y radio yn y llofft", "expected_intent": "play:play_radio", "expected_slots": {"house_place": "llofft"}, "split": "test"}
{"utterance": "allwch chi helpu fi yn gwrando i'r radio", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "chwaraewch radio cymru i fi", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "radio cymru"}, "split": "test"}
{"utterance": "radio os gwelwch yn dda", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "dechrau fy rhestr chwarae ar heart f. m.", "expected_intent": "play:play_radio", "expected_slots": {"radio_name": "heart f. m."}, "split": "test"}
{"utterance": "agor spotify ac agor ymarfer corff", "expected_intent": "play:play_radio", "expected_slots": {}, "split": "test"}
{"utterance": "chwaraewch netflix ar fy p. s. four", "expected_intent": "play:play_radio", "expected_slots": {"app_name": "netflix", "device_type": "p. s. four"}, "split": "test"}
{"utterance": "chwarae cân galonogol trwy dy seinyddion", "expected_intent": "play:play_music", "expected_slots": {"music_descriptor": "galonogol"}, "split": "test"}
{"utterance": "dw'i eisiau clywed un nos olau leuad gan caradog pritchard", "expected_intent": "play:play_audiobook", "expected_slots": {"audiobook_name": "un nos olau leuad", "audiobook_author": "caradog pritchard"}, "split": "test"}
{"utterance": "allwch chi chwarae fy hoff seinlyfr tarzan", "expected_intent": "play:play_audiobook", "expected_slots": {"audiobook_name": "tarzan"}, "split": "test"}
{"utterance": "ailddechrau fy llyfr llafar gan bethan gwanas", "expected_intent": "play:play_audiobook", "expected_slots": {"player_setting": "ailddechrau", "audiobook_author": "bethan gwanas"}, "split": "test"}
{"utterance": "fedri di chwarae un nos ola leuad", "expected_intent": "play:play_audiobook", "expected_slots": {"player_setting": "chwarae", "audiobook_name": "un nos ola leuad"}, "split": "test"}
{"utterance": "ailddechrau harry potter o ble wnes i stopio gwrando tro diwethaf", "expected_intent": "play:play_audiobook", "expected_slots": {"player_setting": "ailddechrau", "audiobook_name": "harry potter"}, "split": "test"}
{"utterance": "palla'r llyfr", "expected_intent": "play:play_audiobook", "expected_slots": {"player_setting": "palla'r"}, "split": "test"}
{"utterance": "agorwch seinlyfr hanes rhufain", "expected_intent": "play:play_audiobook", "expected_slots": {"audiobook_name": "hanes rhufain"}, "split": "test"}
{"utterance": "ailddechrau chwarae fferm a ffair a phentre o le adawais i ef", "expected_intent": "play:play_audiobook", "expected_slots": {"player_setting": "ailddechrau"}, "split": "test"}
{"utterance": "chwarae fferm a ffair a phentre", "expected_intent": "play:play_audiobook", "expected_slots": {"audiobook_name": "fferm a ffair a phentre"}, "split": "test"}
{"utterance": "chwarae pwy sy'n dwad dros y bryn", "expected_intent": "play:play_music", "expected_slots": {"song_name": "pwy sy'n dwad dros y bryn"}, "split": "test"}
{"utterance": "agor sain a chwarae pwy sy'n dwad dros y bryn", "expected_intent": "play:play_music", "expected_slots": {"song_name": "pwy sy'n dwad dros y bryn"}, "split": "test"}
{"utterance": "ailddechrau aros mae", "expected_intent": "play:play_audiobook", "expected_slots": {"player_setting": "ailddechrau", "audiobook_name": "aros mae"}, "split": "test"}
{"utterance": "ailddechrau chwarae llyfr pedwar harry potter", "expected_intent": "play:play_audiobook", "expected_slots": {"player_setting": "ailddechrau chwarae", "audiobook_name": "llyfr pedwar harry potter"}, "split": "test"}
{"utterance": "stopia seinlyfr", "expected_intent": "play:play_audiobook", "expected_slots": {"player_setting": "stopia", "media_type": "seinlyfr"}, "split": "test"}
{"utterance": "agor seinlyfr fferm a ffair a phentre", "expected_intent": "play:play_audiobook", "expected_slots": {"media_type": "seinlyfr", "audiobook_name": "fferm a ffair a phentre"}, "split": "test"}
{"utterance": "chwarae cerddoriaeth glasurol i mi os gweli'n dda", "expected_intent": "play:play_music", "expected_slots": {"music_genre": "glasurol"}, "split": "test"}
{"utterance": "chwarae un nos olau leuad", "expected_intent": "play:play_audiobook", "expected_slots": {"audiobook_name": "un nos olau leuad"}, "split": "test"}
{"utterance": "olly gadewch i ni ddarllen un nos olau leuad", "expected_intent": "play:play_audiobook", "expected_slots": {"audiobook_name": "un nos olau leuad"}, "split": "test"}
{"utterance": "stopio chwarae", "expected_intent": "play:play_audiobook", "expected_slots": {"player_setting": "stopio chwarae"}, "split": "test"}
{"utterance": "aros", "expected_intent": "play:play_audiobook", "expected_slots": {"player_setting": "aros"}, "split": "test"}
{"utterance": "chwarae llyfr sain o blanedau", "expected_intent": "play:play_audiobook", "expected_slots": {"media_type": "llyfr sain", "audiobook_name": "blanedau"}, "split": "test"}
{"utterance": "daliwch ati i ddarllen y llyfr sain i mi", "expected_intent": "play:play_audiobook", "expected_slots": {"player_setting": "daliwch ati i ddarllen", "media_type": "llyfr sain"}, "split": "test"}
{"utterance": "parhau i ddarllen llyfr llafar os gwelwch yn dda", "expected_intent": "play:play_audiobook", "expected_slots": {"player_setting": "parhau i ddarllen", "media_type": "llyfr llafar"}, "split": "test"}
{"utterance": "chwarae'r caneuon rhamantus", "expected_intent": "play:play_music", "expected_slots": {}, "split": "test"}
{"utterance": "parhau i chwarae yma o hyd", "expected_intent": "play:play_music", "expected_slots": {"player_setting": "parhau i chwarae", "song_name": "yma o hyd"}, "split": "test"}
{"utterance": "agor y llyfr llafar rala rwdins a chwarae o ble y gadewais i fo", "expected_intent": "play:play_audiobook", "expected_slots": {"media_type": "llyfr llafar", "audiobook_name": "rala rwdins"}, "split": "test"}
{"utterance": "chwaraewch sain hwn ar llyfr llafar os gwelwch yn dda", "expected_intent": "play:play_audiobook", "expected_slots": {"media_type": "llyfr llafar"}, "split": "test"}
{"utterance": "ailddechrau y gân o'r llyfr sain gan y beatles", "expected_intent": "play:play_audiobook", "expected_slots": {"player_setting": "ailddechrau", "media_type": "llyfr sain", "artist_name": "beatles"}, "split": "test"}
{"utterance": "parhewch y bennod olaf o'r llyfr sain o'n i'n gwrando arno", "expected_intent": "play:play_audiobook", "expected_slots": {"player_setting": "parhewch", "media_type": "llyfr sain"}, "split": "test"}
{"utterance": "ailddechreuwch llyfr joe o ble gadawes i bant tro diwethaf", "expected_intent": "play:play_audiobook", "expected_slots": {"player_setting": "ailddechreuwch", "audiobook_name": "llyfr joe"}, "split": "test"}
{"utterance": "alexa dechrau chwarae o'm sesiwn ddiwethaf o pobol i'w hosgoi", "expected_intent": "play:play_audiobook", "expected_slots": {"player_setting": "dechrau chwarae", "audiobook_name": "pobol i'w hosgoi"}, "split": "test"}
{"utterance": "dechreuwch chwarae sain cwm gwrachod eto", "expected_intent": "play:play_audiobook", "expected_slots": {"player_setting": "dechreuwch", "audiobook_name": "cwm gwrachod"}, "split": "test"}
{"utterance": "chwarae y llyfr handsfree welsh", "expected_intent": "play:play_audiobook", "expected_slots": {"audiobook_name": "handsfree welsh"}, "split": "test"}
{"utterance": "fy newis i chwarae sain o'r dechrau", "expected_intent": "play:play_audiobook", "expected_slots": {}, "split": "test"}
{"utterance": "chwarae fy hoff lyfr", "expected_intent": "play:play_audiobook", "expected_slots": {}, "split": "test"}
{"utterance": "darllen mwy o lyfr jac l. williams i mi", "expected_intent": "play:play_audiobook", "expected_slots": {"player_setting": "darllen", "media_type": "lyfr", "audiobook_author": "jac l. williams"}, "split": "test"}
{"utterance": "ailddechreuwch fy llyfr llafar os gwelwch yn dda", "expected_intent": "play:play_audiobook", "expected_slots": {"player_setting": "ailddechreuwch", "media_type": "llyfr llafar"}, "split": "test"}
{"utterance": "agor llyfr sain", "expected_intent": "play:play_audiobook", "expected_slots": {"media_type": "llyfr sain"}, "split": "test"}
{"utterance": "chwaraewch sain y llyfr nodiadau", "expected_intent": "play:play_audiobook", "expected_slots": {"audiobook_name": "y llyfr nodiadau"}, "split": "test"}
{"utterance": "parhau i chwarae rhedeg yn gynt na'r cleddyfau", "expected_intent": "play:play_audiobook", "expected_slots": {"player_setting": "parhau i chwarae", "audiobook_name": "rhedeg yn gynt na'r cleddyfau"}, "split": "test"}
{"utterance": "dechrau chwarae pennod pump o ymbelydredd", "expected_intent": "play:play_audiobook", "expected_slots": {"player_setting": "dechrau chwarae pennod pump", "audiobook_name": "ymbelydredd"}, "split": "test"}
{"utterance": "ailchwarae bethan gwanas hi yw fy ffrind", "expected_intent": "play:play_audiobook", "expected_slots": {"player_setting": "ailchwarae", "audiobook_author": "bethan gwanas", "audiobook_name": "hi yw fy ffrind"}, "split": "test"}
{"utterance": "chwaraewch llyfr llafar ar hap sydd yn ymwneud â cariad", "expected_intent": "play:play_audiobook", "expected_slots": {"media_type": "llyfr llafar"}, "split": "test"}
{"utterance": "parhewch i chwarae war and peace", "expected_intent": "play:play_audiobook", "expected_slots": {"player_setting": "parhewch i chwarae", "audiobook_name": "war and peace"}, "split": "test"}
{"utterance": "olly pa mor hir ddylwn i ferwi y hwyau", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"cooking_type": "ferwi", "food_type": "hwyau"}, "split": "test"}
{"utterance": "sut mae gwneud pizza", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "pizza"}, "split": "test"}
{"utterance": "pa mor hir ddylwn i ferwi wy", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"cooking_type": "ferwi", "food_type": "wy"}, "split": "test"}
{"utterance": "dywedwch ryseit wrtha i", "expected_intent": "cooking:cooking_recipe", "expected_slots": {}, "split": "test"}
{"utterance": "pa mor hir ddylwn i ferwi'r wy", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"cooking_type": "ferwi'r", "food_type": "wy"}, "split": "test"}
{"utterance": "olly pa mor hir ddylwn i ferwi'r wy", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"cooking_type": "ferwi'r", "food_type": "wy"}, "split": "test"}
{"utterance": "dewch o hyd i rysáit cacen siocled i mi", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "cacen siocled"}, "split": "test"}
{"utterance": "sut mae cogyddiwch cyw iâr menyn", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"cooking_type": "cogyddiwch", "food_type": "cyw iâr menyn"}, "split": "test"}
{"utterance": "beth i gyd yn mynd i mewn i gacen felfed goch", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "gacen felfed goch"}, "split": "test"}
{"utterance": "pa mor hir mae'n ei gymryd i wneud lasagna llysiau", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "lasagna llysiau"}, "split": "test"}
{"utterance": "rhowch tiwtorial coginio i mi", "expected_intent": "cooking:cooking_recipe", "expected_slots": {}, "split": "test"}
{"utterance": "dangoswch fideo i mi ar goginio cyw iâr wedi'i ffrio", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"media_type": "fideo", "food_type": "cyw iâr wedi'i ffrio"}, "split": "test"}
{"utterance": "beth alla i roi fenyn yn ei le", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"ingredient": "fenyn"}, "split": "test"}
{"utterance": "beth yw'r tymheredd popty gorau i rostio tatws", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"cooking_type": "rostio", "ingredient": "tatws"}, "split": "test"}
{"utterance": "beth yw'r ffordd gorau i goginio pasta al dente", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "pasta al dente"}, "split": "test"}
{"utterance": "adnabyddiaeth am brosesu bwyd", "expected_intent": "cooking:cooking_recipe", "expected_slots": {}, "split": "test"}
{"utterance": "beth yw'r ffordd hawsaf o goginio basta", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "basta"}, "split": "test"}
{"utterance": "pa gynhwysyn y gellir ei ddefnyddio yn lle saffrwm", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"ingredient": "saffrwm"}, "split": "test"}
{"utterance": "beth sy'n dargludo gwres orau sosbanau gwaelod copr neu haearn bwrw", "expected_intent": "cooking:cooking_recipe", "expected_slots": {}, "split": "test"}
{"utterance": "hei robot rhowch restr o cynhwysion i mi ar gyfer rarebit cymru", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "rarebit cymru"}, "split": "test"}
{"utterance": "chwiliwch y we ac arddangoswch fideos youtube addas ar gyfer coginio bwydydd eidalaidd", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"media_type": "fideos youtube", "food_type": "eidalaidd"}, "split": "test"}
{"utterance": "coginio rhai o geirch i mi", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"ingredient": "geirch"}, "split": "test"}
{"utterance": "beth yw'r fwydlen heddiw ychwanegwch ychydig o lysiau wedi'u berwi hefyd", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"date": "heddiw", "food_type": "lysiau wedi'u berwi"}, "split": "test"}
{"utterance": "berw", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"cooking_type": "berw"}, "split": "test"}
{"utterance": "allwch chi ddweud wrthyf y rysáit i goginio cyri", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "cyri"}, "split": "test"}
{"utterance": "gweithdrefn coginio twrci diolchgarwch mewn pum brawddeg yw beth", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "twrci diolchgarwch"}, "split": "test"}
{"utterance": "dywedwch wrthyf sut i bobi deuddeg cwcis blawd ceirch", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "cwcis blawd ceirch"}, "split": "test"}
{"utterance": "beth sydd ei angen arnaf i wneud cyri cig oen", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "cyri cig oen"}, "split": "test"}
{"utterance": "cyfarwyddiadau i wneud pryd o fwyd", "expected_intent": "cooking:cooking_recipe", "expected_slots": {}, "split": "test"}
{"utterance": "dwi angen rysáit sydd o gynhwysion ar fy restr siopa", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"list_name": "siopa"}, "split": "test"}
{"utterance": "rydw i angen syniadau dda ar gyfer goginio", "expected_intent": "cooking:cooking_recipe", "expected_slots": {}, "split": "test"}
{"utterance": "allwch chi roi rysáit i mi ar gyfer cawl nwdls ieir cartref", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "cawl nwdls ieir"}, "split": "test"}
{"utterance": "sut mae gwneud twrci", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "twrci"}, "split": "test"}
{"utterance": "dywedwch wrthyf sut i wneud brechdan bachgen gwael", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "brechdan bachgen gwael"}, "split": "test"}
{"utterance": "sut mae gwneud pitsa", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "pitsa"}, "split": "test"}
{"utterance": "beth yw'r rysáit ar gyfer cyw iâr wedi'i ffrio", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "cyw iâr wedi'i ffrio"}, "split": "test"}
{"utterance": "beth ddylwn i ei wneud i cinio", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"meal_type": "cinio"}, "split": "test"}
{"utterance": "amseroedd pobi cyw iâr yn y popty", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "cyw iâr", "device_type": "popty"}, "split": "test"}
{"utterance": "allwch chi amnewid soda pobi ar gyfer powdr pobi", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"ingredient": "soda pobi ar gyfer powdr pobi"}, "split": "test"}
{"utterance": "dewch o hyd i rysáit ar gyfer cinio heno", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"meal_type": "cinio", "timeofday": "heno"}, "split": "test"}
{"utterance": "beth ddylwn i ei goginio i swper", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"event_name": "swper"}, "split": "test"}
{"utterance": "gadewch i ni goginio peli cig gyda'n gilydd", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "peli cig"}, "split": "test"}
{"utterance": "dywedwch wrthyf sut i goginio peli cig", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "peli cig"}, "split": "test"}
{"utterance": "alla i gael rysáit ar gyfer tiwna", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "tiwna"}, "split": "test"}
{"utterance": "sut mae lasagne yn cael ei wneud", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "lasagne"}, "split": "test"}
{"utterance": "hoffem byrgyr caws", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "byrgyr caws"}, "split": "test"}
{"utterance": "ydych chi'n gwybod sut i goginio rarebit cymraeg", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "rarebit cymraeg"}, "split": "test"}
{"utterance": "ydych chi'n gwybod rysáit ar gyfer risotto", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "risotto"}, "split": "test"}
{"utterance": "pa mor hir ddylwn i goginio stecen i gyflawni canolig yn brin", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "stecen"}, "split": "test"}
{"utterance": "mae angen rysáit o llysiau pulav arnaf", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "llysiau pulav"}, "split": "test"}
{"utterance": "am faint mor hir wyt ti'n coginio twrci pymtheg pwys", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "twrci"}, "split": "test"}
{"utterance": "beth yw'r gwahaniaeth rhwng pobi a broil", "expected_intent": "cooking:cooking_recipe", "expected_slots": {}, "split": "test"}
{"utterance": "pa mor hir ddylwn i goginio stêc i fod yn ganolig", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "stêc"}, "split": "test"}
{"utterance": "sut i wneudsut i wneud taco", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "taco"}, "split": "test"}
{"utterance": "mae angen i mi wybod sut i wneud pupurau wedi'u stwffio", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "pupurau wedi'u stwffio"}, "split": "test"}
{"utterance": "pa mor hir dylai coginio maccoroni", "expected_intent": "cooking:cooking_recipe", "expected_slots": {}, "split": "test"}
{"utterance": "edrychwch am rysáit pastai afal", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "pastai afal"}, "split": "test"}
{"utterance": "beth yw'r rysáit ar gyfer cawl pysgod", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "cawl pysgod"}, "split": "test"}
{"utterance": "sut i goginio spaghetti pompen", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "spaghetti pompen"}, "split": "test"}
{"utterance": "faint o wyau sydd angen am omled", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "omled"}, "split": "test"}
{"utterance": "dangoswch y rysáit orau i mi ar gyfer sbageti", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "sbageti"}, "split": "test"}
{"utterance": "sut mae reis yn cael ei baratoi", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "reis"}, "split": "test"}
{"utterance": "rhestr o ryseitiau cawl cymraeg enwog", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "cawl cymraeg"}, "split": "test"}
{"utterance": "ryseitiau allwch coginio mewn awr", "expected_intent": "cooking:cooking_recipe", "expected_slots": {}, "split": "test"}
{"utterance": "chwiliwch yn y we am brynu nwyddau pobi ar gyfer muffins", "expected_intent": "cooking:cooking_recipe", "expected_slots": {}, "split": "test"}
{"utterance": "canfod y rysait am cawl yn bbc good food", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "cawl", "app_name": "bbc good food"}, "split": "test"}
{"utterance": "pa gynhwysion sydd eu hangen arnaf i pobi cacen fawr", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"cooking_type": "pobi", "food_type": "cacen"}, "split": "test"}
{"utterance": "rhaid mai blas yw e", "expected_intent": "cooking:cooking_recipe", "expected_slots": {}, "split": "test"}
{"utterance": "gadewch imi wybod y rysáit ar gyfer paratoi pasta", "expected_intent": "cooking:cooking_recipe", "expected_slots": {"food_type": "pasta"}, "split": "test"}
{"utterance": "chwarae gêm efo fi", "expected_intent": "play:play_game", "expected_slots": {}, "split": "test"}
{"utterance": "lansia super mario", "expected_intent": "play:play_game", "expected_slots": {"game_name": "super mario"}, "split": "test"}
{"utterance": "chwarae scrabble gyda fi", "expected_intent": "play:play_game", "expected_slots": {"game_name": "scrabble"}, "split": "test"}
{"utterance": "agor y gêm gwyddbwyll a dechrau'r gêm", "expected_intent": "play:play_game", "expected_slots": {"game_name": "gwyddbwyll"}, "split": "test"}
{"utterance": "beth am chwarae global thermonuclear war", "expected_intent": "play:play_game", "expected_slots": {"game_name": "global thermonuclear war"}, "split": "test"}
{"utterance": "gadewch i ni chwarae llong frwydr", "expected_intent": "play:play_game", "expected_slots": {"game_name": "llong frwydr"}, "split": "test"}
{"utterance": "chwaraewch clash of clans os gwelwch yn dda", "expected_intent": "play:play_game", "expected_slots": {"game_name": "clash of clans"}, "split": "test"}
{"utterance": "dechrau clash of clans os gweli'n dda", "expected_intent": "play:play_game", "expected_slots": {"game_name": "clash of clans"}, "split": "test"}
{"utterance": "chwarae gêm o oxo i mi", "expected_intent": "play:play_game", "expected_slots": {"game_name": "oxo"}, "split": "test"}
{"utterance": "chwarae gêm gyda fi", "expected_intent": "play:play_game", "expected_slots": {}, "split": "test"}
{"utterance": "fedri di chwarae'r gêm temple run i mi", "expected_intent": "play:play_game", "expected_slots": {"game_name": "temple run"}, "split": "test"}
{"utterance": "lawnsio gêm", "expected_intent": "play:play_game", "expected_slots": {}, "split": "test"}
{"utterance": "chwarae tenis bwrdd", "expected_intent": "play:play_game", "expected_slots": {"game_name": "tenis bwrdd"}, "split": "test"}
{"utterance": "chwaraewch fi yn tic tac toe", "expected_intent": "play:play_game", "expected_slots": {"game_name": "tic tac toe"}, "split": "test"}
{"utterance": "chwaraewch bêl droed gyda fi", "expected_intent": "play:play_game", "expected_slots": {"game_name": "bêl droed"}, "split": "test"}
{"utterance": "dw'i eisiau chwarae fifa un deg saith", "expected_intent": "play:play_game", "expected_slots": {"game_name": "fifa un deg saith"}, "split": "test"}
{"utterance": "gadewch i ni chwarae", "expected_intent": "play:play_game", "expected_slots": {}, "split": "test"}
{"utterance": "saga agored", "expected_intent": "play:play_game", "expected_slots": {"game_name": "saga"}, "split": "test"}
{"utterance": "olly chwarae pocer efo fi", "expected_intent": "play:play_game", "expected_slots": {"game_name": "pocer"}, "split": "test"}
{"utterance": "chwaraewch y gêm harry potter and the chamber of secrets i fi", "expected_intent": "play:play_game", "expected_slots": {"game_name": "harry potter and the chamber of secrets"}, "split": "test"}
{"utterance": "agorwch gêm gwyddbwyll os gwelwch yn dda hoffwn chwarae gyda chi", "expected_intent": "play:play_game", "expected_slots": {"game_name": "gwyddbwyll"}, "split": "test"}
{"utterance": "dechrau gêm a chwarae efo fi", "expected_intent": "play:play_game", "expected_slots": {}, "split": "test"}
{"utterance": "gadewch i ni chwarae golau arall aur y nos ffŵl y dydd", "expected_intent": "play:play_game", "expected_slots": {}, "split": "test"}
{"utterance": "chwarae rasio", "expected_intent": "play:play_game", "expected_slots": {"game_name": "rasio"}, "split": "test"}
{"utterance": "chwarae papa pear saga", "expected_intent": "play:play_game", "expected_slots": {"game_name": "papa pear saga"}, "split": "test"}
{"utterance": "galw lan papa pear saga", "expected_intent": "play:play_game", "expected_slots": {"game_name": "papa pear saga"}, "split": "test"}
{"utterance": "chwarae gwyddbwyll", "expected_intent": "play:play_game", "expected_slots": {"game_name": "gwyddbwyll"}, "split": "test"}
{"utterance": "chwarae gêm", "expected_intent": "play:play_game", "expected_slots": {}, "split": "test"}
{"utterance": "chwarae gêm o contra fel yr ail chwaraewr", "expected_intent": "play:play_game", "expected_slots": {"game_name": "contra"}, "split": "test"}
{"utterance": "dylem chwarae n. f. s. ar gyflymder uchel", "expected_intent": "play:play_game", "expected_slots": {"game_name": "n. f. s."}, "split": "test"}
{"utterance": "dechrau croesair cystadleuol i ni", "expected_intent": "play:play_game", "expected_slots": {"game_name": "croesair cystadleuol"}, "split": "test"}
{"utterance": "agor a chwarae gwyddbwyll gyda fi", "expected_intent": "play:play_game", "expected_slots": {"game_name": "gwyddbwyll"}, "split": "test"}
{"utterance": "agor gemau", "expected_intent": "play:play_game", "expected_slots": {}, "split": "test"}
{"utterance": "agor y gêm liwdo i ti a mi", "expected_intent": "play:play_game", "expected_slots": {"game_name": "gêm liwdo"}, "split": "test"}
{"utterance": "beth arall sydd ar goll yn y dyddiadur", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "glanhewch fy rhestr siopa os gwelwch yn dda", "expected_intent": "lists:lists_remove", "expected_slots": {"list_name": "siopa"}, "split": "test"}
{"utterance": "dileuwch yr eitem cyntaf ar y rhestr", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "dileuwch fy rhestr tasg", "expected_intent": "lists:lists_remove", "expected_slots": {"list_name": "tasg"}, "split": "test"}
{"utterance": "unrhyw achlysuron arbennig ar fy rhestr", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "diddymwch ddigwyddiadau o fy rhestr", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "dileuwch eitem", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "beth ydw i'n mynd i wneud heddiw", "expected_intent": "lists:lists_query", "expected_slots": {"date": "heddiw"}, "split": "test"}
{"utterance": "beth sydd ar fy rhestr i'w wneud", "expected_intent": "lists:lists_query", "expected_slots": {"list_name": "i'w wneud"}, "split": "test"}
{"utterance": "gwaredwch rhestr", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "dwi angen creu rhestr i wneud newydd", "expected_intent": "lists:lists_createoradd", "expected_slots": {"list_name": "i wneud"}, "split": "test"}
{"utterance": "helpa fi i ddechrau fy rhestr gegin", "expected_intent": "lists:lists_createoradd", "expected_slots": {"list_name": "gegin"}, "split": "test"}
{"utterance": "beth sydd ar fy rhestr i wneud", "expected_intent": "lists:lists_query", "expected_slots": {"list_name": "i wneud"}, "split": "test"}
{"utterance": "dileuwch pensil o deunyddiau ysgrifennu", "expected_intent": "lists:lists_remove", "expected_slots": {"list_name": "deunyddiau ysgrifennu"}, "split": "test"}
{"utterance": "ga'i restr gwestai pum seren ym mharis", "expected_intent": "qa:qa_factoid", "expected_slots": {"list_name": "gwestai pum seren", "place_name": "mharis"}, "split": "test"}
{"utterance": "ychwanegwch brocoli at fy rhestr siopa bwyd", "expected_intent": "lists:lists_createoradd", "expected_slots": {"list_name": "siopa bwyd"}, "split": "test"}
{"utterance": "ychwanegwch y swyddfa bost at fy rhestr o negeseuon ar gyfer dydd sadwrn", "expected_intent": "lists:lists_createoradd", "expected_slots": {"list_name": "negeseuon", "date": "dydd sadwrn"}, "split": "test"}
{"utterance": "diddymwch eitem rhestr", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "rhestrwch popeth sydd ar ôl ar my ymholiad", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "dwi eisiau gwneud rhestr siopa yr wythnos yma", "expected_intent": "lists:lists_createoradd", "expected_slots": {"list_name": "siopa", "time": "wythnos"}, "split": "test"}
{"utterance": "dileuwch fy rhestr ganeuon hen gymraeg o fy rhestr chwarae", "expected_intent": "lists:lists_remove", "expected_slots": {"list_name": "hen gymraeg"}, "split": "test"}
{"utterance": "dileu fy nhaliad car o fy nghalendr", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "diddymwch y rhestr", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "sut mae'r rhestr i wneud ar gyfer heddiw", "expected_intent": "lists:lists_query", "expected_slots": {"date": "heddiw"}, "split": "test"}
{"utterance": "ailadroddwch fy rhestr siopa bwyd os gwelwch yn dda", "expected_intent": "lists:lists_query", "expected_slots": {"list_name": "siopa"}, "split": "test"}
{"utterance": "allwch chi greu rhestr i fi", "expected_intent": "lists:lists_createoradd", "expected_slots": {}, "split": "test"}
{"utterance": "dileuwch rhestrau i gyd", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "diddymwch y rhestr hen gerddoriaeth", "expected_intent": "lists:lists_remove", "expected_slots": {"list_name": "hen gerddoriaeth"}, "split": "test"}
{"utterance": "gwiriwch fy rhestr i wneud", "expected_intent": "lists:lists_query", "expected_slots": {"list_name": "i wneud"}, "split": "test"}
{"utterance": "android", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "rhowch fy holl rhestrau i fi", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "ailosodwch fy rhestr lleoliadau", "expected_intent": "lists:lists_remove", "expected_slots": {"list_name": "lleoliadau"}, "split": "test"}
{"utterance": "dangoswch cynnwys y rhestr i fi", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "diddymwch yr ail res o'r rhestr", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "diweddarwch fy rhestr siopa bwyd gyda un galwyn o laeth dau y cant os gwelwch yn dda", "expected_intent": "lists:lists_createoradd", "expected_slots": {"list_name": "siopa bwyd"}, "split": "test"}
{"utterance": "chwiliwch yr eitem", "expected_intent": "lists:lists_createoradd", "expected_slots": {}, "split": "test"}
{"utterance": "ychwanegwch cyri yn cerdyn bwydlen", "expected_intent": "lists:lists_createoradd", "expected_slots": {}, "split": "test"}
{"utterance": "creuwch rhestr sydd ar gael", "expected_intent": "lists:lists_createoradd", "expected_slots": {}, "split": "test"}
{"utterance": "ychwanegwch powdwr golchi at y rhestr pethau sydd angen i fi brynu", "expected_intent": "lists:lists_createoradd", "expected_slots": {"list_name": "pethau sydd angen i fi brynu"}, "split": "test"}
{"utterance": "ychwanegwch gwin coch at fy rhestr siopa", "expected_intent": "lists:lists_createoradd", "expected_slots": {"list_name": "rhestr siopa"}, "split": "test"}
{"utterance": "dilewuch y rhestr o'r enw amser parti", "expected_intent": "lists:lists_remove", "expected_slots": {"list_name": "amser parti"}, "split": "test"}
{"utterance": "dallen amserlenni y rhestr", "expected_intent": "lists:lists_query", "expected_slots": {"list_name": "amserlenni"}, "split": "test"}
{"utterance": "dileuwch y rhestr canlynol", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "taflwch y rhestr bresennol", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "ychwanegwch wedi gwario pum punt yn fy rhestr costau", "expected_intent": "lists:lists_createoradd", "expected_slots": {"list_name": "costau"}, "split": "test"}
{"utterance": "beth sydd ar fy rhestr i wneud heddiw", "expected_intent": "lists:lists_query", "expected_slots": {"list_name": "i wneud", "date": "heddiw"}, "split": "test"}
{"utterance": "pa rhestrau sydd gyda fi wedi holnodi", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "os oes digwyddiad dangoswch wedyn yna diddymwch fe", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "ailosod", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "hysbyswch fi am yr eitemau ar y rhestr", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "ychwanegwch hwn at y rhestr", "expected_intent": "lists:lists_createoradd", "expected_slots": {}, "split": "test"}
{"utterance": "creuwch rhestr newydd", "expected_intent": "lists:lists_createoradd", "expected_slots": {}, "split": "test"}
{"utterance": "allwch chi dynnu'r eitem hon o'r rhestr", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "darllenwch beth sydd ar fy rhestr", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "allwch chi ychwanegu eitem at fy rhestr siopa bwyd", "expected_intent": "lists:lists_createoradd", "expected_slots": {"list_name": "siopa bwyd"}, "split": "test"}
{"utterance": "diddymwch yr eitem yna", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "beth roies i lawr yn barod ar y rhestr tesco", "expected_intent": "lists:lists_query", "expected_slots": {"list_name": "rhestr tesco"}, "split": "test"}
{"utterance": "taflwch i ffwrdd fy rhestr i wneud os gwelwch yn dda", "expected_intent": "lists:lists_remove", "expected_slots": {"list_name": "i wneud"}, "split": "test"}
{"utterance": "cliriwch allan y rhestr siopa", "expected_intent": "lists:lists_remove", "expected_slots": {"list_name": "siopa"}, "split": "test"}
{"utterance": "pa eitemau sydd ar fy rhestr siopa", "expected_intent": "lists:lists_query", "expected_slots": {"list_name": "siopa"}, "split": "test"}
{"utterance": "darllenwch fy rhestr ar gyfer siopa", "expected_intent": "lists:lists_query", "expected_slots": {"list_name": "siopa"}, "split": "test"}
{"utterance": "dywedwch wrtha i y rhestr ysgrifennais i dau ddiwrnod yn ôl", "expected_intent": "lists:lists_query", "expected_slots": {"date": "dau ddiwrnod"}, "split": "test"}
{"utterance": "tynnwch grawnfwyd oddi ar fy rhestr siopa", "expected_intent": "lists:lists_remove", "expected_slots": {"list_name": "siopa"}, "split": "test"}
{"utterance": "dileu fy apwyntiad deintydd o amserlen heddiw", "expected_intent": "calendar:calendar_remove", "expected_slots": {"event_name": "apwyntiad deintydd", "date": "heddiw"}, "split": "test"}
{"utterance": "oes gyda fi restr siopa bwyd yn barod", "expected_intent": "lists:lists_query", "expected_slots": {"list_name": "siopa bwyd"}, "split": "test"}
{"utterance": "cliriwch fy rhestr gweithgareddau ar gyfer heddiw", "expected_intent": "lists:lists_remove", "expected_slots": {"list_name": "gweithgareddau", "date": "heddiw"}, "split": "test"}
{"utterance": "dileuwch eitem o rhestr", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "dwi angen gwneud rhestr", "expected_intent": "lists:lists_createoradd", "expected_slots": {}, "split": "test"}
{"utterance": "darllenwch fy rhestr siopa bwyd", "expected_intent": "lists:lists_query", "expected_slots": {"list_name": "siopa bwyd"}, "split": "test"}
{"utterance": "dangoswch y rhestr sydd gyda fi i fi os gwelwch yn dda", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "dileuwch eitem olaf a restrwyd", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "ychwanegwch bananas i fy rhestr siopa", "expected_intent": "lists:lists_createoradd", "expected_slots": {"list_name": "siopa"}, "split": "test"}
{"utterance": "ychwanegwch past dannedd i fy rhestr siopa", "expected_intent": "lists:lists_createoradd", "expected_slots": {"list_name": "siopa"}, "split": "test"}
{"utterance": "creuwch rhestr chwarae", "expected_intent": "lists:lists_createoradd", "expected_slots": {}, "split": "test"}
{"utterance": "olly cliriwch y rhestr", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "cliriwch y rhestr", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "dileuwch rhestr siopa bwyd", "expected_intent": "lists:lists_remove", "expected_slots": {"list_name": "siopa bwyd"}, "split": "test"}
{"utterance": "dileu i gyd", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "olly beth sydd gennyf wedi ei gynllunio", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "tynnwch llaeth o fy rhestr siopa bwyd", "expected_intent": "lists:lists_remove", "expected_slots": {"list_name": "siopa bwyd"}, "split": "test"}
{"utterance": "does dim digon o arian gyda fi i brynu nintendo switch ar hyn o bryd allwch chi ddiddymu fe ar fy rhestr dymuniadau amazonos gwelwch yn dda", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "tynnwch y rhestr hon allan o'r lleill", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "beth yw fy rhestrau sydd ar gael", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "cywer hwnna oddi ar fan yna", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "angen gwirio fy rhestr", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "rhestr newydd", "expected_intent": "lists:lists_createoradd", "expected_slots": {}, "split": "test"}
{"utterance": "olly unrhyw beth arall ar ôl ar y rhestr", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "dileuwch fy rhestr", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "gwnewch rhestr siopa bwyd", "expected_intent": "lists:lists_createoradd", "expected_slots": {"list_name": "siopa bwyd"}, "split": "test"}
{"utterance": "dileuwch eitem o fy rhestr", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "ychwanegwch rhestr o bethau i brynu ar gyfer y parti os gwelwch yn dda", "expected_intent": "lists:lists_createoradd", "expected_slots": {"event_name": "parti"}, "split": "test"}
{"utterance": "olly darllenwch fy rhestrau i fi", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "dechreuwch rhestr newydd", "expected_intent": "lists:lists_createoradd", "expected_slots": {}, "split": "test"}
{"utterance": "gadewch i fi glywed fy rhestr", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "beth sydd ar fy rhestr chwarae", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "diddymwch fy rhestr o hoff albymau os gwelwch yn dda", "expected_intent": "lists:lists_remove", "expected_slots": {"list_name": "hoff albymau"}, "split": "test"}
{"utterance": "ychwanegwch siwgwr at fy rhestr siopa bwyd os gwelwch yn dda", "expected_intent": "lists:lists_createoradd", "expected_slots": {"list_name": "siopa bwyd"}, "split": "test"}
{"utterance": "gwnewch rhestr siopa newydd", "expected_intent": "lists:lists_createoradd", "expected_slots": {"list_name": "siopa"}, "split": "test"}
{"utterance": "faint o rhestrau sydd gyda fi yn cysylltiadau", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "pa grwpiau sydd wedi rhestru yn fy nghysylltiadau", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "atgoffwch fi faint o rhestrau sydd gyda fi", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "crafa hwnna o'r rhestr", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "dileuwch yr ymadrodd olaf", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "beth sydd ar eich rhestr y funud yma", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "gadewch i fi wybod y rhestr", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "rhowch byrgyr ar fy rhestr siopa bwyd", "expected_intent": "lists:lists_createoradd", "expected_slots": {"list_name": "siopa bwyd"}, "split": "test"}
{"utterance": "dileuwch fy nhasgiau i wneud ar gyfer yr wythnos hon", "expected_intent": "lists:lists_remove", "expected_slots": {"list_name": "nhasgiau i wneud", "date": "yr wythnos hon"}, "split": "test"}
{"utterance": "ar fy rhestr i'w wneud diddymwch mopio'r gegin", "expected_intent": "lists:lists_remove", "expected_slots": {"list_name": "i'w wneud"}, "split": "test"}
{"utterance": "ychwanegwch berwyn at fy rhestr cysylltiadau", "expected_intent": "lists:lists_createoradd", "expected_slots": {"person": "berwyn", "list_name": "rhestr cysylltiadau"}, "split": "test"}
{"utterance": "dywedwch y rhestr", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "diddymwch rhestr siopa", "expected_intent": "lists:lists_remove", "expected_slots": {"list_name": "siopa"}, "split": "test"}
{"utterance": "dileuwch rhestr i wneud", "expected_intent": "lists:lists_remove", "expected_slots": {"list_name": "i wneud"}, "split": "test"}
{"utterance": "ychwanegwch eitem newydd i rhestr", "expected_intent": "lists:lists_createoradd", "expected_slots": {}, "split": "test"}
{"utterance": "ychwanegwch at rhestr", "expected_intent": "lists:lists_createoradd", "expected_slots": {}, "split": "test"}
{"utterance": "gwaredwch y rhestr google", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "ychwanegwch orennau at fy rhestr siopa bwyd os gwelwch yn dda", "expected_intent": "lists:lists_createoradd", "expected_slots": {"list_name": "siopa bwyd"}, "split": "test"}
{"utterance": "faint o restrau sydd gyda fi", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "pa restrau sydd yn fy llyfr nodiadau", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "tynnwch llaeth mas o fy rhestr siopa", "expected_intent": "lists:lists_remove", "expected_slots": {"list_name": "siopa"}, "split": "test"}
{"utterance": "dileuwch y rhestr treth o un naw naw dim", "expected_intent": "lists:lists_remove", "expected_slots": {"list_name": "treth", "date": "un naw naw dim"}, "split": "test"}
{"utterance": "beth yw fy rhestr cyfredol", "expected_intent": "lists:lists_query", "expected_slots": {"list_name": "cyfredol"}, "split": "test"}
{"utterance": "rhestrwch eitemau ar fy rhestr gwaith", "expected_intent": "lists:lists_query", "expected_slots": {"list_name": "gwaith"}, "split": "test"}
{"utterance": "rhoddwch i mi fanylion ar archeb pryniant", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "diddymwch y rhestr gwesteion wnes i greu wythnos diwethaf", "expected_intent": "lists:lists_remove", "expected_slots": {"list_name": "gwesteion", "date": "wythnos diwethaf"}, "split": "test"}
{"utterance": "gosodwch rhestr", "expected_intent": "lists:lists_createoradd", "expected_slots": {}, "split": "test"}
{"utterance": "dewch o hyd i pob enw yn dechrau gydag a a creuwch rhestr", "expected_intent": "lists:lists_createoradd", "expected_slots": {}, "split": "test"}
{"utterance": "ychwanegwch cysylltiadau busnes i rhestr gysylltiadau", "expected_intent": "lists:lists_createoradd", "expected_slots": {"list_name": "rhestr gysylltiadau"}, "split": "test"}
{"utterance": "gwiriwch rhestr i wneud diweddar", "expected_intent": "lists:lists_query", "expected_slots": {"list_name": "i wneud"}, "split": "test"}
{"utterance": "creuwch rhestr newydd os gwelwch yn dda", "expected_intent": "lists:lists_createoradd", "expected_slots": {}, "split": "test"}
{"utterance": "dwi eisiau tynnu afalau o'r rhestr", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "i ffwrdd oddi ar y rhestr", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "agor google keep", "expected_intent": "lists:lists_query", "expected_slots": {"app_name": "google keep"}, "split": "test"}
{"utterance": "taflwch fy rhestr", "expected_intent": "lists:lists_remove", "expected_slots": {}, "split": "test"}
{"utterance": "rhowch holl restrau sydd ar gael i fi", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "rhestrwch yr holl restrau at y ddyfais hon", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "ychwanegwch oriawr at y rhestr siopa", "expected_intent": "lists:lists_createoradd", "expected_slots": {"list_name": "rhestr siopa"}, "split": "test"}
{"utterance": "fy nghynllunio parti", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "parti"}, "split": "test"}
{"utterance": "mae fy rhestr dillad gyda fi", "expected_intent": "lists:lists_query", "expected_slots": {"list_name": "dillad"}, "split": "test"}
{"utterance": "dewch o hyd i'r rhestr", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "gwybodaeth tŷ pwysig", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "rhestr", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "creuwch rhestr newydd i fi os gwelwch yn dda", "expected_intent": "lists:lists_createoradd", "expected_slots": {}, "split": "test"}
{"utterance": "darllenwch fy rhestr siopa bwyd nôl i fi", "expected_intent": "lists:lists_query", "expected_slots": {"list_name": "siopa bwyd"}, "split": "test"}
{"utterance": "olly chwarae recordiad nesaf", "expected_intent": "play:play_podcasts", "expected_slots": {}, "split": "test"}
{"utterance": "neidiwch i'r podlediad nesaf", "expected_intent": "play:play_podcasts", "expected_slots": {"player_setting": "neidiwch", "podcast_descriptor": "podlediad nesaf"}, "split": "test"}
{"utterance": "nesaf", "expected_intent": "play:play_podcasts", "expected_slots": {}, "split": "test"}
{"utterance": "chwarae yr un nesaf", "expected_intent": "play:play_podcasts", "expected_slots": {}, "split": "test"}
{"utterance": "chwarae podlediad o fy llyfrgell", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_name": "llyfrgell"}, "split": "test"}
{"utterance": "chwilia am bodlediad diddorol am enillwyr diwethaf gwobr gerddoriaeth gymreig", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_descriptor": "enillwyr diwethaf gwobr gerddoriaeth gymreig"}, "split": "test"}
{"utterance": "chwarae'r podlediad nesaf", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_descriptor": "podlediad nesaf"}, "split": "test"}
{"utterance": "chwarae nesaf", "expected_intent": "play:play_podcasts", "expected_slots": {}, "split": "test"}
{"utterance": "chwarae y bennod nesaf o rala rwdins gan angharad tomos", "expected_intent": "play:play_audiobook", "expected_slots": {"audiobook_name": "rala rwdins", "audiobook_author": "angharad tomos"}, "split": "test"}
{"utterance": "dos i'r podlediad a chwarae y bennod nesaf o friends", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_descriptor": "bennod nesaf", "podcast_name": "friends"}, "split": "test"}
{"utterance": "chwarae y podlediad awyr iach", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_name": "awyr iach"}, "split": "test"}
{"utterance": "uwchlwythwch fy holl bodlediadau", "expected_intent": "play:play_podcasts", "expected_slots": {}, "split": "test"}
{"utterance": "chwaraewch podlediad galwad cynnar", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_name": "galwad cynnar"}, "split": "test"}
{"utterance": "chwarae podlediad nesaf beti a'i phobol", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_name": "beti a'i phobol"}, "split": "test"}
{"utterance": "chwarae'r podlediad hwnnw roeddwn i'n gwrando arno ddoe", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_descriptor": "gwrando arno ddoe"}, "split": "test"}
{"utterance": "chwarae y bennod nesaf o bodlediad", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_descriptor": "bennod nesaf"}, "split": "test"}
{"utterance": "beth yw podlediadau uchaf heddiw", "expected_intent": "play:play_podcasts", "expected_slots": {"date": "heddiw"}, "split": "test"}
{"utterance": "chwarae podlediad sy'n cynnwys y gweilch", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_name": "cynnwys y gweilch"}, "split": "test"}
{"utterance": "dangoswch i fi y podlediad gorau o ganeuon roc gyda sgôr dda", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_descriptor": "ganeuon roc gyda sgôr dda"}, "split": "test"}
{"utterance": "chwarae a shifflo caneuon efo cerddoriaeth araf", "expected_intent": "play:play_music", "expected_slots": {"player_setting": "chwarae a shifflo"}, "split": "test"}
{"utterance": "chwarae fy mhodlediad rydw i wedi'i wylio fwyaf", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_descriptor": "rydw i wedi'i wylio fwyaf"}, "split": "test"}
{"utterance": "oes gan allearsnet bodlediad newydd", "expected_intent": "play:play_podcasts", "expected_slots": {"person": "allearsnet"}, "split": "test"}
{"utterance": "dewch o hyd i'r podlediad radio cymru diweddaraf", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_name": "radio cymru"}, "split": "test"}
{"utterance": "symud i'r bennod nesaf o scrum five", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_descriptor": "bennod nesaf", "podcast_name": "scrum five"}, "split": "test"}
{"utterance": "chwarae y bennod nesaf o'r podlediad", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_descriptor": "bennod nesaf"}, "split": "test"}
{"utterance": "olly dechrau eto y podlediad y gwnes ei ddechrau neithiwr", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_descriptor": "ddechrau neithiwr"}, "split": "test"}
{"utterance": "dangoswch bodlediadau i fi", "expected_intent": "play:play_podcasts", "expected_slots": {}, "split": "test"}
{"utterance": "chwarae podlediad galwad cynnar", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_name": "galwad cynnar"}, "split": "test"}
{"utterance": "cer nol i bennod cynt y podlediad", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_descriptor": "bennod cynt"}, "split": "test"}
{"utterance": "chwarae podlediad bryn terfel i fi", "expected_intent": "play:play_podcasts", "expected_slots": {"person": "bryn terfel"}, "split": "test"}
{"utterance": "dw'i eisiau gwrando ar podlediad", "expected_intent": "play:play_podcasts", "expected_slots": {}, "split": "test"}
{"utterance": "allwch chi lawrlwytho fy ffeil podlediad sydd ar gael ar y rhyngrwyd a'i chwarae unwaith", "expected_intent": "play:play_podcasts", "expected_slots": {}, "split": "test"}
{"utterance": "sgipia i'r pennod podlediad nesaf", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_descriptor": "pennod podlediad nesaf"}, "split": "test"}
{"utterance": "dechrau'r bennod nesaf", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_descriptor": "bennod nesaf"}, "split": "test"}
{"utterance": "chwaraewch podlediad diweddaraf sian cothi", "expected_intent": "play:play_podcasts", "expected_slots": {"person": "sian cothi"}, "split": "test"}
{"utterance": "dechrau chwarae fy mhodlediad diweddaraf", "expected_intent": "play:play_podcasts", "expected_slots": {}, "split": "test"}
{"utterance": "dos yn ôl tri deg eiliad", "expected_intent": "play:play_podcasts", "expected_slots": {"player_setting": "dos yn ôl", "time": "tri deg eiliad"}, "split": "test"}
{"utterance": "sianel s. pedwar c.", "expected_intent": "play:play_podcasts", "expected_slots": {"radio_name": "sianel s. pedwar c."}, "split": "test"}
{"utterance": "rhestr wedi ei weld fwyaf", "expected_intent": "lists:lists_query", "expected_slots": {}, "split": "test"}
{"utterance": "dechreuwch y gilmore guys", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_name": "gilmore guys"}, "split": "test"}
{"utterance": "chwarae'r podlediad i mi", "expected_intent": "play:play_podcasts", "expected_slots": {}, "split": "test"}
{"utterance": "ewch i bennod nesaf y podlediad", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_descriptor": "bennod nesaf"}, "split": "test"}
{"utterance": "chwaraewch y podlediad bill simmons diweddaraf os gwelwch yn dda", "expected_intent": "play:play_podcasts", "expected_slots": {"person": "bill simmons"}, "split": "test"}
{"utterance": "dwi eisiau gwrando ar y podlediad caerdydd siarad diweddaraf", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_name": "caerdydd siarad"}, "split": "test"}
{"utterance": "dechrau podlediadau am rygbi", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_name": "rygbi"}, "split": "test"}
{"utterance": "symud i'r adran nesaf", "expected_intent": "play:play_podcasts", "expected_slots": {"player_setting": "symud"}, "split": "test"}
{"utterance": "symud ymlaen i'r bennod nesaf o'r podlediad", "expected_intent": "play:play_podcasts", "expected_slots": {"player_setting": "symud ymlaen"}, "split": "test"}
{"utterance": "ewch yn ôl i'r bennod olaf yn y podlediad hwn", "expected_intent": "play:play_podcasts", "expected_slots": {"player_setting": "ewch yn ôl", "podcast_descriptor": "bennod olaf"}, "split": "test"}
{"utterance": "dw'i eisiau gwrando i bodlediad chwaraeon", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_name": "bodlediad chwaraeon"}, "split": "test"}
{"utterance": "chwarae y bennod mwyaf diweddar o'r podlediad american life", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_name": "american life"}, "split": "test"}
{"utterance": "chwarae fy hoff bodlediad os gwelwch yn dda", "expected_intent": "play:play_podcasts", "expected_slots": {}, "split": "test"}
{"utterance": "ailddechrau y gyfres o'r podlediad", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_descriptor": "podlediad"}, "split": "test"}
{"utterance": "chwarae y podlediad diwethaf", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_descriptor": "podlediad diwethaf"}, "split": "test"}
{"utterance": "dechrau chwarae ringcast", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_name": "ringcast"}, "split": "test"}
{"utterance": "chwarae'r sioe nesaf o'r podlediad", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_descriptor": "sioe nesaf"}, "split": "test"}
{"utterance": "botwm nesaf", "expected_intent": "play:play_podcasts", "expected_slots": {}, "split": "test"}
{"utterance": "ailchwaraewch fy mhodlediad chwaraewyd ddiwethaf", "expected_intent": "play:play_podcasts", "expected_slots": {"player_setting": "ailchwaraewch"}, "split": "test"}
{"utterance": "olly gawn ni wrando ar y podlediad reply all", "expected_intent": "play:play_podcasts", "expected_slots": {}, "split": "test"}
{"utterance": "gadewch i ni glywed y podlediad the socially distant sports bar", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_name": "socially distant sports bar"}, "split": "test"}
{"utterance": "dw'i eisiau gweld y podlediad nesaf sydd ar gael", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_descriptor": "podlediad nesaf"}, "split": "test"}
{"utterance": "hei chwaraewch fy hoff bodlediad o rhestr", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_descriptor": "hoff"}, "split": "test"}
{"utterance": "ychwanega yr hoff bodlediadau at y rhestr chwarae ac yna dechrau", "expected_intent": "play:play_podcasts", "expected_slots": {"player_setting": "dechrau"}, "split": "test"}
{"utterance": "dechreuwch podlediad nesaf", "expected_intent": "play:play_podcasts", "expected_slots": {"player_setting": "dechreuwch"}, "split": "test"}
{"utterance": "chwaraewch yr holl order of the green hand o'r wythnos flaenorol", "expected_intent": "play:play_podcasts", "expected_slots": {"podcast_name": "order of the green hand"}, "split": "test"}
{"utterance": "dwi eisiau i chi chwarae'r podlediad", "expected_intent": "play:play_podcasts", "expected_slots": {}, "split": "test"}
{"utterance": "beth galla'i wneud yn nefyn", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"place_name": "nefyn"}, "split": "test"}
{"utterance": "beth sy'n digwydd o gwmpas fy nhref", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"place_name": "nhref"}, "split": "test"}
{"utterance": "oes unrhyw beth yn y cylch jazz o amgylch llithfaen", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"movie_type": "cylch jazz", "place_name": "llithfaen"}, "split": "test"}
{"utterance": "unrhyw ddigwyddiadau diwylliannol yng ngwynedd", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"place_name": "ngwynedd"}, "split": "test"}
{"utterance": "gad i fi wybod am ddigwyddiadau sioeau cŵn yn fy tref enedigol", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"event_name": "sioeau cŵn", "place_name": "tref enedigol"}, "split": "test"}
{"utterance": "pa ffilm fedra'i wylio heno mewn sinema yng nghaerfyrddin", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"business_type": "ffilm", "timeofday": "heno", "place_name": "nghaerfyrddin"}, "split": "test"}
{"utterance": "rho restr o theatrau yn y cyffiniau", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"business_type": "theatrau", "place_name": "cyffiniau"}, "split": "test"}
{"utterance": "rho'r rhestr o sioeau syrcas sydd ymlaen yn y ddinas nawr", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"event_name": "syrcas", "place_name": "ddinas"}, "split": "test"}
{"utterance": "pa sioeau cŵn sydd yn abertawe", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"event_name": "sioeau cŵn", "place_name": "abertawe"}, "split": "test"}
{"utterance": "oes yna unrhyw ddigwyddiadau ymlaen yng nghanol y dref heno", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"place_name": "nghanol y dref", "timeofday": "heno"}, "split": "test"}
{"utterance": "ble mae'r fferyllydd yn aberaeron", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"business_type": "fferyllydd", "place_name": "aberaeron"}, "split": "test"}
{"utterance": "pa ffilmiau sy'n dangos yn y sinema heddiw", "expected_intent": "recommendation:recommendation_movies", "expected_slots": {"business_type": "sinema", "date": "heddiw"}, "split": "test"}
{"utterance": "pa ffilm ddylen i wylio heddiw", "expected_intent": "recommendation:recommendation_movies", "expected_slots": {"date": "heddiw"}, "split": "test"}
{"utterance": "pa ffilmiau sydd ymlaen gerllaw", "expected_intent": "recommendation:recommendation_movies", "expected_slots": {}, "split": "test"}
{"utterance": "pa ddigwyddiadau sy'n digwydd yn fuan", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"time": "yn fuan"}, "split": "test"}
{"utterance": "dangoswch ddigwyddiadau yn wrecsam i mi", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"place_name": "wrecsam"}, "split": "test"}
{"utterance": "mae gyrrwyr ifanc a gyrrwyr newydd basio yn cael damwain yn amlach na gyrrwyr eraill am nad ydynt eto wedi cael yr amrediad mawr o brofiad angenrheidiol i yrru yn ddiogel ar ben eu hunain mae ymchwil wedi dangos bod profiad gyrru yn ffactor bwysig wrth leihau damweiniau ar y lôn ac mai yr amser mwyaf diogel i yrrwyr ifanc yw pan eu bod dan oruchwyliaeth tra'n dysgu", "expected_intent": "recommendation:recommendation_events", "expected_slots": {}, "split": "test"}
{"utterance": "olly dwi'n chwilio am far wyt ti'n adnabod un da", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"business_type": "far"}, "split": "test"}
{"utterance": "olly dwi'n edrych am arddangosfeydd ffrogiau fedri di ganfod siopau dillad o fewn milltir", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"business_type": "arddangosfeydd ffrogiau", "place_name": "o fewn milltir"}, "split": "test"}
{"utterance": "canfod bwytai nandos", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"business_type": "bwytai", "business_name": "nandos"}, "split": "test"}
{"utterance": "hoffem wybod y tafarndai gradd uchaf yn yr ardal", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"business_type": "tafarndai"}, "split": "test"}
{"utterance": "dangos unrhyw farathonau gerllaw", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"event_name": "farathonau"}, "split": "test"}
{"utterance": "byddem yn falch petai ti'n dweud wrtha'i am digwyddiadau yn ein ardal", "expected_intent": "recommendation:recommendation_events", "expected_slots": {}, "split": "test"}
{"utterance": "oes gennyt unrhyw awgrymiadau am ffilmiau antur", "expected_intent": "recommendation:recommendation_movies", "expected_slots": {"movie_type": "antur"}, "split": "test"}
{"utterance": "dangoswch adolygiadau o fy nghwrt bwyd agosaf", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"business_type": "nghwrt bwyd", "place_name": "agosaf"}, "split": "test"}
{"utterance": "dangos arddangosfa paentio yn ardal y bae", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"event_name": "arddangosfa paentio", "place_name": "ardal y bae"}, "split": "test"}
{"utterance": "pa siopau sydd o gwmpas fan hyn", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"place_name": "o gwmpas fan hyn"}, "split": "test"}
{"utterance": "nofio", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"event_name": "nofio"}, "split": "test"}
{"utterance": "sut mae'r ffilm swat newydd", "expected_intent": "recommendation:recommendation_movies", "expected_slots": {"movie_name": "swat"}, "split": "test"}
{"utterance": "olly pa ffilmiau drama newydd sy'n agor penwythnos yma", "expected_intent": "recommendation:recommendation_movies", "expected_slots": {"movie_type": "drama", "time": "penwythnos"}, "split": "test"}
{"utterance": "pa siopau sydd o fewn deng milltir", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"business_type": "siopau", "place_name": "o fewn deng milltir"}, "split": "test"}
{"utterance": "system cisco", "expected_intent": "recommendation:recommendation_movies", "expected_slots": {}, "split": "test"}
{"utterance": "olly pa ddigwyddiadau sy'n digwydd yn dunvant penwythnos yma", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"place_name": "dunvant", "date": "penwythnos yma"}, "split": "test"}
{"utterance": "unrhyw ddigwyddiadau yn aberystwyth y penwythnos yma", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"place_name": "aberystwyth", "date": "penwythnos yma"}, "split": "test"}
{"utterance": "canfod ffilm a enwebwyd am osgar", "expected_intent": "recommendation:recommendation_movies", "expected_slots": {}, "split": "test"}
{"utterance": "ble sy'n far gwin da gerllaw", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"business_type": "far gwin"}, "split": "test"}
{"utterance": "oes unrhyw ddigwyddiadau arbennig gerllaw penwythnos yma", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"date": "penwythnos yma"}, "split": "test"}
{"utterance": "pa far sydd gyda'r diodydd mwyaf fforddiadwy ger chweched stryd", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"place_name": "chweched stryd"}, "split": "test"}
{"utterance": "beth yw'r digwyddiad nesaf yn y llyfrgell", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"place_name": "llyfrgell"}, "split": "test"}
{"utterance": "oes unrhyw llefydd pitsa gerllaw", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"business_type": "llefydd pitsa"}, "split": "test"}
{"utterance": "pa ffiliau sy'n chwarae heno", "expected_intent": "recommendation:recommendation_movies", "expected_slots": {"timeofday": "heno"}, "split": "test"}
{"utterance": "edrych am canolfan siopa yn abertawe am ddillad menywod", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"business_type": "canolfan siopa", "place_name": "abertawe"}, "split": "test"}
{"utterance": "ble galla'i fynd heno", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"timeofday": "heno"}, "split": "test"}
{"utterance": "beth sy'n digwydd gerllaw", "expected_intent": "recommendation:recommendation_events", "expected_slots": {}, "split": "test"}
{"utterance": "oes unrhyw ffeiriau crefftau yn digwydd yn yr ardal", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"event_name": "ffeiriau crefftau"}, "split": "test"}
{"utterance": "oes unrhywbeth diddorol yn digwydd yn ardal y bae", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"place_name": "ardal y bae"}, "split": "test"}
{"utterance": "olly tyrd a rhai digwyddiadau cyffrous yn ardal y bae i mi", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"place_name": "ardal y bae"}, "split": "test"}
{"utterance": "ffilmiau gydag adolygiadau da", "expected_intent": "recommendation:recommendation_movies", "expected_slots": {}, "split": "test"}
{"utterance": "dywedwch y digwyddiadau lleol wrthaf", "expected_intent": "recommendation:recommendation_events", "expected_slots": {}, "split": "test"}
{"utterance": "beth yw'r ffilm gradd uchaf allan nawr", "expected_intent": "recommendation:recommendation_movies", "expected_slots": {}, "split": "test"}
{"utterance": "awgryma ffilm i fi", "expected_intent": "recommendation:recommendation_movies", "expected_slots": {}, "split": "test"}
{"utterance": "oes digwyddiad chwaraeon yn abertawe yfory", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"event_name": "digwyddiad chwaraeon", "place_name": "abertawe", "date": "yfory"}, "split": "test"}
{"utterance": "awgryma ffilm sy'n chwarae yn fy ardal", "expected_intent": "recommendation:recommendation_movies", "expected_slots": {}, "split": "test"}
{"utterance": "oes gŵyl fwyd yn yr ardal", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"event_name": "gŵyl fwyd"}, "split": "test"}
{"utterance": "edrych am siopau lleol", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {}, "split": "test"}
{"utterance": "beth sy'n mynd ymlaen fan 'ma penwythnos yma", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"date": "penwythnos yma"}, "split": "test"}
{"utterance": "olly dywed wrtha'i am weitgareddau yn fy ardal penwythnos yma", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"date": "penwythnos yma"}, "split": "test"}
{"utterance": "oes rhywbeth da yn digwydd yn yr ardal penwythnos yma", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"date": "penwythnos yma"}, "split": "test"}
{"utterance": "olly dw'i angen diod", "expected_intent": "iot:iot_coffee", "expected_slots": {}, "split": "test"}
{"utterance": "dw'i angen diod", "expected_intent": "iot:iot_coffee", "expected_slots": {}, "split": "test"}
{"utterance": "beth sy'n rhai parciau thema gerllaw", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"event_name": "parciau thema"}, "split": "test"}
{"utterance": "pa ffilmiau sydd allan yr wythnos hon", "expected_intent": "recommendation:recommendation_movies", "expected_slots": {"date": "wythnos hon"}, "split": "test"}
{"utterance": "edrych lan bwytai lleol sydd ar agor nawr", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"business_type": "bwytai"}, "split": "test"}
{"utterance": "beth ddylen i wylio heddiw", "expected_intent": "recommendation:recommendation_movies", "expected_slots": {"date": "heddiw"}, "split": "test"}
{"utterance": "fedri di ganfod siop dodrefn gerllaw", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"business_type": "siop dodrefn"}, "split": "test"}
{"utterance": "beth yw rhaio bwytai gerllaw", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"business_type": "bwytai"}, "split": "test"}
{"utterance": "ble mae'r tesco agosaf", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"business_name": "tesco"}, "split": "test"}
{"utterance": "ble mae theatr yn fy ardal", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"business_type": "theatr"}, "split": "test"}
{"utterance": "dywedwch wrtha'i pa siopau sydd gerllaw", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"business_type": "siopau"}, "split": "test"}
{"utterance": "oes unrhywbeth arbennig yn mynd ymlaen gerllaw", "expected_intent": "recommendation:recommendation_events", "expected_slots": {}, "split": "test"}
{"utterance": "canfod ffilmiau gerllaw", "expected_intent": "recommendation:recommendation_movies", "expected_slots": {}, "split": "test"}
{"utterance": "beth sy'n ffilm da yn y sinemau", "expected_intent": "recommendation:recommendation_movies", "expected_slots": {"place_name": "sinemau"}, "split": "test"}
{"utterance": "dweud wrtha'i am holl ddigwyddiadau heddiw yn fy ninas", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"date": "heddiw"}, "split": "test"}
{"utterance": "olly rhestra'r siopau dillad gorau gerllaw", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"business_type": "siopau dillad"}, "split": "test"}
{"utterance": "oes unrhyw ddigwyddiadau hwyl yn abertawe heddiw", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"place_name": "abertawe", "date": "heddiw"}, "split": "test"}
{"utterance": "canfod siop fara heb glwten gerllaw", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"business_type": "siop fara heb glwten"}, "split": "test"}
{"utterance": "dywed wrtha'i pa siopau dillad sydd o fewn pum milltir i mi", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"business_type": "siopau dillad"}, "split": "test"}
{"utterance": "dw'i angen canfod anrheg pa siopau sydd o fewn cylch o filltir", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"business_type": "siopau", "place_name": "o fewn cylch o filltir"}, "split": "test"}
{"utterance": "beth sy'n digwydd o gwmpas y dref", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"place_name": "o gwmpas y dref"}, "split": "test"}
{"utterance": "pa siopau sydd yn agos i fi", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"business_type": "siopau"}, "split": "test"}
{"utterance": "pryd mae canolfan siopa aberafan yn agor", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"business_name": "canolfan siopa aberafan"}, "split": "test"}
{"utterance": "digwyddiadau cyfredol lleol", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"event_name": "digwyddiadau cyfredol lleol"}, "split": "test"}
{"utterance": "dangos digwyddiadau cerddorol gerllaw", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"event_name": "digwyddiadau cerddorol"}, "split": "test"}
{"utterance": "kung fu panda tri", "expected_intent": "recommendation:recommendation_movies", "expected_slots": {"movie_name": "kung fu panda tri"}, "split": "test"}
{"utterance": "archebwch dacsi i casnewydd i mi mewn hanner awr", "expected_intent": "transport:transport_taxi", "expected_slots": {"transport_type": "dacsi", "place_name": "casnewydd", "time": "hanner awr"}, "split": "test"}
{"utterance": "dw'i angen mynd i abertawe ar y trên am bump y. b. ar ddydd sul", "expected_intent": "transport:transport_ticket", "expected_slots": {"place_name": "abertawe", "transport_type": "trên", "time": "bump y. b.", "date": "ddydd sul"}, "split": "test"}
{"utterance": "archebwch docyn i mi i paris ar eurostar y penwythnos hwn", "expected_intent": "transport:transport_ticket", "expected_slots": {"place_name": "paris", "transport_name": "eurostar", "date": "y penwythnos hwn"}, "split": "test"}
{"utterance": "allwch chi archebu uber i mi", "expected_intent": "transport:transport_taxi", "expected_slots": {"transport_agency": "uber"}, "split": "test"}
{"utterance": "allwch chi archebu uber yfory", "expected_intent": "transport:transport_taxi", "expected_slots": {"transport_agency": "uber", "date": "yfory"}, "split": "test"}
{"utterance": "allwch chi archebu uber ar ôl i mi adael am y swydd", "expected_intent": "transport:transport_taxi", "expected_slots": {"transport_agency": "uber"}, "split": "test"}
{"utterance": "allwch chi archebu tocyn drên", "expected_intent": "transport:transport_ticket", "expected_slots": {"transport_type": "drên"}, "split": "test"}
{"utterance": "archebwch fy nhocyn drên o abertawe i swindon", "expected_intent": "transport:transport_ticket", "expected_slots": {"transport_type": "drên", "place_name": "swindon"}, "split": "test"}
{"utterance": "beth yw'r amodau traffig ar y cant ac un", "expected_intent": "transport:transport_traffic", "expected_slots": {"place_name": "cant ac un"}, "split": "test"}
{"utterance": "sut mae cyrraedd yr orsaf drenau am docyn", "expected_intent": "transport:transport_query", "expected_slots": {"place_name": "orsaf drenau"}, "split": "test"}
{"utterance": "ffoniwch chab y ddinas i'r maes awyr", "expected_intent": "transport:transport_taxi", "expected_slots": {"transport_type": "chab", "place_name": "maes awyr"}, "split": "test"}
{"utterance": "cael tacsi i'r maes awyr", "expected_intent": "transport:transport_taxi", "expected_slots": {"transport_type": "tacsi", "place_name": "maes awyr"}, "split": "test"}
{"utterance": "chwiliwch am docynnau trên i gasnewydd", "expected_intent": "transport:transport_ticket", "expected_slots": {"transport_type": "trên", "place_name": "gasnewydd"}, "split": "test"}
{"utterance": "prynwch docyn trên ar gyfer y penwythnos hwn", "expected_intent": "transport:transport_ticket", "expected_slots": {"transport_type": "trên", "time": "penwythnos"}, "split": "test"}
{"utterance": "sut mae'r traffig are fy nghymudo adref am bump o'r gloch", "expected_intent": "transport:transport_query", "expected_slots": {"place_name": "adref", "time": "bump o'r gloch"}, "split": "test"}
{"utterance": "archebu dacsi i fynd i'r ffilmiau am un", "expected_intent": "transport:transport_taxi", "expected_slots": {"transport_type": "dacsi", "place_name": "ffilmiau", "time": "un"}, "split": "test"}
{"utterance": "pryd mae'r drên nesaf i glasgow o aberdeen", "expected_intent": "transport:transport_query", "expected_slots": {"transport_type": "drên", "place_name": "aberdeen"}, "split": "test"}
{"utterance": "olly dod o hyd i'r uber agosaf", "expected_intent": "transport:transport_taxi", "expected_slots": {"transport_agency": "uber"}, "split": "test"}
{"utterance": "cael amser y trên lleol i gyrchfan o trafnidiaeth cymru", "expected_intent": "transport:transport_query", "expected_slots": {"transport_type": "trên", "place_name": "trafnidiaeth cymru"}, "split": "test"}
{"utterance": "faint o'r gloch mae'r trenau'n mynd i gasnewydd yn gadael", "expected_intent": "transport:transport_query", "expected_slots": {"place_name": "gasnewydd"}, "split": "test"}
{"utterance": "dywedwch wrthyf am draffig y ddinas", "expected_intent": "transport:transport_traffic", "expected_slots": {"place_name": "ddinas"}, "split": "test"}
{"utterance": "sut mae'r traffig ger ffordd ganolog y parc ar hyn o bryd", "expected_intent": "transport:transport_traffic", "expected_slots": {"place_name": "ffordd ganolog y parc"}, "split": "test"}
{"utterance": "dywedwch wrthyf fy opsiynau ar gyfer drên i abertawe dydd mercher nesaf neu ddydd iau", "expected_intent": "transport:transport_query", "expected_slots": {"transport_type": "drên", "place_name": "abertawe", "date": "ddydd iau"}, "split": "test"}
{"utterance": "dyfed", "expected_intent": "transport:transport_query", "expected_slots": {"place_name": "dyfed"}, "split": "test"}
{"utterance": "abertawe", "expected_intent": "transport:transport_query", "expected_slots": {"place_name": "abertawe"}, "split": "test"}
{"utterance": "archebwch docyn drên o lundain i fanceinion", "expected_intent": "transport:transport_ticket", "expected_slots": {"transport_type": "drên", "place_name": "fanceinion"}, "split": "test"}
{"utterance": "a oes tagfa draffig ar fy llwybr", "expected_intent": "transport:transport_traffic", "expected_slots": {}, "split": "test"}
{"utterance": "docyn ar gyfer abertawe", "expected_intent": "transport:transport_ticket", "expected_slots": {"place_name": "abertawe"}, "split": "test"}
{"utterance": "tocyn ar gyfer bryste", "expected_intent": "transport:transport_ticket", "expected_slots": {"place_name": "bryste"}, "split": "test"}
{"utterance": "dangoswch amserlenni'r trên i'r canolfan mileniwm cymru i mi", "expected_intent": "transport:transport_query", "expected_slots": {"transport_type": "trên", "place_name": "canolfan mileniwm cymru"}, "split": "test"}
{"utterance": "galwa dacsi i mi", "expected_intent": "transport:transport_taxi", "expected_slots": {"transport_type": "dacsi"}, "split": "test"}
{"utterance": "archebwch docyn dosbarth cyntaf yn y drên nesaf i swindon", "expected_intent": "transport:transport_ticket", "expected_slots": {"transport_descriptor": "dosbarth cyntaf", "transport_type": "drên", "place_name": "swindon"}, "split": "test"}
{"utterance": "archebwch docyn drên i mi", "expected_intent": "transport:transport_ticket", "expected_slots": {"transport_type": "drên"}, "split": "test"}
{"utterance": "rhowch restr i mi o docynnau drên sydd ar gael o abertawe i leeds", "expected_intent": "transport:transport_query", "expected_slots": {"transport_type": "drên", "place_name": "leeds"}, "split": "test"}
{"utterance": "ffoniwch melyn cab", "expected_intent": "transport:transport_taxi", "expected_slots": {"transport_type": "melyn cab"}, "split": "test"}
{"utterance": "archebwch docyn drên am un ffordd ar gyfer y dydd mawrth yma am naw y bore", "expected_intent": "transport:transport_ticket", "expected_slots": {"transport_type": "drên", "transport_descriptor": "un ffordd", "date": "dydd mawrth", "time": "naw y bore"}, "split": "test"}
{"utterance": "allwch chi archebu tocynnau trên am ddau ar gyfer y dydd gwener hwn", "expected_intent": "transport:transport_ticket", "expected_slots": {"transport_type": "trên", "date": "dydd gwener"}, "split": "test"}
{"utterance": "gwiria amser y trên rhif deg wyth wyth saith o gorsaf abertawe ar ddydd mawrth", "expected_intent": "transport:transport_query", "expected_slots": {"transport_type": "trên", "transport_name": "rhif deg wyth wyth saith", "place_name": "gorsaf abertawe", "date": "ddydd mawrth"}, "split": "test"}
{"utterance": "rhowch amser y drên i mi", "expected_intent": "transport:transport_query", "expected_slots": {"transport_type": "drên"}, "split": "test"}
{"utterance": "a oes drên cysylltu o lundain i caerdydd a faint o'r gloch", "expected_intent": "transport:transport_query", "expected_slots": {"transport_type": "drên", "place_name": "caerdydd"}, "split": "test"}
{"utterance": "beth yw'r ffordd orau i bae colwyn", "expected_intent": "transport:transport_query", "expected_slots": {"place_name": "bae colwyn"}, "split": "test"}
{"utterance": "beth yw'r metro cyntaf i llanelli", "expected_intent": "transport:transport_query", "expected_slots": {"transport_type": "metro", "place_name": "llanelli"}, "split": "test"}
{"utterance": "cael uber i mi", "expected_intent": "transport:transport_taxi", "expected_slots": {"transport_agency": "uber"}, "split": "test"}
{"utterance": "archebwch docyn drên o abertawe dunvant i canton caerdydd", "expected_intent": "transport:transport_ticket", "expected_slots": {"transport_type": "drên", "place_name": "canton caerdydd"}, "split": "test"}
{"utterance": "dod o hyd i dacsi i archebu", "expected_intent": "transport:transport_taxi", "expected_slots": {"transport_type": "dacsi"}, "split": "test"}
{"utterance": "dweud wrtha'i gyfeiriad ar gyfer heddiw", "expected_intent": "transport:transport_query", "expected_slots": {"date": "ar gyfer heddiw"}, "split": "test"}
{"utterance": "pryd mae'r drên nesaf sy'n teithio'r ddinas yn gadael yma", "expected_intent": "transport:transport_query", "expected_slots": {"transport_type": "drên"}, "split": "test"}
{"utterance": "ble ma'e orsaf betrol agosaf", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"business_type": "orsaf"}, "split": "test"}
{"utterance": "beth yw'r sefyllfa traffig cyfredol", "expected_intent": "transport:transport_traffic", "expected_slots": {}, "split": "test"}
{"utterance": "llwybr cyflymaf i'r barri", "expected_intent": "transport:transport_query", "expected_slots": {"place_name": "i'r barri"}, "split": "test"}
{"utterance": "dywedwch wrthyf amser cyrraedd y drên i abertawe", "expected_intent": "transport:transport_query", "expected_slots": {"transport_type": "drên", "place_name": "abertawe"}, "split": "test"}
{"utterance": "faint o amser y bydd yn ei gymryd i gyrraedd y maes awyr", "expected_intent": "transport:transport_query", "expected_slots": {"place_name": "maes awyr"}, "split": "test"}
{"utterance": "beth yw'r amser cymudo i'r theatr", "expected_intent": "transport:transport_query", "expected_slots": {"place_name": "theatr"}, "split": "test"}
{"utterance": "beth yw'r sefyllfa traffig a'r ffordd cwmtawe", "expected_intent": "transport:transport_traffic", "expected_slots": {"place_name": "ffordd cwmtawe"}, "split": "test"}
{"utterance": "a allwch ddweud wrthyf yr amseroedd y mae'r drên yn gadael am abertawe", "expected_intent": "transport:transport_query", "expected_slots": {"transport_type": "drên", "place_name": "abertawe"}, "split": "test"}
{"utterance": "uber fi i'r maes awyr", "expected_intent": "transport:transport_taxi", "expected_slots": {"transport_agency": "uber", "place_name": "maes awyr"}, "split": "test"}
{"utterance": "archeba drên ddêl orau", "expected_intent": "transport:transport_ticket", "expected_slots": {"transport_type": "drên"}, "split": "test"}
{"utterance": "canfod tocyn trên i hwlffordd", "expected_intent": "transport:transport_ticket", "expected_slots": {"transport_type": "trên", "place_name": "hwlffordd"}, "split": "test"}
{"utterance": "prynu tocyn i caerdydd ar y drên", "expected_intent": "transport:transport_ticket", "expected_slots": {"place_name": "caerdydd", "transport_type": "drên"}, "split": "test"}
{"utterance": "sut mae cyrraedd adref o'r fan hon", "expected_intent": "transport:transport_query", "expected_slots": {"place_name": "adref"}, "split": "test"}
{"utterance": "archebu docyn drên", "expected_intent": "transport:transport_ticket", "expected_slots": {"transport_type": "drên"}, "split": "test"}
{"utterance": "beth yw'r ffordd gyflymaf i gyrraedd byd sip", "expected_intent": "transport:transport_query", "expected_slots": {"business_name": "byd sip"}, "split": "test"}
{"utterance": "arwain y ffordd i'r lle", "expected_intent": "transport:transport_query", "expected_slots": {}, "split": "test"}
{"utterance": "archebwch docyn drên i abertawe os gwelwch yn dda", "expected_intent": "transport:transport_ticket", "expected_slots": {"transport_type": "drên", "place_name": "abertawe"}, "split": "test"}
{"utterance": "dod o hyd i mi y tocyn drên rhataf i gymru", "expected_intent": "transport:transport_ticket", "expected_slots": {"transport_type": "drên", "place_name": "gymru"}, "split": "test"}
{"utterance": "dwi angen reid adref", "expected_intent": "transport:transport_taxi", "expected_slots": {"place_name": "adref"}, "split": "test"}
{"utterance": "archeba dacsi i'r lleoliad", "expected_intent": "transport:transport_taxi", "expected_slots": {"transport_type": "dacsi"}, "split": "test"}
{"utterance": "archebwch uber dacsi i mi", "expected_intent": "transport:transport_taxi", "expected_slots": {"transport_agency": "uber", "transport_type": "dacsi"}, "split": "test"}
{"utterance": "pryd mae'r trên yn rhedeg heddiw", "expected_intent": "transport:transport_query", "expected_slots": {"transport_type": "trên", "date": "heddiw"}, "split": "test"}
{"utterance": "faint o'r gloch mae'r ewrostars cyntaf yn cyrraedd yn y bore", "expected_intent": "transport:transport_query", "expected_slots": {"transport_type": "ewrostars", "timeofday": "bore"}, "split": "test"}
{"utterance": "sut ydw i'n archebu tocyn trên ar lein", "expected_intent": "transport:transport_query", "expected_slots": {"transport_type": "trên"}, "split": "test"}
{"utterance": "dw'i angen cael tocyn trên o abertawe i gaerdydd", "expected_intent": "transport:transport_ticket", "expected_slots": {"transport_type": "trên", "place_name": "o abertawe i gaerdydd"}, "split": "test"}
{"utterance": "dw'i angen cael tocyn ar drên i abertawe o gaerdydd", "expected_intent": "transport:transport_ticket", "expected_slots": {"transport_type": "drên"}, "split": "test"}
{"utterance": "trefna codiad tacsi am ganol dydd ar ddydd llun", "expected_intent": "transport:transport_taxi", "expected_slots": {"transport_type": "tacsi", "timeofday": "ganol dydd", "date": "ddydd llun"}, "split": "test"}
{"utterance": "faint yw tocyn drên taith gron i fynd i llundain", "expected_intent": "transport:transport_query", "expected_slots": {"transport_type": "drên", "place_name": "llundain"}, "split": "test"}
{"utterance": "a oes gennych chi'r amseroedd drên ar gyfer caergybi sir fôn", "expected_intent": "transport:transport_query", "expected_slots": {"transport_type": "drên", "place_name": "caergybi sir fôn"}, "split": "test"}
{"utterance": "faint o'r gloch mae'r drên cyntaf yn gadael abertawe", "expected_intent": "transport:transport_query", "expected_slots": {"transport_type": "drên", "place_name": "abertawe"}, "split": "test"}
{"utterance": "pryd mae'r drên nesaf yn gadael am casnewydd", "expected_intent": "transport:transport_query", "expected_slots": {"transport_type": "drên", "place_name": "casnewydd"}, "split": "test"}
{"utterance": "sut mae traffig yn y ddinas", "expected_intent": "transport:transport_traffic", "expected_slots": {}, "split": "test"}
{"utterance": "ydi'r traffig yn ysgafn", "expected_intent": "transport:transport_traffic", "expected_slots": {}, "split": "test"}
{"utterance": "sut mae'r traffig ar hyn o bryd", "expected_intent": "transport:transport_traffic", "expected_slots": {}, "split": "test"}
{"utterance": "archebwch docyn drên oddi yma i caergybi sir fôn am wyth y bore heddiw", "expected_intent": "transport:transport_ticket", "expected_slots": {"transport_type": "drên", "place_name": "caergybi sir fôn", "time": "wyth y bore", "date": "heddiw"}, "split": "test"}
{"utterance": "sut olwg sydd ar y traffig ar fy llwybr arferol i'r gwaith", "expected_intent": "transport:transport_traffic", "expected_slots": {}, "split": "test"}
{"utterance": "chwiliad llywio", "expected_intent": "transport:transport_query", "expected_slots": {}, "split": "test"}
{"utterance": "galw dacsi", "expected_intent": "transport:transport_taxi", "expected_slots": {"transport_type": "dacsi"}, "split": "test"}
{"utterance": "ffoniwch uberpool i'm cael ym lab dau ddeg dau", "expected_intent": "transport:transport_taxi", "expected_slots": {"transport_type": "uberpool", "place_name": "lab dau ddeg dau"}, "split": "test"}
{"utterance": "sut mae'r traffig nawr", "expected_intent": "transport:transport_traffic", "expected_slots": {}, "split": "test"}
{"utterance": "archebwch docyn trên i fangor", "expected_intent": "transport:transport_ticket", "expected_slots": {"transport_type": "trên", "place_name": "fangor"}, "split": "test"}
{"utterance": "prynwch docyn i bangor i mi", "expected_intent": "transport:transport_ticket", "expected_slots": {"place_name": "bangor"}, "split": "test"}
{"utterance": "dewch o hyd i docyn drên i mi abertawe", "expected_intent": "transport:transport_ticket", "expected_slots": {"transport_type": "drên", "place_name": "abertawe"}, "split": "test"}
{"utterance": "traffig heol", "expected_intent": "transport:transport_traffic", "expected_slots": {}, "split": "test"}
{"utterance": "archebwch uber i'm codi nawr", "expected_intent": "transport:transport_taxi", "expected_slots": {"transport_agency": "uber"}, "split": "test"}
{"utterance": "amser gyrru i fangor", "expected_intent": "transport:transport_query", "expected_slots": {"place_name": "fangor"}, "split": "test"}
{"utterance": "cadw'r uber agosaf", "expected_intent": "transport:transport_taxi", "expected_slots": {"transport_agency": "uber"}, "split": "test"}
{"utterance": "allwch chi ddweud wrthyf am y traffig", "expected_intent": "transport:transport_traffic", "expected_slots": {}, "split": "test"}
{"utterance": "amseroedd trenau o fy ymyl i i leoliad", "expected_intent": "transport:transport_query", "expected_slots": {"place_name": "leoliad"}, "split": "test"}
{"utterance": "ble mae'r llyfrgell gyhoeddus", "expected_intent": "transport:transport_query", "expected_slots": {"business_type": "llyfrgell gyhoeddus"}, "split": "test"}
{"utterance": "archebwch docyn i sir fynwy ar y drên gan", "expected_intent": "transport:transport_ticket", "expected_slots": {"place_name": "sir fynwy", "transport_type": "drên"}, "split": "test"}
{"utterance": "archeba docyn trên ar rheilffordd calon cymru o landrindod", "expected_intent": "transport:transport_ticket", "expected_slots": {"transport_type": "trên", "transport_name": "rheilffordd calon cymru", "place_name": "landrindod"}, "split": "test"}
{"utterance": "archebwch docyn o tymbl i llanelli ar ddydd mawrth", "expected_intent": "transport:transport_ticket", "expected_slots": {"place_name": "llanelli", "date": "ddydd mawrth"}, "split": "test"}
{"utterance": "sut ydw i'n mynd i'r farchnad", "expected_intent": "transport:transport_query", "expected_slots": {"place_name": "farchnad"}, "split": "test"}
{"utterance": "faint yw tocyn drên i abertawe", "expected_intent": "transport:transport_query", "expected_slots": {"transport_type": "drên", "place_name": "abertawe"}, "split": "test"}
{"utterance": "rhestrwch yr holl amseroedd drên i caerdydd", "expected_intent": "transport:transport_query", "expected_slots": {"transport_type": "drên", "place_name": "caerdydd"}, "split": "test"}
{"utterance": "pa amser mae'r trên i rhywle yn gadael", "expected_intent": "transport:transport_query", "expected_slots": {"transport_type": "trên"}, "split": "test"}
{"utterance": "sut mae'r traffig ar hyn o bryd", "expected_intent": "transport:transport_traffic", "expected_slots": {"time": "ar hyn o bryd"}, "split": "test"}
{"utterance": "ewch â fi i ael y bryn", "expected_intent": "transport:transport_query", "expected_slots": {"place_name": "ael y bryn"}, "split": "test"}
{"utterance": "archebu dacsi i'r swyddfa i mi", "expected_intent": "transport:transport_taxi", "expected_slots": {"transport_type": "dacsi", "place_name": "swyddfa"}, "split": "test"}
{"utterance": "archebwch docyn drên o abertawe i llanelli ar gyfer bore fory", "expected_intent": "transport:transport_ticket", "expected_slots": {"transport_type": "drên", "place_name": "llanelli", "timeofday": "bore", "date": "fory"}, "split": "test"}
{"utterance": "dangoswch gyfarwyddiadau i fy nghartref", "expected_intent": "transport:transport_query", "expected_slots": {"place_name": "nghartref"}, "split": "test"}
{"utterance": "cyfarwyddiadau os gwelwch yn dda", "expected_intent": "transport:transport_query", "expected_slots": {}, "split": "test"}
{"utterance": "beth yw amseriad drên cyflym i lundain", "expected_intent": "transport:transport_query", "expected_slots": {"transport_name": "drên cyflym i lundain"}, "split": "test"}
{"utterance": "adroddiad traffig", "expected_intent": "transport:transport_traffic", "expected_slots": {}, "split": "test"}
{"utterance": "tocyn trên", "expected_intent": "transport:transport_ticket", "expected_slots": {"transport_type": "trên"}, "split": "test"}
{"utterance": "tocyn drên os gwelwch yn dda", "expected_intent": "transport:transport_ticket", "expected_slots": {"transport_type": "drên"}, "split": "test"}
{"utterance": "bwcio tocyn drên penwythnos y chweched ar hugain o abertawe i caerdydd", "expected_intent": "transport:transport_ticket", "expected_slots": {"transport_type": "drên", "date": "penwythnos y chweched ar hugain", "place_name": "caerdydd"}, "split": "test"}
{"utterance": "cadwch y dacsi nesaf am naw y bore", "expected_intent": "transport:transport_taxi", "expected_slots": {"transport_type": "dacsi", "time": "naw y bore"}, "split": "test"}
{"utterance": "faint o'r gloch mae'r drên yn cyrraedd casnewydd", "expected_intent": "transport:transport_query", "expected_slots": {"transport_type": "drên", "place_name": "casnewydd"}, "split": "test"}
{"utterance": "gwiria'r map i siopau gerllaw", "expected_intent": "transport:transport_query", "expected_slots": {"business_type": "siopau"}, "split": "test"}
{"utterance": "olly dwi angen cyfarwyddiadau i stryd y baddon", "expected_intent": "transport:transport_query", "expected_slots": {"place_name": "stryd y baddon"}, "split": "test"}
{"utterance": "pa un yw'r adeilad talaf yn y byd", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "byd"}, "split": "test"}
{"utterance": "diffinio cywrain", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "cywrain"}, "split": "test"}
{"utterance": "diffiniwch fforensig", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "fforensig"}, "split": "test"}
{"utterance": "beth yw'r diffiniad o fforensig", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "fforensig"}, "split": "test"}
{"utterance": "beth yw cop ucha'r byd", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "byd"}, "split": "test"}
{"utterance": "beth yw ystyr terfysg", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "terfysg"}, "split": "test"}
{"utterance": "gwiria ddiffiniad mympwyol", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "mympwyol"}, "split": "test"}
{"utterance": "a fedri ddilyn fy nheimladau ar sail fy ffordd o siarad", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "pa mor hen yw elin fflur", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "elin fflur"}, "split": "test"}
{"utterance": "edrych i fyny'r diffiniad o camgymeriad", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "camgymeriad"}, "split": "test"}
{"utterance": "dangos ryseitiau i mi", "expected_intent": "cooking:cooking_recipe", "expected_slots": {}, "split": "test"}
{"utterance": "ble mae'r siop pitsa agosaf", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"business_type": "siop pitsa"}, "split": "test"}
{"utterance": "beth yw dau gant rhannu efo deg", "expected_intent": "qa:qa_maths", "expected_slots": {}, "split": "test"}
{"utterance": "beth yw ail isradd naw", "expected_intent": "qa:qa_maths", "expected_slots": {}, "split": "test"}
{"utterance": "dwindling eishio pice ar y maen or bakery", "expected_intent": "lists:lists_createoradd", "expected_slots": {}, "split": "test"}
{"utterance": "rydw i eisiau tocynnau i'r cyngerdd sydd wedi'i werthu allan nos dydd sadwrn", "expected_intent": "general:general_quirky", "expected_slots": {"timeofday": "nos", "date": "dydd sadwrn"}, "split": "test"}
{"utterance": "esbonia physeg cwantwm i mi mewn iaith dwi'n deall", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "allwch chi greu diet heb siwgr i mi a chreu rhestr siopa ar gyfer y cynhwysion", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "beth yw y diffiniadau o oren", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "oren"}, "split": "test"}
{"utterance": "pam nad yw anthony hopkins yn ddoniol", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "anthony hopkins"}, "split": "test"}
{"utterance": "pa bryd y mae penblwydd rhys ifans", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "rhys ifans"}, "split": "test"}
{"utterance": "dywed wrthyf beth yw cyfeiriad mirain haf", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "mirain haf"}, "split": "test"}
{"utterance": "gyrra'r car a dod a fy nghyfeillion draw", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "pwy oedd prif weinidog prydain ar hyn o bryd", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "prydain"}, "split": "test"}
{"utterance": "beth yw un adio un", "expected_intent": "qa:qa_maths", "expected_slots": {}, "split": "test"}
{"utterance": "faint ydyw swm un adio un", "expected_intent": "qa:qa_maths", "expected_slots": {}, "split": "test"}
{"utterance": "beth yw prifddinas cymru", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "cymru"}, "split": "test"}
{"utterance": "beth yw rhif ffactorol deg", "expected_intent": "qa:qa_maths", "expected_slots": {}, "split": "test"}
{"utterance": "pa mor fawr yw'r cosmos", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "pryd mae dyddiad geni angharad mair", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "angharad mair"}, "split": "test"}
{"utterance": "dywed wrthyf am gorwynt", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "gorwynt"}, "split": "test"}
{"utterance": "fedri di goginio rhywbeth arbennig i mi a fy ngwraig", "expected_intent": "general:general_quirky", "expected_slots": {"relation": "ngwraig"}, "split": "test"}
{"utterance": "a wyt yn gwybod rhif ffôn mari emlyn", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "mari emlyn"}, "split": "test"}
{"utterance": "beth mae osgiladu yn ei olygu", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "osgiladu"}, "split": "test"}
{"utterance": "sillafa a diffinia osgiladu", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "osgiladu"}, "split": "test"}
{"utterance": "cyfrifwch ddau wedi'i luosi â dau", "expected_intent": "qa:qa_maths", "expected_slots": {}, "split": "test"}
{"utterance": "gwiria lleoliad enwogyn", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "atgoffa fi i symud fel na fyddaf yn ennill pwysau", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "atgoffa fi i gysylltu efo hen ffrindiau nad wyf wedi siarad efo nhw ers chwe mis cyn iddynt basio", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "gwiria prisiau'r holl sinemau yn fy ardal ac argaeledd am ffilm newydd", "expected_intent": "recommendation:recommendation_movies", "expected_slots": {}, "split": "test"}
{"utterance": "yr ydw i angen siarad efo mam", "expected_intent": "general:general_quirky", "expected_slots": {"relation": "mam"}, "split": "test"}
{"utterance": "dweud wrtha'i sut mae etholiadau y cynulliad yn delhi yn mynd i droi allan", "expected_intent": "news:news_query", "expected_slots": {"place_name": "delhi"}, "split": "test"}
{"utterance": "beth yw ail isradd chwe chant dau ddeg pump", "expected_intent": "qa:qa_maths", "expected_slots": {}, "split": "test"}
{"utterance": "byddai'n braf os galle fe roi cyngor i mi", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "wyth ti'n adnabod math", "expected_intent": "qa:qa_maths", "expected_slots": {}, "split": "test"}
{"utterance": "lleoliad", "expected_intent": "qa:qa_definition", "expected_slots": {}, "split": "test"}
{"utterance": "beth yw'r ffordd gyflymaf i ganol fy ngwaith heb daro unrhyw draffig", "expected_intent": "transport:transport_query", "expected_slots": {"place_name": "ganol"}, "split": "test"}
{"utterance": "beth y mae angharad mair yn ei wneud i edrych yn hardd", "expected_intent": "general:general_quirky", "expected_slots": {"person": "angharad mair"}, "split": "test"}
{"utterance": "ym mhle y mae kate middleton yn prynu dillad i'w phlant", "expected_intent": "general:general_quirky", "expected_slots": {"person": "kate middleton"}, "split": "test"}
{"utterance": "pam mae angharad mair yn edrych mor ifanc", "expected_intent": "general:general_quirky", "expected_slots": {"person": "angharad mair"}, "split": "test"}
{"utterance": "beth yw'r rysait gorau ar gyfer bisgedi siocled", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "beth oedd tachwedd cyntaf george eliot", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "george eliot"}, "split": "test"}
{"utterance": "rhowch wybodaeth i mi am eifion wyn", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "eifion wyn"}, "split": "test"}
{"utterance": "faint o arian wnaeth terry matthews", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "terry matthews"}, "split": "test"}
{"utterance": "beth yw y diffiniad o'r gair gwastadol", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "gwastadol"}, "split": "test"}
{"utterance": "pwy yw enwogyn", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "beth mae enwogrwydd yn ei wneud", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "galli di wneud swper i mi", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "beth ydyw dau adio dau", "expected_intent": "qa:qa_maths", "expected_slots": {}, "split": "test"}
{"utterance": "alexa y mae gen i doleri am y mis faint fedraf fi wario bob dydd y mis hwn", "expected_intent": "qa:qa_maths", "expected_slots": {"general_frequency": "bob dydd", "date": "y mis hwn"}, "split": "test"}
{"utterance": "dw'i eisiau gwybod pa archfarchnad gerllaw sydd gyda'r pris gorau am fara heb glwten", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {"business_type": "archfarchnad", "food_type": "fara heb glwten"}, "split": "test"}
{"utterance": "pa mor fawr ydyw morfil gwyn", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "hoffem fedri gyfrifo atebion o ganlyniadau chwilio fel mae wolfram alpha yn gwneud", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "dw'i eisiau iddo cofio fy newisiadau a seilio awgrymiadau arnynt pan dwi'n gofyn", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "yr wyf eisiau iddo allu dweud wrthyf yr ystadegau am bethau y mae wedi ei wneud drosof e. e. pa mor aml yr wyf wedi bwyta allan y mis yma", "expected_intent": "general:general_quirky", "expected_slots": {"date": "y mis yma"}, "split": "test"}
{"utterance": "dim ond mân siarad", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "dw'i angen i ti ofyn sawl angel fedrith ddawnsio ar plaen pin", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "beth yw deuddeg adio cant naw deg chwech", "expected_intent": "qa:qa_maths", "expected_slots": {}, "split": "test"}
{"utterance": "beth yw'r diffiniad o amseroldeb", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "amseroldeb"}, "split": "test"}
{"utterance": "pryd fydd y byd yn benu", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "beth yw swm y rhifau pedwar a chwech", "expected_intent": "qa:qa_maths", "expected_slots": {}, "split": "test"}
{"utterance": "pa bryd y mae y gemau hoci heno", "expected_intent": "general:general_quirky", "expected_slots": {"timeofday": "heno"}, "split": "test"}
{"utterance": "sawl talaeth sydd â'r gosb eithaf", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "beth ydi deg y cant o ddeugain doler", "expected_intent": "qa:qa_maths", "expected_slots": {}, "split": "test"}
{"utterance": "anfonwch neges ddoniol i fy ffrindiau i gyd", "expected_intent": "social:social_post", "expected_slots": {}, "split": "test"}
{"utterance": "pa siopau sydd â bargeinion yfory", "expected_intent": "general:general_quirky", "expected_slots": {"date": "yfory"}, "split": "test"}
{"utterance": "beth sy'n achosi osteoperosis", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "dangoswch yr ateb i mi ar gyfer y broblem hon dau gant pedwar deg chwech ynghyd â chwe chant pum deg pedwar", "expected_intent": "qa:qa_maths", "expected_slots": {}, "split": "test"}
{"utterance": "beth yw pedwar adio pump", "expected_intent": "qa:qa_maths", "expected_slots": {}, "split": "test"}
{"utterance": "pa mor hen yw j. k. rowling", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "j. k. rowling"}, "split": "test"}
{"utterance": "hoffem i fy robot fwydo a mwytho fy nghi pan dw'i ddim adref", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "dywedwch wrtha i pryd ddylen i adael ar gyfer digwyddiad fel bod fi ar amser", "expected_intent": "calendar:calendar_set", "expected_slots": {}, "split": "test"}
{"utterance": "beth yw deuddeg rhannu efo pedwar", "expected_intent": "qa:qa_maths", "expected_slots": {}, "split": "test"}
{"utterance": "dywed wrthyf beth yw deunaw lluosi efo tri deg un", "expected_intent": "qa:qa_maths", "expected_slots": {}, "split": "test"}
{"utterance": "pam ydym ni yma", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "byddai yn wych pe gallwn dy gynghori am y gyfraith", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "pryd oedd y cymru yn cael rhyddid", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "cymru"}, "split": "test"}
{"utterance": "a fedri ddangos rhestr i mi o bob un o'm gorchmynion diweddar", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "olly ble y mae prifddinas califfornia", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "califfornia"}, "split": "test"}
{"utterance": "dangos y rhifau a enillodd y loteri y penwythnos yma os gweli'n dda", "expected_intent": "general:general_quirky", "expected_slots": {"date": "penwythnos yma"}, "split": "test"}
{"utterance": "rho ddiffiniad o ysgogiad i mi", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "ysgogiad"}, "split": "test"}
{"utterance": "allwch chi ddweud wrtha i faint o'r gloch yw hi", "expected_intent": "datetime:datetime_query", "expected_slots": {}, "split": "test"}
{"utterance": "sawl coes sydd gan gi", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "pam fod morfilod yn fawr", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "pam mae'r ddaear yn grwn", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "hoffen iddo fy helpu ddadansoddi syniadau", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "dwi eisiau netflix ac ymlacio", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "ym mha ffilm yr ymddangosodd aneurin barnard ddiwethaf", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "aneurin barnard"}, "split": "test"}
{"utterance": "ble y gwelwyd will ferrell neithiwr", "expected_intent": "general:general_quirky", "expected_slots": {"person": "will ferrell", "date": "neithiwr"}, "split": "test"}
{"utterance": "hoffem i ti droi'r teledu ymlaen", "expected_intent": "iot:iot_wemo_on", "expected_slots": {}, "split": "test"}
{"utterance": "beth ydyw chwech rhannu efo dau", "expected_intent": "qa:qa_maths", "expected_slots": {}, "split": "test"}
{"utterance": "pa mor dal yw anthony hopkins", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "anthony hopkins"}, "split": "test"}
{"utterance": "trawsnewidydd arian cyfred os gwelwch yn dda", "expected_intent": "qa:qa_currency", "expected_slots": {}, "split": "test"}
{"utterance": "pa bryd yr oedd y ffilm ddiwethaf a enillod wobr yr academi", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "pa mor uchel yw mynydd everest", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "everest"}, "split": "test"}
{"utterance": "beth yw prifddinas abertawe", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "abertawe"}, "split": "test"}
{"utterance": "ble mae cymru wedi'i leoli ar fap", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "cymru"}, "split": "test"}
{"utterance": "dywed wrthyf ble y ganwyd steve jobs", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "steve jobs"}, "split": "test"}
{"utterance": "a fedri gadarnhau os yw bryn terfel wedi priodi", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "bryn terfel"}, "split": "test"}
{"utterance": "ble y mae y rhan fwyaf o bobl enwog yn mynd i ymlacio", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "dywedwch wrthyf rywbeth y gallaf ei wneud i helpu fy nghymuned heddiw", "expected_intent": "general:general_quirky", "expected_slots": {"date": "heddiw"}, "split": "test"}
{"utterance": "oes unrhyw ddigwyddiadau rhad ac am ddim yn fy ardal heddiw", "expected_intent": "recommendation:recommendation_events", "expected_slots": {"date": "heddiw"}, "split": "test"}
{"utterance": "beth yw'r ddesg fwyaf", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "ddesg fwyaf"}, "split": "test"}
{"utterance": "ble mae'r sŵ agosaf i ble'r ydw i", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {}, "split": "test"}
{"utterance": "pa bryd y mae pen-blwydd john ogwen", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "john ogwen"}, "split": "test"}
{"utterance": "beth yw'r cynnydd yng ngwerth y stoc dros yr wythnos ddiwethaf o b. b. c.", "expected_intent": "qa:qa_stock", "expected_slots": {"business_name": "b. b. c."}, "split": "test"}
{"utterance": "beth yw gwerth punnoedd ar hyn o bryd", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "punnoedd"}, "split": "test"}
{"utterance": "galli di ddweud wrtha'i sawl bol sydd gan fuwch", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "mewn sawl drama y mae patrick stewart wedi ymddangos", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "patrick stewart"}, "split": "test"}
{"utterance": "chwistrell gwallt pa gwmni y mae donald trump yn ei brynu", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "donald trump"}, "split": "test"}
{"utterance": "beth yw pris doler mewn pynnoedd", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "pynnoedd"}, "split": "test"}
{"utterance": "a ydyw cyfradd y ddoler wedi codi", "expected_intent": "qa:qa_currency", "expected_slots": {}, "split": "test"}
{"utterance": "beth yw'r gyfradd gyfnewid ddiweddaraf un ar gyfer tsieina", "expected_intent": "qa:qa_currency", "expected_slots": {"place_name": "tsieina"}, "split": "test"}
{"utterance": "beth yw cadair", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "cadair"}, "split": "test"}
{"utterance": "pa liw ydyw cadeiriau", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "ble y mae'r prif feridian", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "cofiant person", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "beth yw gyfundrefn allyriadau electronig", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "gyfundrefn allyriadau electronig"}, "split": "test"}
{"utterance": "disgrifio rotor", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "rotor"}, "split": "test"}
{"utterance": "beth yw mango", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "mango"}, "split": "test"}
{"utterance": "ydi hi yn bosib gweld rwsia o alaska mewn difrif", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "alaska"}, "split": "test"}
{"utterance": "dangos wybodaeth am y gyfradd gyfnewid heddiw rhwng doler u. d. a. a ien japan", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "ien japan"}, "split": "test"}
{"utterance": "beth mae stoc gwasanaethau a. r. yn mynd amdano", "expected_intent": "qa:qa_stock", "expected_slots": {"business_name": "gwasanaethau a. r."}, "split": "test"}
{"utterance": "beth yw'r graddfeydd cyfnewid rhwng tseina a'r u. d. a.", "expected_intent": "qa:qa_currency", "expected_slots": {"place_name": "u. d. a."}, "split": "test"}
{"utterance": "beth yw y gyfradd gyfnewid efo tsieina", "expected_intent": "qa:qa_currency", "expected_slots": {"place_name": "tsieina"}, "split": "test"}
{"utterance": "beth yw'r gyfradd cyfnewid arian cyfred ar gyfer cymru", "expected_intent": "qa:qa_currency", "expected_slots": {"place_name": "cymru"}, "split": "test"}
{"utterance": "tynn yr erthygl wikipedia ar chwythu gwydr i fynu", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "dywed wrthyf bris stociau exxon mobil ar hyn o bryd", "expected_intent": "qa:qa_stock", "expected_slots": {"business_name": "exxon mobil"}, "split": "test"}
{"utterance": "faint ydyw oed shirley bassey", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "shirley bassey"}, "split": "test"}
{"utterance": "beth yw parsec", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "hwch a chwech o berchyll yn gwichian hyd y lle", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "dau lluosi efo dau ydyw", "expected_intent": "qa:qa_maths", "expected_slots": {}, "split": "test"}
{"utterance": "faint mor bell o califfornia mae georgia", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "georgia"}, "split": "test"}
{"utterance": "allwch chi ddisgrifio cerdyn credyd", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "cerdyn credyd"}, "split": "test"}
{"utterance": "ydi lisa jên yn briod", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "lisa jên"}, "split": "test"}
{"utterance": "beth yw y gyfradd gyfnewid rhwng yr u. d. a. a mexico", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "mexico"}, "split": "test"}
{"utterance": "sawl milltir sgwâr ydyw gwlad gyfartalog ar y ddaear", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "beth yw'r diffiniad o darostyngedig", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "darostyngedig"}, "split": "test"}
{"utterance": "beth ddigwyddodd i'r dow jones heddiw", "expected_intent": "qa:qa_stock", "expected_slots": {"date": "heddiw"}, "split": "test"}
{"utterance": "pa mor bell i ffwrdd yw yr haul", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "beth yw y gyfradd gyfnewid ar gyfer arian mexico", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "mexico"}, "split": "test"}
{"utterance": "ym mhle yn y byd y mae mwyaf o losgfynyddoedd", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "pa bryd y bu farw steve strange", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "steve strange"}, "split": "test"}
{"utterance": "beth yw caneuon mwyaf poblogaidd lady gaga", "expected_intent": "music:music_query", "expected_slots": {"artist_name": "lady gaga"}, "split": "test"}
{"utterance": "rhestra bris stoc apple y funud hon", "expected_intent": "qa:qa_stock", "expected_slots": {"business_name": "apple"}, "split": "test"}
{"utterance": "beth yw diffiniad rhesymeg", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "rhesymeg"}, "split": "test"}
{"utterance": "ym mhle y mae parc bryn bach", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "parc bryn bach"}, "split": "test"}
{"utterance": "google lleoliad a gwybodaeth am mount rushmore os gweli'n dda", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "sut y byddet yn disgrifio penblwydd hapus", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "penblwydd hapus"}, "split": "test"}
{"utterance": "rhowch wybodaeth i mi ar dafydd iwan", "expected_intent": "qa:qa_factoid", "expected_slots": {"artist_name": "dafydd iwan"}, "split": "test"}
{"utterance": "beth yw'r tymheredd yn dunvant abertawe", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "dunvant abertawe"}, "split": "test"}
{"utterance": "a fedri ddweud hanes barry john wrthyf", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "barry john"}, "split": "test"}
{"utterance": "o punt i ewro", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "ewro"}, "split": "test"}
{"utterance": "diffiniad bywyd", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "bywyd"}, "split": "test"}
{"utterance": "diffinia cegrwth", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "cegrwth"}, "split": "test"}
{"utterance": "beth mae cegrwth yn feddwl", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "cegrwth"}, "split": "test"}
{"utterance": "beth yw pen blwydd saunders lewis", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "saunders lewis"}, "split": "test"}
{"utterance": "faint yw gwerth barry john", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "barry john"}, "split": "test"}
{"utterance": "dywed am le sydd gyda eira nawr", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "sut y mae'r stociau yn gwneud yn gyffredinol", "expected_intent": "qa:qa_stock", "expected_slots": {}, "split": "test"}
{"utterance": "beth mae punt werth", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "punt"}, "split": "test"}
{"utterance": "ym mhle y mae llanrug", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "llanrug"}, "split": "test"}
{"utterance": "cyfradd y doler ar hyn o bryd", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "doler"}, "split": "test"}
{"utterance": "dioddef y canlyniadau", "expected_intent": "qa:qa_definition", "expected_slots": {}, "split": "test"}
{"utterance": "canlyniadau i weithredoedd", "expected_intent": "qa:qa_definition", "expected_slots": {}, "split": "test"}
{"utterance": "model car gorau", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "faint yw tŷ cyfartalog", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "disgrifia arth weflog", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "arth weflog"}, "split": "test"}
{"utterance": "dywed wrthyf bopeth yr wyt yn ei wybod am ddiogynnod", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "beth yw pen blwydd duffy", "expected_intent": "qa:qa_factoid", "expected_slots": {"event_name": "pen blwydd", "person": "duffy"}, "split": "test"}
{"utterance": "beth yw cyfesurynnau y cyhydedd", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "y cyhydedd"}, "split": "test"}
{"utterance": "disgrifia uffern", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "uffern"}, "split": "test"}
{"utterance": "un plws dau yn gyfartal", "expected_intent": "qa:qa_maths", "expected_slots": {}, "split": "test"}
{"utterance": "os mai pedair doler yw pris pensel a deg doler yw pris llyfr faint fydd yn rhaid i mi ei dalu os wyf yn prynu dwy bensel a thri llyfr", "expected_intent": "qa:qa_maths", "expected_slots": {}, "split": "test"}
{"utterance": "beth yw'r gyfradd gyfnewid bunt ac ewro", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "ewro"}, "split": "test"}
{"utterance": "ym mhle y ganwyd obama", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "obama"}, "split": "test"}
{"utterance": "ble y mae lleoliad moldova", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "how tall is mark andrews", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "beth yw y gyfradd gyfnewid yn yr ardal hon", "expected_intent": "qa:qa_currency", "expected_slots": {}, "split": "test"}
{"utterance": "pa flwyddyn y dechreuodd matthew rhys actio", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "matthew rhys"}, "split": "test"}
{"utterance": "pryd yr oedd pen-blwydd dafydd iwan", "expected_intent": "qa:qa_factoid", "expected_slots": {"event_name": "pen-blwydd", "person": "dafydd iwan"}, "split": "test"}
{"utterance": "dywed wrthyf beth yr oeddwn yn ei wisgo ddoe", "expected_intent": "general:general_quirky", "expected_slots": {"date": "ddoe"}, "split": "test"}
{"utterance": "mae un doler yn werth faint o rwpîs india", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "rwpîs india"}, "split": "test"}
{"utterance": "ble y mae grey evans yn byw ar hyn o bryd", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "grey evans"}, "split": "test"}
{"utterance": "pris stociau facebook ar hyn o bryd", "expected_intent": "qa:qa_stock", "expected_slots": {"business_name": "facebook"}, "split": "test"}
{"utterance": "ym mhle y mae penygader", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "beth y mae jlo yn ei wneud", "expected_intent": "general:general_quirky", "expected_slots": {"person": "jlo"}, "split": "test"}
{"utterance": "rho fanylion am dywod craig", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "dywod craig"}, "split": "test"}
{"utterance": "disgrifia tywod craig", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "tywod craig"}, "split": "test"}
{"utterance": "ym mhle y mae y pyramidiau", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "pyramidiau"}, "split": "test"}
{"utterance": "dangos fanylion daearyddol am barc cenedlaethol eryri", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "barc cenedlaethol eryri"}, "split": "test"}
{"utterance": "dangos fywgraffiad sorela", "expected_intent": "qa:qa_factoid", "expected_slots": {"artist_name": "sorela"}, "split": "test"}
{"utterance": "beth yw pris ankst ar hyn o bryd", "expected_intent": "qa:qa_stock", "expected_slots": {"business_name": "ankst"}, "split": "test"}
{"utterance": "dywed wrthyf beth yw'r diffiniad o silindr os gweli'n dda", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "silindr"}, "split": "test"}
{"utterance": "faint yw y bunt brydeinig", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "bunt brydeinig"}, "split": "test"}
{"utterance": "diffinia blanced", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "blanced"}, "split": "test"}
{"utterance": "beth yw esgidiau converse", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "esgidiau converse"}, "split": "test"}
{"utterance": "pa fath o sbectol haul sy'n cael eu galw yn aviators", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "gwybodaeth affrica", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "affrica"}, "split": "test"}
{"utterance": "chwilia'r ardal", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "ble yr aeth amal clooney i'r coleg", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "amal clooney"}, "split": "test"}
{"utterance": "ydi kizzie crawford yn gwisgo daps", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "kizzie crawford"}, "split": "test"}
{"utterance": "pa mor bell yw hi i canada o fy lleoliad presennol", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "canada"}, "split": "test"}
{"utterance": "beth yw pris stoc ankst", "expected_intent": "qa:qa_stock", "expected_slots": {"business_name": "ankst"}, "split": "test"}
{"utterance": "faint yw stoc ankst dyddiau yma", "expected_intent": "qa:qa_stock", "expected_slots": {"business_name": "ankst"}, "split": "test"}
{"utterance": "darganfydda'r ffyrdd i deithio am yr un peth", "expected_intent": "transport:transport_query", "expected_slots": {}, "split": "test"}
{"utterance": "ateb ar gyfer tri lluosi pedwar", "expected_intent": "qa:qa_maths", "expected_slots": {}, "split": "test"}
{"utterance": "faint mae'r bunt werth yn ffrainc", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "ffrainc"}, "split": "test"}
{"utterance": "pa ffilmiau mae catherine zeta-jones wedi bod ynddynt", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "catherine zeta-jones"}, "split": "test"}
{"utterance": "faint yw doler u. d. a. yn erbyn y bunt", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "bunt"}, "split": "test"}
{"utterance": "faint yw gwerth punt yn erbyn doler u. d. a.", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "doler u. d. a."}, "split": "test"}
{"utterance": "manylion am berson", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "sut mae cael basalt", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "faint yw pris stociau amazon", "expected_intent": "qa:qa_stock", "expected_slots": {"business_name": "amazon"}, "split": "test"}
{"utterance": "a fedri gyfrifo beth yw naw adio dau", "expected_intent": "qa:qa_maths", "expected_slots": {}, "split": "test"}
{"utterance": "hei beth yw llyfr", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "llyfr"}, "split": "test"}
{"utterance": "dywed wrthyf am jaipur", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "jaipur"}, "split": "test"}
{"utterance": "beth yw'r gyfradd rhwng y peso a'r ien", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "ien"}, "split": "test"}
{"utterance": "eglura wrthyf leoliad daearyddol cymru", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "cymru"}, "split": "test"}
{"utterance": "beth yw cyfanswm gwerth leonardo dicaprio", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "ydi hwn y foment mwyaf neu lleiaf pwysig erioed yn hanes", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "pa mor fawr yw alaska", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "alaska"}, "split": "test"}
{"utterance": "beth yw faint cymru", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "pa liw yw draigffrwyth", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "ble ganwyd bryn terfel", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "bryn terfel"}, "split": "test"}
{"utterance": "dywed wrthyf am economi a g. d. p. india o'u cymharu â tseina", "expected_intent": "general:general_quirky", "expected_slots": {"place_name": "tseina"}, "split": "test"}
{"utterance": "beth yw pris stoc h. s. b. c.", "expected_intent": "qa:qa_stock", "expected_slots": {"business_name": "h. s. b. c."}, "split": "test"}
{"utterance": "beth yw rhagdybiaeth", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "rhagdybiaeth"}, "split": "test"}
{"utterance": "google beth yw'r pethau sylfaenol sydd angen ar bobl", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "beth yw'r ateb i'r bydysawd", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "sawl cragen mor gwerthodd sally ger lan y mor", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "dwi'n credu galla'i diethio'r byd i gyd mewn diwrnod", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "fydd yna rhyfel byd pedwar", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "faint bydd poblogaeth y byd mew ugain mlynedd", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "dweud swydd enwogyn wrtha'i", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "diffiniad o gyflymder", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "gyflymder"}, "split": "test"}
{"utterance": "pa mor fawr yw tŵr marcwis môn", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "ble y mae'r man dyfnaf yn y byd", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "rhowch fanylion pris stoc motorolla", "expected_intent": "qa:qa_stock", "expected_slots": {"business_name": "motorolla"}, "split": "test"}
{"utterance": "disgrifia rheolau'r gêm pêl droed newydd i mi", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "disgrifia bopeth am dreif galed cyfrifiadur", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "dreif galed cyfrifiadur"}, "split": "test"}
{"utterance": "pa cefnfor sy'n cyffwrdd ein cyfandir ni", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "beth mae mark drakeford yn ei wneud yn ei fywyd o ddydd i ddydd", "expected_intent": "general:general_quirky", "expected_slots": {"person": "mark drakeford"}, "split": "test"}
{"utterance": "a fydd gan sioned ffilm newydd eleni", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "sioned"}, "split": "test"}
{"utterance": "beth yw cafftan", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "cafftan"}, "split": "test"}
{"utterance": "chwilia am gyfradd gyfnewid doler u. d. a. i'r bunt", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "bunt"}, "split": "test"}
{"utterance": "beth yw prifddinas cymru", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "cymru"}, "split": "test"}
{"utterance": "ble y mae fiji", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "fiji"}, "split": "test"}
{"utterance": "beth oedd enw ffilm gyntaf rhys ifans", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "rhys ifans"}, "split": "test"}
{"utterance": "a yw pinc wedi cael babi newydd", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "pinc"}, "split": "test"}
{"utterance": "cyfradd gyfnewid yr ewro yn erbyn y ddoler", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "ddoler"}, "split": "test"}
{"utterance": "dod o hyd i'r llwybr", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "nodweddion google pixel", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "cyfarwyddiadau i portmeirion", "expected_intent": "transport:transport_query", "expected_slots": {"place_name": "portmeirion"}, "split": "test"}
{"utterance": "agor pris stoc ar gyfer ewn", "expected_intent": "qa:qa_stock", "expected_slots": {}, "split": "test"}
{"utterance": "manylion am bris stoc", "expected_intent": "qa:qa_stock", "expected_slots": {}, "split": "test"}
{"utterance": "a gawn fynd i'r haul", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "pa bryd yr adeiladwyd theatr bolshoi", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "theatr bolshoi"}, "split": "test"}
{"utterance": "rhowch y disgrifiad i mi am ffôn clyfar", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "ffôn clyfar"}, "split": "test"}
{"utterance": "olly sawl cyfarfod wnaeth mahatma gandhi gymryd rhan ynddynt", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "mahatma gandhi"}, "split": "test"}
{"utterance": "pwy yw prif weinidog rwsia ar hyn o bryd", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "rwsia"}, "split": "test"}
{"utterance": "crynhowch y raymond williams llyfr y wlad a'r ddinas", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "ble ganwyd hugh price", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "hugh price"}, "split": "test"}
{"utterance": "beth yw pris bunt", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "bunt"}, "split": "test"}
{"utterance": "hysbysa fi pan fod cyfradd g. b. p. yn erbyn u. s. d. fel y disgwyliais", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "u. s. d."}, "split": "test"}
{"utterance": "dewch o hyd i fanylion daearyddol y lle hwn", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "darganfyddwch bris cyfranddaliadau microsoft yn barclays", "expected_intent": "qa:qa_stock", "expected_slots": {"business_name": "microsoft"}, "split": "test"}
{"utterance": "dywed wrthyf am leoliad india", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "india"}, "split": "test"}
{"utterance": "gwnewch rhestr ynglŷn â amserlen cyngherddau bryn fon", "expected_intent": "lists:lists_createoradd", "expected_slots": {"person": "bryn fon"}, "split": "test"}
{"utterance": "dywed wrtha'i os yw cynhesu byd eang yn wir", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "gad fi wybod lan a lawr ym mhris stoc y cwmni yma", "expected_intent": "qa:qa_stock", "expected_slots": {}, "split": "test"}
{"utterance": "eglura sut bod yr u. d. a. yn well na gwledydd eraill", "expected_intent": "general:general_quirky", "expected_slots": {"place_name": "u. d. a."}, "split": "test"}
{"utterance": "pa un yw y llosgfynydd byw mwyaf yn y byd", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "y byd"}, "split": "test"}
{"utterance": "pa mor hir y bydd yn ei gymryd i deithio i gymru o lloegr", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "lloegr"}, "split": "test"}
{"utterance": "rho ddisgrifiad o cylched teledu i mi", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "cylched teledu"}, "split": "test"}
{"utterance": "disgrifia sut y mae cylched ffôn glyfar yn edrych", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "cylched ffôn glyfar"}, "split": "test"}
{"utterance": "beth yw poblogaeth efrog newydd", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "efrog newydd"}, "split": "test"}
{"utterance": "cyfnewidfa arian", "expected_intent": "qa:qa_currency", "expected_slots": {}, "split": "test"}
{"utterance": "am sawl blwyddyn y bu abraham lincoln yn arlywydd yr unol daleithiau", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "a wnaeth angelina jolie adael brad pitt", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "brad pitt"}, "split": "test"}
{"utterance": "pa ffilm newydd y mae sian cothi yn gweithio arni", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "sian cothi"}, "split": "test"}
{"utterance": "rhanna ddau gant efo pedwar", "expected_intent": "qa:qa_maths", "expected_slots": {}, "split": "test"}
{"utterance": "cyfraddau cyfnewid tramor", "expected_intent": "qa:qa_currency", "expected_slots": {}, "split": "test"}
{"utterance": "disgrifio beth yw sffêr", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "sffêr"}, "split": "test"}
{"utterance": "pris stociau", "expected_intent": "qa:qa_stock", "expected_slots": {}, "split": "test"}
{"utterance": "dywedwch wrthyf am y prisiau hedfan rhataf i sir fôn heddiw", "expected_intent": "transport:transport_ticket", "expected_slots": {"place_name": "sir fôn", "date": "heddiw"}, "split": "test"}
{"utterance": "rysait os gwelwch yn dda", "expected_intent": "cooking:cooking_recipe", "expected_slots": {}, "split": "test"}
{"utterance": "beth yw poblogaeth cymru", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "cymru"}, "split": "test"}
{"utterance": "beth yw cyfradd gyfnewid yr ewro yn erbyn y doler", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "doler"}, "split": "test"}
{"utterance": "beth yw blwyddyn geni barack obama", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "barack obama"}, "split": "test"}
{"utterance": "disgrifio eitem x. y.", "expected_intent": "qa:qa_definition", "expected_slots": {}, "split": "test"}
{"utterance": "a fedri ddweud wrthyf am deyrnas yr anifeiliaid yng nghoedwig yr amazon", "expected_intent": "general:general_quirky", "expected_slots": {"place_name": "nghoedwig yr amazon"}, "split": "test"}
{"utterance": "beth yw hobi john ogwen", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "john ogwen"}, "split": "test"}
{"utterance": "pwy yw prif weinidog cymru", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "cymru"}, "split": "test"}
{"utterance": "beth yw arlywydd", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "arlywydd"}, "split": "test"}
{"utterance": "beth yn union yw llenwad dannedd resin", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "llenwad dannedd resin"}, "split": "test"}
{"utterance": "disgrifia y gêm cardiau calon a charreg", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "gêm cardiau calon a charreg"}, "split": "test"}
{"utterance": "iawn google lle mae catherine zeta jones yn byw", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "catherine zeta jones"}, "split": "test"}
{"utterance": "ble y mae meinir gwilym yn byw", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "meinir gwilym"}, "split": "test"}
{"utterance": "sawl ewro i'r punt ar hyn o bryd", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "ewro i'r punt"}, "split": "test"}
{"utterance": "beth yw prifddinas cymru", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "cymru"}, "split": "test"}
{"utterance": "rhanna saith deg chwech yn ddau ran hafal", "expected_intent": "qa:qa_maths", "expected_slots": {}, "split": "test"}
{"utterance": "rho i mi ddiffiniad o'r gair doethinebu", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "doethinebu"}, "split": "test"}
{"utterance": "cyfradd cyfnewid bunt i ewro", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "ewro"}, "split": "test"}
{"utterance": "faint yw gwerth y punt o'i chymharu â'r ewro", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "ewro"}, "split": "test"}
{"utterance": "sut y byddet yn disgrifio pêl", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "pêl"}, "split": "test"}
{"utterance": "dywed wrthyf enw y cefnfor mwyaf yn y byd", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "byd"}, "split": "test"}
{"utterance": "beth yw y gwahaniaeth rhwng y calendr rhufeinaidd a'r calendr gregorïaidd", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "beth yw gwneuthuriad y gadair", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "ble mae llwybr troed yn agos ataf", "expected_intent": "recommendation:recommendation_locations", "expected_slots": {}, "split": "test"}
{"utterance": "pa un oedd hoff reid elvis", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "elvis"}, "split": "test"}
{"utterance": "mae ei air caled wedi ei giwio yn llwyr", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "mwy o brisiau stoc", "expected_intent": "qa:qa_stock", "expected_slots": {}, "split": "test"}
{"utterance": "i gymharu mewn pobl", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "beth yw hidlydd dwysedd niwtral ac a fyddwn eisiau un graddol ynteu un soled hefyd pa fath ydi'r gorau - y math sy'n sgriwio ynteu'r math sgwâr", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "a fedri egluro y term afresymol i mi os gweli'n dda", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "afresymol"}, "split": "test"}
{"utterance": "beth yw'r gyfradd gyfnewid ag ef mewn un bunt brau", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "bunt brau"}, "split": "test"}
{"utterance": "gwirio pris stoc am the abergavenny fine food c. o.", "expected_intent": "qa:qa_stock", "expected_slots": {"business_name": "the abergavenny fine food c. o."}, "split": "test"}
{"utterance": "beth yw'r amodau hinsoddol yn yr ardal honno", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "ystyr", "expected_intent": "qa:qa_definition", "expected_slots": {}, "split": "test"}
{"utterance": "pa dalaith yn yr u. d. sydd leiaf tebygol o gael corwyntoedd", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "u. d."}, "split": "test"}
{"utterance": "disgrifia'r gwrthrych yna i mi", "expected_intent": "qa:qa_definition", "expected_slots": {}, "split": "test"}
{"utterance": "ym mha faes y mae'r person hwnnw'n rhagori ynddo", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "a oedd y stociau'n codi neu'n dirywio", "expected_intent": "qa:qa_stock", "expected_slots": {}, "split": "test"}
{"utterance": "lle ganwyd yr arlywydd drakeford", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "drakeford"}, "split": "test"}
{"utterance": "pryd mae albwm nesaf bryn terfel allan", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "bryn terfel"}, "split": "test"}
{"utterance": "sut mae cyfranddaliadau byd sip wedi'u gwneud yr wythnos diwethaf", "expected_intent": "qa:qa_stock", "expected_slots": {"business_name": "byd sip", "date": "yr wythnos diwethaf"}, "split": "test"}
{"utterance": "a aeth pris stoc tesco i fyny neu i lawr", "expected_intent": "qa:qa_stock", "expected_slots": {"business_name": "tesco"}, "split": "test"}
{"utterance": "faint byddai'n gostio i brynu cyfranddaliadau apple", "expected_intent": "qa:qa_stock", "expected_slots": {"business_name": "apple"}, "split": "test"}
{"utterance": "dywed wrthyf y gyfradd gyfnewid rhwng y rwpî a'r dirham", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "dirham"}, "split": "test"}
{"utterance": "dywed wrthyf yr wybodaeth am ddaearyddiaeth india", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "india"}, "split": "test"}
{"utterance": "mae angen rhai manylion arnaf am rhys ifans helpwch os gwelwch yn dda", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "rhys ifans"}, "split": "test"}
{"utterance": "edrych i fynu", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "rhyngrwyd os gweli'n dda", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "sut ydw i'n deall menywod", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "beth yw y prif gyfradd gyfnewid ar gyfer yr uda yn erbyn rwpîs india", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "rwpîs india"}, "split": "test"}
{"utterance": "iphone saith ddisgrifiad", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "iphone saith"}, "split": "test"}
{"utterance": "beth yw ffilm nesaf ioan gruffydd", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "ioan gruffydd"}, "split": "test"}
{"utterance": "beth yw ystyr sefyllfa", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "sefyllfa"}, "split": "test"}
{"utterance": "faint yw gwerth un doler u. d. a. yn lloegr", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "lloegr"}, "split": "test"}
{"utterance": "pa mor hen yw bryn fôn", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "bryn fôn"}, "split": "test"}
{"utterance": "faint yw un ddoler mewn punoedd", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "punoedd"}, "split": "test"}
{"utterance": "olly ble mae'r parc cenedlaethol eryri yn cychwyn", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "parc cenedlaethol eryri"}, "split": "test"}
{"utterance": "pa bolyn sy'n oerach i'r de neu'r gogledd", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "pa mor hen yw joanna page cariad newydd", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "joanna page"}, "split": "test"}
{"utterance": "gwybodaeth am terry morris os gweli'n dda", "expected_intent": "qa:qa_factoid", "expected_slots": {"person": "terry morris"}, "split": "test"}
{"utterance": "olly ym mhle y gwnaeth yr americanwyr cyntaf ymgartrefu", "expected_intent": "qa:qa_factoid", "expected_slots": {}, "split": "test"}
{"utterance": "chwilia am ddisgrifiad o deledu samsung", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "deledu samsung"}, "split": "test"}
{"utterance": "edrych faint o bobl sy'n byw yn miami fflorida", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "miami fflorida"}, "split": "test"}
{"utterance": "pa ranbarth y mae abertawe wedi'i leoli", "expected_intent": "qa:qa_factoid", "expected_slots": {"place_name": "abertawe"}, "split": "test"}
{"utterance": "siri gwiria y cyfraddau cyfnewid os gweli'n dda", "expected_intent": "qa:qa_currency", "expected_slots": {}, "split": "test"}
{"utterance": "beth yw geoleg y lleoliad yma", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "faint o ewros a gaf fi am un doler", "expected_intent": "qa:qa_currency", "expected_slots": {"currency_name": "doler"}, "split": "test"}
{"utterance": "diffinio siaradwr", "expected_intent": "qa:qa_definition", "expected_slots": {"definition_word": "siaradwr"}, "split": "test"}
{"utterance": "sut y mae i. b. m. yn gwneud", "expected_intent": "qa:qa_stock", "expected_slots": {"business_name": "i. b. m."}, "split": "test"}
{"utterance": "dod yn hofrennydd", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "gwiriwch fy rhwydweithiau cymdeithasol", "expected_intent": "social:social_query", "expected_slots": {"media_type": "rhwydweithiau cymdeithasol"}, "split": "test"}
{"utterance": "allwch chi lwytho fy hunlun diweddaraf i fyny yn fy nghyfrif facebook", "expected_intent": "social:social_post", "expected_slots": {"media_type": "nghyfrif facebook"}, "split": "test"}
{"utterance": "postiwch fy musnes ar twitter", "expected_intent": "social:social_post", "expected_slots": {"media_type": "twitter"}, "split": "test"}
{"utterance": "aildrydarwch y post yma ar twitter", "expected_intent": "social:social_post", "expected_slots": {"media_type": "twitter"}, "split": "test"}
{"utterance": "oes unrhyw geisiadau ffrind newydd gyda fi", "expected_intent": "social:social_query", "expected_slots": {}, "split": "test"}
{"utterance": "dymuniadau penblwydd", "expected_intent": "social:social_post", "expected_slots": {"event_name": "penblwydd"}, "split": "test"}
{"utterance": "dymuniadau priodas", "expected_intent": "social:social_post", "expected_slots": {"event_name": "priodas"}, "split": "test"}
{"utterance": "rhannu mewn post ffrind", "expected_intent": "social:social_post", "expected_slots": {}, "split": "test"}
{"utterance": "postia ar twitter fy ymweliad i siapan", "expected_intent": "social:social_post", "expected_slots": {"media_type": "twitter"}, "split": "test"}
{"utterance": "beth sy'n mynd ymlaen", "expected_intent": "social:social_query", "expected_slots": {}, "split": "test"}
{"utterance": "ewch i nôl y newyddion diweddaraf o facebook i fi", "expected_intent": "social:social_query", "expected_slots": {"media_type": "facebook"}, "split": "test"}
{"utterance": "diweddariadau newydd", "expected_intent": "social:social_query", "expected_slots": {}, "split": "test"}
{"utterance": "rhowch fy niweddariad facebook i fi pob tair awr", "expected_intent": "social:social_query", "expected_slots": {"media_type": "facebook", "general_frequency": "pob tair awr"}, "split": "test"}
{"utterance": "postiwch hei pawb ar facebook", "expected_intent": "social:social_post", "expected_slots": {"media_type": "facebook"}, "split": "test"}
{"utterance": "beth sy'n boblogaidd nawr", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "beth yw'r newyddion heddiw", "expected_intent": "news:news_query", "expected_slots": {"date": "heddiw"}, "split": "test"}
{"utterance": "trydarwch rhywbeth i fi", "expected_intent": "social:social_post", "expected_slots": {"media_type": "trydarwch"}, "split": "test"}
{"utterance": "dangoswch hysbysiadau diweddaraf i fi", "expected_intent": "social:social_query", "expected_slots": {}, "split": "test"}
{"utterance": "oes unrhyw bost wrth fy ffrind meic yn facebook", "expected_intent": "social:social_query", "expected_slots": {"relation": "ffrind", "person": "meic", "media_type": "facebook"}, "split": "test"}
{"utterance": "postiwch llun fy nhaith i goa ar instagram", "expected_intent": "social:social_post", "expected_slots": {"media_type": "instagram"}, "split": "test"}
{"utterance": "wnaeth unrhyw un hoffi fy llun wnes i newydd bostio", "expected_intent": "social:social_query", "expected_slots": {}, "split": "test"}
{"utterance": "postiwch hyn i fy facebook l. o. l.", "expected_intent": "social:social_post", "expected_slots": {"media_type": "facebook"}, "split": "test"}
{"utterance": "sganiwch fy nghyfryngau cymdeithasol a dwedwch wrtha i beth sy'n digwydd", "expected_intent": "social:social_query", "expected_slots": {}, "split": "test"}
{"utterance": "postiwch dwi'n hapus i facebook", "expected_intent": "social:social_post", "expected_slots": {"media_type": "facebook"}, "split": "test"}
{"utterance": "postiwch statws newydd ar facebook yn dweud fy mod i'n mwynhau'r tywydd braf", "expected_intent": "social:social_post", "expected_slots": {"media_type": "facebook", "weather_descriptor": "tywydd braf"}, "split": "test"}
{"utterance": "facebook", "expected_intent": "social:social_query", "expected_slots": {"media_type": "facebook"}, "split": "test"}
{"utterance": "postiwch y neges nawr", "expected_intent": "social:social_post", "expected_slots": {}, "split": "test"}
{"utterance": "darllenwch bost newydd ar fy feed i fi", "expected_intent": "social:social_query", "expected_slots": {}, "split": "test"}
{"utterance": "olly beth sy'n boeth pynciau cyfryngau cymdeithasol", "expected_intent": "social:social_query", "expected_slots": {}, "split": "test"}
{"utterance": "oes unrhyw un wedi dilyn fi heddiw ar twitter heddiw", "expected_intent": "social:social_query", "expected_slots": {"date": "heddiw", "media_type": "twitter"}, "split": "test"}
{"utterance": "oes gen i unrhyw hysbysiadau o gyfryngau cymdeithasol", "expected_intent": "calendar:calendar_query", "expected_slots": {}, "split": "test"}
{"utterance": "dywedwch wrtha i beth sy'n mynd ymlaen gyda facebook", "expected_intent": "social:social_query", "expected_slots": {"media_type": "facebook"}, "split": "test"}
{"utterance": "dwi eisiau diolch i bawb am y dymuniadau penblwydd", "expected_intent": "social:social_post", "expected_slots": {"event_name": "penblwydd"}, "split": "test"}
{"utterance": "oes unrhyw un wedi gwneud sylw ar fy statws", "expected_intent": "social:social_query", "expected_slots": {}, "split": "test"}
{"utterance": "darllennwch fy ffrwd facebook os gwelwch yn dda", "expected_intent": "social:social_query", "expected_slots": {"media_type": "facebook"}, "split": "test"}
{"utterance": "unrhywbeth newydd ar insta", "expected_intent": "social:social_query", "expected_slots": {"media_type": "insta"}, "split": "test"}
{"utterance": "postiwch y fideo yma i facebook", "expected_intent": "social:social_post", "expected_slots": {"media_type": "facebook"}, "split": "test"}
{"utterance": "gwiriwch y pynciau mwyaf poblogaidd ar twitter os gwelwch yn dda", "expected_intent": "social:social_query", "expected_slots": {"media_type": "twitter"}, "split": "test"}
{"utterance": "pwy sy'n gwneud facebook live ar hyn o bryd", "expected_intent": "social:social_query", "expected_slots": {"media_type": "facebook live"}, "split": "test"}
{"utterance": "dwi'n anhapus gyda tesco helpa fi", "expected_intent": "social:social_post", "expected_slots": {"business_name": "tesco"}, "split": "test"}
{"utterance": "olly trydarwch apple fod yr iphone ddim yn gweithio", "expected_intent": "social:social_post", "expected_slots": {"media_type": "trydarwch", "business_name": "apple"}, "split": "test"}
{"utterance": "agorwch drydariad i apple for batri fy ffôn yn gwagio bob amser", "expected_intent": "social:social_post", "expected_slots": {"media_type": "drydariad", "business_name": "apple"}, "split": "test"}
{"utterance": "allwch chi roi gwybod i amazon fod y casyn ffôn newydd yma yn sothach", "expected_intent": "social:social_post", "expected_slots": {"business_name": "amazon"}, "split": "test"}
{"utterance": "allwch chi gysylltu â samsung a dweud bod fy mheiriant golchi ar dân", "expected_intent": "social:social_post", "expected_slots": {"business_name": "samsung"}, "split": "test"}
{"utterance": "trydarwch fy llwoliad presennol", "expected_intent": "social:social_post", "expected_slots": {"media_type": "trydarwch"}, "split": "test"}
{"utterance": "anfonwch gwyn ymlaen i plusnet am broblemau rhwydwaith", "expected_intent": "social:social_post", "expected_slots": {"business_name": "plusnet"}, "split": "test"}
{"utterance": "agor twitter a danfon neges", "expected_intent": "social:social_post", "expected_slots": {"business_name": "twitter"}, "split": "test"}
{"utterance": "trydarwch fod y cynnyrch yn sothach", "expected_intent": "social:social_post", "expected_slots": {"media_type": "trydarwch"}, "split": "test"}
{"utterance": "agorwch twitter teipiwch fy nghwyn a postiwch at gwasanaeth cwsmeriaid", "expected_intent": "social:social_post", "expected_slots": {"media_type": "twitter", "business_name": "at gwasanaeth cwsmeriaid"}, "split": "test"}
{"utterance": "dewch a pherson i fi mor gynted â phosib", "expected_intent": "social:social_post", "expected_slots": {}, "split": "test"}
{"utterance": "day fawd i lawr at enw cwmni", "expected_intent": "social:social_post", "expected_slots": {"business_name": "at enw cwmni"}, "split": "test"}
{"utterance": "dwedwch wrtha i beth sy'n digwydd ar instagram", "expected_intent": "social:social_query", "expected_slots": {"media_type": "instagram"}, "split": "test"}
{"utterance": "danfon drydariad am broblemau uchder sony", "expected_intent": "social:social_post", "expected_slots": {"media_type": "drydariad", "business_name": "sony"}, "split": "test"}
{"utterance": "trydarwch at british airways dwi'n grac eich bod wedi colli fy magiau", "expected_intent": "social:social_post", "expected_slots": {"media_type": "trydarwch", "business_name": "british airways"}, "split": "test"}
{"utterance": "dw'i eisiau danfon trydariad at easyjet dwi'n grac eich bod wedi colli fy magiau", "expected_intent": "social:social_post", "expected_slots": {"media_type": "trydariad", "business_name": "easyjet"}, "split": "test"}
{"utterance": "cefais broblem gyda fy myrgyr fedri di drydar burger king", "expected_intent": "social:social_post", "expected_slots": {"media_type": "drydar", "business_name": "burger king"}, "split": "test"}
{"utterance": "anfonwch gwyn twitter", "expected_intent": "social:social_post", "expected_slots": {"media_type": "twitter"}, "split": "test"}
{"utterance": "gefais i ddim y cynnyrch ar amser anfonwch drydariad at marks and spencer", "expected_intent": "social:social_post", "expected_slots": {"media_type": "drydariad", "business_name": "marks and spencer"}, "split": "test"}
{"utterance": "dywedwch wrth sky fy mod i'n eu casau nhw", "expected_intent": "social:social_post", "expected_slots": {"business_name": "sky"}, "split": "test"}
{"utterance": "trydarwch gwyn ar gyfer y siop lyfrau arlein", "expected_intent": "social:social_post", "expected_slots": {"media_type": "trydarwch", "business_name": "siop lyfrau arlein"}, "split": "test"}
{"utterance": "trydarwch next ynglŷn â glendid eu siop", "expected_intent": "social:social_post", "expected_slots": {"media_type": "trydarwch", "business_name": "next"}, "split": "test"}
{"utterance": "trydarwch at pizzahut dw'i wedi bod yn aros am fy mwyd", "expected_intent": "social:social_post", "expected_slots": {"media_type": "trydarwch", "business_name": "at pizzahut"}, "split": "test"}
{"utterance": "trydariad newydd i gwasanaeth cwsmeriaid", "expected_intent": "social:social_post", "expected_slots": {"media_type": "trydariad", "business_name": "gwasanaeth cwsmeriaid"}, "split": "test"}
{"utterance": "siri agorwch twitter trydarwch bod mae’r prif weinidog y deyrnas unedig yn hollol ofnadwy", "expected_intent": "social:social_post", "expected_slots": {"media_type": "twitter"}, "split": "test"}
{"utterance": "dangoswch fy ngweithgaredd cyfryngau cymdeithasol diweddaraf i mi", "expected_intent": "social:social_query", "expected_slots": {}, "split": "test"}
{"utterance": "oes unrhyw beth pwysig yn digwydd ar gyfryngau cymdeithasol", "expected_intent": "social:social_query", "expected_slots": {}, "split": "test"}
{"utterance": "anfonwch gwyn drwy drydariad i siop y pethe", "expected_intent": "social:social_post", "expected_slots": {"media_type": "drydariad", "business_name": "siop y pethe"}, "split": "test"}
{"utterance": "olly trydarwch tesco a dywedwch wrthyn nhw fod eu gwasanaeth cwsmeriaid yn ofnadwy", "expected_intent": "social:social_post", "expected_slots": {"media_type": "trydarwch", "business_name": "tesco"}, "split": "test"}
{"utterance": "trydarwch am bitsa oer i pizza hut", "expected_intent": "social:social_post", "expected_slots": {"media_type": "trydarwch", "business_name": "pizza hut"}, "split": "test"}
{"utterance": "trydarwch gwyn ffôn symudol i samsung", "expected_intent": "social:social_post", "expected_slots": {"media_type": "trydarwch", "business_name": "samsung"}, "split": "test"}
{"utterance": "os gwelwch yn dda trydariad ymateb negyddol ar wasanaeth sbar", "expected_intent": "social:social_post", "expected_slots": {"media_type": "trydariad", "business_name": "wasanaeth sbar"}, "split": "test"}
{"utterance": "trydarwch wasanaeth dell am yr oedi mewn gwasanaeth", "expected_intent": "social:social_post", "expected_slots": {"media_type": "trydarwch", "business_name": "wasanaeth dell"}, "split": "test"}
{"utterance": "dewch i ni drydar cwyn", "expected_intent": "social:social_post", "expected_slots": {"media_type": "drydar"}, "split": "test"}
{"utterance": "dwi angen i chi drydar cwyn", "expected_intent": "social:social_post", "expected_slots": {"media_type": "drydar"}, "split": "test"}
{"utterance": "postiwch i facebook dwi'n starfo", "expected_intent": "social:social_post", "expected_slots": {"media_type": "facebook"}, "split": "test"}
{"utterance": "edrych ymhellach ar hwn os gweli'n dda", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "cliria'r broblem allan", "expected_intent": "general:general_quirky", "expected_slots": {}, "split": "test"}
{"utterance": "allwch chi roi gwybod i ryanair na fydda i'n eu defnyddio fyth eto", "expected_intent": "social:social_post", "expected_slots": {"business_name": "ryanair"}, "split": "test"}
{"utterance": "agorwch oriel postiwch enw llun", "expected_intent": "social:social_post", "expected_slots": {"media_type": "oriel"}, "split": "test"}
{"utterance": "trydarwch gŵyn at b. t.", "expected_intent": "social:social_post", "expected_slots": {"media_type": "trydarwch", "business_name": "at b. t."}, "split": "test"}
{"utterance": "trydar gŵyn i plusnet", "expected_intent": "social:social_post", "expected_slots": {"media_type": "trydar", "business_name": "i plusnet"}, "split": "test"}
{"utterance": "agorwch enw cwmni a darganfod cwynion", "expected_intent": "social:social_post", "expected_slots": {"business_name": "enw cwmni"}, "split": "test"}
{"utterance": "postia drydariad fel â ganlyn dilyniant gwael gan gwmni a. b. c. ddim yn fodlon yn fy nghyfrif", "expected_intent": "social:social_post", "expected_slots": {"media_type": "drydariad"}, "split": "test"}
{"utterance": "trydarwch direct line a dwedwch wrthyn nhw bod nhw'n wael", "expected_intent": "social:social_post", "expected_slots": {"media_type": "trydarwch", "business_name": "direct line"}, "split": "test"}
{"utterance": "trydarwch gwyn i vodafone am wasanaeth cwsmer gwael", "expected_intent": "social:social_post", "expected_slots": {"media_type": "trydarwch", "business_name": "vodafone"}, "split": "test"}
{"utterance": "ocê google trydarwch dyna gont yw'r perchennog yn yr orsaf betrol", "expected_intent": "social:social_post", "expected_slots": {"media_type": "trydarwch"}, "split": "test"}
{"utterance": "trydarwch mae gan mcdonalds lawr yn aberteifi wasanaeth ofnadwy", "expected_intent": "social:social_post", "expected_slots": {"media_type": "trydarwch"}, "split": "test"}
{"utterance": "trydarwch gwyn i at", "expected_intent": "social:social_post", "expected_slots": {"media_type": "trydarwch"}, "split": "test"}
{"utterance": "anfonwch adroddiad i gwasanaeth defnyddwyr", "expected_intent": "social:social_post", "expected_slots": {"business_name": "gwasanaeth defnyddwyr"}, "split": "test"}
{"utterance": "help cwyn i wasanaeth cwsmeriaid", "expected_intent": "social:social_post", "expected_slots": {"business_name": "wasanaeth cwsmeriaid"}, "split": "test"}
{"utterance": "trydarwch i wasnanaeth cwsmeriaid google mae fy ffôn nexus newydd wedi stopio gweithio help os gwelwch yn dda", "expected_intent": "social:social_post", "expected_slots": {"media_type": "trydarwch"}, "split": "test"}
{"utterance": "trydarwch neges i dpd fy mod i yn dal i ddisgwyl am fy nanfoniad", "expected_intent": "social:social_post", "expected_slots": {"media_type": "trydarwch", "business_name": "dpd"}, "split": "test"}
{"utterance": "postiwch fy nghofnod diweddaraf i twitter at i. t. v.", "expected_intent": "social:social_post", "expected_slots": {"media_type": "twitter", "business_name": "at i. t. v."}, "split": "test"}
{"utterance": "ysgrifennwch drydariad cwyn", "expected_intent": "social:social_post", "expected_slots": {"media_type": "drydariad"}, "split": "test"}
{"utterance": "trydarwch i apple ynglyn â heb dderbyn iphone ddanfonais i iddyn nhw am drwsio wythnos diwethaf", "expected_intent": "social:social_post", "expected_slots": {"media_type": "trydarwch", "business_name": "apple"}, "split": "test"}
{"utterance": "ychwanega gwŷn ar drydariad am y gwasanaeth yn olive garden", "expected_intent": "social:social_post", "expected_slots": {"media_type": "drydariad", "business_name": "olive garden"}, "split": "test"}
{"utterance": "helo mae fy eitem a brynais wrth rhywun wedi mynd allan o drefn", "expected_intent": "social:social_post", "expected_slots": {}, "split": "test"}
{"utterance": "trydarwch fod yna bryfyn yn y paced siocled", "expected_intent": "social:social_post", "expected_slots": {"media_type": "trydarwch"}, "split": "test"}
{"utterance": "cynhyrchion sydd wedi dod i ben yn y farchnad ddiweddar", "expected_intent": "social:social_post", "expected_slots": {}, "split": "test"}
{"utterance": "trydarwch at sports direct eu bod yn rhedeg allan o feintiau yn rhy gyflym", "expected_intent": "social:social_post", "expected_slots": {"media_type": "trydarwch", "business_name": "sports direct"}, "split": "test"}
{"utterance": "trydarwch wrth", "expected_intent": "social:social_post", "expected_slots": {"media_type": "trydarwch"}, "split": "test"}
{"utterance": "dewch i ni anfon trydariad", "expected_intent": "social:social_post", "expected_slots": {"media_type": "trydariad"}, "split": "test"}
{"utterance": "postiwch gwyn ynglyn â gwasanaeth", "expected_intent": "social:social_post", "expected_slots": {}, "split": "test"}
{"utterance": "trydarwch wyneb wedi ffieiddio ynglyn â mcdonalds", "expected_intent": "social:social_post", "expected_slots": {"media_type": "trydarwch", "business_name": "mcdonalds"}, "split": "test"}
{"utterance": "gosodwch statws teimlo'n hapus ar facebook", "expected_intent": "social:social_post", "expected_slots": {"media_type": "facebook"}, "split": "test"}
{"utterance": "olly trydarwch i b. t. a dywedwch wrthyn nhw bod fy ngwasanaeth yn wael", "expected_intent": "social:social_post", "expected_slots": {"media_type": "trydarwch", "business_name": "b. t."}, "split": "test"}
{"utterance": "trydarwch samsung a dywedwch wrthyn nhw i stopio lladd pobl gyda'u cynhyrchion", "expected_intent": "social:social_post", "expected_slots": {"media_type": "trydarwch", "business_name": "samsung"}, "split": "test"}
{"utterance": "danfonwch adolygiad negyddol am gwmni", "expected_intent": "social:social_post", "expected_slots": {}, "split": "test"}
{"utterance": "ychwanega ebost y person yma", "expected_intent": "email:email_addcontact", "expected_slots": {"personal_info": "ebost"}, "split": "test"}
{"utterance": "ebostia fy nhîm os gweli'n dda", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "nhîm"}, "split": "test"}
{"utterance": "gwiria am ebyst newydd os gweli'n dda", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "ateb ebost pero", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "pero"}, "split": "test"}
{"utterance": "dywedwch wrtha i os oes gyda fi unrhyw ebyst newydd", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "oes yna rywbeth newydd yn fy mlwch derbyn", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "olly a oes gennyf unrhyw ebyst newydd", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "pwy ydw i yn cyfarfod heddiw", "expected_intent": "calendar:calendar_query", "expected_slots": {"event_name": "cyfarfod", "date": "heddiw"}, "split": "test"}
{"utterance": "ble mae seth yn byw", "expected_intent": "email:email_querycontact", "expected_slots": {"person": "seth", "personal_info": "yn byw"}, "split": "test"}
{"utterance": "ebostia eirian", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "eirian"}, "split": "test"}
{"utterance": "ateb ebost wrth gareth fydda i ddim yn dod heno", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "gareth", "timeofday": "heno"}, "split": "test"}
{"utterance": "ydi robert wedi fy ebostio eto", "expected_intent": "email:email_query", "expected_slots": {"person": "robert"}, "split": "test"}
{"utterance": "beth yw rhif ffôn gwaith nia", "expected_intent": "email:email_querycontact", "expected_slots": {"personal_info": "rhif ffôn gwaith", "person": "nia"}, "split": "test"}
{"utterance": "ateb fy nhad ysgrifenna y byddaf yn hwyr", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "nhad"}, "split": "test"}
{"utterance": "dyma gyfeiriad ebost newydd i'w ychwanegu at y cysylltiadau", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "ewch i cysylltiadau a mewnbynnwch gyfeiriad ebost", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "testun", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "ysgrifenna ebost newydd i tudur", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "tudur"}, "split": "test"}
{"utterance": "sut y daeth atom ni", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "sut y gallwn gael credyd", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "anfon ebost i fy mos", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "mos"}, "split": "test"}
{"utterance": "anfonwch i'r e-bost newydd rhestredig os gwelwch yn dda", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "gwiriwch ebost am rai a dderbyniwyd wrth mam", "expected_intent": "email:email_query", "expected_slots": {"relation": "mam"}, "split": "test"}
{"utterance": "gwiria fy mhost os gweli'n dda", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "gwiria i weld os oes gennyf unrhyw ebyst newydd oddi wrth fy nhad", "expected_intent": "email:email_query", "expected_slots": {"relation": "nhad"}, "split": "test"}
{"utterance": "gwiria fy ebyst newydd a dywed wrthyf am beth y mae nhw yn sôn", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "ateb deian gan ddiolch iddo", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "deian"}, "split": "test"}
{"utterance": "paratoi ebost i cadi", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "cadi"}, "split": "test"}
{"utterance": "pa ebyst newydd sydd gennyf fi", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "anfon yr ebost hwn i ateb yr ebyst diweddaraf", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "chwilia am ioan williams yn y cysylltiadau", "expected_intent": "email:email_querycontact", "expected_slots": {"person": "ioan williams"}, "split": "test"}
{"utterance": "agor cysylltiadau a galw dafydd jones", "expected_intent": "email:email_querycontact", "expected_slots": {"person": "dafydd jones"}, "split": "test"}
{"utterance": "ymateb i'r ebost oddi wrth ivor williams", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "ivor williams"}, "split": "test"}
{"utterance": "ebostia alys i adael iddi wybod ein bod ar ein ffordd", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "alys"}, "split": "test"}
{"utterance": "a oes gennyf unrhyw ebost newydd oddi wrth ffion", "expected_intent": "email:email_query", "expected_slots": {"person": "ffion"}, "split": "test"}
{"utterance": "anfon ateb os yw yn bwysig iawn", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "os yw wedi dod oddi wrth rywle cyfarwydd marcia fo fel bod yn bwysig", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "beth oedd pwnc yr ebost diwethaf wrth mam", "expected_intent": "email:email_query", "expected_slots": {"relation": "mam"}, "split": "test"}
{"utterance": "beth oedd yr ebost diwethaf o'r gwaith", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "rhowch rhif ffôn pete i fi", "expected_intent": "email:email_querycontact", "expected_slots": {"personal_info": "rhif ffôn", "person": "pete"}, "split": "test"}
{"utterance": "beth yw cyfeiriad ebost tessa", "expected_intent": "email:email_querycontact", "expected_slots": {"personal_info": "cyfeiriad ebost", "person": "tessa"}, "split": "test"}
{"utterance": "adia'r ebost newydd yma a cyswllt", "expected_intent": "email:email_addcontact", "expected_slots": {}, "split": "test"}
{"utterance": "anfon ebost i john a gofyn iddo pa amser fyddai orau ar gyfer y cyfarfod", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "john", "event_name": "cyfarfod"}, "split": "test"}
{"utterance": "ebostia karen am y cyfarfod cyllideb", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "karen", "event_name": "cyfarfod cyllideb"}, "split": "test"}
{"utterance": "gwiria fy ebyst am rywbeth oddi wrth rywun", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "gwiriwch am ebost newydd", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "anfon ebost i joseph at gmail dot com", "expected_intent": "email:email_sendemail", "expected_slots": {"email_address": "joseph at gmail dot com"}, "split": "test"}
{"utterance": "dywed wrthyf os oes gennyf unrhyw negeseuon newydd yn fy mlwch derbyn", "expected_intent": "email:email_query", "expected_slots": {"email_folder": "mlwch derbyn"}, "split": "test"}
{"utterance": "anfon ebost i dafydd gan ddweud y byddaf yn brysur yfory", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "dafydd"}, "split": "test"}
{"utterance": "hei siri dechreuwch e-bost i gydweithwyr", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "gydweithwyr"}, "split": "test"}
{"utterance": "ysgrifenna ebost newydd i'm cydweithiwr os gweli'n dda", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "cydweithiwr"}, "split": "test"}
{"utterance": "anfonwch ebost i sali ynglŷn â chyfarfod yfory", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "sali", "event_name": "chyfarfod", "date": "yfory"}, "split": "test"}
{"utterance": "hei a yw john wedi anfon unrhyw ebost i mi yn ddiweddar", "expected_intent": "email:email_query", "expected_slots": {"person": "john"}, "split": "test"}
{"utterance": "anfon ebost i rhodri parthed amserlen agor y swyddfa", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "rhodri"}, "split": "test"}
{"utterance": "dangos e-byst diweddar i mi", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "dwi eisiau anfon ebost i fy nheulu ydych chi'n helpu fi", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "nheulu"}, "split": "test"}
{"utterance": "gwiriwch gmail", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "gwiria outlook", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "ateb ebost", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "ydw i wedi derbyn unrhyw ebyst yn y deg munud olaf", "expected_intent": "email:email_query", "expected_slots": {"time": "deg munud olaf"}, "split": "test"}
{"utterance": "ebostiwch fy mhennaeth y byddaf yn hwyr heddiw oherwydd argyfwng ac ymddiheuriwch iddo am golli'r cyfarfod", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "mhennaeth", "date": "heddiw", "event_name": "cyfarfod"}, "split": "test"}
{"utterance": "dangos yr ebost diweddar oddi wrth john", "expected_intent": "email:email_query", "expected_slots": {"person": "john"}, "split": "test"}
{"utterance": "anfonwch ebost i peter a gofynnwch iddo fe sut mae e nawr alla i wneud unrhyw beth i'w helpu", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "peter"}, "split": "test"}
{"utterance": "ydw i wedi derbyn ebyst newydd yn ystod y deg munud diwethaf", "expected_intent": "email:email_query", "expected_slots": {"time": "deg munud diwethaf"}, "split": "test"}
{"utterance": "a yw amy wedi anfon unrhyw ebyst newydd i mi", "expected_intent": "email:email_query", "expected_slots": {"person": "amy"}, "split": "test"}
{"utterance": "gwiriwch ebyst heb eu darllen wrth amy", "expected_intent": "email:email_query", "expected_slots": {"person": "amy"}, "split": "test"}
{"utterance": "gwiria fy ebost am neges sydd yn cynnwys rhestr swyddi", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "anfonwch ebost at fy mrawd a dwedwch penblwydd priodas", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "mrawd", "event_name": "penblwydd priodas"}, "split": "test"}
{"utterance": "help i'w anfon i jane yn unig", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "jane"}, "split": "test"}
{"utterance": "dylid ychwanegu yr ebost hwn at fy nghysylltiadau", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "dangos fy ebyst diweddaraf i fi", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "rho'r diweddariadau diweddaraf i fi", "expected_intent": "news:news_query", "expected_slots": {}, "split": "test"}
{"utterance": "ateb sydyn i jack felly anfon bost os gweli'n dda", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "jack"}, "split": "test"}
{"utterance": "gwirio amserlen cyfarfod ym mhost heddiw", "expected_intent": "email:email_query", "expected_slots": {"event_name": "cyfarfod", "date": "heddiw"}, "split": "test"}
{"utterance": "cofia'r ebost hwn", "expected_intent": "email:email_addcontact", "expected_slots": {}, "split": "test"}
{"utterance": "anfon ateb", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "pwy ebostiodd fi ddoe", "expected_intent": "email:email_query", "expected_slots": {"date": "ddoe"}, "split": "test"}
{"utterance": "wnaeth siân ymateb", "expected_intent": "email:email_query", "expected_slots": {"person": "siân"}, "split": "test"}
{"utterance": "allwch chi ateb sian fy mod i'n mynd i fod yn brysur gyda'r prosiectau am y tair wythnos nesaf", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "sian", "time": "tair wythnos nesaf"}, "split": "test"}
{"utterance": "oes unrhyw ebyst wedi cyrraedd y y pymtheg munud diwethaf", "expected_intent": "email:email_query", "expected_slots": {"time": "pymtheg munud"}, "split": "test"}
{"utterance": "agor y blwch derbyn i wirio negeseuon heb eu darllen", "expected_intent": "email:email_query", "expected_slots": {"email_folder": "blwch derbyn"}, "split": "test"}
{"utterance": "unrhyw bost oddi wrth amazon heddiw", "expected_intent": "email:email_query", "expected_slots": {"person": "amazon", "date": "heddiw"}, "split": "test"}
{"utterance": "gwiriwch ebost ynglŷn â fy swydd", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "llwythwch ebost newydd i bruce ac anfonwch neges nawr os gwelwch yn dda", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "bruce"}, "split": "test"}
{"utterance": "tynna lan ebost kate ac ysgrifenna wna i adel iddi wybod", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "kate"}, "split": "test"}
{"utterance": "dywedwch wrtha i am mary s.", "expected_intent": "email:email_querycontact", "expected_slots": {"person": "mary s."}, "split": "test"}
{"utterance": "agor cysylltiadau", "expected_intent": "email:email_addcontact", "expected_slots": {}, "split": "test"}
{"utterance": "a ydi hi'n ben blwydd unrhyw un yr wyf yn eu hadnabod y mis yma", "expected_intent": "email:email_querycontact", "expected_slots": {"event_name": "ben blwydd", "date": "y mis yma"}, "split": "test"}
{"utterance": "pa gysylltiadau sydd yna nad wyf wedi eu ffonio yn y deuddeg mis diwethaf", "expected_intent": "email:email_querycontact", "expected_slots": {"time": "deuddeg mis"}, "split": "test"}
{"utterance": "anfon ebost i 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": "gwiriwch fy mhost os gwelwch yn dda", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "a dderbyniais i unrhyw ebost newydd oddi wrth robat", "expected_intent": "email:email_query", "expected_slots": {"person": "robat"}, "split": "test"}
{"utterance": "ysgrifenna ebost i fy nheulu gan ddweud rwyn eich caru i chi gyd", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "nheulu"}, "split": "test"}
{"utterance": "adfywiwch fy mlwch derbyn ac hysbyswch wrtha i am unrhyw ebyst newydd", "expected_intent": "email:email_query", "expected_slots": {"email_folder": "mlwch derbyn"}, "split": "test"}
{"utterance": "sut ydw i'n cysylltu â sarah", "expected_intent": "email:email_querycontact", "expected_slots": {"personal_info": "cysylltu â", "person": "sarah"}, "split": "test"}
{"utterance": "dechrau ymofyn am ebost newydd", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "oes unrhyw ebyst newydd gyda fi", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "danfon ebost i cadi sydd ar fy rhestr teulu a ffrind", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "cadi", "relation": "ffrind"}, "split": "test"}
{"utterance": "anfonwch ebost at fy nghynorthwydd manon i ganslo fy holl apwyntiadau ar gyfer yfory", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "nghynorthwydd", "person": "manon", "event_name": "apwyntiadau", "date": "yfory"}, "split": "test"}
{"utterance": "anfon ebost i mam dywed wrthi bod parti pen blwydd wyatt dydd sul", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "mam", "event_name": "parti pen blwydd", "person": "wyatt", "date": "dydd sul"}, "split": "test"}
{"utterance": "danfon e-bost i jake yn dweud diolch wrtho", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "jake"}, "split": "test"}
{"utterance": "anfon ebost i margaret", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "margaret"}, "split": "test"}
{"utterance": "a gefais ebyst newydd oddi wrth siân", "expected_intent": "email:email_query", "expected_slots": {"person": "siân"}, "split": "test"}
{"utterance": "ymateb i ebost", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "dw'i eisiau ateb ebost wil owen", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "wil owen"}, "split": "test"}
{"utterance": "gwiriwch am ebyst wrth steve", "expected_intent": "email:email_query", "expected_slots": {"person": "steve"}, "split": "test"}
{"utterance": "gwiriwch am ebyst wrth fy nghyflogwr", "expected_intent": "email:email_query", "expected_slots": {"relation": "nghyflogwr"}, "split": "test"}
{"utterance": "wnes i ebostio tom ar bwnc rheolaeth gynnau", "expected_intent": "email:email_query", "expected_slots": {"person": "tom"}, "split": "test"}
{"utterance": "a yw tom wedi fy ebostio parthed ffrwydron rhyfel", "expected_intent": "email:email_query", "expected_slots": {"person": "tom"}, "split": "test"}
{"utterance": "oes gennyf fi unrhyw ebyst newydd yn yr awr diwethaf", "expected_intent": "email:email_query", "expected_slots": {"time": "awr diwethaf"}, "split": "test"}
{"utterance": "a ydw i wedi derbyn unrhyw ebyst gyda rhifau tracio", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "cyfansoddwch ebost i bob", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "bob"}, "split": "test"}
{"utterance": "danfon ebost i mam", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "mam"}, "split": "test"}
{"utterance": "danfon ebost i mam nawr", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "mam"}, "split": "test"}
{"utterance": "oes gennyf i unrhyw e-byst newydd", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "darllenwch ebyst newydd os gwelwch yn dda", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "anfonwch yr ebost i jeff os gwelwch yn dda", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "jeff"}, "split": "test"}
{"utterance": "ydw i wedi cael unrhyw ebost newydd", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "tecstia ebost i eleri hei beth wyt ti'n ei wneud heddiw", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "eleri", "date": "heddiw"}, "split": "test"}
{"utterance": "ebostia y cynlluniau ar gyfer heddiw i donna", "expected_intent": "email:email_sendemail", "expected_slots": {"date": "heddiw", "person": "donna"}, "split": "test"}
{"utterance": "alexa cychwyn ebost", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "cyfansodda ebost", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "dangoswch yr holl ebyst anfonwyd i fi wrth fy mos", "expected_intent": "email:email_query", "expected_slots": {"relation": "mos"}, "split": "test"}
{"utterance": "danfon ebost i ewythr john gyda'r canlynol galla'i ddod", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "ewythr", "person": "john"}, "split": "test"}
{"utterance": "faint o ebyst newydd ydw i wedi derbyn heddiw", "expected_intent": "email:email_query", "expected_slots": {"date": "heddiw"}, "split": "test"}
{"utterance": "danfon ebost i mam a dad yn gofyn sut mae'n nhw", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "dad"}, "split": "test"}
{"utterance": "anfownch yr ebost yma i fy ffrind os gwelwch yn dda", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "ffrind"}, "split": "test"}
{"utterance": "dwi angen anfon yr ebost hwn nawr", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "gwiria os oes ebost astudio diweddar oddi wrth yr anfonwr hwn", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "ychwanega ebost newydd i'm cysylltiadau macs at gmail dot com", "expected_intent": "email:email_addcontact", "expected_slots": {"email_address": "macs at gmail dot com"}, "split": "test"}
{"utterance": "neges newydd i newmail at gmail dot com", "expected_intent": "email:email_sendemail", "expected_slots": {"email_address": "newmail at gmail dot com"}, "split": "test"}
{"utterance": "a oes gennyf unrhyw ebyst heb eu darllen", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "oes gen i unrhyw ebyst newydd wrth fy nghysylltiad q.", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "ychwanegwch yr ebost hwn i fy nghysylltiadau os gwelwch yn dda", "expected_intent": "email:email_addcontact", "expected_slots": {}, "split": "test"}
{"utterance": "gwiria ebyst wrth john", "expected_intent": "email:email_query", "expected_slots": {"person": "john"}, "split": "test"}
{"utterance": "anfon ebost mewn ateb", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "anfonwch bost at fy ffrind divya sut wyt ti", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "ffrind", "person": "divya"}, "split": "test"}
{"utterance": "ychwanega gyfeiriad ebost newydd ac anfon ebost", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "adia ebost newydd am julie smith", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "julie smith"}, "split": "test"}
{"utterance": "mae angen i mi ychwanegu e-bost newydd at fy nghysylltiadau", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "allwch chi ddweud manylion cyswllt jo wrtha i", "expected_intent": "email:email_querycontact", "expected_slots": {}, "split": "test"}
{"utterance": "gwiriwch rhif mam", "expected_intent": "email:email_querycontact", "expected_slots": {"relation": "mam"}, "split": "test"}
{"utterance": "gwna alwad ffôn", "expected_intent": "email:email_querycontact", "expected_slots": {}, "split": "test"}
{"utterance": "fedri di ysgrifennu ebost i chelsea", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "chelsea"}, "split": "test"}
{"utterance": "anfonwch ateb i mike gyda'r ateb pedwar cant tri deg o'i ebost anfonodd e bore 'ma", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "mike", "timeofday": "bore"}, "split": "test"}
{"utterance": "ymateb i ebost fy meistri gan ddweud y byddaf i mewn am bedwar yr hwyr", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "meistri"}, "split": "test"}
{"utterance": "olly gwiriwch fy ebost", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "oes gan fy ngweithiwr cwmni rhif ffôn cartref", "expected_intent": "email:email_querycontact", "expected_slots": {"relation": "ngweithiwr cwmni", "personal_info": "rhif ffôn cartref"}, "split": "test"}
{"utterance": "pwy yw'r cyswllt a'm ffoniodd ddiwethaf", "expected_intent": "email:email_querycontact", "expected_slots": {}, "split": "test"}
{"utterance": "yr wyf newydd dderbyn ebost oddi wrth bill yr wyf angen ei ateb yn syth rwan", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "mae angen ateb yr ebost diweddaraf c. g. a ph.", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "beth mae'r ebost anfonwyd tri deg munud yn ôl wrth mam yn dweud", "expected_intent": "email:email_query", "expected_slots": {"time": "tri deg munud", "relation": "mam"}, "split": "test"}
{"utterance": "ysgrifennwch ac anfonwch ebost i fy mos", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "mos"}, "split": "test"}
{"utterance": "dywedwch wrtha'i os oes unrhyw e-byst newydd", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "anfon ebost i'r meistr yn dweud y byddaf yn hwyr", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "meistr"}, "split": "test"}
{"utterance": "anfownch ebost i'r cysylltiad hwn", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "yr wyf angen i ebost gael ei anfon i bt am fy nhrafferthion efo'r gwasanaeth", "expected_intent": "email:email_sendemail", "expected_slots": {"business_name": "bt"}, "split": "test"}
{"utterance": "gwiria fy ebyst mwyaf diweddar", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "anfonwch ateb i'r e-bost diwethaf", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "gwiria fy mhost am unrhyw beth wrth shelly", "expected_intent": "email:email_query", "expected_slots": {"person": "shelly"}, "split": "test"}
{"utterance": "gwiria fy ebyst i mi", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "oedd atodiad i ebost ben", "expected_intent": "email:email_query", "expected_slots": {"person": "ben"}, "split": "test"}
{"utterance": "a wnes i dderbyn unrhyw ebyst newydd oddi wrth dan", "expected_intent": "email:email_query", "expected_slots": {"person": "dan"}, "split": "test"}
{"utterance": "oes gyda fi unrhyw ebyst yn dod mewn", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "a oes unrhyw ebyst wedi cyrraedd ers pedwar o’r gloch heddiw", "expected_intent": "email:email_query", "expected_slots": {"time": "pedwar o’r gloch", "date": "heddiw"}, "split": "test"}
{"utterance": "ges i ebost wrth paul", "expected_intent": "email:email_query", "expected_slots": {"person": "paul"}, "split": "test"}
{"utterance": "ydy ben wedi cysylltu", "expected_intent": "email:email_query", "expected_slots": {"person": "ben"}, "split": "test"}
{"utterance": "a oes gennyf i unrhyw ebyst newydd yn fy mlwch derbyn heddiw", "expected_intent": "email:email_query", "expected_slots": {"email_folder": "mlwch derbyn", "date": "heddiw"}, "split": "test"}
{"utterance": "ychwanegwch lowes hardware i fy ebyst cyswllt wedi'u lleoli yn bwthyn abertawe", "expected_intent": "email:email_addcontact", "expected_slots": {"place_name": "bwthyn abertawe"}, "split": "test"}
{"utterance": "canfod yr ebost i eryr enfawr a rhoi fe yn fy rhestr gyswllt", "expected_intent": "email:email_addcontact", "expected_slots": {"business_name": "eryr enfawr", "list_name": "rhestr gyswllt"}, "split": "test"}
{"utterance": "ysgrifenna ymateb i ebost fy mam", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "mam"}, "split": "test"}
{"utterance": "hoffwn ateb ebost sara", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "sara"}, "split": "test"}
{"utterance": "hoffwn ateb yr ebost diweddaraf", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "sawl un o'm cysylltiadau sy'n byw yn deiniolen", "expected_intent": "email:email_querycontact", "expected_slots": {"place_name": "deiniolen"}, "split": "test"}
{"utterance": "ydi fy nghysylltiadau yn fwy gwyryw neu benyw", "expected_intent": "email:email_querycontact", "expected_slots": {}, "split": "test"}
{"utterance": "a oes gennyf fi unrhyw ebost newydd", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "gwiria fy ebyst a hysbysa fi os oes unrhyw ebost newydd", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "a fedri ebostio ioan gan ddweud fy mod ar fy ngwyliau", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "ioan"}, "split": "test"}
{"utterance": "gadewch i fi wybod am unrhyw ebyst newydd dwi wedi derbyn", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "atebwch fy ebost wrth bob i roi gwybod iddynt byddaf yn eu gweld nhw yfory", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "bob", "date": "yfory"}, "split": "test"}
{"utterance": "gwiria am ebost newydd oddi wrth alwyn os gweli'n dda", "expected_intent": "email:email_query", "expected_slots": {"person": "alwyn"}, "split": "test"}
{"utterance": "dangos yr ebyst diweddaraf oddi wrth amazon", "expected_intent": "email:email_query", "expected_slots": {"business_name": "amazon"}, "split": "test"}
{"utterance": "oes yna unrhyw ebyst newydd i mi heddiw", "expected_intent": "email:email_query", "expected_slots": {"date": "heddiw"}, "split": "test"}
{"utterance": "harddweud ebost", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "unrhyw ebost newydd ers y tro diwethaf", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "ebyst yn y deng munud diwethaf", "expected_intent": "email:email_query", "expected_slots": {"time": "deng munud diwethaf"}, "split": "test"}
{"utterance": "o ebost ddoe pa bryd y mae amser y cyfweliad", "expected_intent": "email:email_query", "expected_slots": {"date": "ddoe"}, "split": "test"}
{"utterance": "gwiria am ebost newydd", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "dangos pob ebost ynglun a'r torriad", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "dangos wybodaeth cyswllt owain", "expected_intent": "email:email_querycontact", "expected_slots": {"person": "owain"}, "split": "test"}
{"utterance": "anfon ebost i ioanpedr at gmail dot com", "expected_intent": "email:email_sendemail", "expected_slots": {"email_address": "ioanpedr at gmail dot com"}, "split": "test"}
{"utterance": "ychwanegwch y cyfeiriad ebost yma i fy nghysylltiadau ac anfonwch ebost i", "expected_intent": "email:email_addcontact", "expected_slots": {}, "split": "test"}
{"utterance": "cyfansoddwch ebost newydd ond ges i gyfeiriad newydd tro 'ma bran at esiampl dot co dot uk", "expected_intent": "email:email_sendemail", "expected_slots": {"email_address": "bran at esiampl dot co dot uk"}, "split": "test"}
{"utterance": "beth yw rhif ffôn mistar tacsi mae o yn fy nghysylltiadau", "expected_intent": "email:email_querycontact", "expected_slots": {"personal_info": "rhif ffôn", "business_name": "mistar tacsi"}, "split": "test"}
{"utterance": "a ydw i wedi derbyn unrhyw ebyst ers canol dydd", "expected_intent": "email:email_query", "expected_slots": {"timeofday": "canol dydd"}, "split": "test"}
{"utterance": "ydy casi wedi anfon unrhyw ebyst ynglŷn â tom", "expected_intent": "email:email_query", "expected_slots": {"person": "tom"}, "split": "test"}
{"utterance": "beep pan gaf i ebost wrth ieuan", "expected_intent": "email:email_query", "expected_slots": {"person": "ieuan"}, "split": "test"}
{"utterance": "gwiria ebyst", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "a fedri anfon ebost i'r cofnod ebost newydd", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "ychwanega ebost ar gyfer john doe i'm cysylltiadau os gweli'n dda johndoe at yahoo dot com", "expected_intent": "email:email_addcontact", "expected_slots": {"person": "john doe", "email_address": "johndoe at yahoo dot com"}, "split": "test"}
{"utterance": "hysbysiadau ebost", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "beth a ddywedais wrth sian yn fy ebost diwethaf", "expected_intent": "email:email_query", "expected_slots": {"person": "sian"}, "split": "test"}
{"utterance": "canfod nel o fy nghysylltiadau a danfon ebost ati", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "nel"}, "split": "test"}
{"utterance": "ebostia nan ar ei phen blwydd", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "nan", "event_name": "phen blwydd"}, "split": "test"}
{"utterance": "faint o rhifau ffôn sydd gyda fi ar gyfer brenden", "expected_intent": "email:email_querycontact", "expected_slots": {"personal_info": "rhifau ffôn", "person": "brenden"}, "split": "test"}
{"utterance": "ebostia jerry ynglŷn â'r cyfarfod", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "jerry", "event_name": "cyfarfod"}, "split": "test"}
{"utterance": "anfon ebost i alun i ofyn pa pryd y bydd gartref heno", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "alun", "timeofday": "heno"}, "split": "test"}
{"utterance": "ateb yr ebost hwn", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "beth am y post newydd", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "beth y mae'r ebost newydd yn ei ddweud", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "anfon ioan williams ac ebostia", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "ioan williams"}, "split": "test"}
{"utterance": "dechrau ac ebostia ioan davies", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "ioan davies"}, "split": "test"}
{"utterance": "a wyf wedi derbyn unrhyw ebyst oddi wrth jeffrey burnette", "expected_intent": "email:email_query", "expected_slots": {"person": "jeffrey burnette"}, "split": "test"}
{"utterance": "rhif ffôn jay", "expected_intent": "email:email_querycontact", "expected_slots": {"personal_info": "rhif ffôn", "person": "jay"}, "split": "test"}
{"utterance": "rho fy nghyfeiriad ebost newydd yn y cyswllt os gweli'n dda", "expected_intent": "email:email_addcontact", "expected_slots": {}, "split": "test"}
{"utterance": "a oes gennyf ebyst oddi wrth yr anfonwr hwn", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "hei ateb ebost a dderbyniais", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "gwiriwch fy gmail am bost newydd os gwelwch yn dda", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "dangos yr ebost diweddaraf", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "ateb ebost gwyn", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "gwyn"}, "split": "test"}
{"utterance": "anfon ebost i nain yn dweud ein bod yn galw heibio ddydd sadwrn gwelwn chi yr adeg hynny", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "nain"}, "split": "test"}
{"utterance": "ateb ebost", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "ebost i gyswllt newydd", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "anfon ebost i nghyswllt newydd", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "ateb gyda", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "gwiriwch holl ebost newydd oddi wrth yr adran treth incwm os gwelwch yn dda", "expected_intent": "email:email_query", "expected_slots": {"business_name": "adran treth incwm"}, "split": "test"}
{"utterance": "chwilia am rif cyswllt ar gyfer alan os gweli'n dda a dywed ef wrthyf", "expected_intent": "email:email_querycontact", "expected_slots": {"personal_info": "rif", "person": "alan"}, "split": "test"}
{"utterance": "ydy rhif swyddfa morgan gyda ni", "expected_intent": "email:email_querycontact", "expected_slots": {"personal_info": "rhif swyddfa", "person": "morgan"}, "split": "test"}
{"utterance": "unrhyw ebost newydd oddi wrth john", "expected_intent": "email:email_query", "expected_slots": {"person": "john"}, "split": "test"}
{"utterance": "dywedwch wrth yr ebost wnaeth george anfon i fi dwi angen yr arian nawr ar frys", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "george"}, "split": "test"}
{"utterance": "a ydyw sian jones wedi fy ebostio", "expected_intent": "email:email_query", "expected_slots": {"person": "sian jones"}, "split": "test"}
{"utterance": "anfon ebost i jessica", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "jessica"}, "split": "test"}
{"utterance": "gwiria am ebyst newydd os gweli'n dda", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "a fedri anfon ebost i", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "dechrau ymateb", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "cyfansoddwch ateb i'r ebost diwethaf", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "ateb yr ebost a dderbyniwyd diwethaf", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "ebostia mam a gofyn sut y mae'r tywydd yno", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "mam"}, "split": "test"}
{"utterance": "ysgrifenna ebost i john at gmail dot com", "expected_intent": "email:email_sendemail", "expected_slots": {"email_address": "john at gmail dot com"}, "split": "test"}
{"utterance": "anfon ebost i glyn at hotmail dot com", "expected_intent": "email:email_sendemail", "expected_slots": {"email_address": "glyn at hotmail dot com"}, "split": "test"}
{"utterance": "dewch a ebost newydd i fi", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "chwiliwch nandy", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "dim ond ychwanega ebost newydd ar gyfer arwyn i'm cysylltiadau", "expected_intent": "email:email_addcontact", "expected_slots": {"person": "arwyn"}, "split": "test"}
{"utterance": "oes yna unrhyw ebyst newydd yn outlook", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "a oes unrhyw ebost newydd wedi cael ei dderbyn ar ôl pedwar o'r gloch heddiw", "expected_intent": "email:email_query", "expected_slots": {"time": "ar ôl pedwar", "date": "heddiw"}, "split": "test"}
{"utterance": "ysgrifenna ebost i'm cydweithiwr yn y gwaith efo y dogfennau a gedwais yn ddiweddar", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "cydweithiwr yn y gwaith"}, "split": "test"}
{"utterance": "gwiria i mi os oes ebyst newydd oddi wrth sara", "expected_intent": "email:email_query", "expected_slots": {"person": "sara"}, "split": "test"}
{"utterance": "cysylltiadau os gweli di'n dda", "expected_intent": "email:email_querycontact", "expected_slots": {}, "split": "test"}
{"utterance": "beth yw ebost dewi", "expected_intent": "email:email_querycontact", "expected_slots": {"personal_info": "ebost", "person": "dewi"}, "split": "test"}
{"utterance": "dangos unrhyw ebyst a dderbyniais yn ystod yr awr diwethaf", "expected_intent": "email:email_query", "expected_slots": {"time": "diwethaf"}, "split": "test"}
{"utterance": "gwiria ebyst newydd", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "rho fy ebost diweddaraf i mi", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "manylion cyswllt ar gyfer paul", "expected_intent": "email:email_querycontact", "expected_slots": {"personal_info": "manylion cyswllt", "person": "paul"}, "split": "test"}
{"utterance": "creu ebost i yulia", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "yulia"}, "split": "test"}
{"utterance": "darllen restr o ebyst newydd", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "arddangos rhestr o e-byst diweddar", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "gwiria os oes unrhyw bost oddi wrth amazon", "expected_intent": "email:email_query", "expected_slots": {"person": "amazon"}, "split": "test"}
{"utterance": "ebost i'r is-lywydd rhanbarthol", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "is-lywydd rhanbarthol"}, "split": "test"}
{"utterance": "unrhyw ebyst efo newyddion am y goleuadau", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "darllen fy ebyst newydd os gweli'n dda", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "archifa y negeseuon yr wyf fi wedi eu darllen os gweli'n dda", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "beth sydd yn fy mlwch derbyn ers i ni edrych ddiwethaf", "expected_intent": "email:email_query", "expected_slots": {"email_folder": "mlwch derbyn"}, "split": "test"}
{"utterance": "danfon e-bost i john", "expected_intent": "email:email_sendemail", "expected_slots": {"person": "john"}, "split": "test"}
{"utterance": "hei gwiria yr ebost", "expected_intent": "email:email_query", "expected_slots": {}, "split": "test"}
{"utterance": "ateb yr ebost efo'r cynnwys canlynol helo ti", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "alexa ateb yr ebost efo'r cynnwys canynol helo boi", "expected_intent": "email:email_sendemail", "expected_slots": {}, "split": "test"}
{"utterance": "mae fy ffrind john wedi danfon gwahoddiad ataf dweud diolch wrtho", "expected_intent": "email:email_sendemail", "expected_slots": {"relation": "ffrind", "person": "john"}, "split": "test"}
{"utterance": "gwiria fy ebost am unrhyw ebost newydd wrth joe", "expected_intent": "email:email_query", "expected_slots": {"person": "joe"}, "split": "test"}
{"utterance": "a oes gennyf unrhyw ebost newydd oddi wrth jac", "expected_intent": "email:email_query", "expected_slots": {"person": "jac"}, "split": "test"}
{"utterance": "hysbysa fi pan fod arwel yn fy ebostio fi", "expected_intent": "email:email_query", "expected_slots": {"person": "arwel"}, "split": "test"}
{"utterance": "ydy john wedi anfon ebost i fi", "expected_intent": "email:email_query", "expected_slots": {"person": "john"}, "split": "test"}
|