File size: 135,041 Bytes
6fa4bc9 |
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 |
{
"paper_id": "2021",
"header": {
"generated_with": "S2ORC 1.0.0",
"date_generated": "2023-01-19T07:33:35.859779Z"
},
"title": "Overview of Open-Source Morphology Development for the Komi-Zyrian Language: Past and Future",
"authors": [
{
"first": "Jack",
"middle": [],
"last": "Rueter",
"suffix": "",
"affiliation": {},
"email": "jack.rueter@helsinki.fi"
},
{
"first": "Niko",
"middle": [],
"last": "Partanen",
"suffix": "",
"affiliation": {},
"email": "niko.partanen@helsinki.fi"
},
{
"first": "Mika",
"middle": [],
"last": "H\u00e4m\u00e4l\u00e4inen",
"suffix": "",
"affiliation": {},
"email": "mika.hamalainen@helsinki.fi"
},
{
"first": "Trond",
"middle": [],
"last": "Trosterud",
"suffix": "",
"affiliation": {},
"email": "trond.trosterud@uit.no"
},
{
"first": "Daniel",
"middle": [],
"last": "Zeman",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Joakim",
"middle": [],
"last": "Nivre",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Mitchell",
"middle": [],
"last": "Abrams",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Elia",
"middle": [],
"last": "Ackermann",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "No\u00ebmi",
"middle": [],
"last": "Aepli",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Hamid",
"middle": [],
"last": "Aghaei",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "\u017deljko",
"middle": [],
"last": "Agi\u0107",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Amir",
"middle": [],
"last": "Ahmadi",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Lars",
"middle": [],
"last": "Ahrenberg",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Kennedy",
"middle": [],
"last": "Chika",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Gabriel\u0117",
"middle": [],
"last": "Ajede",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Ika",
"middle": [],
"last": "Aleksandravi\u010di\u016bt\u0117",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Lene",
"middle": [],
"last": "Alfina",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Katya",
"middle": [],
"last": "Antonsen",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Angelina",
"middle": [],
"last": "Aplonova",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Car- Olina",
"middle": [],
"last": "Aquino",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Maria",
"middle": [
"Jesus"
],
"last": "Aragon",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "",
"middle": [],
"last": "Aranzabe",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Nas",
"middle": [],
"last": "Bilge",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "H",
"middle": [
"\u0361"
],
"last": "Ar\u0131can",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Gashaw",
"middle": [],
"last": "\u00d3runn Arnard\u00f3ttir",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Jes- Sica",
"middle": [
"Naraiswari"
],
"last": "Arutie",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Masayuki",
"middle": [],
"last": "Arwidarasti",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Deniz",
"middle": [
"Baran"
],
"last": "Asahara",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Luma",
"middle": [],
"last": "Aslan",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Furkan",
"middle": [],
"last": "Ateyah",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Mohammed",
"middle": [],
"last": "Atmaca",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Aitziber",
"middle": [],
"last": "Attia",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Liesbeth",
"middle": [],
"last": "Atutxa",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Elena",
"middle": [],
"last": "Au- Gustinus",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Keerthana",
"middle": [],
"last": "Badmaeva",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Miguel",
"middle": [],
"last": "Balasubra- Mani",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Esha",
"middle": [],
"last": "Ballesteros",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Sebastian",
"middle": [],
"last": "Banerjee",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Verginica",
"middle": [
"Barbu"
],
"last": "Bank",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Starka\u00f0ur",
"middle": [],
"last": "Mititelu",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Victoria",
"middle": [],
"last": "Barkar- Son",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Colin",
"middle": [],
"last": "Basmov",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "John",
"middle": [],
"last": "Batchelor",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Talha",
"middle": [],
"last": "Bauer",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Kepa",
"middle": [],
"last": "Bedir",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "G\u00f6zde",
"middle": [],
"last": "Bengoetxea",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Yevgeni",
"middle": [],
"last": "Berk",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Ahmad",
"middle": [],
"last": "Berzak",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Riyaz",
"middle": [],
"last": "Bhat",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Erica",
"middle": [],
"last": "Ah- Mad Bhat",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Eckhard",
"middle": [],
"last": "Biagetti",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Agn\u0117",
"middle": [],
"last": "Bick",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Krist\u00edn",
"middle": [],
"last": "Bielinskien\u0117",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Rogier",
"middle": [],
"last": "Bjarnad\u00f3ttir",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Victoria",
"middle": [],
"last": "Blok- Land",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Lo\u00efc",
"middle": [],
"last": "Bobicev",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Emanuel",
"middle": [],
"last": "Boizou",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Carl",
"middle": [],
"last": "Borges V\u00f6lker",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Cristina",
"middle": [],
"last": "B\u00f6rstell",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Gosse",
"middle": [],
"last": "Bosco",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Sam",
"middle": [],
"last": "Bouma",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Adriane",
"middle": [],
"last": "Bowman",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Anouck",
"middle": [],
"last": "Boyd",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Kristina",
"middle": [],
"last": "Brag- Gaar",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Aljoscha",
"middle": [],
"last": "Brokait\u0117",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Marie",
"middle": [],
"last": "Burchardt",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Bernard",
"middle": [],
"last": "Candito",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Gauthier",
"middle": [],
"last": "Caron",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Lauren",
"middle": [],
"last": "Caron",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Tatiana",
"middle": [],
"last": "Cassidy",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "G\u00fcl\u015fen",
"middle": [],
"last": "Cavalcanti",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Ery- I\u011fit",
"middle": [],
"last": "Cebiro\u011flu",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Massimiliano",
"middle": [],
"last": "Flavio",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Giuseppe",
"middle": [
"G A"
],
"last": "Cecchini",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Slavom\u00edr",
"middle": [],
"last": "Celano",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Neslihan",
"middle": [],
"last": "\u010c\u00e9pl\u00f6",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Savas",
"middle": [],
"last": "Cesur",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "\u00d6zlem",
"middle": [],
"last": "Cetin",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Fabricio",
"middle": [],
"last": "\u00c7etino\u011flu",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Shweta",
"middle": [],
"last": "Chalub",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Ethan",
"middle": [],
"last": "Chauhan",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Taishi",
"middle": [],
"last": "Chi",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Yongseok",
"middle": [],
"last": "Chika",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Jinho",
"middle": [],
"last": "Cho",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Jayeol",
"middle": [],
"last": "Choi",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Alessandra",
"middle": [
"T"
],
"last": "Chun",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Silvie",
"middle": [],
"last": "Cignarella",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Aur\u00e9lie",
"middle": [],
"last": "Cinkov\u00e1",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "\u00c7a\u011fr\u0131",
"middle": [],
"last": "Collomb",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Miriam",
"middle": [],
"last": "\u00c7\u00f6ltekin",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Marine",
"middle": [],
"last": "Connor",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Mihaela",
"middle": [],
"last": "Courtin",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Phile- Mon",
"middle": [],
"last": "Cristescu",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Elizabeth",
"middle": [],
"last": "Daniel",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Marie-Catherine",
"middle": [],
"last": "Davidson",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Arawinda",
"middle": [],
"last": "Dickerson",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Elisa",
"middle": [
"Di"
],
"last": "Dinakaramani",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Bamba",
"middle": [],
"last": "Nuovo",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Peter",
"middle": [],
"last": "Dione",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Kaja",
"middle": [],
"last": "Dirix",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Timo- Thy",
"middle": [],
"last": "Dobrovoljc",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Kira",
"middle": [],
"last": "Dozat",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Puneet",
"middle": [],
"last": "Droganova",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Hanne",
"middle": [],
"last": "Dwivedi",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Sandra",
"middle": [],
"last": "Eckhoff",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Marhaba",
"middle": [],
"last": "Eiche",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Ali",
"middle": [],
"last": "Eli",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Binyam",
"middle": [],
"last": "Elkahky",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Olga",
"middle": [],
"last": "Ephrem",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Toma\u017e",
"middle": [],
"last": "Erina",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Aline",
"middle": [],
"last": "Erjavec",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Wograine",
"middle": [],
"last": "Etienne",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Sidney",
"middle": [],
"last": "Evelyn",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Rich\u00e1rd",
"middle": [],
"last": "Facundes",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Mar\u00edlia",
"middle": [],
"last": "Farkas",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Hector",
"middle": [],
"last": "Fernanda",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Jennifer",
"middle": [],
"last": "Fernandez Alcalde",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Cl\u00e1udia",
"middle": [],
"last": "Foster",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Kazunori",
"middle": [],
"last": "Freitas",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Katar\u00edna",
"middle": [],
"last": "Fujita",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Daniel",
"middle": [],
"last": "Gajdo\u0161ov\u00e1",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Marcos",
"middle": [],
"last": "Galbraith",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Moa",
"middle": [],
"last": "Gar- Cia",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Sebastian",
"middle": [],
"last": "G\u00e4rdenfors",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Fabr\u00edcio",
"middle": [],
"last": "Garza",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Kim",
"middle": [],
"last": "Fer- Raz Gerardi",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Filip",
"middle": [],
"last": "Gerdes",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Gustavo",
"middle": [],
"last": "Ginter",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Iakes",
"middle": [],
"last": "Godoy",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Koldo",
"middle": [],
"last": "Goenaga",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Memduh",
"middle": [],
"last": "Gojenola",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Yoav",
"middle": [],
"last": "G\u00f6k\u0131rmak",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Xavier",
"middle": [],
"last": "Goldberg",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Guino- Vart",
"middle": [],
"last": "G\u00f3mez",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Berta",
"middle": [
"Gonz\u00e1lez"
],
"last": "Saavedra",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Bernadeta",
"middle": [],
"last": "Grici\u016bt\u0117",
"suffix": "",
"affiliation": {},
"email": ""
}
],
"year": "",
"venue": null,
"identifiers": {},
"abstract": "This study describes the ongoing development of the finite-state description for an endangered minority language, Komi-Zyrian. This work is located in the context where large written and spoken language corpora are available, which creates a set of unique challenges that have to be, and can be, addressed. We describe how we have designed the transducer so that it can benefit from existing open-source infrastructures and therefore be as reusable as possible. \u0414\u0437\u0435\u043d\u044b\u0434\u04e7\u043d \u0422\u0430\u0439\u04e7 \u0433\u0438\u0436\u04e7\u0434\u044b\u043d \u0441\u0451\u0440\u043d\u0438 \u043c\u0443\u043d\u04e7 \u043a\u0430\u043d\u043c\u0443 \u043a\u043e\u043c\u0438 \u043a\u044b\u0432 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u044f \u0439\u044b\u043b\u044b\u0441\u044c, \u043a\u04e7\u043d\u0456 \u0441\u0435\u0442\u04e7\u043c\u0430\u04e7\u0441\u044c \u043a\u043e\u043c\u0438 \u043c\u043e\u0440\u0444\u043e\u043b\u043e\u0433\u0438\u044f\u043b\u044b \u043f\u043e\u043c\u044b\u0441\u044c-\u043f\u043e\u043c\u04e7\u0434\u0437 \u0430\u0432\u0442\u043e\u043c\u0430\u0442. \u0423\u0434\u0436\u044b\u0441 \u0441\u044d\u0442\u0448\u04e7\u043c \u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442\u044b\u043d, \u043a\u04e7\u043d\u0456 \u044b\u0434\u0436\u044b\u0434 \u0433\u0438\u0436\u0430\u043d \u0434\u0430 \u0441\u0451\u0440\u043d\u0438\u0441\u0438\u043a\u0430\u0441 \u043a\u043e\u0440\u043f\u0443\u0441\u044a\u044f\u0441 \u0431\u043e\u0441\u044c\u0442\u0430\u043d\u043d\u043e\u0433. \u0422\u0430 \u0432\u04e7\u0441\u043d\u0430 \u0447\u0443\u0436\u04e7\u043d\u044b \u0442\u043e\u0440\u0439\u04e7\u043d \u044e\u0430\u043b\u04e7\u043c\u044a\u044f\u0441, \u043a\u043e\u0434\u043b\u044b \u0432\u044b\u043b\u044c \u0432\u043e\u0447\u0430 \u043a\u044b\u0432\u044a\u044f\u0441 \u043a\u043e\u043b\u0430\u043d\u0430\u04e7\u0441\u044c. \u041f\u0435\u0442\u043a\u04e7\u0434\u043b\u0430\u043c, \u043c\u044b\u0439 \u044d\u043c \u043a\u044b\u0434\u0437\u0438 \u0430\u0434\u0434\u0437\u044b\u043d\u044b \u043a\u043e\u043b\u0430\u043d\u0430 \u0432\u043e\u0447\u0430 \u043a\u044b\u0432\u044a\u044f\u0441. \u0421\u0435\u0440\u043f\u0430\u0441\u0430\u043b\u0430\u043c \u0430\u043d\u0430\u043b\u0438\u0437\u0430\u0442\u043e\u0440\u0430\u0432\u0442\u043e\u043c\u0430\u0442\u043b\u044b\u0441\u044c \u0441\u04e7\u0432\u043c\u04e7\u0434\u04e7\u043c \u043f\u0440\u043e\u0446\u0435\u0441\u0441 \u0434\u0430 \u0432\u04e7\u0437\u0439\u04e7\u043c\u043d\u044b\u043c \u04e7\u0442\u043b\u0430\u04e7\u0434\u043d\u044b \u0430\u043d\u0430\u043b\u0438\u0437\u0430\u0442\u043e\u0440\u0441\u04e7 \u043f\u0430\u0441\u044c\u043a\u044b\u0434\u0434\u0436\u044b\u043a \u0432\u043e\u0441\u0441\u044f \u043a\u043e\u0434\u044a\u044f\u0441\u0430 \u04e7\u0442\u0443\u0432\u0442\u0435\u0447\u0430\u0441\u04e7\u0438\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430\u04e7, \u043c\u0435\u0434\u044b\u043c \u0443\u0434\u0436\u044b\u0441 \u0443\u043d\u0430\u043b\u0430\u0437\u0434\u043e\u0440\u044a\u044f\u0441\u044b\u043d \u0432\u04e7\u0434\u0438\u0442\u0447\u044b\u043d\u044b.",
"pdf_parse": {
"paper_id": "2021",
"_pdf_hash": "",
"abstract": [
{
"text": "This study describes the ongoing development of the finite-state description for an endangered minority language, Komi-Zyrian. This work is located in the context where large written and spoken language corpora are available, which creates a set of unique challenges that have to be, and can be, addressed. We describe how we have designed the transducer so that it can benefit from existing open-source infrastructures and therefore be as reusable as possible. \u0414\u0437\u0435\u043d\u044b\u0434\u04e7\u043d \u0422\u0430\u0439\u04e7 \u0433\u0438\u0436\u04e7\u0434\u044b\u043d \u0441\u0451\u0440\u043d\u0438 \u043c\u0443\u043d\u04e7 \u043a\u0430\u043d\u043c\u0443 \u043a\u043e\u043c\u0438 \u043a\u044b\u0432 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u044f \u0439\u044b\u043b\u044b\u0441\u044c, \u043a\u04e7\u043d\u0456 \u0441\u0435\u0442\u04e7\u043c\u0430\u04e7\u0441\u044c \u043a\u043e\u043c\u0438 \u043c\u043e\u0440\u0444\u043e\u043b\u043e\u0433\u0438\u044f\u043b\u044b \u043f\u043e\u043c\u044b\u0441\u044c-\u043f\u043e\u043c\u04e7\u0434\u0437 \u0430\u0432\u0442\u043e\u043c\u0430\u0442. \u0423\u0434\u0436\u044b\u0441 \u0441\u044d\u0442\u0448\u04e7\u043c \u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442\u044b\u043d, \u043a\u04e7\u043d\u0456 \u044b\u0434\u0436\u044b\u0434 \u0433\u0438\u0436\u0430\u043d \u0434\u0430 \u0441\u0451\u0440\u043d\u0438\u0441\u0438\u043a\u0430\u0441 \u043a\u043e\u0440\u043f\u0443\u0441\u044a\u044f\u0441 \u0431\u043e\u0441\u044c\u0442\u0430\u043d\u043d\u043e\u0433. \u0422\u0430 \u0432\u04e7\u0441\u043d\u0430 \u0447\u0443\u0436\u04e7\u043d\u044b \u0442\u043e\u0440\u0439\u04e7\u043d \u044e\u0430\u043b\u04e7\u043c\u044a\u044f\u0441, \u043a\u043e\u0434\u043b\u044b \u0432\u044b\u043b\u044c \u0432\u043e\u0447\u0430 \u043a\u044b\u0432\u044a\u044f\u0441 \u043a\u043e\u043b\u0430\u043d\u0430\u04e7\u0441\u044c. \u041f\u0435\u0442\u043a\u04e7\u0434\u043b\u0430\u043c, \u043c\u044b\u0439 \u044d\u043c \u043a\u044b\u0434\u0437\u0438 \u0430\u0434\u0434\u0437\u044b\u043d\u044b \u043a\u043e\u043b\u0430\u043d\u0430 \u0432\u043e\u0447\u0430 \u043a\u044b\u0432\u044a\u044f\u0441. \u0421\u0435\u0440\u043f\u0430\u0441\u0430\u043b\u0430\u043c \u0430\u043d\u0430\u043b\u0438\u0437\u0430\u0442\u043e\u0440\u0430\u0432\u0442\u043e\u043c\u0430\u0442\u043b\u044b\u0441\u044c \u0441\u04e7\u0432\u043c\u04e7\u0434\u04e7\u043c \u043f\u0440\u043e\u0446\u0435\u0441\u0441 \u0434\u0430 \u0432\u04e7\u0437\u0439\u04e7\u043c\u043d\u044b\u043c \u04e7\u0442\u043b\u0430\u04e7\u0434\u043d\u044b \u0430\u043d\u0430\u043b\u0438\u0437\u0430\u0442\u043e\u0440\u0441\u04e7 \u043f\u0430\u0441\u044c\u043a\u044b\u0434\u0434\u0436\u044b\u043a \u0432\u043e\u0441\u0441\u044f \u043a\u043e\u0434\u044a\u044f\u0441\u0430 \u04e7\u0442\u0443\u0432\u0442\u0435\u0447\u0430\u0441\u04e7\u0438\u043d\u0444\u0440\u0430\u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430\u04e7, \u043c\u0435\u0434\u044b\u043c \u0443\u0434\u0436\u044b\u0441 \u0443\u043d\u0430\u043b\u0430\u0437\u0434\u043e\u0440\u044a\u044f\u0441\u044b\u043d \u0432\u04e7\u0434\u0438\u0442\u0447\u044b\u043d\u044b.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Abstract",
"sec_num": null
}
],
"body_text": [
{
"text": "This study discusses open-source morphology development, which has greatly benefited from opensource projects most notably achievements attributed to the GiellaLT infrastructure (Moshagen et al., 2014) , i.e. Giellatekno & Divvun at the Norwegian Arctic University in Troms\u00f8, Norway. Specifically we discuss the infrastructure for the Komi-Zyrian language. We describe the work done up until now, and delineate some of the tasks we deem necessary in the future. There are features of Komi morphosyntax that need special attention, in regard to both of their linguistic and computational descriptions. This contribution aims to bring that discussion forward, and delineate the current status of the work. Rueter (2000) describes the initial creation of the transducer, and the work discussed here continues that same undertaking, essentially providing an update of the changes done in the last decade, and a plan for the future. The transducer is available on GitHub for Komi-Zyrian.\u00b9 The nightly builds are available through a Python library called Ural-icNLP\u00b2 (H\u00e4m\u00e4l\u00e4inen, 2019) . Easy and efficient access to the traducers and their lexical materials has been the main designing principle, and we consider current approach very successful.",
"cite_spans": [
{
"start": 178,
"end": 201,
"text": "(Moshagen et al., 2014)",
"ref_id": "BIBREF12"
},
{
"start": 704,
"end": 717,
"text": "Rueter (2000)",
"ref_id": "BIBREF17"
},
{
"start": 1061,
"end": 1079,
"text": "(H\u00e4m\u00e4l\u00e4inen, 2019)",
"ref_id": "BIBREF8"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "Komi-Zyrian has a growing representation in online corpora. There is a large written corpus that is accessible online\u00b3; it has been created by FU-Lab in Syktyvkar. The Giellatekno infrastructure provides a Korp implementation (Ahlberg et al., 2013) hosting numerous Uralic Wikipedia corpora, among which Komi can also be found\u2074. At the Language Bank of Finland, parallel Bible corpora are available with possibilities for comparing different translations (Rueter and Axelson, 2020) . While literary language often reflects astute professional language users, social media provides written language that may be more closely related to the vernacular, this type of Komi is found with minority languages of the adjacent Volga-Kama region\u2075 and as described in Arkhangelskiy (2019) . In a simi-lar vein, a Spoken Komi corpus containing mainly Izhma dialect has been created in a Kone Foundation funded research project (Blokland et al., 2014 (Blokland et al., -2016 , and it is also available online for community and research access.\u2076 Written and spoken language corpora are different in many ways, but together they form a large and representative description of the Komi language. Thereby they both need to be accounted for when the transducer is further developed. Electronic corpora have an important role in the research of Komi in general, and their significance most certainly will only grow when access and practices improve (for discussion about the use of electronic corpora, see \u0424\u0435\u0434\u0438\u043d\u0430, 2019; \u0427\u0443\u043f\u0440\u043e\u0432, 2018; \u0411\u043b\u043e\u043a\u043b\u0430\u043d\u0434 et al., 2014) .",
"cite_spans": [
{
"start": 226,
"end": 248,
"text": "(Ahlberg et al., 2013)",
"ref_id": "BIBREF0"
},
{
"start": 455,
"end": 481,
"text": "(Rueter and Axelson, 2020)",
"ref_id": null
},
{
"start": 756,
"end": 776,
"text": "Arkhangelskiy (2019)",
"ref_id": "BIBREF3"
},
{
"start": 914,
"end": 936,
"text": "(Blokland et al., 2014",
"ref_id": null
},
{
"start": 937,
"end": 960,
"text": "(Blokland et al., -2016",
"ref_id": null
},
{
"start": 1486,
"end": 1536,
"text": "\u0424\u0435\u0434\u0438\u043d\u0430, 2019; \u0427\u0443\u043f\u0440\u043e\u0432, 2018; \u0411\u043b\u043e\u043a\u043b\u0430\u043d\u0434 et al., 2014)",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "There are also numerous dialect materials in Komi, and their progressing digitization gives us access to an increasing number of materials hitherto unavailable in digital format. When this process advances and we inevitably encounter more dialectal texts, we must also consider wider dialectal features of Komi when we develop the transducer.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "Additionally, as there are two main Komi varieties with written standards and their dialects, Zyrian and Permyak, we must acknowledge that infrastructures for these languages cannot be developed in isolation, but rather that both language variants must be taken into consideration in different ways (Rueter et al., 2020c) . At the same time, the respective written standards have needs for their own tools and resources that are still independent, so the whole question of how to best handle pluricentric language varieties such as Komi still needs additional planning.",
"cite_spans": [
{
"start": 299,
"end": 321,
"text": "(Rueter et al., 2020c)",
"ref_id": "BIBREF25"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "The study is structured so that we first describe the work that has been done for modeling the morphosyntax of the Komi-Zyrian language. Then we discuss individual features and their role in the description, and aim to illustrate the types of challenges they present. As we believe that computational modeling of the language is directly connected to the linguistic description itself, we also discuss different phenomena and the ways our description is directly connected to the grammar.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "The FST described here is primarily built by Jack Rueter, beginning with work in the 1990s. The Komi-Zyrian finite-state description began with \u2076http://videocorpora.ru a trilingual glossary \u04e6\u0448\u043a\u0430\u043c\u04e7\u0448\u043a\u0430 \u0438\u0447\u04e7\u0442 \u043a\u044b\u0432\u0432\u043e\u0440, \u043a\u043e\u043c\u0438\u0430-\u0430\u043d\u0433\u043b\u0438\u0441\u043a\u04e7\u044f-\u0444\u0438\u043d\u0441\u043a\u04e7\u044f (Rueter, 1995) , designed for use by Finnish and English speaking students of Komi, without previous knowledge of Russian, to accompany the \u043a\u043e\u043c\u0438 \u043a\u044b\u0432 'Komi language' reader (\u0426\u044b\u043f\u0430\u043d\u043e\u0432, 1992) , used for instruction in the Universities of Helsinki and Turku. Later, with a scholarship from the Kordelin Foundation, this vocabulary was augmented. First, the extension was intended to complement a second Komi reader by \u041c\u0430\u043d\u043e\u0432\u0430 (1994) , and then to outline the Komi stem vocabulary of the Komi-Russian dictionary by \u041b\u044b\u0442\u043a\u0438\u043d and \u0422\u0438\u043c\u0443\u0448\u0435\u0432 (1961) . A large portion of the work done with this dictionary was only possible with the painstaking hours spent by Vera Chernykh. Thus, the approximately 3000-word glossary providing the lexical base for a finite-state description of Komi-Zyrian, presented at Permistika 6 at the Udmurt State University in Izhevsk, 1996 (published in Rueter, 2000 , was extended to over 6000 lexical entries.",
"cite_spans": [
{
"start": 237,
"end": 251,
"text": "(Rueter, 1995)",
"ref_id": "BIBREF27"
},
{
"start": 409,
"end": 424,
"text": "(\u0426\u044b\u043f\u0430\u043d\u043e\u0432, 1992)",
"ref_id": null
},
{
"start": 650,
"end": 663,
"text": "\u041c\u0430\u043d\u043e\u0432\u0430 (1994)",
"ref_id": null
},
{
"start": 745,
"end": 770,
"text": "\u041b\u044b\u0442\u043a\u0438\u043d and \u0422\u0438\u043c\u0443\u0448\u0435\u0432 (1961)",
"ref_id": null
},
{
"start": 1073,
"end": 1086,
"text": "Izhevsk, 1996",
"ref_id": null
},
{
"start": 1087,
"end": 1113,
"text": "(published in Rueter, 2000",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Development history of the Komi-Zyrian FST",
"sec_num": "2"
},
{
"text": "In 2004 Trond Trosterud invited Rueter to Troms\u00f8 to learn more about the Xerox Finite-state technology (XFST) being implemented at Giellatekno as described in (Trosterud, 2004) and for Komi in (Trosterud, 2004b) . Here the Komi transducer and lexicon were to be developed further than before, and to be connected to an infrastructure that was compatible with a larger array of languages.",
"cite_spans": [
{
"start": 159,
"end": 176,
"text": "(Trosterud, 2004)",
"ref_id": "BIBREF30"
},
{
"start": 193,
"end": 211,
"text": "(Trosterud, 2004b)",
"ref_id": "BIBREF31"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Development history of the Komi-Zyrian FST",
"sec_num": "2"
},
{
"text": "To summarise some of the new improvements, there were no longer problems with Cyrillic letters requiring representation as conversions from Latin letters. It was now possible to write rules directly addressing elements of the Komi orthography. This direct use of the vernacular in the code may have, in fact, contributed to the belief of the developer that only the normative language needed description. (It was not until many years later that work with other under-resourced languages, such as Mansi (2015present), Olonets-Karelian (2013-present), Skolt Saami (2015-present) and V\u00f5ro (2014-present), made it obvious that non-standard words also require description.)",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Development history of the Komi-Zyrian FST",
"sec_num": "2"
},
{
"text": "One of the most important items at this point was that the lexicon and morphology were open-source. This meant, in turn, that Komi could be worked on by others and tested in projects. Here, Komi was ideal. The morphology is very concatenative, and the orthography contains only two more letters than the Russian, i.e. problems with some rarer Cyrillic letters could be evaluated and solved.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Development history of the Komi-Zyrian FST",
"sec_num": "2"
},
{
"text": "In 2012-2016 Paula Kokkonen worked in conjunction with one of Rueter's projects, where she improved the Finnish translations and inspected the English translations for Komi lexemes. This work significantly increased the coverage of Finnish translations in the multilingual dictionary that was created in this point.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Development history of the Komi-Zyrian FST",
"sec_num": "2"
},
{
"text": "During the period 2012-2021, FU-Lab and Giellatekno collaboration has featured active FST development, including multiple use, and especially improvement in the disambiguation rules and lexical coverage. Morphological analysis is a central component in a modern corpus, and issues such as ambiguity are also always present when FST is used in this context (\u04e6\u043d\u044c\u04e7 \u041b\u0430\u0432, 2015, 140) . Collaboration may also lead to unforeseeable development. When two infrastructures are aligned, there are often competing priorities. This has also been the case here, i.e. whereas FU-Lab has demonstrated immediate interest in the facilitation of writing, spell checking, dictionaries and corpora for the language community, Giellatekno has pushed for research-related morphological description, analysis and lexica for the research community, but which can, in fact, later be applied to the production of spell checking and other derivative tools. This divergence in priority lead to some duplicate work in morphology.",
"cite_spans": [
{
"start": 356,
"end": 377,
"text": "(\u04e6\u043d\u044c\u04e7 \u041b\u0430\u0432, 2015, 140)",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Development history of the Komi-Zyrian FST",
"sec_num": "2"
},
{
"text": "Helsinki Finite-State Technology (HFST) (Lind\u00e9n et al., 2013) at Giellatekno with multi-use priorities was pitted against the quick but single-use Hunspell strategies practiced at FU-Lab. Thus, some of the technical complexities on the Giellatekno side had to be simplified so that one set of lexica might be shared. Giellatekno had plenty to gain from the lexical work done at FU-Lab, on the one hand, but it was not able to capitalize on its own sophisticated two-level description as a result of it, on the other. As regards morphophonological descriptions, stem-final variation had to be moved one step away from the initial LEMMA + COLON + STEM + CONTINUATIONLEXICON declaration in the code.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Development history of the Komi-Zyrian FST",
"sec_num": "2"
},
{
"text": "While Jack Rueter has often quickly followed the suggestion of XML maintenance of lexical materials, it has turned out that collaboration pulls away from this write-only-once policy. The more people there are working with one data set, the more documentation required for maintaining mutual working principles. Simple and complex XML systems alike require a working front-end, otherwise, as has been the case here, the workers opt out of the XML database and end up working more on materials that cannot be readily integrated back into the system. At the moment the XML transformation is not being used in FST development. Instead, other solutions for database implementation are being worked on, see Alnajjar et al. (2020a) ; . Only time will reveal which directions of development have contributed the most to the infrastructure.",
"cite_spans": [
{
"start": 701,
"end": 724,
"text": "Alnajjar et al. (2020a)",
"ref_id": "BIBREF1"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Development history of the Komi-Zyrian FST",
"sec_num": "2"
},
{
"text": "In 2018-2021, Niko Partanen has been improving the dialectal lexicon coverage of the transducer while conducting his doctoral studies in Komi dialectology. In connection to this work, in 2020-2021, Jack Rueter has improved the coverage of dialectal morphology, specifically taking into account the phenomena found in the Izhma dialect. This work by both of them was done within a Kone Foundation funded research project Language Documentation Meets Language Technology: The Next",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Development history of the Komi-Zyrian FST",
"sec_num": "2"
},
{
"text": "Step in the Description of Komi. The work shows that it is a feasible strategy to improve the analyser so that the work aligns with specific goals and needs of an individual project or dataset. It does create an imbalance in to which degree different dialects are represented, but for a language as large as Komi doing everything at the same time is not possible either.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Development history of the Komi-Zyrian FST",
"sec_num": "2"
},
{
"text": "Mika H\u00e4m\u00e4l\u00e4inen's role has been central in building more widely accessible computational infrastructure to access these transducers (H\u00e4m\u00e4l\u00e4inen, 2019) . In the recent work to create an online editing platform that would allow improved access to the lexical materials, Khalid Alnajjar has been in an irreplaceable position (Alnajjar et al., 2020a) . This all shows that managing a transducer for a language like Komi is a multi-partnered operation that calls for wide collaboration between different groups and even infrastructures.",
"cite_spans": [
{
"start": 132,
"end": 150,
"text": "(H\u00e4m\u00e4l\u00e4inen, 2019)",
"ref_id": "BIBREF8"
},
{
"start": 322,
"end": 346,
"text": "(Alnajjar et al., 2020a)",
"ref_id": "BIBREF1"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Development history of the Komi-Zyrian FST",
"sec_num": "2"
},
{
"text": "Since 2017, work has been conducted within the Universal Dependencies project to better cover Komi varieties, most recently (Zeman et al., 2021), see also Nivre et al. (2020) . There are two Zyrian treebanks (Partanen et al., 2018) , and work with Permyak progresses at many levels (Rueter et al., 2020c) . Especially in the initial phase of the treebank, building the finite-state descriptions is in a pivotal role, and maintaining interoperability between the FST and treebank development allows very efficient use of both systems. A similar approach has also been systematically used for other languages, such as Karelian (Pirinen, 2019a) and both Mordvinic languages . Indeed, managing systematic and comparable use of tags and conventions across languages is one of the primary concerns in our work as well, and there have been specific surveys that try to track the progress of different Uralic treebanks (Rueter and Partanen, 2019) . We can also mention that the practices described here have also be adopted for the development of Amazon minority language description for Apurin\u00e3 in Helsinki-Bel\u00e9m . In the approach discussed here, this harmonization starts at the transducer level and the documentation therein.",
"cite_spans": [
{
"start": 155,
"end": 174,
"text": "Nivre et al. (2020)",
"ref_id": "BIBREF13"
},
{
"start": 208,
"end": 231,
"text": "(Partanen et al., 2018)",
"ref_id": "BIBREF14"
},
{
"start": 282,
"end": 304,
"text": "(Rueter et al., 2020c)",
"ref_id": "BIBREF25"
},
{
"start": 911,
"end": 938,
"text": "(Rueter and Partanen, 2019)",
"ref_id": "BIBREF24"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Development history of the Komi-Zyrian FST",
"sec_num": "2"
},
{
"text": "In the context of concrete applications of the Komi FST, we can highlight work by Gerstenberger et al. (2017) , where the analyser was integrated into the popular multimedia annotation software ELAN. In addition, the most significant Komi online resource, the National Komi Corpus, contains annotations done with the transducer\u2077.",
"cite_spans": [
{
"start": 82,
"end": 109,
"text": "Gerstenberger et al. (2017)",
"ref_id": "BIBREF6"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Development history of the Komi-Zyrian FST",
"sec_num": "2"
},
{
"text": "Next we describe some of the challenges and important phenomena that have been addressed in various ways when creating the Komi analyser.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Development history of the Komi-Zyrian FST",
"sec_num": "2"
},
{
"text": "Komi regular morphology affects word forms in several parts of speech. In addition to verbal conjugation and nominal declension, there is an abundance of regular morpheme-sememe alignment in derivation. Whereas verbal conjugation is, indeed, limited to the indicative (in four synthetic tenses) and imperative moods, the complex noun-phrase head is associated with the categories of number (singular and plural), possessive marking for three persons and two numbers as well as nearly thirty syntactic entity markers or cases. Regular derivation can be observed in aspect, mediopassive and causative marking of verbs, as well as comparative and diminutive marking of nominals. There is a plethora of single-syllable nouns and derivational suffixes, and, at times, the boundary between compounding and derivation becomes obscure.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "On describing regular morphology",
"sec_num": "3"
},
{
"text": "The Komi-Zyrian language is known to display a typologically common l-vocalization, which is a process where a lateral approximant is replaced by a labiodental fricative /v/ or labiodental approximant /\u028b/. In the Komi grammaticography this is known as l/v variation. Another comparable stem-alterating \u2077http://komicorpora.ru phenomena are the paragogic consonants in some word stems. These phenomena can be dealt with in much the same way, as they share a common trigger. Words with l/v or paragogic consonant variation in their stems can be identified on the basis of whether the stem is followed by an vowel-initial suffix, on the one hand, or a consonant-initial suffix (alternatively word boundary), on the other.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Stem variation",
"sec_num": "3.1"
},
{
"text": "In the description of these words it has been suggested that erroneous forms be specifically identified. Special tags indicating the absence of paragogic consonants or substandard realization of the stem-final l/v have been implemented for Komi-Zyrian and reflect parallel tags previously implemented in the FST descriptions of other languages in the GiellaLT infrastructure, Northern and Skolt Saami, Erzya, Moksha, V\u00f5ro to mention a few.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Stem variation",
"sec_num": "3.1"
},
{
"text": "When we include more dialectal materials in the description, we also have to account for processes where l-vocalization triggers vowel lengthening. There are also secondary types of l-vocalization, influencing stems ending in the sequence /-el/, and triggering change /-ej/. Currently this is treated at the lemma level, so that the non-standard forms are connected to the standard lemmas, with an additional tag indicating dialectal form or error. Even the dialectal variants where neither types of the variation are met are exceptions from the point of view of the standard language. We have devised a tagging system for various subtypes, but the exact implementation is still being designed and planned further. We discuss in Section 4.2 related challenges in more detail.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Stem variation",
"sec_num": "3.1"
},
{
"text": "As mentioned above, there are nearly thirty syntactic entity markers or cases associated with complex noun phrases. The distinction drawn here of cases versus derivations lies in the complexity of the noun phrase, i.e. compatibility with the category of number or presence of modifiers has been underlined as a possible boundary (see Rueter, 2010, 74-75; cf. Ylikoski (2020) ). If a denominal adverbial derivation does not take adjectival or determiner modifiers, there is no syntactic need to distinguish it from other opaque adverbials. On the contrary, it may be noted, syntactic elements that can take this kind of modifiers should be classified according to their syntactic merits. (The term CASE should not be reguarded as a title of estate but as a useful indication of syntactic class membership.)",
"cite_spans": [
{
"start": 334,
"end": 354,
"text": "Rueter, 2010, 74-75;",
"ref_id": null
},
{
"start": 355,
"end": 374,
"text": "cf. Ylikoski (2020)",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Case",
"sec_num": "3.2"
},
{
"text": "Here, we will further note that according to the SIL Glossary of Linguistic Terms\u2078 case is defined as a grammatical category determined by the syntactic or semantic function of a noun or pronoun. If we apply this to a regular morphological description of the Komi languages, we may choose to distinguish between derivational endings applied to simple NP heads and inflectional endings applied to complex NP heads. By distinguishing these two varieties of inflection, we can arrive at a syntactic criterion for classifying different types of inflection, whereas the complex NP, which also takes marking for number, might be readily integrated into the enumeration of nominal modifiers, i.e. cases.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Case",
"sec_num": "3.2"
},
{
"text": "For nearly one and a half centuries, the 16 and 1 dependent cases as defined by Castr\u00e9n (1844) have represented the canonical cases addressed in grammars of the Komi-Zyrian language. The seventeenth case, the comitative, is addressed as a postposition, but all examples of it show it as integrated morphology in the noun. \u041d\u0435\u043a\u0440\u0430\u0441\u043e\u0432\u0430 (2000) ('The Modern Komi Language', \u00d6KK), published in 2000 broke with this tradition by including a set of compounded cases (seven).",
"cite_spans": [
{
"start": 80,
"end": 94,
"text": "Castr\u00e9n (1844)",
"ref_id": "BIBREF5"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Case",
"sec_num": "3.2"
},
{
"text": "The 26 cases shown by the latest Komi grammar, may be further augmented to 29 by introducing the PROPRIETIVE, ABESSIVE and LOCATIVE cases, in -a,\u0442\u04e7\u043c and -\u0441\u0430, respectively. The TEMPORAL in -\u0441\u044f might, as a function, be simply attributed to the already existing COMPARATIVE case. Similar questions of case definition have been treated by one of the authors, Rueter (2010), where he regards syntactic entity complexity as sufficient grounds for casehood, (see also Ylikoski, 2020) . Tauli (1956) , it should be noted, provides numerous references to researchers dealing with affixes, inclusive derivation and case, there does not seem to be any standards for distinction between case and derivation. The Komi-Zyrian PROPRIETIVE refered to also as a nomen possessoris suffix \u0430, which occurs as a \"comitative\" (Tauli, 1956) , provides a challenge for the those wishing to distinguish Kom proprietive -\u0430, comitative -\u043a\u04e7\u0434 and instrumental -\u04e7\u043d.",
"cite_spans": [
{
"start": 461,
"end": 476,
"text": "Ylikoski, 2020)",
"ref_id": "BIBREF32"
},
{
"start": 479,
"end": 491,
"text": "Tauli (1956)",
"ref_id": "BIBREF28"
},
{
"start": 804,
"end": 817,
"text": "(Tauli, 1956)",
"ref_id": "BIBREF28"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Case",
"sec_num": "3.2"
},
{
"text": "Not unlike the PROPRIETIVE, the ABESSIVE, LOCA-TIVE and even the temporal function of the COMPAR-ATIVE case are almost entirely limited in use to the adnominal range. The ABESSIVE has a predicative counterpart in the CARATIVE -\u0442\u04e7\u0433, while the LOCA-TIVE has a predicative counterpart in the INESSIVE\u044b\u043d. Perhaps this range distinction has also played \u2078https://glossary.sil.org/term/case a part so-called case classification. The adnominal TEMPORAL marker, however, seems to have no morphological counterpart for use in the predicative.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Case",
"sec_num": "3.2"
},
{
"text": "One of the dilemmas in Komi morphosyntax is where to introduce the object of a sentence. Actual non-ambiguous accusative forms are attested for pronouns and other NP heads, but the accusative is not the only case used for indicating the object, the ZERO marker strategy is also used for this purpose. Hence, one might readily speak of object marking with the nominative.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Accusative versus object marking",
"sec_num": "3.3"
},
{
"text": "Canonic practice in the Komi grammaticography has been to include the nominative, ZERO form, as an additional accusative case form. If we introduce ZERO as an accusative case marker as well, we, essentially, be introducing ambiguity on the text on the analysis level.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Accusative versus object marking",
"sec_num": "3.3"
},
{
"text": "Komi is known for its use of singular possessive suffixes in the accusative for marking different degrees of identifiability; zero, i.e. nominative marking, is also a possibility. When we also have the full syntactic dependency tree, the ambiguity between nominatives and unmarked accusative is resolved, as the object relation is unambiguously marked and connected to the root verb. The current solution in the morphological modeling has been to resolve all unmarked wordforms as nominatives, and to leave the nominative-accusative distinction into a later step of the analysis. None the less, we recognize this is only one of the various ways this can be analysed, and when the full analysis comes, we essentially have all the information to transform the material to match various existing traditions.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Accusative versus object marking",
"sec_num": "3.3"
},
{
"text": "This section will investigate the ordering of morphological constituents typically associated with nominals and convey meaning associated with the categories of number, possession and case.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Nominal morpheme ordering",
"sec_num": "3.4"
},
{
"text": "In initial collaboration with FU-Lab, a singular set of morpheme ordering was adopted for each individual combination of possessor & case marking. Hence, it was determined that the word form \u0431\u0430\u0442\u044c\u04e7\u0439\u043b\u04e7\u043d \u00ab \u0431\u0430\u0442\u044c-\u04e7\u0439-\u043b\u04e7\u043d 'father.N-PxSg1-Gen' featuring the \u04e7\u0439 marking for the first person singular possessor could be distinguished from the possessive suffix \u044b\u043c in \u0433\u043e\u0440\u0442\u04e7\u0434\u0437\u044b\u043c \u00ab \u0433\u043e\u0440\u0442-\u04e7\u0434\u0437-\u044b\u043c 'home.N-Ter-PxSg1' on the basis of complementary distribution, i.e. there was no need to label the possessive suffixes as separate entities.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Nominal morpheme ordering",
"sec_num": "3.4"
},
{
"text": "In later development, however, a different issue was observed in which case and possessive formatives might show varied ordering. Although this phenomenon is not as prevalent as in the Meadow and Eastern Mari language (cf. Luutonen (1997) ), it did merit recognition and distinction for the facilitation of further resource.",
"cite_spans": [
{
"start": 223,
"end": 238,
"text": "Luutonen (1997)",
"ref_id": "BIBREF11"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Nominal morpheme ordering",
"sec_num": "3.4"
},
{
"text": "The distinguishing tags strategy implemented for Meadow Mari and Hill Mari has been adapted for use with Komi-Zyrian with two tags. One tag indicates segment ordering where the possessive marker precedes the case marker (+So/PC), and the other indicates the case marker precedes the possessive marker (+So/CP), e.g. \u043a\u04e7\u0437\u044f\u0438\u043d\u044b\u0441\u043b\u0430\u043d\u044c \u2190 \u043a\u04e7\u0437\u044f\u0438\u043d\u044b\u0441-\u043b\u0430\u043d\u044c 'owner.N-PxSg3-Apr' \u043a\u04e7\u0437\u044f\u0438\u043d\u043b\u0430\u043d\u044c\u044b\u0441 \u2190 \u043a\u04e7\u0437\u044f\u0438\u043d-\u043b\u0430\u043d\u044c-\u044b\u0441 'owner.N-Apr-PxSg3'.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Nominal morpheme ordering",
"sec_num": "3.4"
},
{
"text": "In addition to this relatively infrequent type of ordering variation of cases versus possessive suffixes, there also appears to be use of the accusative possessive suffix markers for second -\u0442\u04e7 and third -\u0441\u04e7 person on noun and adjective phrase heads, where the accusative case would not be syntactically compatible. In fact, these same endings are found in connection with other parts of speech as well. It has been maintained that these morphological constituents convey discourse meaning, but there is still much to investigate and establishing tagging practices for these features will contribute to better research materials in the future.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Nominal morpheme ordering",
"sec_num": "3.4"
},
{
"text": "In Komi, numerals are regularly derived to form subgroups in cardinals ZERO, ordinals -\u04e7\u0434, distributives -\u04e7\u043d, iteratives -\u044b\u0441\u044c, ordinal iteratives -\u04e7\u0434\u044b\u0441\u044c and distributional iteratives -\u044b\u0441\u044c\u04e7\u043d (Rueter et al., 2020c) . As such, it is often novel or even confounding that we find the syntactic adverbial role found across languages is attributed to a regularly derived adverb \u043a\u044b\u043a\u044b\u0441\u044c 'twice' on the Komi side, on the one hand, and a noun phrase fifty times '\u0432\u0435\u0442\u044b\u043c\u044b\u043d\u044b\u0441\u044c', on the other.",
"cite_spans": [
{
"start": 190,
"end": 212,
"text": "(Rueter et al., 2020c)",
"ref_id": "BIBREF25"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Numeral derivations",
"sec_num": "3.5"
},
{
"text": "Like other adnominal modifiers, it should be noted, numerals may also be promoted to NP head position in instances of contextually motivated ellipsis.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Numeral derivations",
"sec_num": "3.5"
},
{
"text": "We have recently moved into primarily data-driven development practice for Komi, where new lexicon and morphology is described primarily based on gaps we find through analysed language materi-als. At the same time we have developed further tests to check the validity of the output, and in the long term these approaches naturally will live on in parallel. Needless to say, using more natural texts has also forced us to take into account more spoken language and dialect phenomena, which moves the work into quite new directions, which we have already discussed partially above.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Development plan",
"sec_num": "4"
},
{
"text": "After reporting our experiments with the written corpus data, we discuss our plan to integrate the dialectal materials and tags better to the currently discussed Komi analyser.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Development plan",
"sec_num": "4"
},
{
"text": "From a corpus of 1,415,210 unique word forms (2020-11-11) 520,180 were not recognized by the analyzer. Aside from the Russian words, apparently from quoted text, and words written entirely in upper case, the most frequent words not to be recognized by the FST seem to all involve hyphens. The use of hyphenation is best illiustrated by \u0420\u044b\u0442\u044b\u0432-\u0412\u043e\u0439\u0432\u044b\u0432 the preposed modifier for direction 'north northwest' (1377 times), a drawn out pronunciation \u041d\u043e-\u043e 'Well-l' (1177 times), and the orthographic practice of adding -\u043c\u04e7\u0434 'another' in \u0437\u0434\u0443\u043a-\u043c\u04e7\u0434 'yet another moment' (942 times).",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Developing on the basis of unrecognized words and word forms",
"sec_num": "4.1"
},
{
"text": "Since over a third of the unique word forms had gone unrecognized, a strategy was developed for improving the model. This would be carried out for nominals initially and subsequently verbs. As described below, a very large portion of unrecognized forms involved various plurals. How they were dealt with is described below, as it illustrates well the challenges we have encountered and their possible solutions.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Developing on the basis of unrecognized words and word forms",
"sec_num": "4.1"
},
{
"text": "In the Komi-Zyrian morphology there are two separate plural markers associated with nominal declension. One is the NP plural marker \u044f\u0441 and the other is the copula complement plural marker \u04e7\u0441\u044c. 20604 unrecognized word forms ended in \u044f\u0441, and in 11441 of these the plural marker was preceded by a Cyrillic hard sign \u044a. This number was was further delimited by removing all instances of hyphenation and v followed by Cyrillic hard sign and wordfinal \u044f\u0441. Where the hyphen may have meant compound words for simple hyphenation in the text, the removal of v meant we could automatically avoid the problem of determining whether the word stem contained the notorious l/v variation or not. Our resulting figure was 8766.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Developing on the basis of unrecognized words and word forms",
"sec_num": "4.1"
},
{
"text": "After entering 15,101 new stems the number of unrecognized unique word forms dropped to 422,227, which was nearly a nineteen per cent improvement over the previous 520,180. In the future we plan to go further through the frequency list of unknown word forms and improve the analyzer so that individual yet frequent phenomena is adequately described and addressed.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Developing on the basis of unrecognized words and word forms",
"sec_num": "4.1"
},
{
"text": "Currently the FST is designed so that dialectal elements are recognized, but they come with an additional error or dialect tag which prevents them being suggested in tools such as spellcheckers. We have also experimented with approaches where Zyrian, Permyak and Russian analysers are run on top of one another, so that unknown forms may be captured by one of the systems with appropriate language tags returned. Since some Zyrian dialectal phenomena is also present in Permyak standard language, already this solution helps to improve the coverage.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Treatment of dialectal elements",
"sec_num": "4.2"
},
{
"text": "Eventually, however, we consider it important that the analyser could capture nuances of individual dialects. In principle this could be accompanied with dialect specific tags, but this approach is also problematic. Many of the features are not strictly found in singular dialects, but cover larger regions. At the same time the speech of any individual is not necessarily limited to any specific variety. Moreover, we believe that further research in Komi dialect isoglosses may be necessary to exactly point for each feature where they definitely occur. Some rough areal boundaries, however, are well known and clear cut, which would make some areal tags potentially useful.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Treatment of dialectal elements",
"sec_num": "4.2"
},
{
"text": "Features that currently are not included are especially those found from southern and eastern Zyrian dialects, mainly because nobody has attempted to use an FST with those varieties yet. We must also recognize that Permyak and Zyrian dialects overlap in their features in various ways, and especially the creation of infrastructure that handless all Komi varieties and both standards remains a challenge.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Treatment of dialectal elements",
"sec_num": "4.2"
},
{
"text": "In recent years many neural network based approaches have been becoming popular and also shown good results. In a recent study by Pirinen (2019b) the neural models were better than the traditional rule-based approaches for Finnish. Our team is always following new developments of the field, but we also believe that different approaches can be successfully combined.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Future directions and Conclusions",
"sec_num": "5"
},
{
"text": "We already see studies emerging where a neural network has been used to learn to generate predictions from an FST . Their research is also used the Komi-Zyrian FST presented in this paper. The results were promising and we are eager to see how this ideology of using neural networks and rule-based systems side by side rather than as competing systems plays out in the future. For the NLP pipeline of Komi the most important new developments will be connected to improvements in the dependency parsing side of the analysis, ideally in connection to automatic and rule-based methods of disambiguation. Komi Constraint Grammar has currently focused to disambiguation, and the tagging and parsing sections are largely missing. It remains to be seen what kind of an approach will be the most successful here. At the same time Komi Universal Dependencies treebanks have started to be large enough that their further modeling with deep learning starts to be an attractive and possibly fruitful task.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Future directions and Conclusions",
"sec_num": "5"
},
{
"text": "Komi texts are also present in many different orthographies, and taking all of them into account is a large and important task (Rueter and Ponomareva, 2019) . Since the corpora of Latin Komi texts are also now available\u2079, the future for these lines of research is exciting and promising. This also connects to various transcription systems used in linguistic publications and text collections: these materials should be republished in the contemporary orthography in order to make them maximally useful for the language communities themselves.",
"cite_spans": [
{
"start": 127,
"end": 156,
"text": "(Rueter and Ponomareva, 2019)",
"ref_id": "BIBREF26"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Future directions and Conclusions",
"sec_num": "5"
},
{
"text": "Yet another future task is to provide access to the multilingual Komi lexicon the FST is based on in a form that is truly accessible and openly available. One solution could be to use online dictionary editing platforms, which are strongly linked to the FST development work, and thereby benefit it directly (Alnajjar et al., 2020b) . These lexicons have already been published in Zenodo (Rueter et al., 2020b) , and already their earliest version has been published in print (Rueter, 1995) . Thereby the work described here in various ways continues an already nological and practical changes that these decades have shown. We believe this line of investigation of the Komi language will boldly continue the next 25 years, but also hope the reports of how the work progresses will become even more regularly.",
"cite_spans": [
{
"start": 308,
"end": 332,
"text": "(Alnajjar et al., 2020b)",
"ref_id": null
},
{
"start": 388,
"end": 410,
"text": "(Rueter et al., 2020b)",
"ref_id": "BIBREF23"
},
{
"start": 476,
"end": 490,
"text": "(Rueter, 1995)",
"ref_id": "BIBREF27"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Future directions and Conclusions",
"sec_num": "5"
},
{
"text": "We also foresee that further development of the Komi FST will bring new tools to benefit both the public and research communities. Such might be machine translation, on the one hand (Tiedemann, 2021) , and translation studies, on the other (cf. \u0426\u044b\u043f\u0430\u043d\u043e\u0432, 2021). This, of course, does not close the circle, but merely the ever continuous spiral of development.",
"cite_spans": [
{
"start": 182,
"end": 199,
"text": "(Tiedemann, 2021)",
"ref_id": "BIBREF29"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Future directions and Conclusions",
"sec_num": "5"
},
{
"text": "years old progress at morphological modeling of the Komi language, and explores new ways to connect various threads of existing work to one another, especially in ways that takes into account the tech-\u2079http://latina.komicorpora.ru/",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
}
],
"back_matter": [
{
"text": "As described in the study above, this work on Komi has been funded by Alfred Kordelin Foundation and Kone Foundation.Matias Grioni, Lo\u00efc Grobol, Normunds Gr\u016bz\u012btis, Bruno Guillaume, C\u00e9line Guillot-Barbance, Tunga G\u00fcng\u00f6r, Nizar Habash, Hinrik Hafsteinsson, Jan Haji\u010d, Jan Haji\u010d jr., Mika H\u00e4m\u00e4l\u00e4inen, Linh H\u00e0 M\u1ef9, Na-Rae Han, Muhammad Yudistira Hanifmuti, Sam Hardwick, Kim Harris, Dag Haug, Johannes Heinecke, Oliver Hellwig, Felix Hennig, Barbora Hladk\u00e1, Jaroslava Hlav\u00e1\u010dov\u00e1, Florinel Hociung, Petter Hohle, Eva Huber, Jena Hwang, Takumi Ikeda, Anton Karl Ingason, Radu Ion, Elena Irimia, \u1eccl\u00e1j\u00edd\u00e9 Ishola, Kaoru Ito, Tom\u00e1\u0161 Jel\u00ednek, Apoorva Jha, Anders Johannsen, Hildur J\u00f3nsd\u00f3ttir, Fredrik J\u00f8rgensen, Markus Juutinen, Sarveswaran K, H\u00fcner Ka\u015f\u0131kara, Andre Kaasen, Nadezhda Kabaeva, Sylvain ",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Acknowledgements",
"sec_num": null
}
],
"bib_entries": {
"BIBREF0": {
"ref_id": "b0",
"title": "Korp and Karp-a bestiary of language resources: the research infrastructure of Spr\u00e5kbanken",
"authors": [
{
"first": "Malin",
"middle": [],
"last": "Ahlberg",
"suffix": ""
},
{
"first": "Lars",
"middle": [],
"last": "Borin",
"suffix": ""
},
{
"first": "Markus",
"middle": [],
"last": "Forsberg",
"suffix": ""
},
{
"first": "Martin",
"middle": [],
"last": "Hammarstedt",
"suffix": ""
},
{
"first": "Leif-J\u00f6ran",
"middle": [],
"last": "Olsson",
"suffix": ""
},
{
"first": "Olof",
"middle": [],
"last": "Olsson",
"suffix": ""
},
{
"first": "Johan",
"middle": [],
"last": "Roxendal",
"suffix": ""
},
{
"first": "Jonatan",
"middle": [],
"last": "Uppstr\u00f6m",
"suffix": ""
}
],
"year": 2013,
"venue": "Proceedings of the 19th Nordic Conference of Computational Linguistics (NODALIDA 2013)",
"volume": "",
"issue": "",
"pages": "429--433",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Malin Ahlberg, Lars Borin, Markus Forsberg, Martin Hammarstedt, Leif-J\u00f6ran Olsson, Olof Olsson, Johan Roxendal, and Jonatan Uppstr\u00f6m. 2013. Korp and Karp-a bestiary of language resources: the research infrastructure of Spr\u00e5kbanken. In Proceedings of the 19th Nordic Conference of Computational Linguistics (NODALIDA 2013), pages 429-433.",
"links": null
},
"BIBREF1": {
"ref_id": "b1",
"title": "On editing dictionaries for Uralic languages in an online environment",
"authors": [
{
"first": "Khalid",
"middle": [],
"last": "Alnajjar",
"suffix": ""
},
{
"first": "Mika",
"middle": [],
"last": "H\u00e4m\u00e4l\u00e4inen",
"suffix": ""
},
{
"first": "Jack",
"middle": [],
"last": "Rueter",
"suffix": ""
}
],
"year": 2020,
"venue": "Proceedings of the Sixth International Workshop on Computational Linguistics of Uralic Languages",
"volume": "",
"issue": "",
"pages": "26--30",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Khalid Alnajjar, Mika H\u00e4m\u00e4l\u00e4inen, and Jack Rueter. 2020a. On editing dictionaries for Uralic languages in an online environment. In Proceedings of the Sixth International Workshop on Computational Linguistics of Uralic Languages, pages 26-30.",
"links": null
},
"BIBREF2": {
"ref_id": "b2",
"title": "and Niko Partanen. 2020b. Ve'rdd. narrowing the gap between paper dictionaries, low-resource nlp and community involvement",
"authors": [
{
"first": "Khalid",
"middle": [],
"last": "Alnajjar",
"suffix": ""
},
{
"first": "Mika",
"middle": [],
"last": "H\u00e4m\u00e4l\u00e4inen",
"suffix": ""
},
{
"first": "Jack",
"middle": [],
"last": "Rueter",
"suffix": ""
}
],
"year": null,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {
"arXiv": [
"arXiv:2012.02578"
]
},
"num": null,
"urls": [],
"raw_text": "Khalid Alnajjar, Mika H\u00e4m\u00e4l\u00e4inen, Jack Rueter, and Niko Partanen. 2020b. Ve'rdd. narrowing the gap between paper dictionaries, low-resource nlp and community involvement. arXiv preprint arXiv:2012.02578.",
"links": null
},
"BIBREF3": {
"ref_id": "b3",
"title": "Corpora of social media in minority Uralic languages",
"authors": [
{
"first": "Timofey",
"middle": [],
"last": "Arkhangelskiy",
"suffix": ""
}
],
"year": 2019,
"venue": "Proceedings of the Fifth International Workshop on Computational Linguistics for Uralic Languages",
"volume": "",
"issue": "",
"pages": "125--140",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Timofey Arkhangelskiy. 2019. Corpora of social media in minority Uralic languages. In Proceedings of the Fifth International Workshop on Computational Lin- guistics for Uralic Languages, pages 125-140.",
"links": null
},
"BIBREF4": {
"ref_id": "b4",
"title": "Spoken Komi Corpus. The Language Bank of Finland version",
"authors": [
{
"first": "Rogier",
"middle": [],
"last": "Blokland",
"suffix": ""
},
{
"first": "Vasily",
"middle": [],
"last": "Chuprov",
"suffix": ""
},
{
"first": "Maria",
"middle": [],
"last": "Fedina",
"suffix": ""
},
{
"first": "Marina",
"middle": [],
"last": "Fedina",
"suffix": ""
},
{
"first": "Dmitry",
"middle": [],
"last": "Levchenko",
"suffix": ""
},
{
"first": "Niko",
"middle": [],
"last": "Partanen",
"suffix": ""
},
{
"first": "Michael",
"middle": [],
"last": "Rie\u00dfler",
"suffix": ""
}
],
"year": 2014,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Rogier Blokland, Vasily Chuprov, Maria Fedina, Ma- rina Fedina, Dmitry Levchenko, Niko Partanen, and Michael Rie\u00dfler. 2014-2016. Spoken Komi Corpus. The Language Bank of Finland version.",
"links": null
},
"BIBREF5": {
"ref_id": "b5",
"title": "Elementa Grammatices Syrjaenae. Ex officina typographica heredum Simelii, Helsingforsiae",
"authors": [
{
"first": "M",
"middle": [
"A"
],
"last": "Castr\u00e9n",
"suffix": ""
}
],
"year": null,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "M.A. Castr\u00e9n. 1844. Elementa Grammatices Syrjaenae. Ex officina typographica heredum Simelii, Helsing- forsiae.",
"links": null
},
"BIBREF6": {
"ref_id": "b6",
"title": "Instant annotations: Applying NLP methods to the annotation of spoken language documentation corpora",
"authors": [
{
"first": "Ciprian",
"middle": [],
"last": "Gerstenberger",
"suffix": ""
},
{
"first": "Michael",
"middle": [],
"last": "Niko Tapio Partanen",
"suffix": ""
},
{
"first": "Joshua",
"middle": [],
"last": "Rie\u00dfler",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Wilbur",
"suffix": ""
}
],
"year": 2017,
"venue": "International Workshop for Computational Linguistics of Uralic Languages",
"volume": "",
"issue": "",
"pages": "25--36",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Ciprian Gerstenberger, Niko Tapio Partanen, Michael Rie\u00dfler, and Joshua Wilbur. 2017. Instant annota- tions: Applying NLP methods to the annotation of spoken language documentation corpora. In Inter- national Workshop for Computational Linguistics of Uralic Languages, pages 25-36. The Association for Computational Linguistics.",
"links": null
},
"BIBREF7": {
"ref_id": "b7",
"title": "An online tool developed for post-editing the new Skolt Sami dictionary",
"authors": [
{
"first": "Mika",
"middle": [],
"last": "H\u00e4m\u00e4l\u00e4inen",
"suffix": ""
},
{
"first": "Khalid",
"middle": [],
"last": "Alnajjar",
"suffix": ""
},
{
"first": "Jack",
"middle": [],
"last": "Rueter",
"suffix": ""
},
{
"first": "Miika",
"middle": [],
"last": "Lehtinen",
"suffix": ""
},
{
"first": "Niko",
"middle": [],
"last": "Partanen",
"suffix": ""
}
],
"year": 2021,
"venue": "Electronic lexicography in the 21st century",
"volume": "",
"issue": "",
"pages": "653--664",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Mika H\u00e4m\u00e4l\u00e4inen, Khalid Alnajjar, Jack Rueter, Miika Lehtinen, and Niko Partanen. 2021. An online tool developed for post-editing the new Skolt Sami dictio- nary. In Electronic lexicography in the 21st century (eLex 2021). Proceedings of the eLex 2021 conference, pages 653-664, Czech Republic. Lexical Computing CZ s.r.o.",
"links": null
},
"BIBREF8": {
"ref_id": "b8",
"title": "UralicNLP: An NLP library for Uralic languages",
"authors": [
{
"first": "Mika",
"middle": [],
"last": "H\u00e4m\u00e4l\u00e4inen",
"suffix": ""
}
],
"year": 2019,
"venue": "Journal of Open Source Software",
"volume": "4",
"issue": "37",
"pages": "",
"other_ids": {
"DOI": [
"10.21105/joss.01345"
]
},
"num": null,
"urls": [],
"raw_text": "Mika H\u00e4m\u00e4l\u00e4inen. 2019. UralicNLP: An NLP library for Uralic languages. Journal of Open Source Soft- ware, 4(37):1345.",
"links": null
},
"BIBREF9": {
"ref_id": "b9",
"title": "Neural Morphology Dataset and Models for Multiple Languages, from the Large to the Endangered",
"authors": [
{
"first": "Mika",
"middle": [],
"last": "H\u00e4m\u00e4l\u00e4inen",
"suffix": ""
},
{
"first": "Niko",
"middle": [],
"last": "Partanen",
"suffix": ""
},
{
"first": "Jack",
"middle": [],
"last": "Rueter",
"suffix": ""
},
{
"first": "Khalid",
"middle": [],
"last": "Alnajjar",
"suffix": ""
}
],
"year": 2021,
"venue": "Proceedings of the the 23rd Nordic Conference on Computational Linguistics",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Mika H\u00e4m\u00e4l\u00e4inen, Niko Partanen, Jack Rueter, and Khalid Alnajjar. 2021. Neural Morphology Dataset and Models for Multiple Languages, from the Large to the Endangered. In Proceedings of the the 23rd Nordic Conference on Computational Linguistics (NoDaLiDa 2021).",
"links": null
},
"BIBREF10": {
"ref_id": "b10",
"title": "HFST a system for creating NLP tools",
"authors": [
{
"first": "Erik",
"middle": [],
"last": "Krister Lind\u00e9n",
"suffix": ""
},
{
"first": "Senka",
"middle": [],
"last": "Axelson",
"suffix": ""
},
{
"first": "Sam",
"middle": [],
"last": "Drobac",
"suffix": ""
},
{
"first": "Juha",
"middle": [],
"last": "Hardwick",
"suffix": ""
},
{
"first": "Jyrki",
"middle": [],
"last": "Kuokkala",
"suffix": ""
},
{
"first": "Tommi",
"middle": [
"A"
],
"last": "Niemi",
"suffix": ""
},
{
"first": "Miikka",
"middle": [],
"last": "Pirinen",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Silfverberg",
"suffix": ""
}
],
"year": 2013,
"venue": "International Workshop on Systems and Frameworks for Computational Morphology",
"volume": "",
"issue": "",
"pages": "53--71",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Krister Lind\u00e9n, Erik Axelson, Senka Drobac, Sam Hard- wick, Juha Kuokkala, Jyrki Niemi, Tommi A Piri- nen, and Miikka Silfverberg. 2013. HFST a system for creating NLP tools. In International Workshop on Systems and Frameworks for Computational Morphol- ogy, pages 53-71. Springer.",
"links": null
},
"BIBREF11": {
"ref_id": "b11",
"title": "The Variation of Morpheme Order in Mari Declension",
"authors": [
{
"first": "Jorma",
"middle": [],
"last": "Luutonen",
"suffix": ""
}
],
"year": 1997,
"venue": "of Suomalais-Ugrilaisen Seuran Toimituksia. Suomalais-Ugrilainen Seura",
"volume": "226",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Jorma Luutonen. 1997. The Variation of Morpheme Or- der in Mari Declension, volume 226 of Suomalais- Ugrilaisen Seuran Toimituksia. Suomalais-Ugrilainen Seura, Helsinki.",
"links": null
},
"BIBREF12": {
"ref_id": "b12",
"title": "Opensource infrastructures for collaborative work on under-resourced languages",
"authors": [
{
"first": "Sjur",
"middle": [],
"last": "Moshagen",
"suffix": ""
},
{
"first": "Jack",
"middle": [],
"last": "Rueter",
"suffix": ""
},
{
"first": "Tommi",
"middle": [],
"last": "Pirinen",
"suffix": ""
},
{
"first": "Trond",
"middle": [],
"last": "Trosterud",
"suffix": ""
},
{
"first": "Francis",
"middle": [
"M"
],
"last": "Tyers",
"suffix": ""
}
],
"year": 2014,
"venue": "The LREC 2014 Workshop \"CCURL 2014 -Collaboration and Computing for Under-Resourced Languages in the Linked Open Data Era",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Sjur Moshagen, Jack Rueter, Tommi Pirinen, Trond Trosterud, and Francis M. Tyers. 2014. Open- source infrastructures for collaborative work on under-resourced languages. The LREC 2014 Work- shop \"CCURL 2014 -Collaboration and Computing for Under-Resourced Languages in the Linked Open Data Era\".",
"links": null
},
"BIBREF13": {
"ref_id": "b13",
"title": "Universal Dependencies v2: An evergrowing multilingual treebank collection",
"authors": [
{
"first": "Joakim",
"middle": [],
"last": "Nivre",
"suffix": ""
},
{
"first": "Marie-Catherine",
"middle": [],
"last": "De Marneffe",
"suffix": ""
},
{
"first": "Filip",
"middle": [],
"last": "Ginter",
"suffix": ""
},
{
"first": "Jan",
"middle": [],
"last": "Haji\u010d",
"suffix": ""
},
{
"first": "Christopher",
"middle": [
"D"
],
"last": "Manning",
"suffix": ""
},
{
"first": "Sampo",
"middle": [],
"last": "Pyysalo",
"suffix": ""
},
{
"first": "Sebastian",
"middle": [],
"last": "Schuster",
"suffix": ""
},
{
"first": "Francis",
"middle": [],
"last": "Tyers",
"suffix": ""
},
{
"first": "Daniel",
"middle": [],
"last": "Zeman",
"suffix": ""
}
],
"year": 2020,
"venue": "Proceedings of the 12th Language Resources and Evaluation Conference",
"volume": "",
"issue": "",
"pages": "4034--4043",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Joakim Nivre, Marie-Catherine de Marneffe, Filip Gin- ter, Jan Haji\u010d, Christopher D. Manning, Sampo Pyysalo, Sebastian Schuster, Francis Tyers, and Daniel Zeman. 2020. Universal Dependencies v2: An evergrowing multilingual treebank collection. In Pro- ceedings of the 12th Language Resources and Evalua- tion Conference, pages 4034-4043, Marseille, France. European Language Resources Association.",
"links": null
},
"BIBREF14": {
"ref_id": "b14",
"title": "The first Komi-Zyrian Universal Dependencies treebanks",
"authors": [
{
"first": "Niko",
"middle": [],
"last": "Partanen",
"suffix": ""
},
{
"first": "Rogier",
"middle": [],
"last": "Blokland",
"suffix": ""
},
{
"first": "Kyungtae",
"middle": [],
"last": "Lim",
"suffix": ""
},
{
"first": "Thierry",
"middle": [],
"last": "Poibeau",
"suffix": ""
},
{
"first": "Michael",
"middle": [],
"last": "Rie\u00dfler",
"suffix": ""
}
],
"year": 2018,
"venue": "Second Workshop on Universal Dependencies",
"volume": "",
"issue": "",
"pages": "126--132",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Niko Partanen, Rogier Blokland, KyungTae Lim, Thierry Poibeau, and Michael Rie\u00dfler. 2018. The first Komi-Zyrian Universal Dependencies treebanks. In Second Workshop on Universal Dependencies (UDW 2018), November 2018, Brussels, Belgium, pages 126- 132.",
"links": null
},
"BIBREF15": {
"ref_id": "b15",
"title": "Building minority dependency treebanks, dictionaries and computational grammars at the same time-an experiment in Karelian treebanking",
"authors": [
{
"first": "",
"middle": [],
"last": "Tommi A Pirinen",
"suffix": ""
}
],
"year": 2019,
"venue": "Proceedings of the Third Workshop on Universal Dependencies",
"volume": "",
"issue": "",
"pages": "132--136",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Tommi A Pirinen. 2019a. Building minority de- pendency treebanks, dictionaries and computational grammars at the same time-an experiment in Kare- lian treebanking. In Proceedings of the Third Work- shop on Universal Dependencies (UDW, SyntaxFest 2019), pages 132-136.",
"links": null
},
"BIBREF16": {
"ref_id": "b16",
"title": "Neural and rule-based finnish NLP models-expectations, experiments and experiences",
"authors": [
{
"first": "",
"middle": [],
"last": "Tommi A Pirinen",
"suffix": ""
}
],
"year": 2019,
"venue": "Proceedings of the Fifth International Workshop on Computational Linguistics for Uralic Languages",
"volume": "",
"issue": "",
"pages": "104--114",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Tommi A Pirinen. 2019b. Neural and rule-based finnish NLP models-expectations, experiments and experi- ences. In Proceedings of the Fifth International Work- shop on Computational Linguistics for Uralic Lan- guages, pages 104-114.",
"links": null
},
"BIBREF17": {
"ref_id": "b17",
"title": "Hel'sinkisa universitetyn kyv tujalys' I\u017ekaryn perymsa simpozium vylyn lydd'\u00f6mtor",
"authors": [
{
"first": "Jack",
"middle": [],
"last": "Rueter",
"suffix": ""
}
],
"year": 2000,
"venue": "Permistika 6 (Proceedings of Permistika 6 conference)",
"volume": "",
"issue": "",
"pages": "154--158",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Jack Rueter. 2000. Hel'sinkisa universitetyn kyv tu- jalys' I\u017ekaryn perymsa simpozium vylyn lydd'\u00f6mtor. In Permistika 6 (Proceedings of Permistika 6 confer- ence), pages 154-158.",
"links": null
},
"BIBREF18": {
"ref_id": "b18",
"title": "Adnominal person in the morphological system of Erzya",
"authors": [
{
"first": "Jack",
"middle": [],
"last": "Rueter",
"suffix": ""
}
],
"year": 2010,
"venue": "Number 261 in Suomalaisugrilaisen seuran toimituksia. Suomalais-Ugrilainen Seura",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Jack Rueter. 2010. Adnominal person in the morpho- logical system of Erzya. Number 261 in Suomalais- ugrilaisen seuran toimituksia. Suomalais-Ugrilainen Seura, Finland.",
"links": null
},
"BIBREF20": {
"ref_id": "b20",
"title": "Sidney Da Silva Facundes, Mika H\u00e4m\u00e4l\u00e4inen, and Niko Partanen",
"authors": [
{
"first": "Jack",
"middle": [],
"last": "Rueter",
"suffix": ""
},
{
"first": "Fernanda",
"middle": [],
"last": "Mar\u00edlia",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Pereira De Freitas",
"suffix": ""
}
],
"year": 2021,
"venue": "Proceedings of the First Workshop on Natural Language Processing for Indigenous Languages of the Americas",
"volume": "",
"issue": "",
"pages": "28--33",
"other_ids": {
"DOI": [
"10.18653/v1/2021.americasnlp-1.4"
]
},
"num": null,
"urls": [],
"raw_text": "Jack Rueter, Mar\u00edlia Fernanda Pereira de Freitas, Sidney Da Silva Facundes, Mika H\u00e4m\u00e4l\u00e4inen, and Niko Par- tanen. 2021. Apurin\u00e3 Universal Dependencies tree- bank. In Proceedings of the First Workshop on Natu- ral Language Processing for Indigenous Languages of the Americas, pages 28-33, Online. Association for Computational Linguistics.",
"links": null
},
"BIBREF21": {
"ref_id": "b21",
"title": "Open-source morphology for endangered Mordvinic languages",
"authors": [
{
"first": "Jack",
"middle": [],
"last": "Rueter",
"suffix": ""
},
{
"first": "Mika",
"middle": [],
"last": "H\u00e4m\u00e4l\u00e4inen",
"suffix": ""
},
{
"first": "Niko",
"middle": [],
"last": "Partanen",
"suffix": ""
}
],
"year": 2020,
"venue": "Proceedings of Second Workshop for NLP Open Source Software",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Jack Rueter, Mika H\u00e4m\u00e4l\u00e4inen, and Niko Partanen. 2020a. Open-source morphology for endangered Mordvinic languages. In Proceedings of Second Workshop for NLP Open Source Software (NLP-OSS).",
"links": null
},
"BIBREF22": {
"ref_id": "b22",
"title": "The Association for Computational Linguistics",
"authors": [],
"year": null,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "The Association for Computational Linguistics.",
"links": null
},
"BIBREF23": {
"ref_id": "b23",
"title": "Komi-zyrian-to-x dictionary work. Zenodo data repository",
"authors": [
{
"first": "Jack",
"middle": [],
"last": "Rueter",
"suffix": ""
},
{
"first": "Paula",
"middle": [],
"last": "Kokkonen",
"suffix": ""
},
{
"first": "Marina",
"middle": [],
"last": "Fedina",
"suffix": ""
}
],
"year": 2020,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {
"DOI": [
"10.5281/zenodo.4309763"
]
},
"num": null,
"urls": [],
"raw_text": "Jack Rueter, Paula Kokkonen, and Marina Fedina. 2020b. Komi-zyrian-to-x dictionary work. Zenodo data repository, version 0.5.1.",
"links": null
},
"BIBREF24": {
"ref_id": "b24",
"title": "Survey of Uralic Universal Dependencies development",
"authors": [
{
"first": "Jack",
"middle": [],
"last": "Rueter",
"suffix": ""
},
{
"first": "Niko",
"middle": [],
"last": "Partanen",
"suffix": ""
}
],
"year": 2019,
"venue": "SyntaxFest 2019) Proceedings. The Association for Computational Linguistics",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Jack Rueter and Niko Partanen. 2019. Survey of Uralic Universal Dependencies development. In Third Workshop on Universal Dependencies (UDW, SyntaxFest 2019) Proceedings. The Association for Computational Linguistics.",
"links": null
},
"BIBREF25": {
"ref_id": "b25",
"title": "On the questions in developing computational infrastructure for Komi-Permyak",
"authors": [
{
"first": "Jack",
"middle": [],
"last": "Rueter",
"suffix": ""
},
{
"first": "Niko",
"middle": [],
"last": "Partanen",
"suffix": ""
},
{
"first": "Larisa",
"middle": [],
"last": "Ponomareva",
"suffix": ""
}
],
"year": 2020,
"venue": "Proceedings of the Sixth International Workshop on Computational Linguistics of Uralic Languages",
"volume": "",
"issue": "",
"pages": "15--25",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Jack Rueter, Niko Partanen, and Larisa Ponomareva. 2020c. On the questions in developing computa- tional infrastructure for Komi-Permyak. In Proceed- ings of the Sixth International Workshop on Computa- tional Linguistics of Uralic Languages, pages 15-25.",
"links": null
},
"BIBREF26": {
"ref_id": "b26",
"title": "Komi latin letters, degrees of UNICODE facilitation",
"authors": [
{
"first": "Jack",
"middle": [],
"last": "Rueter",
"suffix": ""
},
{
"first": "Larisa",
"middle": [],
"last": "Ponomareva",
"suffix": ""
}
],
"year": 2019,
"venue": "Proceedings of the Language Technologies for All",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Jack Rueter and Larisa Ponomareva. 2019. Komi latin letters, degrees of UNICODE facilitation. Proceed- ings of the Language Technologies for All (LT4All).",
"links": null
},
"BIBREF27": {
"ref_id": "b27",
"title": "Komia-anglisk\u00f6j-finskoj = Komi-English-Finnish = Komilais-englantilaissuomalainen",
"authors": [
{
"first": "Jack",
"middle": [],
"last": "Michael Rueter",
"suffix": ""
}
],
"year": 1995,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Jack Michael Rueter. 1995. Komia-anglisk\u00f6j-finskoj = Komi-English-Finnish = Komilais-englantilais- suomalainen. Self-published.",
"links": null
},
"BIBREF28": {
"ref_id": "b28",
"title": "The origin of affixes. Finnisch-ugrische Forschungen",
"authors": [
{
"first": "V",
"middle": [],
"last": "Tauli",
"suffix": ""
}
],
"year": 1956,
"venue": "",
"volume": "",
"issue": "",
"pages": "170--225",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "V. Tauli. 1956. The origin of affixes. Finnisch-ugrische Forschungen, XXXII(Heft 1-2):170-225.",
"links": null
},
"BIBREF29": {
"ref_id": "b29",
"title": "The development of a comprehensive data set for systematic studies of machine translation",
"authors": [
{
"first": "J\u00f6rg",
"middle": [],
"last": "Tiedemann",
"suffix": ""
}
],
"year": 2021,
"venue": "Rootroo Ltd., Helsinki. This book has been authored for Jack Rueter in honor of his 60th birthday",
"volume": "",
"issue": "",
"pages": "248--262",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "J\u00f6rg Tiedemann. 2021. The development of a com- prehensive data set for systematic studies of machine translation. In Mika H\u00e4m\u00e4l\u00e4inen, Niko Partanen, and Khalid Alnajjar, editors, Multilingual Facilitation, pages 248-262. Rootroo Ltd., Helsinki. This book has been authored for Jack Rueter in honor of his 60th birthday.",
"links": null
},
"BIBREF30": {
"ref_id": "b30",
"title": "Porting morphological analysis and disambiguation to new languages",
"authors": [
{
"first": "Trond",
"middle": [],
"last": "Trosterud",
"suffix": ""
}
],
"year": 2004,
"venue": "SALTMIL Workshop at LREC 2004: First Steps in Language Documentation for Minority Languages",
"volume": "",
"issue": "",
"pages": "90--92",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Trond Trosterud. 2004. Porting morphological analysis and disambiguation to new languages. In SALTMIL Workshop at LREC 2004: First Steps in Language Doc- umentation for Minority Languages, pages 90-92.",
"links": null
},
"BIBREF31": {
"ref_id": "b31",
"title": "Porting morphological analysis and disambiguation to new languages",
"authors": [
{
"first": "Trond",
"middle": [],
"last": "Trosterud",
"suffix": ""
}
],
"year": 2004,
"venue": "Poster presented at SALTMIL Workshop at LREC 2004: First Steps in Language Documentation for Minority Languages",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Trond Trosterud. 2004b. Porting morphological analy- sis and disambiguation to new languages. In Poster presented at SALTMIL Workshop at LREC 2004: First Steps in Language Documentation for Minority Lan- guages.",
"links": null
},
"BIBREF32": {
"ref_id": "b32",
"title": "Kielemme k\u00e4\u00e4pi\u00f6sijoista: prolatiivi, temporaali ja distributiivi. Viritt\u00e4j\u00e4",
"authors": [
{
"first": "Jussi",
"middle": [],
"last": "Ylikoski",
"suffix": ""
}
],
"year": 2020,
"venue": "",
"volume": "",
"issue": "",
"pages": "529--554",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Jussi Ylikoski. 2020. Kielemme k\u00e4\u00e4pi\u00f6sijoista: prolati- ivi, temporaali ja distributiivi. Viritt\u00e4j\u00e4, (4):529-554.",
"links": null
}
},
"ref_entries": {}
}
} |