File size: 131,618 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 | {
"paper_id": "2021",
"header": {
"generated_with": "S2ORC 1.0.0",
"date_generated": "2023-01-19T03:35:43.313631Z"
},
"title": "EMBEDDIA Tools, Datasets and Challenges: Resources and Hackathon Contributions",
"authors": [
{
"first": "Senja",
"middle": [],
"last": "Pollak",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "Jo\u017eef Stefan Institute",
"location": {}
},
"email": "senja.pollak@ijs.si"
},
{
"first": "Marko",
"middle": [
"Robnik"
],
"last": "\u0160ikonja",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "University of Ljubljana",
"location": {}
},
"email": ""
},
{
"first": "Hannu",
"middle": [],
"last": "Toivonen",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "University of Helsinki",
"location": {}
},
"email": "hannu.toivonen@helsinki.fi"
}
],
"year": "",
"venue": null,
"identifiers": {},
"abstract": "This paper presents tools and data sources collected and released by the EMBEDDIA project, supported by the European Union's Horizon 2020 research and innovation program. The collected resources were offered to participants of a hackathon organized as part of the EACL Hackashop on News Media Content Analysis and Automated Report Generation in February 2021. The hackathon had six participating teams who addressed different challenges, either from the list of proposed challenges or their own news-industry-related tasks. This paper goes beyond the scope of the hackathon, as it brings together in a coherent and compact form most of the resources developed, collected and released by the EM-BEDDIA project. Moreover, it constitutes a handy source for news media industry and researchers in the fields of Natural Language Processing and Social Science.",
"pdf_parse": {
"paper_id": "2021",
"_pdf_hash": "",
"abstract": [
{
"text": "This paper presents tools and data sources collected and released by the EMBEDDIA project, supported by the European Union's Horizon 2020 research and innovation program. The collected resources were offered to participants of a hackathon organized as part of the EACL Hackashop on News Media Content Analysis and Automated Report Generation in February 2021. The hackathon had six participating teams who addressed different challenges, either from the list of proposed challenges or their own news-industry-related tasks. This paper goes beyond the scope of the hackathon, as it brings together in a coherent and compact form most of the resources developed, collected and released by the EM-BEDDIA project. Moreover, it constitutes a handy source for news media industry and researchers in the fields of Natural Language Processing and Social Science.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Abstract",
"sec_num": null
}
],
"body_text": [
{
"text": "News media industry is the primary provider of information for society and individuals. Since the first newspaper was published, the propagation of information has continuously changed as new technologies are adopted by the news media, and the advent of the internet has made this change faster than ever (Pentina and Tarafdar, 2014) . Internetbased media (e.g., social media, forums and blogs) have made news more accessible, and dissemination more affordable, resulting in drastically increased media coverage. Social media can also help provide source information for newsrooms, as shown in e.g., disaster response tasks (Alam et al., 2018) .",
"cite_spans": [
{
"start": 305,
"end": 333,
"text": "(Pentina and Tarafdar, 2014)",
"ref_id": "BIBREF26"
},
{
"start": 624,
"end": 643,
"text": "(Alam et al., 2018)",
"ref_id": "BIBREF0"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "Suitable Natural Language Processing techniques are needed to analyze news archives and gain insight about the evolution of our society, while dealing with the constant flow of information. Relevant datasets are equally important in order to train data-driven approaches. To encourage the development and uptake of such techniques and datasets, and take on the challenges presented by the introduction of new technologies in the news media industry, the EMBEDDIA project 1 organized, in conjunction with EACL 2021, a hackathon 2 as part of the EACL Hackashop on News Media Content Analysis and Automated Report Generation 3 .",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "For this event, held virtually in February 2021, the datasets and tools curated and implemented by the EMBEDDIA project were publicly released and made available to the participants. We also provided examples of realistic challenges faced by today's newsrooms, and offered technical support and consultancy sessions with a news media expert throughout the entire duration of the hackathon.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "The contributions of this paper are structured as follows. Section 2 presents the tools released for the event. The newly gathered, publicly released EMBEDDIA datasets are reported in Section 3. Section 4 presents sample news media challenges. Section 5 outlines the projects undertaken by the teams who completed the hackathon. The hackathon outcomes are summarized in Section 6.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "The EMBEDDIA tools and models released for the hackathon include general text processing tools like language processing frameworks and text representation models (Section 2.1), news article analysis (Section 2.2), news comment analysis (Section 2.3), and news article and headline generation (Section 2.4) tools.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Tools",
"sec_num": "2"
},
{
"text": "These tools require different levels of technical proficiency. Language processing tools and frameworks require little to no programming skills. On the other hand, for some tasks, we provide fully functional systems that can be used out of the box but require a certain level of technical knowledge in order to be fully utilized. Moreover, some tools and text representation models require programming skills and can be employed to improve existing systems, implement new analytic tools, or to be adapted to new uses.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Tools",
"sec_num": "2"
},
{
"text": "1 http://embeddia.eu 2 http://embeddia.eu/hackashop2021call-for-hackathon-participation/ 3 http://embeddia.eu/hackashop2021/",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Tools",
"sec_num": "2"
},
{
"text": "We first present two general frameworks, requiring no programming skills: the EMBEDDIA Media Assistant, incorporating the TEXTA Toolkit that is focused exclusively on text, and the ClowdFlows toolbox, which is a general data science framework incorporating numerous NLP components. Finally, we describe BERT embeddings, a general text representation framework that includes variants of multilingual BERT models, which are typically part of programming solutions.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "General Text Analytics",
"sec_num": "2.1"
},
{
"text": "The TEXTA Toolkit (TTK) is an open-source software for building RESTful text analytics applications. 4 TTK can be used for:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "TEXTA Toolkit and EMBEDDIA Media Assistant",
"sec_num": "2.1.1"
},
{
"text": "\u2022 searching and aggregating data (using e.g. regular expressions),",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "TEXTA Toolkit and EMBEDDIA Media Assistant",
"sec_num": "2.1.1"
},
{
"text": "\u2022 training embeddings,",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "TEXTA Toolkit and EMBEDDIA Media Assistant",
"sec_num": "2.1.1"
},
{
"text": "\u2022 building machine learning classifiers,",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "TEXTA Toolkit and EMBEDDIA Media Assistant",
"sec_num": "2.1.1"
},
{
"text": "\u2022 building topic-related lexicons using embeddings,",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "TEXTA Toolkit and EMBEDDIA Media Assistant",
"sec_num": "2.1.1"
},
{
"text": "\u2022 clustering and visualizing data, and",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "TEXTA Toolkit and EMBEDDIA Media Assistant",
"sec_num": "2.1.1"
},
{
"text": "\u2022 extracting and creating training data.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "TEXTA Toolkit and EMBEDDIA Media Assistant",
"sec_num": "2.1.1"
},
{
"text": "The TEXTA Toolkit is the principal ingredient of the EMBEDDIA Media Assistant (EMA), which includes the TEXTA Toolkit GUI and API, an API Wrapper with a number of APIs for news analysis, and a Demonstrator for demonstrating the APIs.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "TEXTA Toolkit and EMBEDDIA Media Assistant",
"sec_num": "2.1.1"
},
{
"text": "ClowdFlows 5 is an open-source online platform for developing and sharing data mining and machine learning workflows (Kranjc et al., 2012) . It works online in modern Web browsers, without client-side installation. The user interface allows combining software components (called widgets) into functional workflows, which can be executed, stored, and shared in the cloud. The main aim of Clowd-Flows is to foster sharing of workflow solutions in order to simplify the replication and adaptation of shared work. It is suitable for prototyping, demonstrating new approaches, and exposing solutions to potential users who are not proficient in programming but would like to experiment with their own datasets and different tool parameter settings.",
"cite_spans": [
{
"start": 11,
"end": 12,
"text": "5",
"ref_id": null
},
{
"start": 117,
"end": 138,
"text": "(Kranjc et al., 2012)",
"ref_id": "BIBREF9"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "ClowdFlows",
"sec_num": "2.1.2"
},
{
"text": "CroSloEngual 6 BERT and FinEst 7 BERT (Ul\u010dar and Robnik-\u0160ikonja, 2020) are trilingual models, based on the BERT architecture (Devlin et al., 2019) , created in the EMBEDDIA project to facilitate easy cross-lingual transfer. Both models are trained on three languages: one of them being English as a resource-rich language, CroSlo-Engual BERT was trained on Croatian, Slovenian, and English data, while FinEst BERT was trained on Finnish, Estonian, and English data. The advantage of multi-lingual models over monolingual models is that they can be used for cross-lingual knowledge transfer, e.g., a model for a task for which very little data is available in a target language such as Croatian or Estonian can be trained on English (with more data available) and transferred to a less-resourced language. While massive multilingual BERT-like models are available that cover more than 100 languages (Devlin et al., 2019) , a model trained on only a few languages performs significantly better on these (Ul\u010dar and Robnik-\u0160ikonja, 2020) . The two trilingual BERT models here are effective for the languages they cover and for the cross-lingual transfer of models between these languages. The models represent words/tokens with contextually dependent vectors (word embeddings). These can be used for training many NLP tasks, e.g., fine-tuning the model for any text classification task.",
"cite_spans": [
{
"start": 38,
"end": 70,
"text": "(Ul\u010dar and Robnik-\u0160ikonja, 2020)",
"ref_id": "BIBREF37"
},
{
"start": 125,
"end": 146,
"text": "(Devlin et al., 2019)",
"ref_id": "BIBREF5"
},
{
"start": 898,
"end": 919,
"text": "(Devlin et al., 2019)",
"ref_id": "BIBREF5"
},
{
"start": 1001,
"end": 1033,
"text": "(Ul\u010dar and Robnik-\u0160ikonja, 2020)",
"ref_id": "BIBREF37"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "BERT Embeddings",
"sec_num": "2.1.3"
},
{
"text": "The majority of provided tools cover different aspects of news article analysis, processing, and generation. We present keyword extraction tools TNT-KID and RaKUn, named entity recognition approaches, tools for diachronic analysis of words, tools for topic analysis and visualization, and tools for sentiment analysis.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "News Article Analysis Tools",
"sec_num": "2.2"
},
{
"text": "Two tools are available for keyword extraction: TNT-KID and RaKUn.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Keyword Extraction",
"sec_num": "2.2.1"
},
{
"text": "TNT-KID 8 (Transformer-based Neural Tagger for Keyword Identification, Martinc et al., 2020) is a supervised tool for extracting keywords from news articles in several languages (English, Estonian, Croatian, and Russian). It relies on the modified Transformer architecture (Vaswani et al., 2017 ) and leverages language model pretraining on a domain-specific corpus. This gives competitive and robust performance while requiring only a fraction of the manually labeled data needed by the best performing supervised systems. This makes TNT-KID especially appropriate for less-resourced languages where large manually labeled datasets are scarce.",
"cite_spans": [
{
"start": 71,
"end": 92,
"text": "Martinc et al., 2020)",
"ref_id": "BIBREF19"
},
{
"start": 273,
"end": 294,
"text": "(Vaswani et al., 2017",
"ref_id": "BIBREF38"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Keyword Extraction",
"sec_num": "2.2.1"
},
{
"text": "RaKUn 9 (\u0160krlj et al., 2019) offers unsupervised detection and exploration of keyphrases. It transforms a document collection into a network, which is pruned to keep only the most relevant nodes. The nodes are ranked, prioritizing nodes corresponding to individual keywords and paths (keyphrases comprised of multiple words). Being unsupervised, RaKUn is well suited for less-resourced languages where expensive pre-training is not possible.",
"cite_spans": [
{
"start": 8,
"end": 28,
"text": "(\u0160krlj et al., 2019)",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Keyword Extraction",
"sec_num": "2.2.1"
},
{
"text": "The Named Entity Recognition (NER) system is based on the architecture proposed by Boros et al. (2020) . It consists of fine-tuned BERT with two additional Transformer blocks (Vaswani et al., 2017) . We provided models capable of predicting three types of named entities (Location, Organisation and Person) for eight European languages: Croatian, Estonian, Finnish, Latvian, Lithuanian, Russian, Slovene and Swedish. These models were trained using the WikiANN corpus (Pan et al., 2017) , specifically using the training, development and testing partitions provided by Rahimi et al. (2019) . Regarding BERT, for Croatian and Slovene we used CroSloEngual BERT (Ul\u010dar and Robnik-\u0160ikonja, 2020); for Finnish and Estonian FinEst BERT (Ul\u010dar and Robnik-\u0160ikonja, 2020); for Russian RuBERT (Kuratov and Arkhipov, 2019); for Swedish Swedish BERT (Malmsten et al., 2020) ; for Latvian and Lithuanian Multilingual BERT (Devlin et al., 2019).",
"cite_spans": [
{
"start": 83,
"end": 102,
"text": "Boros et al. (2020)",
"ref_id": "BIBREF3"
},
{
"start": 175,
"end": 197,
"text": "(Vaswani et al., 2017)",
"ref_id": "BIBREF38"
},
{
"start": 468,
"end": 486,
"text": "(Pan et al., 2017)",
"ref_id": "BIBREF22"
},
{
"start": 569,
"end": 589,
"text": "Rahimi et al. (2019)",
"ref_id": "BIBREF27"
},
{
"start": 838,
"end": 861,
"text": "(Malmsten et al., 2020)",
"ref_id": "BIBREF15"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Named Entity Recognition 10",
"sec_num": "2.2.2"
},
{
"text": "The tool for diachronic semantic shift detection (Martinc et al., 2019a) leverages the BERT contextual embeddings (Devlin et al., 2019) for generat-ing time-specific word representations. It checks whether a specific word (or phrase) in the corpus has changed across time by measuring the rate of change for time-specific relations to semantically similar words in distinct time periods. Besides measuring long-term semantic changes, the method can also be successfully used for the detection of short-term yearly semantic shifts and has even been employed in the multilingual setting.",
"cite_spans": [
{
"start": 49,
"end": 72,
"text": "(Martinc et al., 2019a)",
"ref_id": "BIBREF16"
},
{
"start": 114,
"end": 135,
"text": "(Devlin et al., 2019)",
"ref_id": "BIBREF5"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Diachronic News Analysis 11",
"sec_num": "2.2.3"
},
{
"text": "We present three tools dealing with news topics: PTM, PDTM and TeMoCo. The first two use topics to link articles across languages, and the third one visualizes distributions of topics over time. Mimno et al., 2009) can be used to train cross-lingual topic models and obtain cross-lingual topic vectors for news articles. These vectors can be used to link news articles across languages. An ensemble of crosslingual topic vectors and document embeddings can outperform stand-alone methods for crosslingual news linking (Zosa et al., 2020 TeMoCo 15 (Temporal Topic Visualisation, Sheehan et al., 2019, 2020) visualizes changes in topic distribution and associated keywords in a document or collection of articles. The tool can investigate a single document or a corpus which has been temporally annotated (e.g., a transcript or corpus of dated articles). The user can examine an overview of a dataset, processed into time and topic segments. The changes in topic size and keywords describe patterns in the data. Clicking on the segments brings up the related news articles with keyword highlighting. Sentiment analysis is likely the most popular NLP application in industry. Our multilingual model for news sentiment classification is based on multilingual BERT. The model was trained on the Slovenian news sentiment dataset (Bu\u010dar et al., 2018) using a two-step training approach with document and paragraph level sentiment labels . The model was tested on the document-level labels of the Croatian news sentiment dataset (Section 3.2.2) in a zero-shot setting. The model maps the input document into one of the three predefined classes: positive, negative, and neutral.",
"cite_spans": [
{
"start": 195,
"end": 214,
"text": "Mimno et al., 2009)",
"ref_id": "BIBREF20"
},
{
"start": 518,
"end": 536,
"text": "(Zosa et al., 2020",
"ref_id": "BIBREF42"
},
{
"start": 1323,
"end": 1343,
"text": "(Bu\u010dar et al., 2018)",
"ref_id": "BIBREF4"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Topic Analysis",
"sec_num": "2.2.4"
},
{
"text": "PTM 12 (Polylingual Topic Model,",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Topic Analysis",
"sec_num": "2.2.4"
},
{
"text": "Several of the tools in the sections above can also be applied to comments. We describe the following comment-specific tools: comment moderation, bot and gender detection, and sentiment analysis tools.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "News Comment Analysis Tools",
"sec_num": "2.3"
},
{
"text": "Our comment moderation tool flags inappropriate comments that should be blocked from appearing on news sites (Pelicon et al., 2021a,b) . It uses multilingual BERT (Devlin et al., 2019) and the trilingual EMBEDDIA BERT models (Section 2.1.3). The models were trained on combinations of five datasets: Croatian and Estonian (see Section 3.3 and details in Shekhar et al. (2020)), Slovenian (Ljube\u0161i\u0107 et al., 2019) , English (Zampieri et al., 2019) , and German (Wiegand et al., 2018). For Croatian, we also provide a model to predict which rule is violated, based on the moderation policy of 24 sata, the biggest Croatian news publisher (see Section 3.3.3).",
"cite_spans": [
{
"start": 109,
"end": 134,
"text": "(Pelicon et al., 2021a,b)",
"ref_id": null
},
{
"start": 163,
"end": 184,
"text": "(Devlin et al., 2019)",
"ref_id": "BIBREF5"
},
{
"start": 388,
"end": 411,
"text": "(Ljube\u0161i\u0107 et al., 2019)",
"ref_id": "BIBREF14"
},
{
"start": 422,
"end": 445,
"text": "(Zampieri et al., 2019)",
"ref_id": "BIBREF40"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Comment Moderation 17",
"sec_num": "2.3.1"
},
{
"text": "An author profiling tool for gender classification and bot detection in Spanish and English, trained on Twitter data (Martinc et al., 2019b) , was developed for the PAN 2019 author profiling shared task (Rangel and Rosso, 2019) . It uses a two-step approach: in the first step distinguishing between bots and humans, and in the second step determining the gender of human authors. It relies on a Logistic Regression classifier and employs a number of different word and character n-gram features.",
"cite_spans": [
{
"start": 117,
"end": 140,
"text": "(Martinc et al., 2019b)",
"ref_id": "BIBREF18"
},
{
"start": 203,
"end": 227,
"text": "(Rangel and Rosso, 2019)",
"ref_id": "BIBREF28"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Bot and Gender Detection 18",
"sec_num": "2.3.2"
},
{
"text": "16 https://github.com/EMBEDDIA/ crosslingual_news_sentiment 17 https://github.com/EMBEDDIA/ hackashop2021_comment_filtering",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Bot and Gender Detection 18",
"sec_num": "2.3.2"
},
{
"text": "18 https://github.com/EMBEDDIA/PAN2019",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Bot and Gender Detection 18",
"sec_num": "2.3.2"
},
{
"text": "The code for sentiment analysis allows training a model that classifies text into one of three sentiment categories: positive, neutral, or negative. The classifier is trained on the Twitter datasets 20 provided by Mozeti\u010d et al. (2016) . The models and datasets support cross-lingual knowledge transfer from resource-rich language(s) to less-resourced languages.",
"cite_spans": [
{
"start": 214,
"end": 235,
"text": "Mozeti\u010d et al. (2016)",
"ref_id": "BIBREF21"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Sentiment Analysis 19",
"sec_num": "2.3.3"
},
{
"text": "Two of our tools are for generating text, either news for specific topics, or creative language.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "News Article and Headline Generation",
"sec_num": "2.4"
},
{
"text": "Template-Based NLG System for Automated Journalism The rule-based natural language generation system-similar in concept to Lepp\u00e4nen et al. 2017-produces news texts in Finnish and English from statistical data obtained from Euro-Stat. The system provides the text inputs used in the NLG challenges, described in Section 4.3. Access to the tool is provided through an API. 21",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "News Article and Headline Generation",
"sec_num": "2.4"
},
{
"text": "Creative Language Generation We provide a framework 22 to help in generation of creative language using an evolutionary algorithm (Alnajjar and Toivonen, 2020) .",
"cite_spans": [
{
"start": 130,
"end": 159,
"text": "(Alnajjar and Toivonen, 2020)",
"ref_id": "BIBREF1"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "News Article and Headline Generation",
"sec_num": "2.4"
},
{
"text": "For the purposes of the hackashop, the EMBED-DIA media partners released their news archives, the majority of which are now being made publicly available for use after the project.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Datasets",
"sec_num": "3"
},
{
"text": "Four publicly available datasets released by the EMBEDDIA project are described below. ",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "General EMBEDDIA News Datasets",
"sec_num": "3.1"
},
{
"text": "The Finnish corpus (STT, 2019) contains newswire articles in Finnish sent to media outlets by the Finnish News Agency (STT) between 1992-2018. The corpus includes about 2.8 million items in total. The news articles are categorized by department (domestic, foreign, economy, politics, culture, entertainment and sports), as well as by metadata (IPTC subject categories or keywords and location data). The dataset is publicly available via CLARIN, 26 as is a parsed version of the corpus in CoNLL-U format (STT et al., 2020). 27",
"cite_spans": [
{
"start": 446,
"end": 448,
"text": "26",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "STT News Archive (in Finnish)",
"sec_num": "3.1.4"
},
{
"text": "For the purposes of the hackashop, a set of taskspecific datasets were also gathered.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Task-specific News Datasets",
"sec_num": "3.2"
},
{
"text": "For the keyword extraction challenge, we created train and test data splits, given as article IDs from datasets in Section 3.1. The number of articles for Estonian, Latvian, Russian and Croatian (see Koloski et al. (2021a) for details) are:",
"cite_spans": [
{
"start": 200,
"end": 222,
"text": "Koloski et al. (2021a)",
"ref_id": "BIBREF6"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Keyword Extraction Datasplits",
"sec_num": "3.2.1"
},
{
"text": "\u2022 Croatian: 32,223 train, 3,582 test;",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Keyword Extraction Datasplits",
"sec_num": "3.2.1"
},
{
"text": "\u2022 Estonian: 10,750 train, 7,747 test;",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Keyword Extraction Datasplits",
"sec_num": "3.2.1"
},
{
"text": "\u2022 Russian: 13,831 train, 11,475 test;",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Keyword Extraction Datasplits",
"sec_num": "3.2.1"
},
{
"text": "\u2022 Latvian: 13,133 train, 11,641 test.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Keyword Extraction Datasplits",
"sec_num": "3.2.1"
},
{
"text": "The data is publicly available in CLARIN. 28",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Keyword Extraction Datasplits",
"sec_num": "3.2.1"
},
{
"text": "We selected a subset of 2,025 news articles from the Croatian 24sata dataset (see Section 3.1.3 and Pelicon et al., 2020). Several annotators annotated the articles on a five-point Likert-scale from 1 (most negative sentiment) to 5 (most positive). The final sentiment label of an article was then based on the average of the scores given by the different annotators: negative if average was less than or equal to 2.4, neutral if between 2.4 and 3.6, or positive if greater than or equal to 3.6. The dataset is publicly available in CLARIN. 29",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "News Sentiment Annotated Dataset",
"sec_num": "3.2.2"
},
{
"text": "For the purposes of the challenge on finding interesting news from neighbouring countries (see Section 4.1.2 and Koloski et al., 2021b) an Estonian journalist gathered 21 news articles from Latvia that would be of interest for Estonians, paired with 21 corresponding Estonian articles. 30",
"cite_spans": [
{
"start": 113,
"end": 135,
"text": "Koloski et al., 2021b)",
"ref_id": "BIBREF7"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Estonian-Latvian Interesting News Pairs",
"sec_num": "3.2.3"
},
{
"text": "This corpus, consisting of a total 188 news texts produced by the rule-based natural language generation system described in Section 2.4, is provided to allow for easier offline development of solutions to the NLG challenges. The corpus contains news texts in both Finnish and English, 31 discussing consumer prices as well as health care spending and funding on the national level within the EU. ",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Corpus of Computer-Generated Statistical News Texts",
"sec_num": "3.2.4"
},
{
"text": "In this archive, there are over 20M user comments from 2007-2019, written mostly in Croatian. All comments were gathered from 24sata, the biggest Croatian news publisher, owned by Styria Media Group. Each comment is given with the ID of the news article where it was posted and with multilabel moderation information corresponding to the rules of 24sata's moderation policy (see Shekhar et al., 2020) . The dataset is publicly available in CLARIN. 34",
"cite_spans": [
{
"start": 379,
"end": 400,
"text": "Shekhar et al., 2020)",
"ref_id": "BIBREF33"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "24sata Comment Archive (in Croatian)",
"sec_num": "3.3.3"
},
{
"text": "EventRegistry (Leban et al., 2014) , which is a news intelligence platform aiming to empower organizations to keep track of world events and analyze their impact, provided free access to their data for hackathon participants. Datasets relevant to the hackathon have also been made available for academic use by the Finnish broadcasting company Yle in Finnish 35 and in Swedish 36 .",
"cite_spans": [
{
"start": 14,
"end": 34,
"text": "(Leban et al., 2014)",
"ref_id": "BIBREF12"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Other News Datasets",
"sec_num": "3.4"
},
{
"text": "Sample news media challenge addressed in the EM-BEDDIA project come from three different areas: news analysis, news comments analysis, and article and headline generation.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Challenges",
"sec_num": "4"
},
{
"text": "The EMBEDDIA datasets from Ekspress Meedia, Latvian Delfi and 24sata contain articles together with keywords assigned by journalists (see Section 3.2.1). The project has produced several stateof-the-art approaches for automatic keyword extraction on these datasets (see Section 2.2.1). The challenge consists of providing alternative methods to achieve the most accurate keyword extraction and compare with our results.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Keyword Extraction",
"sec_num": "4.1.1"
},
{
"text": "Journalists are very interested in identifying stories from cross-border countries, that attract a large number of readers and are \"special\". A journalist at Ekspress Meedia in Estonia gave the example of selecting news from Latvia that would be of interest to Estonian readers. Example topics include: drunk Estonians in Latvia, a person in Latvia living in a boat, stories from Latvia about topics that also interest Estonians (for example, alcohol taxes, newsworthy actions that take place near the border, certain public figures). At the moment it is easy to detect all the news from Latvia with the mentions of words \"Estonia\" or \"Estonians\", but the challenge is to identify a larger number of topics, e.g. scandals, deaths, gossip that might be somehow connected to Estonia, and news and stories that Estonians relate to (for example, when similar things have happened in Estonia or similar news has been popular there). Given the collection of news from two different countries (e.g. Estonia, Latvia, see Section 3.1), the task is to identify these special interesting news stories; 21 manually identified examples were provided (see Section 3.2.3).",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Identifying Interesting News from Neighbouring Countries",
"sec_num": "4.1.2"
},
{
"text": "Media houses with large news articles collections are interested in analysing the reporting on certain topics to investigate changes over time. This can not only help them understand their reporting, but also help journalists to discover specific aspects related to these concepts. An example from a news media professional from Estonia is as follows: \"the doping affairs in sports regularly appear and for example for one of our skiers, a few years ago, we have already reported on a potential doping affair, but did not analyse it in depth. Few years later it has turned out that the sportsman was indeed involved in a doping affair. Having a better overview of doping related persons and topics over time, would be interesting for us.\" An even more straightforward application is the monitoring of politicians and parties; controversial topics are also of interest, as they can show general changes in society towards them.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Diachronic News Article Analysis",
"sec_num": "4.1.3"
},
{
"text": "Each of the media partners provided some people/parties/concepts of their interest. Examples are reported in Appendix A.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Diachronic News Article Analysis",
"sec_num": "4.1.3"
},
{
"text": "The EMBEDDIA datasets from Ekspress Meedia and 24sata contain comments with metadata showing the ones blocked by the moderators (see Section 3.3). In the case of the 24sata dataset, specific moderation policies exist with a list of reasons for blocking, and the metadata also shows which of the reasons applied. The policies are applied by humans, though, and therefore the metadata will reflect the way moderators actually behave, including making mistakes and showing biases. During the EMBEDDIA project, we have developed and evaluated multiple automatic filtering approaches on these datasets, which can be used off-the-shelf or can be re-trained or modified (see Section 2.3.1). The hackathon participants were invited to propose alternative comment filtering methods, to improve over the existing approaches, or apply them to other datasets; to use them to investigate how human moderators actually behave; and/or to investigate how to analyse, understand or use the outputs.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Comment Moderation",
"sec_num": "4.2.1"
},
{
"text": "Each of the comment datasets available contains about 10 years of data. The EMEBDDIA project has developed and evaluated a range of classifiers that can detect useful information in comments and comment-like text (including sentiment, topic, author information etc; see Section 2.3). The participants were invited to use these and other methods to extract meaningful information from comment threads and develop new ways of presenting this information in a way that could be useful to a journalist or analyst. Example approaches given were summarizing topics, views and opinions; and detecting and summarizing constructive or positive comments, as an antidote to the negative comments so often focused on in NLP.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Comment Summarization",
"sec_num": "4.2.2"
},
{
"text": "Automatically Generated Articles Despite recent strides in neural natural language generation (NLG) methods, neural NLG methods are still prone to producing text that is not grounded in the input data. As such errors are catastrophic in news industry applications, most news generation systems continue to employ rule-based NLG methods. Such methods, however, lack to adequately handle the variety and fluency of expression. One potential solution would be to combine neural postprocessing with a rule-based NLG system. In this challenge, participants are provided with black box access to a rule-based NLG system that produces statistical news articles. A corpus of the produced news articles is also provided. 37 The challenge is to use automated post-processing methods to improve the fluency and grammaticality of the system's output without changing the meaning of the text.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Improving the Fluency of",
"sec_num": "4.3.1"
},
{
"text": "The system is multilingual (English and Finnish), and optimally the proposed solutions should be language-independent, taking advantage of e.g., multilingual word embeddings. At the same time, we also welcome monolingual solutions.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Improving the Fluency of",
"sec_num": "4.3.1"
},
{
"text": "Headlines play an important role in news text, not only summarizing the most important information in the underlying news text, but also presenting it in a light that is likely to entice the reader to engage with the larger text. In this challenge, the participants are invited to create headlines for automatically generated articles (see Section 4.3.1).",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Headline Generation",
"sec_num": "4.3.2"
},
{
"text": "Six teams with 24 members in total participated in the hackathon during 1-19 February 2021. The challenges described in Section 4 were offered to the teams as examples of interesting problems in the area of news media analysis and generation. The teams had, however, the freedom to choose and formulate their own aims for the hackathon. Likewise, they were offered the data, tools and models described above.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Hackathon Contributions",
"sec_num": "5"
},
{
"text": "The hackathon was organized online, with three joint events to kick off the activities, to meet and talk about the ongoing work halfway, and to wrap up the work at the end. Ample support on tools, models, data and challenges was provided by the EMBEDDIA experts via several channels.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Hackathon Contributions",
"sec_num": "5"
},
{
"text": "The six teams all picked up different challenges and set themselves specific goals. Reports from five teams are included in these proceedings.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Hackathon Contributions",
"sec_num": "5"
},
{
"text": "Three teams worked on news content analysis:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Hackathon Contributions",
"sec_num": "5"
},
{
"text": "\u2022 One team developed a COVID-19 news dashboard to visualise sentiment in pandemicrelated news. The dashboard uses a multilingual BERT model to analyze news headlines in different languages across Europe (Robertson et al., 2021) .",
"cite_spans": [
{
"start": 203,
"end": 227,
"text": "(Robertson et al., 2021)",
"ref_id": "BIBREF30"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Hackathon Contributions",
"sec_num": "5"
},
{
"text": "\u2022 Methods for cross-border news discovery were developed by another team using multilingual topic models. Their tool discovers Latvian news that could interest Estonian readers (Koloski et al., 2021b ).",
"cite_spans": [
{
"start": 177,
"end": 199,
"text": "(Koloski et al., 2021b",
"ref_id": "BIBREF7"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Hackathon Contributions",
"sec_num": "5"
},
{
"text": "\u2022 A third team used sentiment and viewpoint analysis to study attitudes related to LGBTIQ+ in Slovenian news. Their results suggest that political affiliation of media outlets can affect sentiment towards and framing of LGBTIQ+specific topics (Martinc et al., 2021) .",
"cite_spans": [
{
"start": 243,
"end": 265,
"text": "(Martinc et al., 2021)",
"ref_id": "BIBREF17"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Hackathon Contributions",
"sec_num": "5"
},
{
"text": "Two teams looked at different challenges related to comment analysis:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Hackathon Contributions",
"sec_num": "5"
},
{
"text": "\u2022 One team automated news comment moderation. They compiled and labeled a dataset of English news and social posts, and experimented with cross-lingual transfer of comment labels from English and subsequent supervised machine learning on Croatian and Estonian news comments (Koren\u010di\u0107 et al., 2021) .",
"cite_spans": [
{
"start": 274,
"end": 297,
"text": "(Koren\u010di\u0107 et al., 2021)",
"ref_id": "BIBREF8"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Hackathon Contributions",
"sec_num": "5"
},
{
"text": "\u2022 Another team looked at the diversity of news comment recommendations, motivated by democratic debate. They implemented a novel metric based on theories of democracy and used it to compare recommendation strategies of New York Times comments in English (Reuver and Mattis, 2021) .",
"cite_spans": [
{
"start": 254,
"end": 279,
"text": "(Reuver and Mattis, 2021)",
"ref_id": "BIBREF29"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Hackathon Contributions",
"sec_num": "5"
},
{
"text": "Finally, one team worked on a generation task:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Hackathon Contributions",
"sec_num": "5"
},
{
"text": "\u2022 The team experimented with several methods for generating headlines, given the contents of a news story. They found that headlines formulated as questions about the story's content tend to be both informative and enticing.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Hackathon Contributions",
"sec_num": "5"
},
{
"text": "This paper presents the contributions of the EM-BEDDIA project, including a large variety of tools, new datasets of news articles and comments from the media partners, as well as challenges that were proposed to the participants of the EACL 2021 Hackathon on News Media Content Analysis and Automated Report Generation. The hackathon had six participating teams who addressed different challenges, either from the list of proposed challenges or their own news-industry-related tasks. In the future, the tools and resources described can be used for a large variety of new experiments, and we hope that the proposed challenges will be addressed by the wider NLP research community.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Conclusions",
"sec_num": "6"
},
{
"text": "https://docs.texta.ee/ 5 https://cf3.ijs.si/",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
},
{
"text": "https://huggingface.co/EMBEDDIA/ crosloengual-bert 7 https://huggingface.co/EMBEDDIA/ finest-bert 8 https://github.com/EMBEDDIA/tnt_kid",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
},
{
"text": "https://github.com/EMBEDDIA/RaKUn 10 https://github.com/EMBEDDIA/stackedner 11 https://github.com/EMBEDDIA/semantic_ shift_detection",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
},
{
"text": "http://hdl.handle.net/11356/1408 24 http://hdl.handle.net/11356/1409 25 http://hdl.handle.net/11356/1410",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
},
{
"text": "http://hdl.handle.net/11356/1403 29 http://hdl.handle.net/11356/1342 30 https://github.com/EMBEDDIA/ interesting-cross-border-news-discovery 31 https://github.com/EMBEDDIA/embeddianlg-output-corpus",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
},
{
"text": "http://hdl.handle.net/11356/1401 33 http://hdl.handle.net/11356/1407 34 http://hdl.handle.net/11356/1399 35 https://korp.csc.fi/download/YLE/fi/ 2011-2018-src/ 36 https://korp.csc.fi/download/YLE/sv/ 2012-2018-src/",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
},
{
"text": "https://github.com/EMBEDDIA/embeddianlg-output-corpus",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
}
],
"back_matter": [
{
"text": "This work has been supported by the European Union's Horizon 2020 research and innovation program under grant 825153 (EMBEDDIA).We would like to thank EventRegistry for providing free access to their data for hackathon participants.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Acknowledgements",
"sec_num": null
},
{
"text": "News Article Analysis ChallengeFor the challenge described in Section 4.1.3, each of the media partners provided some people/parties/concepts of their interest. These include the following. Political parties:\u2022 Estonian (Eskpress meedia): Reformierakond, EKRE, Keskerakond\u2022 Finnish (STT) 38 : Suomen Sosialidemokraattinen Puolue, demarit, SDP, (sd.); Kokoomus, (kok.); Keskusta, (kesk.); Perussuomalaiset, (ps.); Kristillisdemokraatit, KD, (kd.)\u2022 Croatian: Hrvatska demokratska zajednica (HDZ), Socijaldemokratska partija Hrvatske (SDP), Hrvatska narodna stranka (HNS), Most nezavisnih lista (MOST)Popular people:38 The names without brackets are names the parties use and the abbreviation inside brackets is the way to mark a mp's / other person's political party within a text. For example Jussi Halla-aho (ps.) said that- Interesting topics were selected for all three languages to allow also cross-lingual comparisons:-corona crisis, pandemics: Estonian: Koroonakriis, pandeemia; Finnish: korona, koronakriisi, pandemia, koronapandemia; Croatian: korona, koronavirus, korona kriza, pandemija, korona pandemija -same sex rights, registered partnership act, marriage referendum: Estonian:samasooliste \u00f5igused, kooseluseadus, abielureferendum; Finnish: tasa-arvoinen avioliitto, rekister\u00f6ity parisuhde; Croatian: referendum o braku, \u017eivotno partnerstvo, civilno partnerstvo -financial knowledge, savings, investing, pension: Estonian: rahatarkus, s\u00e4\u00e4stmine, investeerimine, pension; Finnish: sijoittaminen, piensijoittaja, s\u00e4\u00e4st\u00e4minen, el\u00e4ke, el\u00e4kkeet; Croatian: ulaganje, investiranje, mali ulaga\u010di, dionice, u\u0161tedevina, mirovina, penzija -doping: same word in Estonian/Finnish/Croatian.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "A Entities of Interest for Diachronic",
"sec_num": null
}
],
"bib_entries": {
"BIBREF0": {
"ref_id": "b0",
"title": "A Twitter tale of three hurricanes: Harvey, Irma, and Maria",
"authors": [
{
"first": "Ferda",
"middle": [],
"last": "References Firoj Alam",
"suffix": ""
},
{
"first": "Muhammad",
"middle": [],
"last": "Ofli",
"suffix": ""
},
{
"first": "Michael",
"middle": [],
"last": "Imran",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Aupetit",
"suffix": ""
}
],
"year": 2018,
"venue": "Proc. of ISCRAM",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "References Firoj Alam, Ferda Ofli, Muhammad Imran, and Michael Aupetit. 2018. A Twitter tale of three hurri- canes: Harvey, Irma, and Maria. Proc. of ISCRAM, Rochester, USA.",
"links": null
},
"BIBREF1": {
"ref_id": "b1",
"title": "Computational generation of slogans",
"authors": [
{
"first": "Khalid",
"middle": [],
"last": "Alnajjar",
"suffix": ""
},
{
"first": "Hannu",
"middle": [],
"last": "Toivonen",
"suffix": ""
}
],
"year": 2020,
"venue": "Natural Language Engineering",
"volume": "",
"issue": "",
"pages": "1--33",
"other_ids": {
"DOI": [
"10.1017/S1351324920000236"
]
},
"num": null,
"urls": [],
"raw_text": "Khalid Alnajjar and Hannu Toivonen. 2020. Compu- tational generation of slogans. Natural Language Engineering, First View:1-33.",
"links": null
},
"BIBREF2": {
"ref_id": "b2",
"title": "Dynamic topic models",
"authors": [
{
"first": "M",
"middle": [],
"last": "David",
"suffix": ""
},
{
"first": "John D",
"middle": [],
"last": "Blei",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Lafferty",
"suffix": ""
}
],
"year": 2006,
"venue": "Proceedings of the 23rd international conference on Machine learning",
"volume": "",
"issue": "",
"pages": "113--120",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "David M Blei and John D Lafferty. 2006. Dynamic topic models. In Proceedings of the 23rd interna- tional conference on Machine learning, pages 113- 120.",
"links": null
},
"BIBREF3": {
"ref_id": "b3",
"title": "Alleviating digitization errors in named entity recognition for historical documents",
"authors": [
{
"first": "Emanuela",
"middle": [],
"last": "Boros",
"suffix": ""
},
{
"first": "Ahmed",
"middle": [],
"last": "Hamdi",
"suffix": ""
},
{
"first": "Elvys",
"middle": [
"Linhares"
],
"last": "Pontes",
"suffix": ""
},
{
"first": "Luis",
"middle": [
"Adri\u00e1n"
],
"last": "Cabrera-Diego",
"suffix": ""
},
{
"first": "Jose",
"middle": [
"G"
],
"last": "Moreno",
"suffix": ""
},
{
"first": "Nicolas",
"middle": [],
"last": "Sidere",
"suffix": ""
},
{
"first": "Antoine",
"middle": [],
"last": "Doucet",
"suffix": ""
}
],
"year": 2020,
"venue": "Proceedings of the 24th Conference on Computational Natural Language Learning",
"volume": "",
"issue": "",
"pages": "431--441",
"other_ids": {
"DOI": [
"10.18653/v1/2020.conll-1.35"
]
},
"num": null,
"urls": [],
"raw_text": "Emanuela Boros, Ahmed Hamdi, Elvys Lin- hares Pontes, Luis Adri\u00e1n Cabrera-Diego, Jose G. Moreno, Nicolas Sidere, and Antoine Doucet. 2020. Alleviating digitization errors in named entity recognition for historical documents. In Proceedings of the 24th Conference on Computa- tional Natural Language Learning, pages 431-441, Online. Association for Computational Linguistics.",
"links": null
},
"BIBREF4": {
"ref_id": "b4",
"title": "Annotated news corpora and a lexicon for sentiment analysis in Slovene. Language Resources and Evaluation",
"authors": [
{
"first": "Joze",
"middle": [],
"last": "Bu\u010dar",
"suffix": ""
},
{
"first": "Martin",
"middle": [],
"last": "\u017dnidarsic",
"suffix": ""
},
{
"first": "Janez",
"middle": [],
"last": "Povh",
"suffix": ""
}
],
"year": 2018,
"venue": "",
"volume": "52",
"issue": "",
"pages": "895--919",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Joze Bu\u010dar, Martin \u017dnidarsic, and Janez Povh. 2018. Annotated news corpora and a lexicon for sentiment analysis in Slovene. Language Resources and Eval- uation, 52:895-919.",
"links": null
},
"BIBREF5": {
"ref_id": "b5",
"title": "BERT: Pre-training of deep bidirectional transformers for language understanding",
"authors": [
{
"first": "Jacob",
"middle": [],
"last": "Devlin",
"suffix": ""
},
{
"first": "Ming-Wei",
"middle": [],
"last": "Chang",
"suffix": ""
},
{
"first": "Kenton",
"middle": [],
"last": "Lee",
"suffix": ""
},
{
"first": "Kristina",
"middle": [],
"last": "Toutanova",
"suffix": ""
}
],
"year": 2019,
"venue": "Proceedings of the 2019 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies",
"volume": "1",
"issue": "",
"pages": "4171--4186",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Jacob Devlin, Ming-Wei Chang, Kenton Lee, and Kristina Toutanova. 2019. BERT: Pre-training of deep bidirectional transformers for language under- standing. In Proceedings of the 2019 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Tech- nologies, Volume 1 (Long and Short Papers), pages 4171-4186.",
"links": null
},
"BIBREF6": {
"ref_id": "b6",
"title": "Extending neural keyword extraction with TF-IDF tagset matching",
"authors": [
{
"first": "Boshko",
"middle": [],
"last": "Koloski",
"suffix": ""
},
{
"first": "Senja",
"middle": [],
"last": "Pollak",
"suffix": ""
},
{
"first": "Bla\u017e",
"middle": [],
"last": "\u0160krlj",
"suffix": ""
},
{
"first": "Matej",
"middle": [],
"last": "Martinc",
"suffix": ""
}
],
"year": 2021,
"venue": "Proceedings of the EACL Hackashop on News Media Content Analysis and Automated Report Generation. Association for Computational Linguistics",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Boshko Koloski, Senja Pollak, Bla\u017e \u0160krlj, and Matej Martinc. 2021a. Extending neural keyword extrac- tion with TF-IDF tagset matching. In Proceedings of the EACL Hackashop on News Media Content Analysis and Automated Report Generation. Associ- ation for Computational Linguistics.",
"links": null
},
"BIBREF7": {
"ref_id": "b7",
"title": "Interesting cross-border news discovery using crosslingual article linking and document similarity",
"authors": [
{
"first": "Boshko",
"middle": [],
"last": "Koloski",
"suffix": ""
},
{
"first": "Elaine",
"middle": [],
"last": "Zosa",
"suffix": ""
},
{
"first": "Timen",
"middle": [],
"last": "Stepi\u0161nik-Perdih",
"suffix": ""
},
{
"first": "Bla\u017e",
"middle": [],
"last": "\u0160krlj",
"suffix": ""
},
{
"first": "Tarmo",
"middle": [],
"last": "Paju",
"suffix": ""
},
{
"first": "Senja",
"middle": [],
"last": "Pollak",
"suffix": ""
}
],
"year": 2021,
"venue": "Proceedings of the EACL Hackashop on News Media Content Analysis and Automated Report Generation",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Boshko Koloski, Elaine Zosa, Timen Stepi\u0161nik-Perdih, Bla\u017e \u0160krlj, Tarmo Paju, and Senja Pollak. 2021b. In- teresting cross-border news discovery using cross- lingual article linking and document similarity. In Proceedings of the EACL Hackashop on News Me- dia Content Analysis and Automated Report Gener- ation. Association for Computational Linguistics.",
"links": null
},
"BIBREF8": {
"ref_id": "b8",
"title": "To block or not to block: Experiments with machine learning for news comment moderation",
"authors": [
{
"first": "Damir",
"middle": [],
"last": "Koren\u010di\u0107",
"suffix": ""
},
{
"first": "Ipek",
"middle": [],
"last": "Baris",
"suffix": ""
},
{
"first": "Eugenia",
"middle": [],
"last": "Fernandez",
"suffix": ""
},
{
"first": "Katarina",
"middle": [],
"last": "Leuschel",
"suffix": ""
},
{
"first": "Eva S\u00e1nchez",
"middle": [],
"last": "Salido",
"suffix": ""
}
],
"year": 2021,
"venue": "Proceedings of the EACL Hackashop on News Media Content Analysis and Automated Report Generation. Association for Computational Linguistics",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Damir Koren\u010di\u0107, Ipek Baris, Eugenia Fernandez, Kata- rina Leuschel, and Eva S\u00e1nchez Salido. 2021. To block or not to block: Experiments with machine learning for news comment moderation. In Proceed- ings of the EACL Hackashop on News Media Con- tent Analysis and Automated Report Generation. As- sociation for Computational Linguistics.",
"links": null
},
"BIBREF9": {
"ref_id": "b9",
"title": "ClowdFlows: A cloud based scientific workflow platform",
"authors": [
{
"first": "Janez",
"middle": [],
"last": "Kranjc",
"suffix": ""
},
{
"first": "Vid",
"middle": [],
"last": "Podpe\u010dan",
"suffix": ""
},
{
"first": "Nada",
"middle": [],
"last": "Lavra\u010d",
"suffix": ""
}
],
"year": 2012,
"venue": "Machine Learning and Knowledge Discovery in Databases",
"volume": "7524",
"issue": "",
"pages": "816--819",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Janez Kranjc, Vid Podpe\u010dan, and Nada Lavra\u010d. 2012. ClowdFlows: A cloud based scientific workflow platform. In Peter A. Flach, Tijl Bie, and Nello Cristianini, editors, Machine Learning and Knowl- edge Discovery in Databases, volume 7524 of Lec- ture Notes in Computer Science, pages 816-819.",
"links": null
},
"BIBREF11": {
"ref_id": "b11",
"title": "Adaptation of Deep Bidirectional Multilingual Transformers for Russian Language",
"authors": [
{
"first": "Yuri",
"middle": [],
"last": "Kuratov",
"suffix": ""
},
{
"first": "Mikhail",
"middle": [],
"last": "Arkhipov",
"suffix": ""
}
],
"year": 2019,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Yuri Kuratov and Mikhail Arkhipov. 2019. Adapta- tion of Deep Bidirectional Multilingual Transform- ers for Russian Language. arXiv cs.CL. Preprint: 1905.07213.",
"links": null
},
"BIBREF12": {
"ref_id": "b12",
"title": "Event registry: learning about world events from news",
"authors": [
{
"first": "Gregor",
"middle": [],
"last": "Leban",
"suffix": ""
},
{
"first": "Blaz",
"middle": [],
"last": "Fortuna",
"suffix": ""
},
{
"first": "Janez",
"middle": [],
"last": "Brank",
"suffix": ""
},
{
"first": "Marko",
"middle": [],
"last": "Grobelnik",
"suffix": ""
}
],
"year": 2014,
"venue": "Proceedings of the 23rd International Conference on World Wide Web",
"volume": "",
"issue": "",
"pages": "107--110",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Gregor Leban, Blaz Fortuna, Janez Brank, and Marko Grobelnik. 2014. Event registry: learning about world events from news. In Proceedings of the 23rd International Conference on World Wide Web, pages 107-110.",
"links": null
},
"BIBREF13": {
"ref_id": "b13",
"title": "Data-driven news generation for automated journalism",
"authors": [
{
"first": "Leo",
"middle": [],
"last": "Lepp\u00e4nen",
"suffix": ""
},
{
"first": "Myriam",
"middle": [],
"last": "Munezero",
"suffix": ""
},
{
"first": "Mark",
"middle": [],
"last": "Granroth-Wilding",
"suffix": ""
},
{
"first": "Hannu",
"middle": [],
"last": "Toivonen",
"suffix": ""
}
],
"year": 2017,
"venue": "Proceedings of the 10th International Conference on Natural Language Generation",
"volume": "",
"issue": "",
"pages": "188--197",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Leo Lepp\u00e4nen, Myriam Munezero, Mark Granroth- Wilding, and Hannu Toivonen. 2017. Data-driven news generation for automated journalism. In Pro- ceedings of the 10th International Conference on Natural Language Generation, pages 188-197.",
"links": null
},
"BIBREF14": {
"ref_id": "b14",
"title": "The FRENK Datasets of Socially Unacceptable Discourse in Slovene and English",
"authors": [
{
"first": "Nikola",
"middle": [],
"last": "Ljube\u0161i\u0107",
"suffix": ""
},
{
"first": "Darja",
"middle": [],
"last": "Fi\u0161er",
"suffix": ""
},
{
"first": "Toma\u017e",
"middle": [],
"last": "Erjavec",
"suffix": ""
}
],
"year": 2019,
"venue": "International Conference on Text, Speech, and Dialogue",
"volume": "",
"issue": "",
"pages": "103--114",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Nikola Ljube\u0161i\u0107, Darja Fi\u0161er, and Toma\u017e Erjavec. 2019. The FRENK Datasets of Socially Unacceptable Dis- course in Slovene and English. In International Con- ference on Text, Speech, and Dialogue, pages 103- 114. Springer.",
"links": null
},
"BIBREF15": {
"ref_id": "b15",
"title": "Playing with Words at the National Library of Sweden -Making a Swedish BERT",
"authors": [
{
"first": "Martin",
"middle": [],
"last": "Malmsten",
"suffix": ""
},
{
"first": "Love",
"middle": [],
"last": "B\u00f6rjeson",
"suffix": ""
},
{
"first": "Chris",
"middle": [],
"last": "Haffenden",
"suffix": ""
}
],
"year": 2020,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Martin Malmsten, Love B\u00f6rjeson, and Chris Haffenden. 2020. Playing with Words at the National Library of Sweden -Making a Swedish BERT. arXiv cs.CL. Preprint: 2007.01658.",
"links": null
},
"BIBREF16": {
"ref_id": "b16",
"title": "Leveraging contextual embeddings for detecting diachronic semantic shift",
"authors": [
{
"first": "Matej",
"middle": [],
"last": "Martinc",
"suffix": ""
},
{
"first": "Petra",
"middle": [
"Kralj"
],
"last": "Novak",
"suffix": ""
},
{
"first": "Senja",
"middle": [],
"last": "Pollak",
"suffix": ""
}
],
"year": 2019,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {
"arXiv": [
"arXiv:1912.01072"
]
},
"num": null,
"urls": [],
"raw_text": "Matej Martinc, Petra Kralj Novak, and Senja Pollak. 2019a. Leveraging contextual embeddings for de- tecting diachronic semantic shift. arXiv preprint arXiv:1912.01072.",
"links": null
},
"BIBREF17": {
"ref_id": "b17",
"title": "EMBEDDIA hackathon report: Automatic sentiment and viewpoint analysis of Slovenian news corpus on the topic of LGBTIQ+",
"authors": [
{
"first": "Matej",
"middle": [],
"last": "Martinc",
"suffix": ""
},
{
"first": "Nina",
"middle": [],
"last": "Perger",
"suffix": ""
},
{
"first": "Andra\u017e",
"middle": [],
"last": "Pelicon",
"suffix": ""
},
{
"first": "Matej",
"middle": [],
"last": "Ul\u010dar",
"suffix": ""
},
{
"first": "Andreja",
"middle": [],
"last": "Vezovnik",
"suffix": ""
},
{
"first": "Senja",
"middle": [],
"last": "Pollak",
"suffix": ""
}
],
"year": 2021,
"venue": "Proceedings of the EACL Hackashop on News Media Content Analysis and Automated Report Generation",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Matej Martinc, Nina Perger, Andra\u017e Pelicon, Matej Ul\u010dar, Andreja Vezovnik, and Senja Pollak. 2021. EMBEDDIA hackathon report: Automatic senti- ment and viewpoint analysis of Slovenian news cor- pus on the topic of LGBTIQ+. In Proceedings of the EACL Hackashop on News Media Content Analysis and Automated Report Generation. Association for Computational Linguistics.",
"links": null
},
"BIBREF18": {
"ref_id": "b18",
"title": "Fake or not: Distinguishing between bots, males and females",
"authors": [
{
"first": "Matej",
"middle": [],
"last": "Martinc",
"suffix": ""
},
{
"first": "Blaz",
"middle": [],
"last": "Skrlj",
"suffix": ""
},
{
"first": "Senja",
"middle": [],
"last": "Pollak",
"suffix": ""
}
],
"year": 2019,
"venue": "CLEF (Working Notes)",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Matej Martinc, Blaz Skrlj, and Senja Pollak. 2019b. Fake or not: Distinguishing between bots, males and females. In CLEF (Working Notes).",
"links": null
},
"BIBREF19": {
"ref_id": "b19",
"title": "Tntkid: Transformer-based neural tagger for keyword identification",
"authors": [
{
"first": "Matej",
"middle": [],
"last": "Martinc",
"suffix": ""
},
{
"first": "Bla\u017e",
"middle": [],
"last": "\u0160krlj",
"suffix": ""
},
{
"first": "Senja",
"middle": [],
"last": "Pollak",
"suffix": ""
}
],
"year": 2020,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {
"arXiv": [
"arXiv:2003.09166"
]
},
"num": null,
"urls": [],
"raw_text": "Matej Martinc, Bla\u017e \u0160krlj, and Senja Pollak. 2020. Tnt- kid: Transformer-based neural tagger for keyword identification. arXiv preprint arXiv:2003.09166.",
"links": null
},
"BIBREF20": {
"ref_id": "b20",
"title": "Polylingual topic models",
"authors": [
{
"first": "David",
"middle": [],
"last": "Mimno",
"suffix": ""
},
{
"first": "Hanna",
"middle": [],
"last": "Wallach",
"suffix": ""
},
{
"first": "Jason",
"middle": [],
"last": "Naradowsky",
"suffix": ""
},
{
"first": "A",
"middle": [],
"last": "David",
"suffix": ""
},
{
"first": "Andrew",
"middle": [],
"last": "Smith",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Mccallum",
"suffix": ""
}
],
"year": 2009,
"venue": "Proceedings of the 2009 conference on Empirical Methods in Natural Language Processing",
"volume": "",
"issue": "",
"pages": "880--889",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "David Mimno, Hanna Wallach, Jason Naradowsky, David A Smith, and Andrew McCallum. 2009. Polylingual topic models. In Proceedings of the 2009 conference on Empirical Methods in Natural Language Processing, pages 880-889.",
"links": null
},
"BIBREF21": {
"ref_id": "b21",
"title": "Multilingual twitter sentiment classification: The role of human annotators",
"authors": [
{
"first": "Igor",
"middle": [],
"last": "Mozeti\u010d",
"suffix": ""
},
{
"first": "Miha",
"middle": [],
"last": "Gr\u010dar",
"suffix": ""
},
{
"first": "Jasmina",
"middle": [],
"last": "Smailovi\u0107",
"suffix": ""
}
],
"year": 2016,
"venue": "PLOS ONE",
"volume": "11",
"issue": "5",
"pages": "1--26",
"other_ids": {
"DOI": [
"10.1371/journal.pone.0155036"
]
},
"num": null,
"urls": [],
"raw_text": "Igor Mozeti\u010d, Miha Gr\u010dar, and Jasmina Smailovi\u0107. 2016. Multilingual twitter sentiment classification: The role of human annotators. PLOS ONE, 11(5):1- 26.",
"links": null
},
"BIBREF22": {
"ref_id": "b22",
"title": "Crosslingual Name Tagging and Linking for 282 Languages",
"authors": [
{
"first": "Xiaoman",
"middle": [],
"last": "Pan",
"suffix": ""
},
{
"first": "Boliang",
"middle": [],
"last": "Zhang",
"suffix": ""
},
{
"first": "Jonathan",
"middle": [],
"last": "May",
"suffix": ""
},
{
"first": "Joel",
"middle": [],
"last": "Nothman",
"suffix": ""
},
{
"first": "Kevin",
"middle": [],
"last": "Knight",
"suffix": ""
},
{
"first": "Heng",
"middle": [],
"last": "Ji",
"suffix": ""
}
],
"year": 2017,
"venue": "Proceedings of the 55th Annual Meeting of the Association for Computational Linguistics",
"volume": "1",
"issue": "",
"pages": "1946--1958",
"other_ids": {
"DOI": [
"10.18653/v1/P17-1178"
]
},
"num": null,
"urls": [],
"raw_text": "Xiaoman Pan, Boliang Zhang, Jonathan May, Joel Nothman, Kevin Knight, and Heng Ji. 2017. Cross- lingual Name Tagging and Linking for 282 Lan- guages. In Proceedings of the 55th Annual Meet- ing of the Association for Computational Linguistics (Volume 1: Long Papers), pages 1946-1958, Van- couver, Canada. Association for Computational Lin- guistics.",
"links": null
},
"BIBREF23": {
"ref_id": "b23",
"title": "Zero-shot learning for cross-lingual news sentiment classification",
"authors": [
{
"first": "Andra\u017e",
"middle": [],
"last": "Pelicon",
"suffix": ""
},
{
"first": "Marko",
"middle": [],
"last": "Pranji\u0107",
"suffix": ""
},
{
"first": "Dragana",
"middle": [],
"last": "Miljkovi\u0107",
"suffix": ""
},
{
"first": "Bla\u017e",
"middle": [],
"last": "\u0160krlj",
"suffix": ""
},
{
"first": "Senja",
"middle": [],
"last": "Pollak",
"suffix": ""
}
],
"year": 2020,
"venue": "Applied Sciences",
"volume": "10",
"issue": "17",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Andra\u017e Pelicon, Marko Pranji\u0107, Dragana Miljkovi\u0107, Bla\u017e \u0160krlj, and Senja Pollak. 2020. Zero-shot learn- ing for cross-lingual news sentiment classification. Applied Sciences, 10(17):5993.",
"links": null
},
"BIBREF24": {
"ref_id": "b24",
"title": "Zero-shot cross-lingual content filtering: Offensive language and hate speech detection",
"authors": [
{
"first": "Andra\u017e",
"middle": [],
"last": "Pelicon",
"suffix": ""
},
{
"first": "Ravi",
"middle": [],
"last": "Shekhar",
"suffix": ""
},
{
"first": "Matej",
"middle": [],
"last": "Martinc",
"suffix": ""
},
{
"first": "Bla\u017e",
"middle": [],
"last": "\u0160krlj",
"suffix": ""
},
{
"first": "Matthew",
"middle": [],
"last": "Purver",
"suffix": ""
},
{
"first": "Senja",
"middle": [],
"last": "Pollak",
"suffix": ""
}
],
"year": 2021,
"venue": "Proceedings of the EACL Hackashop on News Media Content Analysis and Automated Report Generation",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Andra\u017e Pelicon, Ravi Shekhar, Matej Martinc, Bla\u017e \u0160krlj, Matthew Purver, and Senja Pollak. 2021a. Zero-shot cross-lingual content filtering: Offensive language and hate speech detection. In Proceedings of the EACL Hackashop on News Media Content Analysis and Automated Report Generation.",
"links": null
},
"BIBREF25": {
"ref_id": "b25",
"title": "Investigating cross-lingual training for offensive language detection",
"authors": [
{
"first": "Andra\u017e",
"middle": [],
"last": "Pelicon",
"suffix": ""
},
{
"first": "Ravi",
"middle": [],
"last": "Shekhar",
"suffix": ""
},
{
"first": "Bla\u017e",
"middle": [],
"last": "\u0160krlj",
"suffix": ""
},
{
"first": "Matthew",
"middle": [],
"last": "Purver",
"suffix": ""
},
{
"first": "Senja",
"middle": [],
"last": "Pollak",
"suffix": ""
}
],
"year": 2021,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Andra\u017e Pelicon, Ravi Shekhar, Bla\u017e \u0160krlj, Matthew Purver, and Senja Pollak. 2021b. Investigating cross-lingual training for offensive language detec- tion. Submitted, to appear.",
"links": null
},
"BIBREF26": {
"ref_id": "b26",
"title": "From \"information\" to \"knowing\": Exploring the role of social media in contemporary news consumption",
"authors": [
{
"first": "Iryna",
"middle": [],
"last": "Pentina",
"suffix": ""
},
{
"first": "M",
"middle": [],
"last": "Tarafdar",
"suffix": ""
}
],
"year": 2014,
"venue": "Comput. Hum. Behav",
"volume": "35",
"issue": "",
"pages": "211--223",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Iryna Pentina and M. Tarafdar. 2014. From \"informa- tion\" to \"knowing\": Exploring the role of social me- dia in contemporary news consumption. Comput. Hum. Behav., 35:211-223.",
"links": null
},
"BIBREF27": {
"ref_id": "b27",
"title": "Massively Multilingual Transfer for NER",
"authors": [
{
"first": "Afshin",
"middle": [],
"last": "Rahimi",
"suffix": ""
},
{
"first": "Yuan",
"middle": [],
"last": "Li",
"suffix": ""
},
{
"first": "Trevor",
"middle": [],
"last": "Cohn",
"suffix": ""
}
],
"year": 2019,
"venue": "Proceedings of the 57th Annual Meeting of the Association for Computational Linguistics",
"volume": "",
"issue": "",
"pages": "151--164",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Afshin Rahimi, Yuan Li, and Trevor Cohn. 2019. Mas- sively Multilingual Transfer for NER. In Proceed- ings of the 57th Annual Meeting of the Association for Computational Linguistics, pages 151-164, Flo- rence, Italy. Association for Computational Linguis- tics.",
"links": null
},
"BIBREF28": {
"ref_id": "b28",
"title": "Overview of the 7th author profiling task at pan 2019: bots and gender profiling in Twitter",
"authors": [
{
"first": "Francisco",
"middle": [],
"last": "Rangel",
"suffix": ""
},
{
"first": "Paolo",
"middle": [],
"last": "Rosso",
"suffix": ""
}
],
"year": 2019,
"venue": "Working Notes Papers of the CLEF 2019 Evaluation Labs Volume 2380 of CEUR Workshop",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Francisco Rangel and Paolo Rosso. 2019. Overview of the 7th author profiling task at pan 2019: bots and gender profiling in Twitter. In Working Notes Papers of the CLEF 2019 Evaluation Labs Volume 2380 of CEUR Workshop.",
"links": null
},
"BIBREF29": {
"ref_id": "b29",
"title": "Implementing evaluation metrics based on theories of democracy in news comment recommendation (Hackathon report)",
"authors": [
{
"first": "Myrthe",
"middle": [],
"last": "Reuver",
"suffix": ""
},
{
"first": "Nicolas",
"middle": [],
"last": "Mattis",
"suffix": ""
}
],
"year": 2021,
"venue": "Proceedings of the EACL Hackashop on News Media Content Analysis and Automated Report Generation. Association for Computational Linguistics",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Myrthe Reuver and Nicolas Mattis. 2021. Implement- ing evaluation metrics based on theories of democ- racy in news comment recommendation (Hackathon report). In Proceedings of the EACL Hackashop on News Media Content Analysis and Automated Re- port Generation. Association for Computational Lin- guistics.",
"links": null
},
"BIBREF30": {
"ref_id": "b30",
"title": "A COVID-19 news coverage mood map of Europe",
"authors": [
{
"first": "Frankie",
"middle": [],
"last": "Robertson",
"suffix": ""
},
{
"first": "Jarkko",
"middle": [],
"last": "Lagus",
"suffix": ""
},
{
"first": "Kaisla",
"middle": [],
"last": "Kajava",
"suffix": ""
}
],
"year": 2021,
"venue": "Proceedings of the EACL Hackashop on News Media Content Analysis and Automated Report Generation. Association for Computational Linguistics",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Frankie Robertson, Jarkko Lagus, and Kaisla Kajava. 2021. A COVID-19 news coverage mood map of Europe. In Proceedings of the EACL Hackashop on News Media Content Analysis and Automated Re- port Generation. Association for Computational Lin- guistics.",
"links": null
},
"BIBREF31": {
"ref_id": "b31",
"title": "TeMoCo: A visualization tool for temporal analysis of multi-party dialogues in clinical settings",
"authors": [
{
"first": "Shane",
"middle": [],
"last": "Sheehan",
"suffix": ""
},
{
"first": "Pierre",
"middle": [],
"last": "Albert",
"suffix": ""
},
{
"first": "Masood",
"middle": [],
"last": "Masoodian",
"suffix": ""
},
{
"first": "Saturnino",
"middle": [],
"last": "Luz",
"suffix": ""
}
],
"year": 2019,
"venue": "2019 IEEE 32nd International Symposium on Computer-Based Medical Systems (CBMS)",
"volume": "",
"issue": "",
"pages": "690--695",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Shane Sheehan, Pierre Albert, Masood Masoodian, and Saturnino Luz. 2019. TeMoCo: A visualization tool for temporal analysis of multi-party dialogues in clinical settings. In 2019 IEEE 32nd Interna- tional Symposium on Computer-Based Medical Sys- tems (CBMS), pages 690-695. IEEE.",
"links": null
},
"BIBREF32": {
"ref_id": "b32",
"title": "TeMoCo-Doc: A visualization for supporting temporal and contextual analysis of dialogues and associated documents",
"authors": [
{
"first": "Shane",
"middle": [],
"last": "Sheehan",
"suffix": ""
},
{
"first": "Saturnino",
"middle": [],
"last": "Luz",
"suffix": ""
},
{
"first": "Pierre",
"middle": [],
"last": "Albert",
"suffix": ""
},
{
"first": "Masood",
"middle": [],
"last": "Masoodian",
"suffix": ""
}
],
"year": 2020,
"venue": "Proceedings of the International Conference on Advanced Visual Interfaces, AVI '20",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {
"DOI": [
"10.1145/3399715.3399956"
]
},
"num": null,
"urls": [],
"raw_text": "Shane Sheehan, Saturnino Luz, Pierre Albert, and Ma- sood Masoodian. 2020. TeMoCo-Doc: A visualiza- tion for supporting temporal and contextual analysis of dialogues and associated documents. In Proceed- ings of the International Conference on Advanced Visual Interfaces, AVI '20, New York, NY, USA. As- sociation for Computing Machinery.",
"links": null
},
"BIBREF33": {
"ref_id": "b33",
"title": "Automating News Comment Moderation with Limited Resources: Benchmarking in Croatian and Estonian",
"authors": [
{
"first": "Ravi",
"middle": [],
"last": "Shekhar",
"suffix": ""
},
{
"first": "Marko",
"middle": [],
"last": "Pranji\u0107",
"suffix": ""
},
{
"first": "Senja",
"middle": [],
"last": "Pollak",
"suffix": ""
},
{
"first": "Andra\u017e",
"middle": [],
"last": "Pelicon",
"suffix": ""
},
{
"first": "Matthew",
"middle": [],
"last": "Purver",
"suffix": ""
}
],
"year": 2020,
"venue": "Journal for Language Technology and Computational Linguistics (JLCL)",
"volume": "",
"issue": "1",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Ravi Shekhar, Marko Pranji\u0107, Senja Pollak, Andra\u017e Pelicon, and Matthew Purver. 2020. Automat- ing News Comment Moderation with Limited Re- sources: Benchmarking in Croatian and Estonian. Journal for Language Technology and Computa- tional Linguistics (JLCL), 34(1).",
"links": null
},
"BIBREF34": {
"ref_id": "b34",
"title": "Rakun: Rank-based keyword extraction via unsupervised learning and meta vertex aggregation",
"authors": [
{
"first": "Bla\u017e",
"middle": [],
"last": "\u0160krlj",
"suffix": ""
},
{
"first": "Andra\u017e",
"middle": [],
"last": "Repar",
"suffix": ""
},
{
"first": "Senja",
"middle": [],
"last": "Pollak",
"suffix": ""
}
],
"year": 2019,
"venue": "Statistical Language and Speech Processing",
"volume": "",
"issue": "",
"pages": "311--323",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Bla\u017e \u0160krlj, Andra\u017e Repar, and Senja Pollak. 2019. Rakun: Rank-based keyword extraction via unsu- pervised learning and meta vertex aggregation. In Statistical Language and Speech Processing, pages 311-323, Cham. Springer International Publishing.",
"links": null
},
"BIBREF35": {
"ref_id": "b35",
"title": "Finnish news agency archive",
"authors": [
{
"first": "",
"middle": [],
"last": "Stt",
"suffix": ""
}
],
"year": 1992,
"venue": "source",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "STT. 2019. Finnish news agency archive 1992-2018, source (http://urn.fi/urn:nbn:fi:lb-2019041501).",
"links": null
},
"BIBREF36": {
"ref_id": "b36",
"title": "Finnish News Agency Archive",
"authors": [
{
"first": "Helsingin",
"middle": [],
"last": "Stt",
"suffix": ""
},
{
"first": "Khalid",
"middle": [],
"last": "Alnajjar",
"suffix": ""
}
],
"year": 1992,
"venue": "CoNLL-U, source",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "STT, Helsingin yliopisto, and Khalid Alnajjar. 2020. Finnish News Agency Archive 1992-2018, CoNLL- U, source (http://urn.fi/urn:nbn:fi:lb-2020031201).",
"links": null
},
"BIBREF37": {
"ref_id": "b37",
"title": "FinEst BERT and CroSloEngual BERT",
"authors": [
{
"first": "Matej",
"middle": [],
"last": "Ul\u010dar",
"suffix": ""
},
{
"first": "Marko",
"middle": [],
"last": "Robnik-\u0160ikonja",
"suffix": ""
}
],
"year": 2020,
"venue": "International Conference on Text, Speech, and Dialogue",
"volume": "",
"issue": "",
"pages": "104--111",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Matej Ul\u010dar and Marko Robnik-\u0160ikonja. 2020. FinEst BERT and CroSloEngual BERT. In International Conference on Text, Speech, and Dialogue, pages 104-111. Springer.",
"links": null
},
"BIBREF38": {
"ref_id": "b38",
"title": "Attention is all you need",
"authors": [
{
"first": "Ashish",
"middle": [],
"last": "Vaswani",
"suffix": ""
},
{
"first": "Noam",
"middle": [],
"last": "Shazeer",
"suffix": ""
},
{
"first": "Niki",
"middle": [],
"last": "Parmar",
"suffix": ""
},
{
"first": "Jakob",
"middle": [],
"last": "Uszkoreit",
"suffix": ""
},
{
"first": "Llion",
"middle": [],
"last": "Jones",
"suffix": ""
},
{
"first": "Aidan",
"middle": [
"N"
],
"last": "Gomez",
"suffix": ""
},
{
"first": "Lukasz",
"middle": [],
"last": "Kaiser",
"suffix": ""
},
{
"first": "Illia",
"middle": [],
"last": "Polosukhin",
"suffix": ""
}
],
"year": 2017,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {
"arXiv": [
"arXiv:1706.03762"
]
},
"num": null,
"urls": [],
"raw_text": "Ashish Vaswani, Noam Shazeer, Niki Parmar, Jakob Uszkoreit, Llion Jones, Aidan N Gomez, Lukasz Kaiser, and Illia Polosukhin. 2017. Attention is all you need. arXiv preprint arXiv:1706.03762.",
"links": null
},
"BIBREF39": {
"ref_id": "b39",
"title": "Overview of the GermEval 2018 shared task on the identification of offensive language",
"authors": [
{
"first": "Michael",
"middle": [],
"last": "Wiegand",
"suffix": ""
},
{
"first": "Melanie",
"middle": [],
"last": "Siegel",
"suffix": ""
},
{
"first": "Josef",
"middle": [],
"last": "Ruppenhofer",
"suffix": ""
}
],
"year": 2018,
"venue": "Proceedings of the GermEval 2018 Workshop (Ger-mEval)",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Michael Wiegand, Melanie Siegel, and Josef Ruppen- hofer. 2018. Overview of the GermEval 2018 shared task on the identification of offensive language. In Proceedings of the GermEval 2018 Workshop (Ger- mEval).",
"links": null
},
"BIBREF40": {
"ref_id": "b40",
"title": "Predicting the Type and Target of Offensive Posts in Social Media",
"authors": [
{
"first": "Marcos",
"middle": [],
"last": "Zampieri",
"suffix": ""
},
{
"first": "Shervin",
"middle": [],
"last": "Malmasi",
"suffix": ""
},
{
"first": "Preslav",
"middle": [],
"last": "Nakov",
"suffix": ""
},
{
"first": "Sara",
"middle": [],
"last": "Rosenthal",
"suffix": ""
},
{
"first": "Noura",
"middle": [],
"last": "Farra",
"suffix": ""
},
{
"first": "Ritesh",
"middle": [],
"last": "Kumar",
"suffix": ""
}
],
"year": 2019,
"venue": "Proceedings of NAACL",
"volume": "",
"issue": "",
"pages": "1415--1420",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Marcos Zampieri, Shervin Malmasi, Preslav Nakov, Sara Rosenthal, Noura Farra, and Ritesh Kumar. 2019. Predicting the Type and Target of Offensive Posts in Social Media. In Proceedings of NAACL, pages 1415-1420.",
"links": null
},
"BIBREF41": {
"ref_id": "b41",
"title": "Multilingual dynamic topic model",
"authors": [
{
"first": "Elaine",
"middle": [],
"last": "Zosa",
"suffix": ""
},
{
"first": "Mark",
"middle": [],
"last": "Granroth-Wilding",
"suffix": ""
}
],
"year": 2019,
"venue": "Proceedings of the International Conference on Recent Advances in Natural Language Processing",
"volume": "",
"issue": "",
"pages": "1388--1396",
"other_ids": {
"DOI": [
"10.26615/978-954-452-056-4_159"
]
},
"num": null,
"urls": [],
"raw_text": "Elaine Zosa and Mark Granroth-Wilding. 2019. Mul- tilingual dynamic topic model. In Proceedings of the International Conference on Recent Advances in Natural Language Processing (RANLP 2019), pages 1388-1396, Varna, Bulgaria. INCOMA Ltd.",
"links": null
},
"BIBREF42": {
"ref_id": "b42",
"title": "A comparison of unsupervised methods for ad hoc cross-lingual document retrieval",
"authors": [
{
"first": "Elaine",
"middle": [],
"last": "Zosa",
"suffix": ""
},
{
"first": "Mark",
"middle": [],
"last": "Granroth-Wilding",
"suffix": ""
},
{
"first": "Lidia",
"middle": [],
"last": "Pivovarova",
"suffix": ""
}
],
"year": 2020,
"venue": "Proceedings of the LREC 2020 Workshop on Cross-Language Search and Summarization of Text and Speech. European Language Resources Association (ELRA)",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Elaine Zosa, Mark Granroth-Wilding, and Lidia Pivo- varova. 2020. A comparison of unsupervised meth- ods for ad hoc cross-lingual document retrieval. In Proceedings of the LREC 2020 Workshop on Cross- Language Search and Summarization of Text and Speech. European Language Resources Association (ELRA).",
"links": null
}
},
"ref_entries": {
"TABREF0": {
"html": null,
"type_str": "table",
"text": "). 13 PDTM 14 (Polylingual Dynamic Topic Model, Zosa and Granroth-Wilding, 2019) is an extension of the Dynamic Topic Model (Blei and Lafferty, 2006) for multiple languages. This model can track the evolution of topics over time aligned across multiple languages.",
"content": "<table/>",
"num": null
},
"TABREF3": {
"html": null,
"type_str": "table",
"text": "This dataset is an archive of reader comments on the Ekspress Meedia news site from 2009-2019, containing approximately 31M comments, mostly in Estonian language, with some in Russian. The dataset is publicly available in CLARIN.32",
"content": "<table><tr><td>3.3.1 Ekspress Meedia Comment Archive (in</td></tr><tr><td>Estonian and Russian)</td></tr><tr><td>3.3.2 Latvian Delfi Comment Archive (in</td></tr><tr><td>Latvian and Russian)</td></tr><tr><td>The dataset of Latvian Delfi, which belongs to Eks-</td></tr><tr><td>press Meedia Group, is an archive of reader com-</td></tr><tr><td>ments from the Delfi news site from 2014-2019,</td></tr><tr><td>containing approximately 12M comments, mostly</td></tr><tr><td>in Latvian language, with some in Russian. The</td></tr><tr><td>dataset is publicly available in CLARIN. 33</td></tr><tr><td>Three news comment datasets have been made pub-</td></tr><tr><td>licly available. To ensure privacy, user IDs in all</td></tr><tr><td>news comment datasets in this section have been</td></tr><tr><td>obfuscated, so they no longer correspond to the</td></tr><tr><td>original IDs on the publishers' systems. User IDs</td></tr><tr><td>for moderated comments have been removed.</td></tr></table>",
"num": null
}
}
}
} |