File size: 208,816 Bytes
6fa4bc9 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 | {
"paper_id": "2021",
"header": {
"generated_with": "S2ORC 1.0.0",
"date_generated": "2023-01-19T13:27:10.348169Z"
},
"title": "The CODI-CRAC 2021 Shared Task on Anaphora, Bridging, and Discourse Deixis in Dialogue",
"authors": [
{
"first": "Sopan",
"middle": [],
"last": "Khosla",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "Canegie Mellon Univ",
"location": {
"country": "USA"
}
},
"email": "sopankh@amazon.com"
},
{
"first": "Juntao",
"middle": [],
"last": "Yu",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "Univ. of Essex",
"location": {
"country": "UK"
}
},
"email": "j.yu@essex.ac.uk"
},
{
"first": "Ramesh",
"middle": [],
"last": "Manuvinakurike",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "Intel Labs",
"location": {
"country": "USA"
}
},
"email": "ramesh.manuvinakurike@intel.com"
},
{
"first": "Vincent",
"middle": [],
"last": "Ng",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Massimo",
"middle": [],
"last": "Poesio",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "Queen Mary Univ",
"location": {
"country": "UK"
}
},
"email": "m.poesio@qmul.ac.uk"
},
{
"first": "Michael",
"middle": [],
"last": "Strube",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "HITS",
"location": {
"country": "Germany"
}
},
"email": "michael.strube@h-its.org"
},
{
"first": "Carolyn",
"middle": [],
"last": "Ros\u00e9",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "Canegie Mellon Univ",
"location": {
"country": "USA"
}
},
"email": "cprose@cs.cmu.edu"
}
],
"year": "",
"venue": null,
"identifiers": {},
"abstract": "In this paper, we provide an overview of the CODI-CRAC 2021 Shared Task. The shared task focuses on detecting anaphoric relations in different genres of conversations. Using five conversational datasets, four of which have been newly annotated with a wide range of anaphoric relations: identity, bridging references and discourse deixis, we defined multiple tasks focusing individually on these key relations. We discuss the evaluation scripts used to assess the system performance on these tasks, and provide a brief summary of the participating systems and the results obtained across 115 runs from six teams, with most submissions achieving significantly better results than our baseline methods.",
"pdf_parse": {
"paper_id": "2021",
"_pdf_hash": "",
"abstract": [
{
"text": "In this paper, we provide an overview of the CODI-CRAC 2021 Shared Task. The shared task focuses on detecting anaphoric relations in different genres of conversations. Using five conversational datasets, four of which have been newly annotated with a wide range of anaphoric relations: identity, bridging references and discourse deixis, we defined multiple tasks focusing individually on these key relations. We discuss the evaluation scripts used to assess the system performance on these tasks, and provide a brief summary of the participating systems and the results obtained across 115 runs from six teams, with most submissions achieving significantly better results than our baseline methods.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Abstract",
"sec_num": null
}
],
"body_text": [
{
"text": "The performance of models for single-antecedent anaphora resolution on the aspects of anaphoric interpretation annotated in the standard ONTONOTES dataset (Pradhan et al., 2012) has greatly improved in recent years (Wiseman et al., 2015; Lee et al., 2017 Lee et al., , 2018 Kantor and Globerson, 2019; Joshi et al., 2020) . So the attention of the community has started to turn to more complex cases of anaphora not found or not properly tested in ONTONOTES.",
"cite_spans": [
{
"start": 155,
"end": 177,
"text": "(Pradhan et al., 2012)",
"ref_id": "BIBREF50"
},
{
"start": 215,
"end": 237,
"text": "(Wiseman et al., 2015;",
"ref_id": "BIBREF66"
},
{
"start": 238,
"end": 254,
"text": "Lee et al., 2017",
"ref_id": "BIBREF24"
},
{
"start": 255,
"end": 273,
"text": "Lee et al., , 2018",
"ref_id": "BIBREF25"
},
{
"start": 274,
"end": 301,
"text": "Kantor and Globerson, 2019;",
"ref_id": "BIBREF19"
},
{
"start": 302,
"end": 321,
"text": "Joshi et al., 2020)",
"ref_id": "BIBREF16"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "Well-known examples of this trend are work on the cases of anaphora whose interpretation requires some form of commonsense knowledge tested by benchmarks for the Winograd Schema Challenge (Rahman and Ng, 2012; Liu et al., 2017; Sakaguchi et al., 2020) , or the pronominal anaphors that cannot be resolved purely using gender, for which benchmarks such as GAP have been developed (Webster et al., 2018) . GAP, however, still focused on identity coreference.",
"cite_spans": [
{
"start": 188,
"end": 209,
"text": "(Rahman and Ng, 2012;",
"ref_id": "BIBREF53"
},
{
"start": 210,
"end": 227,
"text": "Liu et al., 2017;",
"ref_id": "BIBREF27"
},
{
"start": 228,
"end": 251,
"text": "Sakaguchi et al., 2020)",
"ref_id": "BIBREF56"
},
{
"start": 379,
"end": 401,
"text": "(Webster et al., 2018)",
"ref_id": "BIBREF65"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "In addition, more research has been carried out on aspects of anaphoric interpretation that go beyond identity anaphora but are covered by datasets such as ARRAU (Poesio et al., 2018; Uryupina et al., 2020) . These include, e.g., bridging reference (Clark, 1977; Hou et al., 2018; Hou, 2020; Yu and Poesio, 2020; Kobayashi and Ng, 2021) , discourse deixis (Webber, 1991; Marasovi\u0107 et al., 2017; or split-antecedent anaphora (Eschenbach et al., 1989; Vala et al., 2016; Zhou and Choi, 2018; Yu et al., 2020b .",
"cite_spans": [
{
"start": 162,
"end": 183,
"text": "(Poesio et al., 2018;",
"ref_id": "BIBREF46"
},
{
"start": 184,
"end": 206,
"text": "Uryupina et al., 2020)",
"ref_id": "BIBREF59"
},
{
"start": 249,
"end": 262,
"text": "(Clark, 1977;",
"ref_id": "BIBREF6"
},
{
"start": 263,
"end": 280,
"text": "Hou et al., 2018;",
"ref_id": "BIBREF15"
},
{
"start": 281,
"end": 291,
"text": "Hou, 2020;",
"ref_id": null
},
{
"start": 292,
"end": 312,
"text": "Yu and Poesio, 2020;",
"ref_id": "BIBREF71"
},
{
"start": 313,
"end": 336,
"text": "Kobayashi and Ng, 2021)",
"ref_id": "BIBREF21"
},
{
"start": 356,
"end": 370,
"text": "(Webber, 1991;",
"ref_id": "BIBREF64"
},
{
"start": 371,
"end": 394,
"text": "Marasovi\u0107 et al., 2017;",
"ref_id": "BIBREF29"
},
{
"start": 424,
"end": 449,
"text": "(Eschenbach et al., 1989;",
"ref_id": "BIBREF10"
},
{
"start": 450,
"end": 468,
"text": "Vala et al., 2016;",
"ref_id": "BIBREF60"
},
{
"start": 469,
"end": 489,
"text": "Zhou and Choi, 2018;",
"ref_id": "BIBREF73"
},
{
"start": 490,
"end": 506,
"text": "Yu et al., 2020b",
"ref_id": "BIBREF69"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "There has been interest in other genres apart from news. This includes substantial research on annotating and resolving coreference in biomedical and other scientific domains (Cohen et al., 2017; Lu and Poesio, 2021) as well as in literary documents (Bamman et al., 2020) . There are, however, language genres still understudied in the literature on anaphoric reference. Arguably the most important among these is conversational language in dialogue. Anaphora resolution in dialogue requires systems to handle grammatically incorrect language suffering from disfluencies. Dialogue involves much more deictic reference, vaguer anaphoric and discourse deictic reference, speaker grounding of pronouns and long-distance conversation structure. These are complexities that are often missing in news or Wikipedia articles, which form a large chunk of current datasets for coreference resolution. There has been some research on coreference in dialogue (Byron, 2002; Eckert and Strube, 2001; M\u00fcller, 2008) , but very limited in scope (primarily related to pronominal interpretation), due to the lack of suitable corpora. The one language for which substantial corpora of coreference in dialogue exist is French: the ANCOR corpus (Muzerelle et al., 2014) has enabled the development of an end-to-end neural model for coreference interpretation in dialogue by Grobol (2020) . For English, the one resource we are aware of fully annotated for anaphoric reference is the TRAINS corpora included in the ARRAU corpus (Uryupina et al., 2020) .",
"cite_spans": [
{
"start": 175,
"end": 195,
"text": "(Cohen et al., 2017;",
"ref_id": "BIBREF7"
},
{
"start": 196,
"end": 216,
"text": "Lu and Poesio, 2021)",
"ref_id": "BIBREF28"
},
{
"start": 250,
"end": 271,
"text": "(Bamman et al., 2020)",
"ref_id": "BIBREF0"
},
{
"start": 947,
"end": 960,
"text": "(Byron, 2002;",
"ref_id": "BIBREF1"
},
{
"start": 961,
"end": 985,
"text": "Eckert and Strube, 2001;",
"ref_id": "BIBREF9"
},
{
"start": 986,
"end": 999,
"text": "M\u00fcller, 2008)",
"ref_id": "BIBREF34"
},
{
"start": 1223,
"end": 1247,
"text": "(Muzerelle et al., 2014)",
"ref_id": "BIBREF36"
},
{
"start": 1352,
"end": 1365,
"text": "Grobol (2020)",
"ref_id": "BIBREF12"
},
{
"start": 1505,
"end": 1528,
"text": "(Uryupina et al., 2020)",
"ref_id": "BIBREF59"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "The objective of the CODI-CRAC 2021 Shared Task in Anaphora Resolution in Dialogue 1 was to provide participants with the opportunity to develop automated approaches for coreference resolution that tackle less studied forms of anaphora and generalize on different types of conversational setups. Specifically, the shared task is divided in three tasks that individually tackle a particular anaphoric relation: identity, bridging, and discourse deixis. To evaluate the participating systems, we provide development and test sets consisting of four conversational datasets from different domains newly annotated with the above-mentioned relations. This lack of in-domain training data also poses research challenges related to transfer learning and out-of-domain generalization of learned representations. To accommodate for systems that use gold/predicted mentions for bridging and discourse deixis tasks, we set up separate leaderboards for the two settings. Our goal in this paper is to present an overview of the CODI-CRAC 2021 shared task. We begin by providing some background in Section 2 and introducing the new CODI-CRAC 2021 corpus in Section 3. We then provide an extensive overview of the different CODI-CRAC 2021 tasks, markable settings, and evaluation metrics in Section 4, and submission details in Section 5. This is followed by details of the baselines in Section 6 and participating systems in Section 7. We present a discussion of the performance of the systems on different tasks and sub-corpora in Section 8, and finally conclude this paper in Section 9.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "Most modern anaphoric annotation projects cover basic identity anaphora as in (1).",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Beyond Identity Coreference",
"sec_num": "2.1"
},
{
"text": "(",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Beyond Identity Coreference",
"sec_num": "2.1"
},
{
"text": "1) [Mary] i bought [a new dress] j but [it] j didn't fit [her] i .",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Beyond Identity Coreference",
"sec_num": "2.1"
},
{
"text": "However, many other types of identity anaphora exist, as well as other types of anaphoric relations that are not annotated in ONTONOTES but are annotated in other corpora.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Beyond Identity Coreference",
"sec_num": "2.1"
},
{
"text": "Split-antecedent anaphora In ONTONOTES, plural reference is only marked when the antecedent is mentioned by a single noun phrase. However, split-antecedent anaphors are also possible (Eschenbach et al., 1989; Kamp and Reyle, 1993) , as in (2). These are also cases of plural identity coreference, but to sets composed of two or more entities introduced by separate noun phrases. Such references are annotated in, e.g., ARRAU (Uryupina et al., 2020) , GUM (Zeldes, 2017) and Phrase Detectives (Poesio et al., 2019) .",
"cite_spans": [
{
"start": 183,
"end": 208,
"text": "(Eschenbach et al., 1989;",
"ref_id": "BIBREF10"
},
{
"start": 209,
"end": 230,
"text": "Kamp and Reyle, 1993)",
"ref_id": "BIBREF18"
},
{
"start": 425,
"end": 448,
"text": "(Uryupina et al., 2020)",
"ref_id": "BIBREF59"
},
{
"start": 455,
"end": 469,
"text": "(Zeldes, 2017)",
"ref_id": "BIBREF72"
},
{
"start": 492,
"end": 513,
"text": "(Poesio et al., 2019)",
"ref_id": "BIBREF45"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Beyond Identity Coreference",
"sec_num": "2.1"
},
{
"text": "(2) [John] 1 met [Mary] 2 . [He] 1 greeted [her] 2 .",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Beyond Identity Coreference",
"sec_num": "2.1"
},
{
"text": "[They] 1,2 went to the movies.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Beyond Identity Coreference",
"sec_num": "2.1"
},
{
"text": "Discourse deixis In ONTONOTES, event anaphora, a subtype of discourse deixis (Webber, 1991; is marked, as in (3) (where [that] arguably refers to the event of a white rabbit with pink ears running past Alice) but not the whole range of abstract anaphora, illustrated by, e.g., 4, where again arguably [this] refers to the fact that the Rabbit was able to talk. (Both examples from the Phrase Detectives corpus (Poesio et al., 2019) .)",
"cite_spans": [
{
"start": 77,
"end": 91,
"text": "(Webber, 1991;",
"ref_id": "BIBREF64"
},
{
"start": 410,
"end": 431,
"text": "(Poesio et al., 2019)",
"ref_id": "BIBREF45"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Beyond Identity Coreference",
"sec_num": "2.1"
},
{
"text": "(3) So she was considering in her own mind (as well as she could, for the hot day made her feel very sleepy and stupid), whether the pleasure of making a daisy-chain would be worth the trouble of getting up and picking the daisies, when suddenly a White Rabbit with pink eyes ran close by her. There was nothing so VERY remarkable in [that] ; nor did Alice think it so VERY much out of the way to hear the Rabbit say to itself, 'Oh dear! Oh dear! I shall be late!' (when she thought it over afterwards, it occurred to her that she ought to have wondered at this, but at the time it all seemed quite natural); ... (4) There was nothing so VERY remarkable in that; nor did Alice think it so VERY much out of the way to hear the Rabbit say to itself, 'Oh dear! Oh dear! I shall be late!' (when she thought it over afterwards, it occurred to her that she ought to have wondered at [this] , but at the time it all seemed quite natural); but when the Rabbit actually TOOK A WATCH OUT OF ITS WAISTCOAT-POCKET, and looked at it, and then hurried on, Alice started to her feet, for it flashed across her mind that she had never before seen a rabbit with either a waistcoat-pocket, or a watch to take out of it, and burning with curiosity, she ran across the field after it, and fortunately was just in time to see it pop down a large rabbithole under the hedge.",
"cite_spans": [
{
"start": 334,
"end": 340,
"text": "[that]",
"ref_id": null
},
{
"start": 877,
"end": 883,
"text": "[this]",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Beyond Identity Coreference",
"sec_num": "2.1"
},
{
"text": "Bridging references There are other forms of anaphoric reference besides identity, and there are now a number of corpora annotating (a subset of) these forms. Possibly the most studied of nonidentity anaphora is bridging reference or associative anaphora (Clark, 1977; Hawkins, 1978; Prince, 1981) as in (5), where bridging reference / associative anaphora the roof refers to an object which is related to / associated with, but not identical to, the hall. We also take bridging reference to cover other anaphora as in (6), as well as other cases of association such as identity of sense anaphora, etc. (Poesio, 2016 ).",
"cite_spans": [
{
"start": 255,
"end": 268,
"text": "(Clark, 1977;",
"ref_id": "BIBREF6"
},
{
"start": 269,
"end": 283,
"text": "Hawkins, 1978;",
"ref_id": "BIBREF13"
},
{
"start": 284,
"end": 297,
"text": "Prince, 1981)",
"ref_id": "BIBREF52"
},
{
"start": 603,
"end": 616,
"text": "(Poesio, 2016",
"ref_id": "BIBREF43"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Beyond Identity Coreference",
"sec_num": "2.1"
},
{
"text": "(5) There was not a moment to be lost: away went Alice like the wind, and was just in time to hear it say, as it turned a corner, 'Oh my ears and whiskers, how late it's getting!' She was close behind it when she turned the corner, but the Rabbit was no longer to be seen: she found herself in [a long, low hall, which was lit up by a row of lamps hanging from [the roof]]. There were doors all round the hall, but they were all locked; and when Alice had been all the way down one side and up the other, trying every door, she walked sadly down [the middle], wondering how she was ever to get out again.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Beyond Identity Coreference",
"sec_num": "2.1"
},
{
"text": "(6) There was not a moment to be lost: away went Alice like the wind, and was just in time to hear it say, as it turned a corner, 'Oh my ears and whiskers, how late it's getting!' She was close behind it when she turned the corner, but the Rabbit was no longer to be seen: she found herself in a long, low hall, which was lit up by a row of lamps hanging from the roof. There were doors all round the hall, but they were all locked; and when Alice had been all the way down [one side] and up [the other], trying every door, she walked sadly down the middle, wondering how she was ever to get out again.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Beyond Identity Coreference",
"sec_num": "2.1"
},
{
"text": "The more general types of anaphoric reference just discussed are now routinely annotated in a number of corpora, including ANCORA (Recasens and Mart\u00ed, 2010) , ARRAU (Uryupina et al., 2020) , GNOME (Poesio, 2004) , GUM (Zeldes, 2017) , IS-NOTES (Markert et al., 2012) , the Prague Dependency Treebank (Nedoluzhko, 2013) , and T\u00dcBA-DZ (Versley, 2008) . (See for a more detailed survey and Nedoluzhko et al. 2021for a more recent, extensive update.)",
"cite_spans": [
{
"start": 130,
"end": 156,
"text": "(Recasens and Mart\u00ed, 2010)",
"ref_id": "BIBREF55"
},
{
"start": 165,
"end": 188,
"text": "(Uryupina et al., 2020)",
"ref_id": "BIBREF59"
},
{
"start": 197,
"end": 211,
"text": "(Poesio, 2004)",
"ref_id": "BIBREF42"
},
{
"start": 218,
"end": 232,
"text": "(Zeldes, 2017)",
"ref_id": "BIBREF72"
},
{
"start": 244,
"end": 266,
"text": "(Markert et al., 2012)",
"ref_id": "BIBREF31"
},
{
"start": 300,
"end": 318,
"text": "(Nedoluzhko, 2013)",
"ref_id": "BIBREF38"
},
{
"start": 333,
"end": 348,
"text": "(Versley, 2008)",
"ref_id": "BIBREF61"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "The CRAC 2018 Shared Task",
"sec_num": "2.2"
},
{
"text": "Some of these resources are of a sufficient size to support shared tasks. In particular, the AR-RAU corpus was used as the dataset for the Shared Task on Anaphora Resolution with ARRAU in the CRAC 2018 Workshop (Poesio et al., 2018) . That shared task was articulated around three tasks: identity coreference (including identification of nonreferring expressions), bridging references, and discourse deixis. The organization of the shared task resulted in the development of an extended version of the Coreference Reference Scorer (Pradhan et al., 2014) , which also scores non-referring expressions. Separate scorers were developed for bridging reference resolution, carrying out both mention-based evaluation and entity-based evaluation of bridging references, as done by Hou et al. (2018) , and for discourse deixis, based on Kolhatkar and Hirst (2014) . The present shared task was modeled on that.",
"cite_spans": [
{
"start": 211,
"end": 232,
"text": "(Poesio et al., 2018)",
"ref_id": "BIBREF46"
},
{
"start": 531,
"end": 553,
"text": "(Pradhan et al., 2014)",
"ref_id": "BIBREF49"
},
{
"start": 774,
"end": 791,
"text": "Hou et al. (2018)",
"ref_id": "BIBREF15"
},
{
"start": 829,
"end": 855,
"text": "Kolhatkar and Hirst (2014)",
"ref_id": "BIBREF22"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "The CRAC 2018 Shared Task",
"sec_num": "2.2"
},
{
"text": "In order to enable further progress in the empirical study of anaphora by coordinating the many existing efforts to annotate not just identity coreference, but all aspects of anaphoric interpretation from identity of sense anaphora to bridging to discourse deixis; and not just for English, but all languages, the Universal Anaphora (UA) initiative was launched in 2020. 2 Progress so far includes a first proposal concerning the range of phenomena to be covered, as well as a survey of the range of existing anaphoric annotations and a proposal for a markup format extending the CONLL-U format developed by the Universal Dependencies initiative 3 with mechanisms for marking up the range of anaphoric information covered by UA. Crucially, a scorer able to evaluate all types of anaphoric reference in the scope of the proposal was also developed, which we used in this shared task. The scorer is briefly discussed in Section 4.2.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Universal Anaphora",
"sec_num": "2.3"
},
{
"text": "A limitation of most resources annotated for anaphora is that they mostly focus on expository text. The one substantial dataset of anaphoric relations in dialogue is ANCOR for French (Muzerelle et al., 2014) , in which identity and bridging anaphora are annotated. Among the small number of English corpora that cover dialogue include ONTONOTES (Pradhan et al., 2012) , which contains a small number of conversations annotated for identity anaphora and a small subtype of discourse deixis (as discussed earlier). ARRAU's (Poesio and Artstein, 2008; Uryupina et al., 2020) TRAINS sub-corpus consists of task-oriented dialogues for identity, bridging, and discourse deixis. We include TRAINS in CODI-CRAC 2021 training data. The more recently released ONTOGUM (Zhu et al., 2021) builds upon the ONTONOTES schema and adds several new genres (including more spoken data) to the ONTONOTES family. Both identity anaphora and bridging are annotated in the dataset.",
"cite_spans": [
{
"start": 183,
"end": 207,
"text": "(Muzerelle et al., 2014)",
"ref_id": "BIBREF36"
},
{
"start": 345,
"end": 367,
"text": "(Pradhan et al., 2012)",
"ref_id": "BIBREF50"
},
{
"start": 521,
"end": 548,
"text": "(Poesio and Artstein, 2008;",
"ref_id": "BIBREF44"
},
{
"start": 549,
"end": 571,
"text": "Uryupina et al., 2020)",
"ref_id": "BIBREF59"
},
{
"start": 758,
"end": 776,
"text": "(Zhu et al., 2021)",
"ref_id": "BIBREF74"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Datasets of Anaphora in Dialogue",
"sec_num": "2.4"
},
{
"text": "One of the objectives of the CODI-CRAC 2021 Shared Task was to annotate new data for studying anaphora in dialogue. The only existing dataset covering the full range of phenomena and with some coverage of dialogue, the ARRAU data used for the CRAC 2018 Shared Task, was used as training material. In addition, new data from dialogue corpora were annotated for development and testing using the same annotation scheme used in AR-RAU.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The CODI-CRAC 2021 Corpus",
"sec_num": "3"
},
{
"text": "Genres The ARRAU corpus 4 (Poesio and Artstein, 2008; Uryupina et al., 2020 ) was designed to cover a variety of genres. It includes a substantial amount of news text in a sub-corpus called RST, consisting of the entire subset of the Penn Treebank (Marcus et al., 1993) that was annotated in the RST treebank (Carlson et al., 2003) . In addition to the news data, ARRAU includes three more sub-corpora. The TRAINS sub-corpus includes all the task-oriented dialogues in the TRAINS-93 corpus 5 as well as the pilot dialogues in the socalled TRAINS-91 corpus. The PEAR sub-corpus consists of the complete collection of spoken nar-ratives in the Pear Stories that provided some of the early evidence on salience and anaphoric reference (Chafe, 1980) , and the GNOME sub-corpus covers documents from the medical and art history genres covered by the GNOME corpus (Poesio, 2004) . The same coding scheme was used for all sub-corpora, but separate guidelines were written for the textual and the spoken dialogue sub-corpora. RST, TRAINS-93 and PEAR were used for the CRAC 2018 shared task. For this year's shared task, TRAINS-91 was used for development in the trial phase, whereas all other datasets were used for training. 6",
"cite_spans": [
{
"start": 26,
"end": 53,
"text": "(Poesio and Artstein, 2008;",
"ref_id": "BIBREF44"
},
{
"start": 54,
"end": 75,
"text": "Uryupina et al., 2020",
"ref_id": "BIBREF59"
},
{
"start": 248,
"end": 269,
"text": "(Marcus et al., 1993)",
"ref_id": "BIBREF30"
},
{
"start": 309,
"end": 331,
"text": "(Carlson et al., 2003)",
"ref_id": "BIBREF4"
},
{
"start": 732,
"end": 745,
"text": "(Chafe, 1980)",
"ref_id": "BIBREF5"
},
{
"start": 858,
"end": 872,
"text": "(Poesio, 2004)",
"ref_id": "BIBREF42"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "ARRAU: Corpus and Annotation Scheme",
"sec_num": "3.1"
},
{
"text": "Annotation scheme The original annotation scheme used for Release 1 (Poesio and Artstein, 2008) is distributed with the dataset and is also available from the ARRAU corpus page. For the second release (Uryupina et al., 2020) , the guidelines for bridging were extended and genericity was also annotated using the GNOME guidelines, but a complete new manual was not produced. However, a fairly extensive description can be found in Uryupina et al. (2020) . Following the CRAC 2018 shared task, the guidelines for bridging, semantic category and genericity were further revised as part of the work on ARRAU Release 3, which is almost ready, and a full revision of the annotation manual was also started. These guidelines were used in the current annotation. A brief summary follows.",
"cite_spans": [
{
"start": 68,
"end": 95,
"text": "(Poesio and Artstein, 2008)",
"ref_id": "BIBREF44"
},
{
"start": 201,
"end": 224,
"text": "(Uryupina et al., 2020)",
"ref_id": "BIBREF59"
},
{
"start": 431,
"end": 453,
"text": "Uryupina et al. (2020)",
"ref_id": "BIBREF59"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "ARRAU: Corpus and Annotation Scheme",
"sec_num": "3.1"
},
{
"text": "Markable definition Many, especially among the older, anaphorically annotated corpora impose syntactic, semantic or discourse-based restrictions on markables. For instance, in ONTONOTES neither expletives nor singletons are annotated (for a discussion of the state of the art in anaphoric annotation, see ). By contrast, in ARRAU all NPs are considered as markables, including non-referring expressions (e.g., expletives such as it or predicative NPs such as a busy place) in 7, and expressions do not corefer with any other markable and thus form a singleton coreference chain. Moreover, in ARRAU non-referring markables are manually sub-classified into expletives, predicative, and quantifiers. In addition, all generic references are marked, including premodifiers when the entity referred to is mentioned again, e.g., in the case of the proper name US in (8), and premodifiers that refer to a kind, like exchange-rate in (9). 7 Bridging references Annotating -indeed, even identifying -bridging references in a reliable way is difficult, which is one of the reasons why so few large-scale corpora for anaphora include this type of annotation Kobayashi and Ng, 2020) . The ARRAU guidelines for bridging anaphora are based on experiments that were started by Vieira and Poesio (Poesio and Vieira, 1998) and continued in the GNOME project (Poesio, 2004) . The ARRAU Release 1 guidelines followed the GNOME guidelines, but with an extension and a simplification. Annotators were asked to mark a markable as related to a particular antecedent if it stood to that antecedent in one of the relations identified in GNOME (indeed, the same examples were used), and in addition, if they stood in two additional relations (but without testing the reliability of this annotation):",
"cite_spans": [
{
"start": 1146,
"end": 1169,
"text": "Kobayashi and Ng, 2020)",
"ref_id": "BIBREF20"
},
{
"start": 1279,
"end": 1304,
"text": "(Poesio and Vieira, 1998)",
"ref_id": "BIBREF48"
},
{
"start": 1340,
"end": 1354,
"text": "(Poesio, 2004)",
"ref_id": "BIBREF42"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "ARRAU: Corpus and Annotation Scheme",
"sec_num": "3.1"
},
{
"text": "\u2022 other, for other NPs, broadly following the guidelines in Modjeska (2003) ;",
"cite_spans": [
{
"start": 60,
"end": 75,
"text": "Modjeska (2003)",
"ref_id": "BIBREF32"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "ARRAU: Corpus and Annotation Scheme",
"sec_num": "3.1"
},
{
"text": "\u2022 an undersp-rel relation for 'obvious cases of bridging that didn't fit any other category'.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "ARRAU: Corpus and Annotation Scheme",
"sec_num": "3.1"
},
{
"text": "Discourse deixis Discourse deixis in its full form is a very complex form of reference, both to annotate and to resolve. Very few anaphoric annotation projects have attempted to annotate discourse deixis in its entirety . More typical is a partial annotation, as in (Byron and Allen, 1998; Navarretta, 2000) , who annotated pronominal reference to abstract objects; in ONTONOTES, where event anaphora was marked (Pradhan et al., 2007) ; and in the work of Kolhatkar and Hirst (2014) , which focused on so-called shell nouns. In ARRAU, A coder specifying that a referring expression is discourseold is asked whether its antecedent was introduced using a phrase (markable) or a segment (discourse segment). Coders who choose segment have to mark a sequence of predefined clauses.",
"cite_spans": [
{
"start": 266,
"end": 289,
"text": "(Byron and Allen, 1998;",
"ref_id": "BIBREF2"
},
{
"start": 290,
"end": 307,
"text": "Navarretta, 2000)",
"ref_id": "BIBREF37"
},
{
"start": 412,
"end": 434,
"text": "(Pradhan et al., 2007)",
"ref_id": "BIBREF51"
},
{
"start": 456,
"end": 482,
"text": "Kolhatkar and Hirst (2014)",
"ref_id": "BIBREF22"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "ARRAU: Corpus and Annotation Scheme",
"sec_num": "3.1"
},
{
"text": "The annotated corpus prepared for the CODI-CRAC 2021 shared task consists of conversations from four well-known conversational datasets: the AMI corpus (Carletta, 2006) , the LIGHT corpus (Urbanek et al., 2019) , the PERSUASION corpus (Wang et al., 2019) and SWITCHBOARD (Godfrey et al., 1992) . For each of these datasets, documents for about 15K tokens were annotated for development, and about the same number of tokens were annotated for testing, according to the ARRAU annotation scheme.",
"cite_spans": [
{
"start": 152,
"end": 168,
"text": "(Carletta, 2006)",
"ref_id": "BIBREF3"
},
{
"start": 188,
"end": 210,
"text": "(Urbanek et al., 2019)",
"ref_id": "BIBREF58"
},
{
"start": 235,
"end": 254,
"text": "(Wang et al., 2019)",
"ref_id": "BIBREF63"
},
{
"start": 271,
"end": 293,
"text": "(Godfrey et al., 1992)",
"ref_id": "BIBREF11"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "New Data",
"sec_num": "3.2"
},
{
"text": "Switchboard SWITCHBOARD 8 (Godfrey et al., 1992) is one of the best known dialogue corpora. It consists of 1,155 five-minute spontaneous telephone conversations between two participants not previously acquainted with each other. In these conversations, callers question receivers on provided topics, such as child care, recycling, and news media. 440 speakers participate in these 1,155 conversations, producing 221,616 utterances. It was annotated for dialogue acts by Stolcke et al. (1997) 9 and for information status by Nissim et al. (2004) .",
"cite_spans": [
{
"start": 26,
"end": 48,
"text": "(Godfrey et al., 1992)",
"ref_id": "BIBREF11"
},
{
"start": 470,
"end": 493,
"text": "Stolcke et al. (1997) 9",
"ref_id": null
},
{
"start": 524,
"end": 544,
"text": "Nissim et al. (2004)",
"ref_id": "BIBREF40"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "New Data",
"sec_num": "3.2"
},
{
"text": "AMI The AMI corpus 10 (Carletta, 2006) is a collection of 100 hours of meeting recordings between several participants. The recordings include signals from close-talking and far-field microphones, individual and room-view video cameras, and output from a slide projector and an electronic whiteboard. Several types of annotation were carried out, including dialogue acts, topics, summaries, named entities, and focus of attention.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "New Data",
"sec_num": "3.2"
},
{
"text": "Light Amazon, Facebook, Google, and other AI companies have all created dialogue corpora in recent years to support their research on conversational agents. LIGHT (Urbanek et al., 2019 ) is one of the many recently created corpora available on the Parl.ai platform. 11 LIGHT is a large-scale fantasy text adventure game research platform for training agents that can both talk and act, interacting either with other models or with humans. The LIGHT corpus was entirely created through crowdsourcing at different levels. In the first round, workers created a number of settings (the King's palace, the dark forest, etc); then in a second round workers created fitting characters for each scenario, providing information about their background history, their personality, etc. Finally, in a third round, workers created dialogues between these characters.",
"cite_spans": [
{
"start": 163,
"end": 184,
"text": "(Urbanek et al., 2019",
"ref_id": "BIBREF58"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "New Data",
"sec_num": "3.2"
},
{
"text": "Persuasion The Persuasion for Good corpus 12 (Wang et al., 2019 ) is a collection of online conversations generated by Amazon Mechanical Turk workers, where one participant (the persuader) tries to convince the other (the persuadee) to donate to a charity. 1017 conversations were collected in total, along with demographic data and responses to psychological surveys from users. Several speakerlevel annotations were marked, including, e.g., demographics, the big five personality traits, etc.",
"cite_spans": [
{
"start": 45,
"end": 63,
"text": "(Wang et al., 2019",
"ref_id": "BIBREF63"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "New Data",
"sec_num": "3.2"
},
{
"text": "The dataset was annotated using the same MMAX2 tool (M\u00fcller and Strube, 2006 ) -indeed, almost exactly the same MMAX style -and by the same two annotators from the DALI team at Queen Mary University and University of Essex, Dr. Maris Camilleri and Dr. Paloma Carretero Garcia, who annotated and checked ARRAU Release 3, which is currently being prepared for release. However, due to time constraints, each document was only annotated by a single annotator, with spot checks carried out by the other annotator and Massimo Poesio (in ARRAU 3 each document was looked at by both annotators, and most documents were also independently checked by Massimo Poesio).",
"cite_spans": [
{
"start": 52,
"end": 76,
"text": "(M\u00fcller and Strube, 2006",
"ref_id": "BIBREF35"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Annotation",
"sec_num": "3.3"
},
{
"text": "To prepare the data for the shared task, mentions were automatically extracted using the mention detector from Yu et al. (2020a) , and the output converted into MMAX XML format.",
"cite_spans": [
{
"start": 111,
"end": 128,
"text": "Yu et al. (2020a)",
"ref_id": "BIBREF68"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Annotation",
"sec_num": "3.3"
},
{
"text": "Some basic statistics about the CODI-CRAC 2021 dataset are provided in Table 1 . For each dataset, the Table reports number of documents, size in tokens, number of markables, and how many of these are Discourse Old (Identity Coreference) anaphors (DO), bridging references, and discourse deixis. With a total of 147,725 tokens and 41,807 markables, the CODI-CRAC 2021 dataset is to our knowledge the largest dataset annotated for anaphoric interpretation in dialogue, almost twice the size of ARRAU's TRAINS sub-corpus in tokens and more than twice its size in markables.",
"cite_spans": [],
"ref_spans": [
{
"start": 71,
"end": 78,
"text": "Table 1",
"ref_id": "TABREF2"
}
],
"eq_spans": [],
"section": "The Corpus",
"sec_num": "3.4"
},
{
"text": "After annotation, the documents were converted into the CONLL-UA 'Extended' format used by the scorer, described by a document on the Universal Anaphora site. 13 AMI, LIGHT and PERSUASION are freely available from the Shared Task Codalab site. ARRAU and SWITCHBOARD are distributed by LDC. 14",
"cite_spans": [
{
"start": 159,
"end": 161,
"text": "13",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "The Corpus",
"sec_num": "3.4"
},
{
"text": "Following the structure of the CRAC 2018 Shared Task, CODI-CRAC 2021 was articulated around three tasks covering three key aspects of anaphoric interpretation: identity anaphora, bridging anaphora, and discourse deixis. Participants or groups could participate in one or more tasks.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Task Description",
"sec_num": "4"
},
{
"text": "13 https://github.com/UniversalAnaphora/ UniversalAnaphora/blob/main/UA_CONLL_U_ Plus_proposal_v1.0.md 14 ARRAU is also freely available to any group that purchased the Penn Treebank and TRAINS-93 corpora from LDC. ",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Task Description",
"sec_num": "4"
},
{
"text": "Bridging reference resolution and discourse deixis are very difficult tasks. In consideration of this, the Bridging (Task 2) and Discourse Deixis (Task 3) tasks were further divided into system and gold settings, according to whether the markables would be predicted by the system or provided by the organizers. The two settings were run in order -the gold setting became available after the runs under the system setting had been submitted. The two settings were scored separately and independently.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Markable Settings",
"sec_num": "4.1"
},
{
"text": "The new Universal Anaphora (UA) scorer was used to evaluate the systems. This is a Python scorer for the varieties of anaphoric reference covered by the Universal Anaphora guidelines, which include identity reference, split antecedent plurals, identification of non-referring expressions, bridging reference, and discourse deixis. The scorer builds on the original Reference Coreference scorer 15 (Pradhan et al., 2014) developed for use in the CONLL 2011 and 2012 shared tasks on the ONTONOTES corpus (Pradhan et al., 2012) and its reimplementation in Python by Moosavi 16 , which was already extended to evaluate non-referring expressions evaluation and cover singletons for the CRAC 2018 shared task (Poesio et al., 2018) . The scorer reports scores for identity reference (with and without singletons and nonreferring expressions -in the modality without singletons and non referring expressions the scorer is compatible with the original Coreference Reference scorer -split antecedents, bridging reference, and discourse deixis). For identity reference, the scorer reports the MUC, B 3 , CEAF, CONLL (the unweighted average of MUC, B 3 , and CEAF) (Pradhan et al., 2014), BLANC (Recasens and Hovy, 2011) , and LEA (Moosavi and Strube, 2016) scores. The same scores are also computed for discourse deixis, which is treated as a generalized case of event coreference. For split antecedents, a generalization of these metrics following Paun et al. (2021) was developed. Entity F1 is computed for bridging-i.e., a system's interpretation is deemed correct as long as any mention of the correct anchor is found, as done e.g., in Hou et al. (2018) .",
"cite_spans": [
{
"start": 703,
"end": 724,
"text": "(Poesio et al., 2018)",
"ref_id": "BIBREF46"
},
{
"start": 1183,
"end": 1208,
"text": "(Recasens and Hovy, 2011)",
"ref_id": "BIBREF54"
},
{
"start": 1629,
"end": 1646,
"text": "Hou et al. (2018)",
"ref_id": "BIBREF15"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "The Universal Anaphora Scorer",
"sec_num": "4.2"
},
{
"text": "The UA scorer can be run in a number of ways. The following settings were used for the individual tasks. 17",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Setting of the Scorer used in the Shared Task",
"sec_num": "4.3"
},
{
"text": "Task 1 For Task 1, the Evaluating coreference relations (including split-antecedents) and singletons modality was used. Non-referring expressions identification were not scored.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Setting of the Scorer used in the Shared Task",
"sec_num": "4.3"
},
{
"text": "python ua-scorer.py key system Task 2 For Task 2, the scorer was called using the command:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Setting of the Scorer used in the Shared Task",
"sec_num": "4.3"
},
{
"text": "python ua-scorer.py key system \\ keep_bridging Task 3 Finally, for Task 3, the scorer was called using the command:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Setting of the Scorer used in the Shared Task",
"sec_num": "4.3"
},
{
"text": "python ua-scorer.py key system \\ evaluate_discourse_deixis",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Setting of the Scorer used in the Shared Task",
"sec_num": "4.3"
},
{
"text": "We used CodaLab to evaluate submissions and distribute the datasets. In the development phase, the participants only had access to out-of-domain training data (e.g., the ARRAU corpus) and in-domain validation data. They could submit results to the public leaderboard to evaluate their systems. In addition, we also released the scoring script on Github to reduce the dependency on CodaLab during model development. During the evaluation phase, we released the unseen test set across four sub-corpora. The submissions were evaluated on each sub-corpus individually and the final ranking for each task was performed by taking the mean of the four scores. Due to the lack of in-domain training data, the participants were allowed to use additional resources.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Submission Details",
"sec_num": "5"
},
{
"text": "We released one baseline system for each task. We derive the baselines for identity and bridging anaphora from current state-of-the-art methods, and set up a simple yet effective method for discourse deixis. For Task 1, we used Xu and Choi (2020)'s coreference resolution model but without any higherorder inference. 18 We used the ONTONOTES (English) dataset for training and development. This model is then evaluated on CODI-CRAC 2021 datasets.",
"cite_spans": [
{
"start": 317,
"end": 319,
"text": "18",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Baselines",
"sec_num": "6"
},
{
"text": "For Task 2, the baseline was derived from (Yu and Poesio, 2020) . We used their single-task variant that is only trained on bridging annotations. We evaluated their best-performing model, which was trained on the RST sub-corpus of ARRAU, on CODI-CRAC 2021 data. 19 The baseline for Task 3 leverages a simple heuristic that only considers demonstrative pronouns (this, that) as anaphors and considers the immediately preceding clause/utterance in the conversation to be their antecedent. Although simplistic, the algorithm achieves respectable scores on the CODI-CRAC 2021 development corpus. The performance of each baseline on different sub-corpora is shown in Tables 3, 4, and 5.",
"cite_spans": [
{
"start": 42,
"end": 63,
"text": "(Yu and Poesio, 2020)",
"ref_id": "BIBREF71"
},
{
"start": 262,
"end": 264,
"text": "19",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Baselines",
"sec_num": "6"
},
{
"text": "To help participants interested in building upon these baselines, we released the scripts used in the baseline pipeline to convert the CODI-CRAC 2021 data from the CONLL-UA format to JSON structure and vice-versa for each task. 20 The scripts contain modules that can also be used independently to transform conversations into a format compatible with different transformer-based encoders, allowing participants to set optional arguments to specify the segment_size and tokenizer for the conversion.",
"cite_spans": [
{
"start": 228,
"end": 230,
"text": "20",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Baselines",
"sec_num": "6"
},
{
"text": "A total of 55 individual participants registered for the CODI-CRAC 2021 shared task on CodaLab. 21 Among them, five teams submitted results for Task 1, three submitted results for Task 2, and two submitted results for Task 3. Teams UTD_NLP, KU_NLP, DFKI_TalkingRobots, Emory_NLP, and INRIA submitted system description papers. We summarize their approaches below (and in Table 2): UTD_NLP participated in all three tasks. For identity anaphora, they deployed a pipeline architecture consisting of a mention detection component and an entity coreference component. The coreference component extends Xu and Choi (2020)'s implementation of Lee et al. (2018) by modifying the objective so that it can output singleton clusters, and enforces dialogue-specific constraints. They setup a similar architecture for discourse deixis. However, they slightly modified the objective function in Xu and Choi (2020) by classifying each span as a candidate anaphor, a candidate antecedent, or a non-mention in the mention detection stage, and resolving only candidate anaphors to candidate antecedents later. The team used a multi-pass sieve approach for bridging resolution to target same-head bridging links, with Yu and Poesio (2020) 's model as one of the sieves. In the gold setting, they trained an additional anaphor detection model (adapted from Yu and Poesio (2020)) to first identify the bridging anaphors from the gold markables before sending them to the sieves. for mention detection. The resulting mention representation, created from the constituent token representations, is then fed to a pointer-network (Vinyals et al., 2015 ) based coreference resolution model for clustering. They solved the bridging resolution problem using a machine reading comprehension framework, where they constructed a query for each entity of the form -\"What is related of EN-TITY?\". The input of their model is the query and the document (i.e., all utterances of dialogue), and the output is the entity span that is the answer for the query.",
"cite_spans": [
{
"start": 96,
"end": 98,
"text": "21",
"ref_id": null
},
{
"start": 637,
"end": 654,
"text": "Lee et al. (2018)",
"ref_id": "BIBREF25"
},
{
"start": 1200,
"end": 1220,
"text": "Yu and Poesio (2020)",
"ref_id": "BIBREF71"
},
{
"start": 1605,
"end": 1626,
"text": "(Vinyals et al., 2015",
"ref_id": "BIBREF62"
}
],
"ref_spans": [
{
"start": 371,
"end": 380,
"text": "Table 2):",
"ref_id": "TABREF4"
}
],
"eq_spans": [],
"section": "Participating Systems",
"sec_num": "7"
},
{
"text": "DFKI_TalkingRobots (DFKI) put forward two systems as their final submissions for the identity anaphora task. The Workspace Coreference System (WCS) attempts to incrementally cluster mentions using semantic similarity based on embeddings combined with lexical feature heuristics, whereas their Mention-to-Mention (M2M) architecture only focuses on mention pairs to make the decision. WCS and M2M use SpaCy and BiLSTM-CRF based mention detection components, respectively. For discourse deixis, the team deployed a Siamese Network to detect discourse anaphorantecedent pairs. They only focused on demonstrative pronouns (as anaphors), which they detected using the SpaCy NLP pipeline.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Participating Systems",
"sec_num": "7"
},
{
"text": "Emory_NLP (Emory) only participated in the identity anaphora task. Their system was adapted from the end-to-end neural coreference resolution model of Joshi et al. (2020) . They recognized singletons, encoded speakers for all turns, and leveraged other out-of-domain datasets during training.",
"cite_spans": [
{
"start": 151,
"end": 170,
"text": "Joshi et al. (2020)",
"ref_id": "BIBREF16"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Participating Systems",
"sec_num": "7"
},
{
"text": "INRIA submitted an end-to-end transformerbased model fine-tuned for the bridging resolution task. They formulated the bridging problem as antecedent selection, and leveraged Lee et al. (2018) ; Joshi et al. (2019) 's architecture to find the correct antecedent.",
"cite_spans": [
{
"start": 174,
"end": 191,
"text": "Lee et al. (2018)",
"ref_id": "BIBREF25"
},
{
"start": 194,
"end": 213,
"text": "Joshi et al. (2019)",
"ref_id": "BIBREF17"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Participating Systems",
"sec_num": "7"
},
{
"text": "In this section, we report the results of all systems submitted for each task and discuss the differences among these approaches.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Results and Discussion",
"sec_num": "8"
},
{
"text": "Task 1 saw the highest interest as five teams submitted a total of 36 runs to the official leaderboard. As discussed earlier, we report the CoNLL Avg. F1 score for each sub-corpus separately.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Task 1 -Identity Anaphora",
"sec_num": "8.1"
},
{
"text": "The results on different sub-corpora are reported in Table 3 . All five runs outperform the baseline in terms of the CoNLL Avg. F1 score. The best run on all four sub-corpora was submitted by lxucs (the Emory team) achieving around 75% or more CoNLL Avg. F1 on LIGHT, PERSUASION, and SWITCHBOARD, and the rankings across the four datasets remained relatively stable. AMI proved to be the toughest sub-corpus with the highest score being around 64%, which is 10 percentage points below that of SWITCHBOARD. This is in line with the organizers' expectations, as AMI proved the most difficult corpus to annotate, with lots of uncertainty and ambiguity. Also, the conversations in AMI are substantially longer than the other three datasets and hence require systems to consider longdistance relationships between mentions. Despite the differences in absolute performance on each sub-corpus, the best-performing system improved over the baseline by an impressive 30 CoNLL Avg. F1 percentage points.",
"cite_spans": [],
"ref_spans": [
{
"start": 53,
"end": 60,
"text": "Table 3",
"ref_id": "TABREF5"
}
],
"eq_spans": [],
"section": "Task 1 -Identity Anaphora",
"sec_num": "8.1"
},
{
"text": "Three teams participated in Task 2 with INRIA only participating in the gold mention setting. We report Entity F1 scores for each sub-corpora and calculate rankings based on the mean score across the four datasets. Table 4 summarizes the performance of each run. For the predicted setting Eval-Br (Pred), where the systems need to take a raw conversation as input during the inference time and perform both markable identification and bridging resolution, UTD_NLP performs the best across all four subcorpora. Although both participating systems perform similarly across SWITCHBOARD, AMI, and LIGHT (10 -15 Entity F1 points), UTD_NLP achieves an unusually high score on the PERSUA-SION dataset (for this task), reaching an Entity F1 of 21.92 percentage points. We see a similar trend in the gold setting (Table 2) , where UTD_NLP and INRIA score 8-10 absolute percentage points higher on PERSUASION (31.40 and 16.28 respectively) as compared to their scores on the other three datasets. Finally, the performance of the runs in the gold setting is substantially higher than that in the predicted setting for both UTD_NLP and KU_NLP even though the gold setting does not distinguish between the markables that are relevant for the three tasks in the competition.",
"cite_spans": [],
"ref_spans": [
{
"start": 215,
"end": 222,
"text": "Table 4",
"ref_id": "TABREF6"
},
{
"start": 804,
"end": 813,
"text": "(Table 2)",
"ref_id": "TABREF4"
}
],
"eq_spans": [],
"section": "Task 2 -Bridging Anaphora",
"sec_num": "8.2"
},
{
"text": "We received 25 runs for Task 3. Two teams (UTD_NLP, DFKI_TalkingRobots) submitted to the predicted mention setting with UTD_NLP achieving performance around 35-42 CoNLL Avg. F1 percentage points on the different sub-corpora, almost doubling the score of the second team. For the gold setting, where we released the gold markables, the system submitted by UTD_NLP did not improve their scores substantially on LIGHT, AMI, or SWITCHBOARD from the predicted setting. However, they managed a jump of more than 12 CoNLL Avg. F1 points on PERSUASION. All teams outperform the baseline system on all sub-corpora. The performance of both teams on Task 3 is summarized in Table 5 .",
"cite_spans": [],
"ref_spans": [
{
"start": 663,
"end": 670,
"text": "Table 5",
"ref_id": "TABREF7"
}
],
"eq_spans": [],
"section": "Task 3 -Discourse Deixis",
"sec_num": "8.3"
},
{
"text": "In retrospect, organizing this shared task required tackling a few too many issues in a short time, from annotating the data to developing a new scorer to devising fair ways to use the scorer to assess systems, to be able to address all of them in a completely satisfactory way. This is why we decided to run the same task again next year, with new test data but maintaining the same genres and annotation guidelines. The ARRAU 3 data and annotation manual should also be available, addressing some of the concerns raised by the participants.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Discussion",
"sec_num": "8.4"
},
{
"text": "It would be premature to infer too much about the tasks or the genres on the basis of this first experience, but some interesting issues are already emerging from the analysis papers, such as the complex use of first and second person pronouns in these datasets. We do hope it will be possible to carry out a more extensive analysis of the differences between these dialogue datasets and datasets based on written text and annotated for the same phenomena, such as the RST subcorpus of ARRAU.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Discussion",
"sec_num": "8.4"
},
{
"text": "We would also like to congratulate all participants for gallantly tackling these relatively new tasks and new datasets yet generally outperforming the baselines, some of which were non-trivial.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Discussion",
"sec_num": "8.4"
},
{
"text": "We presented a general overview of the CODI-CRAC 2021 shared task. As the first instance in this series, CODI-CRAC 2021 focused on resolving three types of anaphoric relations in dialogues: identity, bridging references, and discourse deixis. In addition, we described the CODI-CRAC 2021 corpus, which contains sub-corpora from different conversation genres newly annotated for the above-mentioned relations. While the teams were encouraged to create systems with generalizable representations using other out-of-domain state-ofthe-art coreference datasets during training, only the best-performing team for the entity coreference track did so. Finally, we included a brief summary of the different approaches used by the participants to tackle different tasks within the shared-task. For the shared-task's next installment, we plan to release the full annotation guidelines to reduce the ambiguity about annotation principles. Based on suggestions from participating teams (Team DFKI), we will introduce separate tracks to fairly evaluate the systems trained on the provided data vs. systems (pre-)trained on additional data, and discuss the possibility of using more fine-grained evaluation metrics to differentially evaluate cases of coreference based on their difficulty levels. (E.g., a black cat and the black cat are much easier to resolve compared to a black cat and the dark and furry creature.)",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Conclusion and Future Work",
"sec_num": "9"
},
{
"text": "https://competitions.codalab.org/ competitions/30312",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
},
{
"text": "https://universalanaphora.github.io/ UniversalAnaphora/ 3 https://universaldependencies.org/",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
},
{
"text": "http://www.arrauproject.org 5 http://www.ldc.upenn.edu/Catalog/ catalogEntry.jsp?catalogId=LDC95S25",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
},
{
"text": "The original intention had been to use the soon-to-bereleased ARRAU 3, but as the work on this version was still under way by the time the training data had to be released, ARRAU 2 was used instead-i.e., the exact same version used for the CRAC 2018 shared task.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
},
{
"text": "Identity anaphora also includes split antecedent plural anaphoric reference.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
},
{
"text": "https://catalog.ldc.upenn.edu/ LDC97S62",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
},
{
"text": "This version is available from https://convokit. cornell.edu/documentation/switchboard. html 10 https://groups.inf.ed.ac.uk/ami/ corpus/ 11 https://parl.ai/projects/light/ 12 https://convokit.cornell.edu/ documentation/persuasionforgood.html",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
},
{
"text": "https://github.com/conll/ reference-coreference-scorers16 https://github.com/ns-moosavi/coval",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
},
{
"text": "For a full description of the task(s), see https:// github.com/sopankhosla/codi2021_scripts/ blob/main/2021_CODI_CRAC_Introduction.md",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
},
{
"text": "https://github.com/lxucs/coref-hoi/ 19 https://github.com/juntaoy/ dali-bridging",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
},
{
"text": "The necessary scripts are available from https:// github.com/sopankhosla/codi2021_scripts21 Participants were allowed to create teams.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
},
{
"text": "Team SCIR did not submit a system description paper.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
}
],
"back_matter": [
{
"text": "We are very grateful to Maris Camilleri and Paloma Carretero Garcia, who annotated the dataset very quickly, and to the Linguistic Data Consortium, who very generously made the AR-RAU and SWITCHBOARD data available to the participants to the competition. We would also like to thank Team DFKI for their suggestions for the future of the shared task.Massimo Poesio wishes to thank Sharid Lo\u00e1iciga, Anja Nedoluzhko, Arndt Riester, Amir Zeldes, and several other participants in the Universal Anaphora initiative for discussions about anaphoric annotation and anaphoric annotation in dialogue in particular. The work of Massimo Poesio and Juntao Yu was funded by the the DALI project, ERC Grant 695662. The annotation was funded in part by DALI, in part by HITS Heidelberg.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Acknowledgments",
"sec_num": null
}
],
"bib_entries": {
"BIBREF0": {
"ref_id": "b0",
"title": "An annotated dataset of coreference in english literature",
"authors": [
{
"first": "David",
"middle": [],
"last": "Bamman",
"suffix": ""
},
{
"first": "Olivia",
"middle": [],
"last": "Lewke",
"suffix": ""
},
{
"first": "Anya",
"middle": [],
"last": "Mansoor",
"suffix": ""
}
],
"year": 2020,
"venue": "Proc. of LREC. European Language Resources Association (ELRA)",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "David Bamman, Olivia Lewke, and Anya Mansoor. 2020. An annotated dataset of coreference in en- glish literature. In Proc. of LREC. European Lan- guage Resources Association (ELRA), Association for Computational Linguistics (ACL).",
"links": null
},
"BIBREF1": {
"ref_id": "b1",
"title": "Resolving pronominal references to abstract entities",
"authors": [
{
"first": "Donna",
"middle": [],
"last": "Byron",
"suffix": ""
}
],
"year": 2002,
"venue": "Proc. of the ACL",
"volume": "",
"issue": "",
"pages": "80--87",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Donna Byron. 2002. Resolving pronominal references to abstract entities. In Proc. of the ACL, pages 80- 87.",
"links": null
},
"BIBREF2": {
"ref_id": "b2",
"title": "Resolving demonstrative anaphora in the trains-93 corpus",
"authors": [
{
"first": "Donna",
"middle": [],
"last": "Byron",
"suffix": ""
},
{
"first": "James",
"middle": [],
"last": "Allen",
"suffix": ""
}
],
"year": 1998,
"venue": "Proc. of the Second Colloquium on Discourse",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Donna Byron and James Allen. 1998. Resolving demonstrative anaphora in the trains-93 corpus. In Proc. of the Second Colloquium on Discourse, Anaphora and Reference Resolution. University of Lancaster.",
"links": null
},
"BIBREF3": {
"ref_id": "b3",
"title": "Announcing the AMI meeting corpus",
"authors": [
{
"first": "Jean",
"middle": [],
"last": "Carletta",
"suffix": ""
}
],
"year": 2006,
"venue": "The ELRA Newsletter",
"volume": "11",
"issue": "1",
"pages": "3--5",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Jean Carletta. 2006. Announcing the AMI meeting cor- pus. The ELRA Newsletter, 11(1):3-5.",
"links": null
},
"BIBREF4": {
"ref_id": "b4",
"title": "Building a discourse-tagged corpus in the framework of rhetorical structure theory",
"authors": [
{
"first": "Lynn",
"middle": [],
"last": "Carlson",
"suffix": ""
},
{
"first": "Daniel",
"middle": [],
"last": "Marcu",
"suffix": ""
},
{
"first": "Mary",
"middle": [
"Ellen"
],
"last": "Okurowski",
"suffix": ""
}
],
"year": 2003,
"venue": "Current Directions in Discourse and Dialogue",
"volume": "",
"issue": "",
"pages": "85--112",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Lynn Carlson, Daniel Marcu, and Mary Ellen Okurowski. 2003. Building a discourse-tagged cor- pus in the framework of rhetorical structure theory. In J. Kuppevelt and R. Smith, editors, Current Di- rections in Discourse and Dialogue, pages 85-112. Kluwer.",
"links": null
},
"BIBREF5": {
"ref_id": "b5",
"title": "The Pear Stories: Cognitive, Cultural and Linguistic Aspects of Narrative Production",
"authors": [
{
"first": "Wallace",
"middle": [
"L"
],
"last": "Chafe",
"suffix": ""
}
],
"year": 1980,
"venue": "Ablex",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Wallace L. Chafe. 1980. The Pear Stories: Cognitive, Cultural and Linguistic Aspects of Narrative Produc- tion. Ablex, Norwood, NJ.",
"links": null
},
"BIBREF6": {
"ref_id": "b6",
"title": "Bridging",
"authors": [
{
"first": "H",
"middle": [],
"last": "Herbert",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Clark",
"suffix": ""
}
],
"year": 1977,
"venue": "Thinking: Readings in Cognitive Science",
"volume": "",
"issue": "",
"pages": "411--420",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Herbert H. Clark. 1977. Bridging. In P. N. Johnson- Laird and P.C. Wason, editors, Thinking: Readings in Cognitive Science, pages 411-420. Cambridge University Press, London and New York.",
"links": null
},
"BIBREF7": {
"ref_id": "b7",
"title": "Coreference annotation and resolution in the Colorado Richly Annotated Full Text (CRAFT) corpus of biomedical journal articles",
"authors": [
{
"first": "Kevin",
"middle": [],
"last": "Bretonnel Cohen",
"suffix": ""
},
{
"first": "Arrick",
"middle": [],
"last": "Lanfranchi",
"suffix": ""
},
{
"first": "Miji Jooyoung",
"middle": [],
"last": "Choi",
"suffix": ""
},
{
"first": "Michael",
"middle": [],
"last": "Bada",
"suffix": ""
},
{
"first": "William",
"middle": [
"A"
],
"last": "Baumgartner",
"suffix": ""
},
{
"first": "Natalya",
"middle": [],
"last": "Panteleyeva",
"suffix": ""
},
{
"first": "Karin",
"middle": [],
"last": "Verspoor",
"suffix": ""
},
{
"first": "Martha",
"middle": [],
"last": "Palmer",
"suffix": ""
},
{
"first": "Lawrence",
"middle": [
"E"
],
"last": "Hunter",
"suffix": ""
}
],
"year": 2017,
"venue": "BMC Bioinformatics",
"volume": "",
"issue": "372",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Kevin Bretonnel Cohen, Arrick Lanfranchi, Miji Joo- young Choi, Michael Bada, William A. Baumgart- ner Jr., Natalya Panteleyeva, Karin Verspoor, Martha Palmer, and Lawrence E. Hunter. 2017. Coreference annotation and resolution in the Colorado Richly An- notated Full Text (CRAFT) corpus of biomedical journal articles. BMC Bioinformatics, 18(372).",
"links": null
},
"BIBREF8": {
"ref_id": "b8",
"title": "Hierarchicallyrefined label attention network for sequence labeling",
"authors": [
{
"first": "Leyang",
"middle": [],
"last": "Cui",
"suffix": ""
},
{
"first": "Yue",
"middle": [],
"last": "Zhang",
"suffix": ""
}
],
"year": 2019,
"venue": "Proceedings of the 2019 Conference on Empirical Methods in Natural Language Processing and the 9th International Joint Conference on Natural Language Processing (EMNLP-IJCNLP)",
"volume": "",
"issue": "",
"pages": "4115--4128",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Leyang Cui and Yue Zhang. 2019. Hierarchically- refined label attention network for sequence labeling. In Proceedings of the 2019 Conference on Empirical Methods in Natural Language Processing and the 9th International Joint Conference on Natural Lan- guage Processing (EMNLP-IJCNLP), pages 4115- 4128.",
"links": null
},
"BIBREF9": {
"ref_id": "b9",
"title": "Dialogue acts, synchronising units and anaphora resolution",
"authors": [
{
"first": "Miriam",
"middle": [],
"last": "Eckert",
"suffix": ""
},
{
"first": "Michael",
"middle": [],
"last": "Strube",
"suffix": ""
}
],
"year": 2001,
"venue": "Journal of Semantics",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Miriam Eckert and Michael Strube. 2001. Dialogue acts, synchronising units and anaphora resolution. Journal of Semantics.",
"links": null
},
"BIBREF10": {
"ref_id": "b10",
"title": "Remarks on plural anaphora",
"authors": [
{
"first": "Carola",
"middle": [],
"last": "Eschenbach",
"suffix": ""
},
{
"first": "Christopher",
"middle": [],
"last": "Habel",
"suffix": ""
},
{
"first": "Michael",
"middle": [],
"last": "Herweg",
"suffix": ""
},
{
"first": "Klaus",
"middle": [],
"last": "Rehk\u00e4mper",
"suffix": ""
}
],
"year": 1989,
"venue": "Proceedings of the fourth conference on European chapter of the Association for Computational Linguistics",
"volume": "",
"issue": "",
"pages": "161--167",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Carola Eschenbach, Christopher Habel, Michael Her- weg, and Klaus Rehk\u00e4mper. 1989. Remarks on plu- ral anaphora. In Proceedings of the fourth confer- ence on European chapter of the Association for Computational Linguistics, pages 161-167. Associ- ation for Computational Linguistics.",
"links": null
},
"BIBREF11": {
"ref_id": "b11",
"title": "Switchboard: telephone speech corpus for research and development . acoustics",
"authors": [
{
"first": "John",
"middle": [
"J"
],
"last": "Godfrey",
"suffix": ""
},
{
"first": "Edward",
"middle": [
"C"
],
"last": "Holliman",
"suffix": ""
},
{
"first": "Jane",
"middle": [],
"last": "Mc-Daniel",
"suffix": ""
}
],
"year": 1992,
"venue": "IEEE International Conference on Speech, and Signal Processing",
"volume": "1",
"issue": "",
"pages": "517--520",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "John J. Godfrey, Edward C. Holliman, and Jane Mc- Daniel. 1992. Switchboard: telephone speech cor- pus for research and development . acoustics,. In IEEE International Conference on Speech, and Sig- nal Processing, ICASSP-92, volume 1, pages 517- 520.",
"links": null
},
"BIBREF12": {
"ref_id": "b12",
"title": "Coreference resolution for spoken French",
"authors": [
{
"first": "Lo\u00efc",
"middle": [],
"last": "Grobol",
"suffix": ""
}
],
"year": 2020,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Lo\u00efc Grobol. 2020. Coreference resolution for spoken French. Ph.D. thesis, Universit\u00e9 Sorbonne Nouvelle.",
"links": null
},
"BIBREF13": {
"ref_id": "b13",
"title": "Definiteness and Indefiniteness",
"authors": [
{
"first": "John",
"middle": [
"A"
],
"last": "Hawkins",
"suffix": ""
}
],
"year": 1978,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "John A. Hawkins. 1978. Definiteness and Indefinite- ness. Croom Helm, London.",
"links": null
},
"BIBREF14": {
"ref_id": "b14",
"title": "Bridging anaphora resolution as question answering",
"authors": [],
"year": null,
"venue": "Proceedings of the 58th Annual Meeting of the Association for Computational Linguistics",
"volume": "",
"issue": "",
"pages": "1428--1438",
"other_ids": {
"DOI": [
"10.18653/v1/2020.acl-main.132"
]
},
"num": null,
"urls": [],
"raw_text": "Yufang Hou. 2020. Bridging anaphora resolution as question answering. In Proceedings of the 58th An- nual Meeting of the Association for Computational Linguistics, pages 1428-1438, Online. Association for Computational Linguistics.",
"links": null
},
"BIBREF15": {
"ref_id": "b15",
"title": "Unrestricted bridging resolution",
"authors": [
{
"first": "Yufang",
"middle": [],
"last": "Hou",
"suffix": ""
},
{
"first": "Katja",
"middle": [],
"last": "Markert",
"suffix": ""
},
{
"first": "Michael",
"middle": [],
"last": "Strube",
"suffix": ""
}
],
"year": 2018,
"venue": "Computational Linguistics",
"volume": "44",
"issue": "2",
"pages": "237--284",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Yufang Hou, Katja Markert, and Michael Strube. 2018. Unrestricted bridging resolution. Computational Linguistics, 44(2):237-284.",
"links": null
},
"BIBREF16": {
"ref_id": "b16",
"title": "Spanbert: Improving pre-training by representing and predicting spans",
"authors": [
{
"first": "Mandar",
"middle": [],
"last": "Joshi",
"suffix": ""
},
{
"first": "Danqi",
"middle": [],
"last": "Chen",
"suffix": ""
},
{
"first": "Yinhan",
"middle": [],
"last": "Liu",
"suffix": ""
},
{
"first": "S",
"middle": [],
"last": "Daniel",
"suffix": ""
},
{
"first": "Luke",
"middle": [],
"last": "Weld",
"suffix": ""
},
{
"first": "Omer",
"middle": [],
"last": "Zettlemoyer",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Levy",
"suffix": ""
}
],
"year": 2020,
"venue": "Transactions of the Association for Computational Linguistics",
"volume": "8",
"issue": "",
"pages": "64--77",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Mandar Joshi, Danqi Chen, Yinhan Liu, Daniel S Weld, Luke Zettlemoyer, and Omer Levy. 2020. Spanbert: Improving pre-training by representing and predict- ing spans. Transactions of the Association for Com- putational Linguistics, 8:64-77.",
"links": null
},
"BIBREF17": {
"ref_id": "b17",
"title": "BERT for coreference resolution: Baselines and analysis",
"authors": [
{
"first": "Mandar",
"middle": [],
"last": "Joshi",
"suffix": ""
},
{
"first": "Omer",
"middle": [],
"last": "Levy",
"suffix": ""
},
{
"first": "Luke",
"middle": [],
"last": "Zettlemoyer",
"suffix": ""
},
{
"first": "Daniel",
"middle": [],
"last": "Weld",
"suffix": ""
}
],
"year": 2019,
"venue": "Proceedings of the 2019 Conference on Empirical Methods in Natural Language Processing and the 9th International Joint Conference on Natural Language Processing (EMNLP-IJCNLP)",
"volume": "",
"issue": "",
"pages": "5803--5808",
"other_ids": {
"DOI": [
"10.18653/v1/D19-1588"
]
},
"num": null,
"urls": [],
"raw_text": "Mandar Joshi, Omer Levy, Luke Zettlemoyer, and Daniel Weld. 2019. BERT for coreference reso- lution: Baselines and analysis. In Proceedings of the 2019 Conference on Empirical Methods in Nat- ural Language Processing and the 9th International Joint Conference on Natural Language Processing (EMNLP-IJCNLP), pages 5803-5808, Hong Kong, China. Association for Computational Linguistics.",
"links": null
},
"BIBREF18": {
"ref_id": "b18",
"title": "From Discourse to Logic. D. Reidel",
"authors": [
{
"first": "Hans",
"middle": [],
"last": "Kamp",
"suffix": ""
},
{
"first": "Uwe",
"middle": [],
"last": "Reyle",
"suffix": ""
}
],
"year": 1993,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Hans Kamp and Uwe Reyle. 1993. From Discourse to Logic. D. Reidel, Dordrecht.",
"links": null
},
"BIBREF19": {
"ref_id": "b19",
"title": "Coreference resolution with entity equalization",
"authors": [
{
"first": "Ben",
"middle": [],
"last": "Kantor",
"suffix": ""
},
{
"first": "Amir",
"middle": [],
"last": "Globerson",
"suffix": ""
}
],
"year": 2019,
"venue": "Proceedings of the 57th Annual Meeting of the Association for Computational Linguistics",
"volume": "",
"issue": "",
"pages": "673--677",
"other_ids": {
"DOI": [
"10.18653/v1/P19-1066"
]
},
"num": null,
"urls": [],
"raw_text": "Ben Kantor and Amir Globerson. 2019. Coreference resolution with entity equalization. In Proceed- ings of the 57th Annual Meeting of the Association for Computational Linguistics, pages 673-677, Flo- rence, Italy. Association for Computational Linguis- tics.",
"links": null
},
"BIBREF20": {
"ref_id": "b20",
"title": "Bridging resolution: A survey of the state of the art",
"authors": [
{
"first": "Hideo",
"middle": [],
"last": "Kobayashi",
"suffix": ""
},
{
"first": "Vincent",
"middle": [],
"last": "Ng",
"suffix": ""
}
],
"year": 2020,
"venue": "Proceedings of the 28th International Conference on Computational Linguistics",
"volume": "",
"issue": "",
"pages": "3708--3721",
"other_ids": {
"DOI": [
"10.18653/v1/2020.coling-main.331"
]
},
"num": null,
"urls": [],
"raw_text": "Hideo Kobayashi and Vincent Ng. 2020. Bridging res- olution: A survey of the state of the art. In Proceed- ings of the 28th International Conference on Com- putational Linguistics, pages 3708-3721, Barcelona, Spain (Online). International Committee on Compu- tational Linguistics.",
"links": null
},
"BIBREF21": {
"ref_id": "b21",
"title": "Bridging resolution: Making sense of the state of the art",
"authors": [
{
"first": "Hideo",
"middle": [],
"last": "Kobayashi",
"suffix": ""
},
{
"first": "Vincent",
"middle": [],
"last": "Ng",
"suffix": ""
}
],
"year": 2021,
"venue": "Proceedings of the 2021 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies",
"volume": "",
"issue": "",
"pages": "1652--1659",
"other_ids": {
"DOI": [
"10.18653/v1/2021.naacl-main.131"
]
},
"num": null,
"urls": [],
"raw_text": "Hideo Kobayashi and Vincent Ng. 2021. Bridging res- olution: Making sense of the state of the art. In Pro- ceedings of the 2021 Conference of the North Amer- ican Chapter of the Association for Computational Linguistics: Human Language Technologies, pages 1652-1659, Online. Association for Computational Linguistics.",
"links": null
},
"BIBREF22": {
"ref_id": "b22",
"title": "Resolving shell nouns",
"authors": [
{
"first": "Varada",
"middle": [],
"last": "Kolhatkar",
"suffix": ""
},
{
"first": "Graeme",
"middle": [],
"last": "Hirst",
"suffix": ""
}
],
"year": 2014,
"venue": "Proc. of EMNLP",
"volume": "",
"issue": "",
"pages": "499--510",
"other_ids": {
"DOI": [
"10.3115/v1/D14-1056"
]
},
"num": null,
"urls": [],
"raw_text": "Varada Kolhatkar and Graeme Hirst. 2014. Resolving shell nouns. In Proc. of EMNLP, pages 499-510, Doha, Qatar.",
"links": null
},
"BIBREF23": {
"ref_id": "b23",
"title": "Anaphora with nonnominal antecedents in computational linguistics: a Survey",
"authors": [
{
"first": "Varada",
"middle": [],
"last": "Kolhatkar",
"suffix": ""
},
{
"first": "Adam",
"middle": [],
"last": "Roussel",
"suffix": ""
},
{
"first": "Stefanie",
"middle": [],
"last": "Dipper",
"suffix": ""
},
{
"first": "Heike",
"middle": [],
"last": "Zinsmeister",
"suffix": ""
}
],
"year": 2018,
"venue": "Computational Linguistics",
"volume": "44",
"issue": "3",
"pages": "547--612",
"other_ids": {
"DOI": [
"10.1162/coli_a_00327"
]
},
"num": null,
"urls": [],
"raw_text": "Varada Kolhatkar, Adam Roussel, Stefanie Dipper, and Heike Zinsmeister. 2018. Anaphora with non- nominal antecedents in computational linguistics: a Survey. Computational Linguistics, 44(3):547-612.",
"links": null
},
"BIBREF24": {
"ref_id": "b24",
"title": "End-to-end neural coreference resolution",
"authors": [
{
"first": "Kenton",
"middle": [],
"last": "Lee",
"suffix": ""
},
{
"first": "Luheng",
"middle": [],
"last": "He",
"suffix": ""
},
{
"first": "Mike",
"middle": [],
"last": "Lewis",
"suffix": ""
},
{
"first": "Luke",
"middle": [],
"last": "Zettlemoyer",
"suffix": ""
}
],
"year": 2017,
"venue": "Proceedings of the 2017 Conference on Empirical Methods in Natural Language Processing",
"volume": "",
"issue": "",
"pages": "188--197",
"other_ids": {
"DOI": [
"10.18653/v1/D17-1018"
]
},
"num": null,
"urls": [],
"raw_text": "Kenton Lee, Luheng He, Mike Lewis, and Luke Zettle- moyer. 2017. End-to-end neural coreference reso- lution. In Proceedings of the 2017 Conference on Empirical Methods in Natural Language Processing, pages 188-197, Copenhagen, Denmark. Association for Computational Linguistics.",
"links": null
},
"BIBREF25": {
"ref_id": "b25",
"title": "Higher-order coreference resolution with coarse-tofine inference",
"authors": [
{
"first": "Kenton",
"middle": [],
"last": "Lee",
"suffix": ""
},
{
"first": "Luheng",
"middle": [],
"last": "He",
"suffix": ""
},
{
"first": "Luke",
"middle": [],
"last": "Zettlemoyer",
"suffix": ""
}
],
"year": 2018,
"venue": "Proceedings of the 2018 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies",
"volume": "2",
"issue": "",
"pages": "687--692",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Kenton Lee, Luheng He, and Luke Zettlemoyer. 2018. Higher-order coreference resolution with coarse-to- fine inference. In Proceedings of the 2018 Confer- ence of the North American Chapter of the Associ- ation for Computational Linguistics: Human Lan- guage Technologies, Volume 2 (Short Papers), pages 687-692.",
"links": null
},
"BIBREF26": {
"ref_id": "b26",
"title": "Large multi-lingual, multi-level and multigenre annotation corpus",
"authors": [
{
"first": "Xuansong",
"middle": [],
"last": "Li",
"suffix": ""
},
{
"first": "Martha",
"middle": [],
"last": "Palmer",
"suffix": ""
},
{
"first": "Nianwen",
"middle": [],
"last": "Xue",
"suffix": ""
},
{
"first": "Lance",
"middle": [],
"last": "Ramshaw",
"suffix": ""
},
{
"first": "Mohamed",
"middle": [],
"last": "Maamouri",
"suffix": ""
},
{
"first": "Ann",
"middle": [],
"last": "Bies",
"suffix": ""
},
{
"first": "Kathryn",
"middle": [],
"last": "Conger",
"suffix": ""
},
{
"first": "Stephen",
"middle": [],
"last": "Grimes",
"suffix": ""
},
{
"first": "Stephanie",
"middle": [],
"last": "Strassel",
"suffix": ""
}
],
"year": 2016,
"venue": "Proceedings of the Tenth International Conference on Language Resources and Evaluation (LREC'16)",
"volume": "",
"issue": "",
"pages": "906--913",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Xuansong Li, Martha Palmer, Nianwen Xue, Lance Ramshaw, Mohamed Maamouri, Ann Bies, Kathryn Conger, Stephen Grimes, and Stephanie Strassel. 2016. Large multi-lingual, multi-level and multi- genre annotation corpus. In Proceedings of the Tenth International Conference on Language Re- sources and Evaluation (LREC'16), pages 906-913, Portoro\u017e, Slovenia. European Language Resources Association (ELRA).",
"links": null
},
"BIBREF27": {
"ref_id": "b27",
"title": "Cause-effect knowledge acquisition and neural association model for solving a set of winograd schema problems",
"authors": [
{
"first": "Quan",
"middle": [],
"last": "Liu",
"suffix": ""
},
{
"first": "Hui",
"middle": [],
"last": "Jiang",
"suffix": ""
},
{
"first": "Andrew",
"middle": [],
"last": "Evdokimov",
"suffix": ""
},
{
"first": "Zhen-Hua",
"middle": [],
"last": "Ling",
"suffix": ""
},
{
"first": "Xiaodan",
"middle": [],
"last": "Zhu",
"suffix": ""
},
{
"first": "Si",
"middle": [],
"last": "Wei",
"suffix": ""
},
{
"first": "Yu",
"middle": [],
"last": "Hu",
"suffix": ""
}
],
"year": 2017,
"venue": "Proceedings of the Twenty-Sixth International Joint Conference on Artificial Intelligence, IJCAI-17",
"volume": "",
"issue": "",
"pages": "2344--2350",
"other_ids": {
"DOI": [
"10.24963/ijcai.2017/326"
]
},
"num": null,
"urls": [],
"raw_text": "Quan Liu, Hui Jiang, Andrew Evdokimov, Zhen-Hua Ling, Xiaodan Zhu, Si Wei, and Yu Hu. 2017. Cause-effect knowledge acquisition and neural asso- ciation model for solving a set of winograd schema problems. In Proceedings of the Twenty-Sixth Inter- national Joint Conference on Artificial Intelligence, IJCAI-17, pages 2344-2350.",
"links": null
},
"BIBREF28": {
"ref_id": "b28",
"title": "Coreference resolution for the biomedical domain: A survey",
"authors": [
{
"first": "Pengcheng",
"middle": [],
"last": "Lu",
"suffix": ""
},
{
"first": "Massimo",
"middle": [],
"last": "Poesio",
"suffix": ""
}
],
"year": 2021,
"venue": "Proc. of the CRAC Workshop",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Pengcheng Lu and Massimo Poesio. 2021. Corefer- ence resolution for the biomedical domain: A survey. In Proc. of the CRAC Workshop.",
"links": null
},
"BIBREF29": {
"ref_id": "b29",
"title": "A mention-ranking model for abstract anaphora resolution",
"authors": [
{
"first": "Ana",
"middle": [],
"last": "Marasovi\u0107",
"suffix": ""
},
{
"first": "Leo",
"middle": [],
"last": "Born",
"suffix": ""
},
{
"first": "Juri",
"middle": [],
"last": "Opitz",
"suffix": ""
},
{
"first": "Anette",
"middle": [],
"last": "Frank",
"suffix": ""
}
],
"year": 2017,
"venue": "Proceedings of the 2017 Conference on Empirical Methods in Natural Language Processing",
"volume": "",
"issue": "",
"pages": "221--232",
"other_ids": {
"DOI": [
"10.18653/v1/D17-1021"
]
},
"num": null,
"urls": [],
"raw_text": "Ana Marasovi\u0107, Leo Born, Juri Opitz, and Anette Frank. 2017. A mention-ranking model for ab- stract anaphora resolution. In Proceedings of the 2017 Conference on Empirical Methods in Natural Language Processing, pages 221-232, Copenhagen, Denmark. Association for Computational Linguis- tics.",
"links": null
},
"BIBREF30": {
"ref_id": "b30",
"title": "Building a large annotated corpus of english: the Penn Treebank",
"authors": [
{
"first": "Mitchell",
"middle": [
"P"
],
"last": "Marcus",
"suffix": ""
},
{
"first": "Beatrice",
"middle": [],
"last": "Santorini",
"suffix": ""
},
{
"first": "Mary",
"middle": [
"Ann"
],
"last": "Marcinkiewicz",
"suffix": ""
}
],
"year": 1993,
"venue": "Computational Linguistics",
"volume": "19",
"issue": "2",
"pages": "313--330",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Mitchell P. Marcus, Beatrice Santorini, and Mary Ann Marcinkiewicz. 1993. Building a large annotated corpus of english: the Penn Treebank. Computa- tional Linguistics, 19(2):313-330.",
"links": null
},
"BIBREF31": {
"ref_id": "b31",
"title": "Collective classification for fine-grained information status",
"authors": [
{
"first": "Katja",
"middle": [],
"last": "Markert",
"suffix": ""
},
{
"first": "Yufang",
"middle": [],
"last": "Hou",
"suffix": ""
},
{
"first": "Michael",
"middle": [],
"last": "Strube",
"suffix": ""
}
],
"year": 2012,
"venue": "Proc. of the ACL",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Katja Markert, Yufang Hou, and Michael Strube. 2012. Collective classification for fine-grained information status. In Proc. of the ACL, Juju island, Korea.",
"links": null
},
"BIBREF32": {
"ref_id": "b32",
"title": "Resolving other anaphors",
"authors": [
{
"first": "Natalia",
"middle": [
"N"
],
"last": "Modjeska",
"suffix": ""
}
],
"year": 2003,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Natalia N. Modjeska. 2003. Resolving other anaphors. Ph.D. thesis, University of Edinburgh.",
"links": null
},
"BIBREF33": {
"ref_id": "b33",
"title": "A proposal for a link-based entity aware metric",
"authors": [
{
"first": "S",
"middle": [],
"last": "Nafise",
"suffix": ""
},
{
"first": "Michael",
"middle": [],
"last": "Moosavi",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Strube",
"suffix": ""
}
],
"year": 2016,
"venue": "Proc. of ACL",
"volume": "",
"issue": "",
"pages": "632--642",
"other_ids": {
"DOI": [
"10.18653/v1/P16-1060"
]
},
"num": null,
"urls": [],
"raw_text": "Nafise S. Moosavi and Michael Strube. 2016. A pro- posal for a link-based entity aware metric. In Proc. of ACL, pages 632-642, Berlin.",
"links": null
},
"BIBREF34": {
"ref_id": "b34",
"title": "Fully Automatic Resolution of It, This And That in Unrestricted Multy-Party Dialog",
"authors": [
{
"first": "Mark-Christoph",
"middle": [],
"last": "M\u00fcller",
"suffix": ""
}
],
"year": 2008,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Mark-Christoph M\u00fcller. 2008. Fully Automatic Resolu- tion of It, This And That in Unrestricted Multy-Party Dialog. Ph.D. thesis, Universit\u00e4t T\u00fcbingen.",
"links": null
},
"BIBREF35": {
"ref_id": "b35",
"title": "Multi-level annotation of linguistic data with mmax2",
"authors": [
{
"first": "Christoph",
"middle": [],
"last": "Mark",
"suffix": ""
},
{
"first": "Michael",
"middle": [],
"last": "M\u00fcller",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Strube",
"suffix": ""
}
],
"year": 2006,
"venue": "Corpus Technology and Language Pedagogy. New Resources, New Tools, New Methods, volume 3 of English Corpus Linguistics",
"volume": "",
"issue": "",
"pages": "197--214",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Mark-Christoph M\u00fcller and Michael Strube. 2006. Multi-level annotation of linguistic data with mmax2. In S. Braun, K. Kohn, and J. Mukherjee, ed- itors, Corpus Technology and Language Pedagogy. New Resources, New Tools, New Methods, volume 3 of English Corpus Linguistics, pages 197-214. Peter Lang.",
"links": null
},
"BIBREF36": {
"ref_id": "b36",
"title": "An-cor_centre, a large free spoken french coreference corpus",
"authors": [
{
"first": "Judith",
"middle": [],
"last": "Muzerelle",
"suffix": ""
},
{
"first": "Ana\u00efs",
"middle": [],
"last": "Lefeuvre",
"suffix": ""
},
{
"first": "Emmanuel",
"middle": [],
"last": "Schang",
"suffix": ""
},
{
"first": "Jean-Yves",
"middle": [],
"last": "Antoine",
"suffix": ""
},
{
"first": "Aurore",
"middle": [],
"last": "Pelletier",
"suffix": ""
},
{
"first": "Denis",
"middle": [],
"last": "Maurel",
"suffix": ""
},
{
"first": "Iris",
"middle": [],
"last": "Eshkol",
"suffix": ""
},
{
"first": "Jeanne",
"middle": [],
"last": "Villaneau",
"suffix": ""
}
],
"year": 2014,
"venue": "Proc. of LREC",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Judith Muzerelle, Ana\u00efs Lefeuvre, Emmanuel Schang, Jean-Yves Antoine, Aurore Pelletier, Denis Mau- rel, Iris Eshkol, and Jeanne Villaneau. 2014. An- cor_centre, a large free spoken french coreference corpus. In Proc. of LREC.",
"links": null
},
"BIBREF37": {
"ref_id": "b37",
"title": "Abstract anaphora resolution in Danish",
"authors": [
{
"first": "Costanza",
"middle": [],
"last": "Navarretta",
"suffix": ""
}
],
"year": 2000,
"venue": "Proc. of the 1st SIGdial Workshop on Discourse and Dialogue",
"volume": "",
"issue": "",
"pages": "56--65",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Costanza Navarretta. 2000. Abstract anaphora resolu- tion in Danish. In Proc. of the 1st SIGdial Workshop on Discourse and Dialogue, pages 56-65. ACL.",
"links": null
},
"BIBREF38": {
"ref_id": "b38",
"title": "Generic noun phrases and annotation of coreference and bridging relations in the prague dependency treebank",
"authors": [
{
"first": "Anna",
"middle": [],
"last": "Nedoluzhko",
"suffix": ""
}
],
"year": 2013,
"venue": "Proc. of LAW",
"volume": "",
"issue": "",
"pages": "103--111",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Anna Nedoluzhko. 2013. Generic noun phrases and annotation of coreference and bridging relations in the prague dependency treebank. In Proc. of LAW, pages 103-111.",
"links": null
},
"BIBREF39": {
"ref_id": "b39",
"title": "Coreference meets universal dependencies -a pilot experiment on harmonizing coreference datasets for 11 languages",
"authors": [
{
"first": "Anna",
"middle": [],
"last": "Nedoluzhko",
"suffix": ""
},
{
"first": "Michal",
"middle": [],
"last": "Nov\u00e1k",
"suffix": ""
},
{
"first": "Martin",
"middle": [],
"last": "Popel",
"suffix": ""
},
{
"first": "Zden\u0207kzabokrtsk\u00fd",
"middle": [],
"last": "",
"suffix": ""
},
{
"first": "Daniel",
"middle": [],
"last": "Zeman",
"suffix": ""
}
],
"year": 2021,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Anna Nedoluzhko, Michal Nov\u00e1k, Martin Popel, Zden\u0207kZabokrtsk\u00fd, and Daniel Zeman. 2021. Coreference meets universal dependencies -a pilot experiment on harmonizing coreference datasets for 11 languages. \u00daFAL Technical Report TR-2021-66, Charles University, Prague.",
"links": null
},
"BIBREF40": {
"ref_id": "b40",
"title": "An annotation scheme for information status in dialogue",
"authors": [
{
"first": "Malvina",
"middle": [],
"last": "Nissim",
"suffix": ""
},
{
"first": "Shipra",
"middle": [],
"last": "Dingare",
"suffix": ""
},
{
"first": "Jean",
"middle": [],
"last": "Carletta",
"suffix": ""
},
{
"first": "Mark",
"middle": [],
"last": "Steedman",
"suffix": ""
}
],
"year": 2004,
"venue": "Proc. of LREC",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Malvina Nissim, Shipra Dingare, Jean Carletta, and Mark Steedman. 2004. An annotation scheme for information status in dialogue. In Proc. of LREC.",
"links": null
},
"BIBREF41": {
"ref_id": "b41",
"title": "Scoring coreference chains with splitantecedent anaphors and other entities constructed from a discourse model",
"authors": [
{
"first": "Juntao",
"middle": [],
"last": "Silviu Paun",
"suffix": ""
},
{
"first": "Nafise",
"middle": [],
"last": "Yu",
"suffix": ""
},
{
"first": "Massimo",
"middle": [],
"last": "Moosavi",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Poesio",
"suffix": ""
}
],
"year": 2021,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Silviu Paun, Juntao Yu, Nafise Moosavi, and Massimo Poesio. 2021. Scoring coreference chains with split- antecedent anaphors and other entities constructed from a discourse model. Submitted.",
"links": null
},
"BIBREF42": {
"ref_id": "b42",
"title": "Discourse annotation and semantic annotation in the GNOME corpus",
"authors": [
{
"first": "Massimo",
"middle": [],
"last": "Poesio",
"suffix": ""
}
],
"year": 2004,
"venue": "Proc. of the ACL Workshop on Discourse Annotation",
"volume": "",
"issue": "",
"pages": "72--79",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Massimo Poesio. 2004. Discourse annotation and semantic annotation in the GNOME corpus. In Proc. of the ACL Workshop on Discourse Annota- tion, pages 72-79, Barcelona.",
"links": null
},
"BIBREF43": {
"ref_id": "b43",
"title": "Linguistic and cognitive evidence about anaphora",
"authors": [
{
"first": "Massimo",
"middle": [],
"last": "Poesio",
"suffix": ""
}
],
"year": 2016,
"venue": "Anaphora Resolution: Algorithms, Resources and Applications",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Massimo Poesio. 2016. Linguistic and cognitive evi- dence about anaphora. In M. Poesio, R. Stuckardt, and Y. Versley, editors, Anaphora Resolution: Al- gorithms, Resources and Applications, chapter 2. Springer.",
"links": null
},
"BIBREF44": {
"ref_id": "b44",
"title": "Anaphoric annotation in the ARRAU corpus",
"authors": [
{
"first": "Massimo",
"middle": [],
"last": "Poesio",
"suffix": ""
},
{
"first": "Ron",
"middle": [],
"last": "Artstein",
"suffix": ""
}
],
"year": 2008,
"venue": "Proc. of LREC",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Massimo Poesio and Ron Artstein. 2008. Anaphoric annotation in the ARRAU corpus. In Proc. of LREC, Marrakesh.",
"links": null
},
"BIBREF45": {
"ref_id": "b45",
"title": "A crowdsourced corpus of multiple judgments and disagreement on anaphoric interpretation",
"authors": [
{
"first": "Massimo",
"middle": [],
"last": "Poesio",
"suffix": ""
},
{
"first": "Jon",
"middle": [],
"last": "Chamberlain",
"suffix": ""
},
{
"first": "Udo",
"middle": [],
"last": "Kruschwitz",
"suffix": ""
},
{
"first": "Silviu",
"middle": [],
"last": "Paun",
"suffix": ""
},
{
"first": "Alexandra",
"middle": [],
"last": "Uma",
"suffix": ""
},
{
"first": "Juntao",
"middle": [],
"last": "Yu",
"suffix": ""
}
],
"year": 2019,
"venue": "Minneapolis. Association for Computational Linguistics (ACL)",
"volume": "",
"issue": "",
"pages": "1778--1789",
"other_ids": {
"DOI": [
"10.18653/v1/N19-1176"
]
},
"num": null,
"urls": [],
"raw_text": "Massimo Poesio, Jon Chamberlain, Udo Kruschwitz, Silviu Paun, Alexandra Uma, and Juntao Yu. 2019. A crowdsourced corpus of multiple judgments and disagreement on anaphoric interpretation. In Proc. of NAACL, page 1778-1789, Minneapolis. Associa- tion for Computational Linguistics (ACL).",
"links": null
},
"BIBREF46": {
"ref_id": "b46",
"title": "Anaphora resolution with the ARRAU corpus",
"authors": [
{
"first": "Massimo",
"middle": [],
"last": "Poesio",
"suffix": ""
},
{
"first": "Yulia",
"middle": [],
"last": "Grishina",
"suffix": ""
},
{
"first": "Varada",
"middle": [],
"last": "Kolhatkar",
"suffix": ""
},
{
"first": "Nafise",
"middle": [],
"last": "Moosavi",
"suffix": ""
},
{
"first": "Ina",
"middle": [],
"last": "Roesiger",
"suffix": ""
},
{
"first": "Adam",
"middle": [],
"last": "Roussel",
"suffix": ""
},
{
"first": "Fabian",
"middle": [],
"last": "Simonjetz",
"suffix": ""
},
{
"first": "Alexandra",
"middle": [],
"last": "Uma",
"suffix": ""
},
{
"first": "Olga",
"middle": [],
"last": "Uryupina",
"suffix": ""
},
{
"first": "Juntao",
"middle": [],
"last": "Yu",
"suffix": ""
},
{
"first": "Heike",
"middle": [],
"last": "Zinsmeister",
"suffix": ""
}
],
"year": 2018,
"venue": "Proceedings of the First Workshop on Computational Models of Reference, Anaphora and Coreference",
"volume": "",
"issue": "",
"pages": "11--22",
"other_ids": {
"DOI": [
"10.18653/v1/W18-0702"
]
},
"num": null,
"urls": [],
"raw_text": "Massimo Poesio, Yulia Grishina, Varada Kolhatkar, Nafise Moosavi, Ina Roesiger, Adam Roussel, Fabian Simonjetz, Alexandra Uma, Olga Uryupina, Juntao Yu, and Heike Zinsmeister. 2018. Anaphora resolution with the ARRAU corpus. In Proceedings of the First Workshop on Computational Models of Reference, Anaphora and Coreference, pages 11-22, New Orleans, Louisiana. Association for Computa- tional Linguistics.",
"links": null
},
"BIBREF47": {
"ref_id": "b47",
"title": "Annotated corpora and annotation tools",
"authors": [
{
"first": "Massimo",
"middle": [],
"last": "Poesio",
"suffix": ""
},
{
"first": "Sameer",
"middle": [],
"last": "Pradhan",
"suffix": ""
},
{
"first": "Marta",
"middle": [],
"last": "Recasens",
"suffix": ""
},
{
"first": "Kepa",
"middle": [],
"last": "Rodriguez",
"suffix": ""
},
{
"first": "Yannick",
"middle": [],
"last": "Versley",
"suffix": ""
}
],
"year": 2016,
"venue": "Anaphora Resolution: Algorithms, Resources and Applications",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Massimo Poesio, Sameer Pradhan, Marta Recasens, Kepa Rodriguez, and Yannick Versley. 2016. An- notated corpora and annotation tools. In M. Poesio, R. Stuckardt, and Y. Versley, editors, Anaphora Res- olution: Algorithms, Resources and Applications, chapter 4. Springer.",
"links": null
},
"BIBREF48": {
"ref_id": "b48",
"title": "A corpusbased investigation of definite description use",
"authors": [
{
"first": "Massimo",
"middle": [],
"last": "Poesio",
"suffix": ""
},
{
"first": "Renata",
"middle": [],
"last": "Vieira",
"suffix": ""
}
],
"year": 1998,
"venue": "Computational Linguistics",
"volume": "24",
"issue": "2",
"pages": "183--216",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Massimo Poesio and Renata Vieira. 1998. A corpus- based investigation of definite description use. Com- putational Linguistics, 24(2):183-216.",
"links": null
},
"BIBREF49": {
"ref_id": "b49",
"title": "Scoring coreference partitions of predicted mentions: A reference implementation",
"authors": [
{
"first": "Xiaoqiang",
"middle": [],
"last": "Sameer Pradhan",
"suffix": ""
},
{
"first": "Marta",
"middle": [],
"last": "Luo",
"suffix": ""
},
{
"first": "Eduard",
"middle": [],
"last": "Recasens",
"suffix": ""
},
{
"first": "Vincent",
"middle": [],
"last": "Hovy",
"suffix": ""
},
{
"first": "Michael",
"middle": [],
"last": "Ng",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Strube",
"suffix": ""
}
],
"year": 2014,
"venue": "Proceedings of the 52nd Annual Meeting of the Association for Computational Linguistics",
"volume": "2",
"issue": "",
"pages": "30--35",
"other_ids": {
"DOI": [
"10.3115/v1/P14-2006"
]
},
"num": null,
"urls": [],
"raw_text": "Sameer Pradhan, Xiaoqiang Luo, Marta Recasens, Ed- uard Hovy, Vincent Ng, and Michael Strube. 2014. Scoring coreference partitions of predicted men- tions: A reference implementation. In Proceed- ings of the 52nd Annual Meeting of the Association for Computational Linguistics (Volume 2: Short Pa- pers), pages 30-35, Baltimore, Maryland. Associa- tion for Computational Linguistics.",
"links": null
},
"BIBREF50": {
"ref_id": "b50",
"title": "CoNLL-2012 shared task: Modeling multilingual unrestricted coreference in OntoNotes",
"authors": [
{
"first": "Alessandro",
"middle": [],
"last": "Sameer Pradhan",
"suffix": ""
},
{
"first": "Nianwen",
"middle": [],
"last": "Moschitti",
"suffix": ""
},
{
"first": "Olga",
"middle": [],
"last": "Xue",
"suffix": ""
},
{
"first": "Yuchen",
"middle": [],
"last": "Uryupina",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Zhang",
"suffix": ""
}
],
"year": 2012,
"venue": "Proceedings of the Sixteenth Conference on Computational Natural Language Learning",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Sameer Pradhan, Alessandro Moschitti, Nianwen Xue, Olga Uryupina, and Yuchen Zhang. 2012. CoNLL- 2012 shared task: Modeling multilingual unre- stricted coreference in OntoNotes. In Proceedings of the Sixteenth Conference on Computational Natu- ral Language Learning (CoNLL 2012), Jeju, Korea.",
"links": null
},
"BIBREF51": {
"ref_id": "b51",
"title": "Unrestricted coreference: Indentifying entities and events in ontonotes",
"authors": [
{
"first": "S",
"middle": [],
"last": "Sameer",
"suffix": ""
},
{
"first": "Lance",
"middle": [],
"last": "Pradhan",
"suffix": ""
},
{
"first": "Ralph",
"middle": [],
"last": "Ramshaw",
"suffix": ""
},
{
"first": "Jessica",
"middle": [],
"last": "Weischedel",
"suffix": ""
},
{
"first": "Linnea",
"middle": [],
"last": "Macbride",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Micciulla",
"suffix": ""
}
],
"year": 2007,
"venue": "Proc. IEEE International Conference on Semantic Computing (ICSC)",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Sameer S. Pradhan, Lance Ramshaw, Ralph Weischedel, Jessica MacBride, and Linnea Micci- ulla. 2007. Unrestricted coreference: Indentifying entities and events in ontonotes. In Proc. IEEE International Conference on Semantic Computing (ICSC), Irvine, CA.",
"links": null
},
"BIBREF52": {
"ref_id": "b52",
"title": "Toward a taxonomy of givennew information",
"authors": [
{
"first": "F",
"middle": [],
"last": "Ellen",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Prince",
"suffix": ""
}
],
"year": 1981,
"venue": "Radical Pragmatics",
"volume": "",
"issue": "",
"pages": "223--256",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Ellen F. Prince. 1981. Toward a taxonomy of given- new information. In P. Cole, editor, Radical Prag- matics, pages 223-256. Academic Press, New York.",
"links": null
},
"BIBREF53": {
"ref_id": "b53",
"title": "Resolving complex cases of definite pronouns: The Winograd schema challenge",
"authors": [
{
"first": "Altaf",
"middle": [],
"last": "Rahman",
"suffix": ""
},
{
"first": "Vincent",
"middle": [],
"last": "Ng",
"suffix": ""
}
],
"year": 2012,
"venue": "Proceedings of the 2012 Joint Conference on Empirical Methods in Natural Language Processing and Computational Natural Language Learning",
"volume": "",
"issue": "",
"pages": "777--789",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Altaf Rahman and Vincent Ng. 2012. Resolving com- plex cases of definite pronouns: The Winograd schema challenge. In Proceedings of the 2012 Joint Conference on Empirical Methods in Natural Lan- guage Processing and Computational Natural Lan- guage Learning, pages 777-789, Jeju Island, Korea. Association for Computational Linguistics.",
"links": null
},
"BIBREF54": {
"ref_id": "b54",
"title": "Blanc: Implementing the rand index for coreference evaluation",
"authors": [
{
"first": "Marta",
"middle": [],
"last": "Recasens",
"suffix": ""
},
{
"first": "Ed",
"middle": [],
"last": "Hovy",
"suffix": ""
}
],
"year": 2011,
"venue": "Natural Language Engineering",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Marta Recasens and Ed Hovy. 2011. Blanc: Imple- menting the rand index for coreference evaluation. Natural Language Engineering.",
"links": null
},
"BIBREF55": {
"ref_id": "b55",
"title": "AnCora-CO: Coreferentially annotated corpora for Spanish and Catalan",
"authors": [
{
"first": "Marta",
"middle": [],
"last": "Recasens",
"suffix": ""
},
{
"first": "M",
"middle": [],
"last": "Ant\u00f2nia Mart\u00ed",
"suffix": ""
}
],
"year": 2010,
"venue": "Language Resources and Evaluation",
"volume": "44",
"issue": "4",
"pages": "315--345",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Marta Recasens and M. Ant\u00f2nia Mart\u00ed. 2010. AnCora- CO: Coreferentially annotated corpora for Spanish and Catalan. Language Resources and Evaluation, 44(4):315-345.",
"links": null
},
"BIBREF56": {
"ref_id": "b56",
"title": "Winogrande: An adversarial winograd schema challenge at scale",
"authors": [
{
"first": "Keisuke",
"middle": [],
"last": "Sakaguchi",
"suffix": ""
},
{
"first": "Le",
"middle": [],
"last": "Ronan",
"suffix": ""
},
{
"first": "Chandra",
"middle": [],
"last": "Bras",
"suffix": ""
},
{
"first": "Yejin",
"middle": [],
"last": "Bhagavatula",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Choi",
"suffix": ""
}
],
"year": 2020,
"venue": "Proceedings of the AAAI Conference on Artificial Intelligence",
"volume": "34",
"issue": "",
"pages": "8732--8740",
"other_ids": {
"DOI": [
"10.1609/aaai.v34i05.6399"
]
},
"num": null,
"urls": [],
"raw_text": "Keisuke Sakaguchi, Ronan Le Bras, Chandra Bhaga- vatula, and Yejin Choi. 2020. Winogrande: An ad- versarial winograd schema challenge at scale. Pro- ceedings of the AAAI Conference on Artificial Intel- ligence, 34:8732-8740.",
"links": null
},
"BIBREF57": {
"ref_id": "b57",
"title": "Dialogue act modeling for automatic tagging and recognition of conversational speech",
"authors": [
{
"first": "Andreas",
"middle": [],
"last": "Stolcke",
"suffix": ""
},
{
"first": "Klaus",
"middle": [],
"last": "Ries",
"suffix": ""
},
{
"first": "Noah",
"middle": [],
"last": "Coccaro",
"suffix": ""
},
{
"first": "Elizabeth",
"middle": [],
"last": "Shriberg",
"suffix": ""
},
{
"first": "Rebecca",
"middle": [],
"last": "Bates",
"suffix": ""
},
{
"first": "Daniel",
"middle": [],
"last": "Jurafsky",
"suffix": ""
},
{
"first": "Paul",
"middle": [],
"last": "Taylor",
"suffix": ""
},
{
"first": "Rachel",
"middle": [],
"last": "Martin",
"suffix": ""
},
{
"first": "Carol",
"middle": [],
"last": "Van-Ess-Dykema",
"suffix": ""
},
{
"first": "Marie",
"middle": [],
"last": "Meteer",
"suffix": ""
}
],
"year": 1997,
"venue": "Computational Linguistics",
"volume": "26",
"issue": "3",
"pages": "339--371",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Andreas Stolcke, Klaus Ries, Noah Coccaro, Eliza- beth Shriberg, Rebecca Bates, Daniel Jurafsky, Paul Taylor, Rachel Martin, Carol Van-Ess-Dykema, and Marie Meteer. 1997. Dialogue act modeling for au- tomatic tagging and recognition of conversational speech. Computational Linguistics, 26(3):339-371.",
"links": null
},
"BIBREF58": {
"ref_id": "b58",
"title": "Learning to speak and act in a fantasy text adventure game",
"authors": [
{
"first": "Jack",
"middle": [],
"last": "Urbanek",
"suffix": ""
},
{
"first": "Angela",
"middle": [],
"last": "Fan",
"suffix": ""
},
{
"first": "Siddharth",
"middle": [],
"last": "Karamcheti",
"suffix": ""
},
{
"first": "Saachi",
"middle": [],
"last": "Jain",
"suffix": ""
},
{
"first": "Emily",
"middle": [],
"last": "Dinan",
"suffix": ""
},
{
"first": "Tim",
"middle": [],
"last": "Rockt\u00e4schel",
"suffix": ""
},
{
"first": "Douwe",
"middle": [],
"last": "Kiela",
"suffix": ""
},
{
"first": "Arthur",
"middle": [],
"last": "Szlam",
"suffix": ""
},
{
"first": "Samuel",
"middle": [],
"last": "Humeau",
"suffix": ""
},
{
"first": "Jason",
"middle": [],
"last": "Weston",
"suffix": ""
}
],
"year": 2019,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {
"arXiv": [
"arXiv:1903.03094"
]
},
"num": null,
"urls": [],
"raw_text": "Jack Urbanek, Angela Fan, Siddharth Karamcheti, Saachi Jain, Emily Dinan, Tim Rockt\u00e4schel, Douwe Kiela, Arthur Szlam, Samuel Humeau, and Ja- son Weston. 2019. Learning to speak and act in a fantasy text adventure game. ArXiv preprint arXiv:1903.03094.",
"links": null
},
"BIBREF59": {
"ref_id": "b59",
"title": "Annotating a broad range of anaphoric phenomena, in a variety of genres: the ARRAU corpus",
"authors": [
{
"first": "Olga",
"middle": [],
"last": "Uryupina",
"suffix": ""
},
{
"first": "Ron",
"middle": [],
"last": "Artstein",
"suffix": ""
},
{
"first": "Antonella",
"middle": [],
"last": "Bristot",
"suffix": ""
},
{
"first": "Federica",
"middle": [],
"last": "Cavicchio",
"suffix": ""
},
{
"first": "Francesca",
"middle": [],
"last": "Delogu",
"suffix": ""
},
{
"first": "J",
"middle": [],
"last": "Kepa",
"suffix": ""
},
{
"first": "Massimo",
"middle": [],
"last": "Rodriguez",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Poesio",
"suffix": ""
}
],
"year": 2020,
"venue": "Journal of Natural Language Engineering",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Olga Uryupina, Ron Artstein, Antonella Bristot, Fed- erica Cavicchio, Francesca Delogu, Kepa J. Ro- driguez, and Massimo Poesio. 2020. Annotating a broad range of anaphoric phenomena, in a variety of genres: the ARRAU corpus. Journal of Natural Language Engineering.",
"links": null
},
"BIBREF60": {
"ref_id": "b60",
"title": "The more antecedents, the merrier: Resolving multiantecedent anaphors",
"authors": [
{
"first": "Hardik",
"middle": [],
"last": "Vala",
"suffix": ""
},
{
"first": "Andrew",
"middle": [],
"last": "Piper",
"suffix": ""
},
{
"first": "Derek",
"middle": [],
"last": "Ruths",
"suffix": ""
}
],
"year": 2016,
"venue": "Proceedings of the 54th Annual Meeting of the Association for Computational Linguistics",
"volume": "1",
"issue": "",
"pages": "2287--2296",
"other_ids": {
"DOI": [
"10.18653/v1/P16-1216"
]
},
"num": null,
"urls": [],
"raw_text": "Hardik Vala, Andrew Piper, and Derek Ruths. 2016. The more antecedents, the merrier: Resolving multi- antecedent anaphors. In Proceedings of the 54th An- nual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers), pages 2287- 2296, Berlin, Germany. Association for Computa- tional Linguistics.",
"links": null
},
"BIBREF61": {
"ref_id": "b61",
"title": "Vagueness and referential ambiguity in a large-scale annotated corpus",
"authors": [
{
"first": "Yannick",
"middle": [],
"last": "Versley",
"suffix": ""
}
],
"year": 2008,
"venue": "Research on Language and Computation",
"volume": "6",
"issue": "",
"pages": "333--353",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Yannick Versley. 2008. Vagueness and referential am- biguity in a large-scale annotated corpus. Research on Language and Computation, 6:333-353.",
"links": null
},
"BIBREF62": {
"ref_id": "b62",
"title": "Pointer networks",
"authors": [
{
"first": "Oriol",
"middle": [],
"last": "Vinyals",
"suffix": ""
},
{
"first": "Meire",
"middle": [],
"last": "Fortunato",
"suffix": ""
},
{
"first": "Navdeep",
"middle": [],
"last": "Jaitly",
"suffix": ""
}
],
"year": 2015,
"venue": "Advances in Neural Information Processing Systems",
"volume": "28",
"issue": "",
"pages": "2692--2700",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Oriol Vinyals, Meire Fortunato, and Navdeep Jaitly. 2015. Pointer networks. Advances in Neural Infor- mation Processing Systems, 28:2692-2700.",
"links": null
},
"BIBREF63": {
"ref_id": "b63",
"title": "Persuasion for good: Towards a personalized persuasive dialogue system for social good",
"authors": [
{
"first": "Xuewei",
"middle": [],
"last": "Wang",
"suffix": ""
},
{
"first": "Weiyan",
"middle": [],
"last": "Shi",
"suffix": ""
},
{
"first": "Richard",
"middle": [],
"last": "Kim",
"suffix": ""
},
{
"first": "Yoojung",
"middle": [],
"last": "Oh",
"suffix": ""
},
{
"first": "Sijia",
"middle": [],
"last": "Yang",
"suffix": ""
},
{
"first": "Jingwen",
"middle": [],
"last": "Zhang",
"suffix": ""
},
{
"first": "Zhou",
"middle": [],
"last": "Yu",
"suffix": ""
}
],
"year": 2019,
"venue": "Proc. of ACL",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Xuewei Wang, Weiyan Shi, Richard Kim, Yoojung Oh, Sijia Yang, Jingwen Zhang, and Zhou Yu. 2019. Per- suasion for good: Towards a personalized persuasive dialogue system for social good. In Proc. of ACL.",
"links": null
},
"BIBREF64": {
"ref_id": "b64",
"title": "Structure and ostension in the interpretation of discourse deixis",
"authors": [
{
"first": "Bonnie",
"middle": [
"L"
],
"last": "Webber",
"suffix": ""
}
],
"year": 1991,
"venue": "Language and Cognitive Processes",
"volume": "6",
"issue": "2",
"pages": "107--135",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Bonnie L. Webber. 1991. Structure and ostension in the interpretation of discourse deixis. Language and Cognitive Processes, 6(2):107-135.",
"links": null
},
"BIBREF65": {
"ref_id": "b65",
"title": "Mind the GAP: A balanced corpus of gendered ambiguous pronouns",
"authors": [
{
"first": "Kellie",
"middle": [],
"last": "Webster",
"suffix": ""
},
{
"first": "Marta",
"middle": [],
"last": "Recasens",
"suffix": ""
},
{
"first": "Vera",
"middle": [],
"last": "Axelrod",
"suffix": ""
},
{
"first": "Jason",
"middle": [],
"last": "Baldridge",
"suffix": ""
}
],
"year": 2018,
"venue": "Transactions of the Association for Computational Linguistics",
"volume": "6",
"issue": "",
"pages": "605--617",
"other_ids": {
"DOI": [
"10.1162/tacl_a_00240"
]
},
"num": null,
"urls": [],
"raw_text": "Kellie Webster, Marta Recasens, Vera Axelrod, and Ja- son Baldridge. 2018. Mind the GAP: A balanced corpus of gendered ambiguous pronouns. Transac- tions of the Association for Computational Linguis- tics, 6:605-617.",
"links": null
},
"BIBREF66": {
"ref_id": "b66",
"title": "Learning anaphoricity and antecedent ranking features for coreference resolution",
"authors": [
{
"first": "Sam",
"middle": [],
"last": "Wiseman",
"suffix": ""
},
{
"first": "Alexander",
"middle": [
"M"
],
"last": "Rush",
"suffix": ""
},
{
"first": "Stuart",
"middle": [],
"last": "Shieber",
"suffix": ""
},
{
"first": "Jason",
"middle": [],
"last": "Weston",
"suffix": ""
}
],
"year": 2015,
"venue": "Proceedings of the 53rd Annual Meeting of the Association for Computational Linguistics and the 7th International Joint Conference on Natural Language Processing",
"volume": "1",
"issue": "",
"pages": "1416--1426",
"other_ids": {
"DOI": [
"10.3115/v1/P15-1137"
]
},
"num": null,
"urls": [],
"raw_text": "Sam Wiseman, Alexander M. Rush, Stuart Shieber, and Jason Weston. 2015. Learning anaphoricity and an- tecedent ranking features for coreference resolution. In Proceedings of the 53rd Annual Meeting of the Association for Computational Linguistics and the 7th International Joint Conference on Natural Lan- guage Processing (Volume 1: Long Papers), pages 1416-1426, Beijing, China. Association for Compu- tational Linguistics.",
"links": null
},
"BIBREF67": {
"ref_id": "b67",
"title": "Revealing the myth of higher-order inference in coreference resolution",
"authors": [
{
"first": "Liyan",
"middle": [],
"last": "Xu",
"suffix": ""
},
{
"first": "D",
"middle": [],
"last": "Jinho",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Choi",
"suffix": ""
}
],
"year": 2020,
"venue": "Proceedings of the 2020 Conference on Empirical Methods in Natural Language Processing (EMNLP)",
"volume": "",
"issue": "",
"pages": "8527--8533",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Liyan Xu and Jinho D Choi. 2020. Revealing the myth of higher-order inference in coreference resolution. In Proceedings of the 2020 Conference on Empirical Methods in Natural Language Processing (EMNLP), pages 8527-8533.",
"links": null
},
"BIBREF68": {
"ref_id": "b68",
"title": "Neural mention detection",
"authors": [
{
"first": "Juntao",
"middle": [],
"last": "Yu",
"suffix": ""
},
{
"first": "Bernd",
"middle": [],
"last": "Bohnet",
"suffix": ""
},
{
"first": "Massimo",
"middle": [],
"last": "Poesio",
"suffix": ""
}
],
"year": 2020,
"venue": "Proceedings of the 12th Conference on Language Resources and Evaluation (LREC 2020",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Juntao Yu, Bernd Bohnet, and Massimo Poesio. 2020a. Neural mention detection. In Proceedings of the 12th Conference on Language Resources and Eval- uation (LREC 2020).",
"links": null
},
"BIBREF69": {
"ref_id": "b69",
"title": "Free the plural: Unrestricted split-antecedent anaphora resolution",
"authors": [
{
"first": "Juntao",
"middle": [],
"last": "Yu",
"suffix": ""
},
{
"first": "Nafise Sadat",
"middle": [],
"last": "Moosavi",
"suffix": ""
},
{
"first": "Silviu",
"middle": [],
"last": "Paun",
"suffix": ""
},
{
"first": "Massimo",
"middle": [],
"last": "Poesio",
"suffix": ""
}
],
"year": 2020,
"venue": "Proceedings of the 28th International Conference on Computational Linguistics",
"volume": "",
"issue": "",
"pages": "6113--6125",
"other_ids": {
"DOI": [
"10.18653/v1/2020.coling-main.538"
]
},
"num": null,
"urls": [],
"raw_text": "Juntao Yu, Nafise Sadat Moosavi, Silviu Paun, and Massimo Poesio. 2020b. Free the plural: Unre- stricted split-antecedent anaphora resolution. In Proceedings of the 28th International Conference on Computational Linguistics, pages 6113-6125, Barcelona, Spain (Online). International Committee on Computational Linguistics.",
"links": null
},
"BIBREF70": {
"ref_id": "b70",
"title": "Stay together: A system for single and split-antecedent anaphora resolution",
"authors": [
{
"first": "Juntao",
"middle": [],
"last": "Yu",
"suffix": ""
},
{
"first": "Nafise Sadat",
"middle": [],
"last": "Moosavi",
"suffix": ""
},
{
"first": "Silviu",
"middle": [],
"last": "Paun",
"suffix": ""
},
{
"first": "Massimo",
"middle": [],
"last": "Poesio",
"suffix": ""
}
],
"year": 2021,
"venue": "Proceedings of the 2021 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Juntao Yu, Nafise Sadat Moosavi, Silviu Paun, and Massimo Poesio. 2021. Stay together: A system for single and split-antecedent anaphora resolution. In Proceedings of the 2021 Conference of the North American Chapter of the Association for Computa- tional Linguistics: Human Language Technologies. Association for Computational Linguistics.",
"links": null
},
"BIBREF71": {
"ref_id": "b71",
"title": "Multitask learning based neural bridging reference resolution",
"authors": [
{
"first": "Juntao",
"middle": [],
"last": "Yu",
"suffix": ""
},
{
"first": "Massimo",
"middle": [],
"last": "Poesio",
"suffix": ""
}
],
"year": 2020,
"venue": "Proceedings of the 28th International Conference on Computational Linguistics",
"volume": "",
"issue": "",
"pages": "3534--3546",
"other_ids": {
"DOI": [
"10.18653/v1/2020.coling-main.315"
]
},
"num": null,
"urls": [],
"raw_text": "Juntao Yu and Massimo Poesio. 2020. Multitask learn- ing based neural bridging reference resolution. In Proceedings of the 28th International Conference on Computational Linguistics, pages 3534-3546, Barcelona, Spain (Online). International Committee on Computational Linguistics.",
"links": null
},
"BIBREF72": {
"ref_id": "b72",
"title": "The GUM corpus: Creating multilayer resources in the classroom. Language Resources and Evaluation",
"authors": [
{
"first": "Amir",
"middle": [],
"last": "Zeldes",
"suffix": ""
}
],
"year": 2017,
"venue": "",
"volume": "51",
"issue": "",
"pages": "581--612",
"other_ids": {
"DOI": [
"10.1007/s10579-016-9343-x"
]
},
"num": null,
"urls": [],
"raw_text": "Amir Zeldes. 2017. The GUM corpus: Creating mul- tilayer resources in the classroom. Language Re- sources and Evaluation, 51(3):581-612.",
"links": null
},
"BIBREF73": {
"ref_id": "b73",
"title": "They exist! introducing plural mentions to coreference resolution and entity linking",
"authors": [
{
"first": "Ethan",
"middle": [],
"last": "Zhou",
"suffix": ""
},
{
"first": "Jinho",
"middle": [
"D"
],
"last": "Choi",
"suffix": ""
}
],
"year": 2018,
"venue": "Proceedings of the 27th International Conference on Computational Linguistics",
"volume": "",
"issue": "",
"pages": "24--34",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Ethan Zhou and Jinho D. Choi. 2018. They exist! in- troducing plural mentions to coreference resolution and entity linking. In Proceedings of the 27th Inter- national Conference on Computational Linguistics, pages 24-34, Santa Fe, New Mexico, USA. Associ- ation for Computational Linguistics.",
"links": null
},
"BIBREF74": {
"ref_id": "b74",
"title": "OntoGUM: Evaluating contextualized SOTA coreference resolution on 12 more genres",
"authors": [
{
"first": "Yilun",
"middle": [],
"last": "Zhu",
"suffix": ""
},
{
"first": "Sameer",
"middle": [],
"last": "Pradhan",
"suffix": ""
},
{
"first": "Amir",
"middle": [],
"last": "Zeldes",
"suffix": ""
}
],
"year": 2021,
"venue": "Proceedings of the 59th Annual Meeting of the Association for Computational Linguistics and the 11th International Joint Conference on Natural Language Processing",
"volume": "2",
"issue": "",
"pages": "461--467",
"other_ids": {
"DOI": [
"10.18653/v1/2021.acl-short.59"
]
},
"num": null,
"urls": [],
"raw_text": "Yilun Zhu, Sameer Pradhan, and Amir Zeldes. 2021. OntoGUM: Evaluating contextualized SOTA coref- erence resolution on 12 more genres. In Proceed- ings of the 59th Annual Meeting of the Association for Computational Linguistics and the 11th Interna- tional Joint Conference on Natural Language Pro- cessing (Volume 2: Short Papers), pages 461-467, Online. Association for Computational Linguistics.",
"links": null
}
},
"ref_entries": {
"FIGREF0": {
"uris": null,
"type_str": "figure",
"text": "submitted results for tasks 1 and 2. For identity anaphora, they leveraged Cui and Zhang (2019)'s model with an ELECTRA-large backbone Zhang, 2019) with ELECTRA-large for mention detection. A pointer-network(Vinyals et al., 2015) based model for resolution. pass sieve approach which used the baseline as one of the sieves and consists of a set of learningbased sieves (trained using SVMs) to target samehead bridging links. MRC problem. Model takes query (\"What is related of ENTITY?\") and the conversation as input, and outputs the answer entity span. baseline's architecture to find the correct bridging antecedent in the gold setting.",
"num": null
},
"TABREF0": {
"html": null,
"text": "[It] seems to be [a busy place] (8) . . . The Treasury Department said that the [US] 1 trade deficit may worsen next year after two years of significant improvement. . . The statement was the [US]Types of anaphoric relations marked The AR-RAU guidelines support annotation of different types of anaphoric relations. All referring markables are marked as either discourse new or discourse old. Discourse new mentions introduce new entities and thus are not marked as being coreferent with an entity already introduced (antecedent). For discourse-old mentions, an antecedent can be identified, either of type phrase (if the antecedent was introduced using a nominal markable) or segment (not introduced by a nominal markable, for discourse deixis). 7 In addition, referring NPs can be marked as related to a previously mentioned discourse entity to identify them as examples of associative (bridging) anaphora.",
"content": "<table><tr><td>1 's gov-</td></tr><tr><td>ernment first acknowledgment of what</td></tr><tr><td>other groups, such as the International</td></tr><tr><td>Monetary Fund, have been predicting for</td></tr><tr><td>months.</td></tr><tr><td>(9) The Treasury report, which is required an-</td></tr><tr><td>nually by a provision of the 1988 trade</td></tr><tr><td>act, again took South Korea to task for</td></tr><tr><td>its [exchange-rate] 1 policies. \"We believe</td></tr><tr><td>there have continued to be indications of</td></tr><tr><td>[exchange-rate] 1 manipulation . . .</td></tr></table>",
"type_str": "table",
"num": null
},
"TABREF2": {
"html": null,
"text": "Statistics about the CODI-CRAC 2021 corpus (new datasets only)",
"content": "<table/>",
"type_str": "table",
"num": null
},
"TABREF4": {
"html": null,
"text": "Summary of the Participating Systems",
"content": "<table><tr><td>Team</td><td>LIGHT</td><td>AMI</td><td>PERS.</td><td>SWBD.</td><td>Avg.</td></tr><tr><td/><td/><td>Eval AR</td><td/><td/><td/></tr><tr><td>Emory</td><td colspan=\"5\">80.33 (1) 63.98 (1) 78.41 (1) 74.49 (1) 74.3 (1)</td></tr><tr><td colspan=\"6\">UTD_NLP 79.56 (2) 57.38 (3) 77.50 (2) 72.64 (2) 71.8 (2)</td></tr><tr><td>KU_NLP</td><td colspan=\"5\">69.16 (3) 57.59 (2) 71.09 (3) 65.67 (3) 65.9 (3)</td></tr><tr><td>DFKI (1)</td><td colspan=\"5\">64.99 (4) 43.93 (4) 59.93 (4) 53.55 (4) 55.6 (4)</td></tr><tr><td>SCIR 22</td><td colspan=\"5\">55.92 (6) 39.46 (5) 52.25 (6) 51.63 (5) 49.8 (5)</td></tr><tr><td>Baseline</td><td colspan=\"5\">52.45 (7) 36.11 (6) 51.97 (7) 45.80 (7) 46.6 (6)</td></tr><tr><td>DFKI (2)</td><td colspan=\"5\">61.26 (5) 00.00 (7) 59.20 (5) 51.24 (6) 42.9 (7)</td></tr></table>",
"type_str": "table",
"num": null
},
"TABREF5": {
"html": null,
"text": "",
"content": "<table><tr><td/><td colspan=\"5\">: Performance on Task 1 (Evaluation Phase) -Identity Anaphora (CoNLL Avg. F1)</td></tr><tr><td>Team</td><td>LIGHT</td><td>AMI</td><td colspan=\"3\">PERS. SWBD. Avg.</td></tr><tr><td/><td colspan=\"3\">Eval Br (Gold)</td><td/><td/></tr><tr><td colspan=\"6\">UTD_NLP 19.73 19.65 31.40 21.10 23.0</td></tr><tr><td>KU_NLP</td><td colspan=\"5\">16.67 15.30 18.79 18.33 17.3</td></tr><tr><td>INRIA</td><td>9.35</td><td colspan=\"2\">6.00 16.28</td><td>7.79</td><td>9.9</td></tr><tr><td>Baseline</td><td>6.35</td><td colspan=\"2\">6.21 13.77</td><td>5.39</td><td>7.9</td></tr><tr><td/><td colspan=\"3\">Eval Br (Pred)</td><td/><td/></tr><tr><td colspan=\"6\">UTD_NLP 13.98 13.33 21.92 15.26 16.1</td></tr><tr><td>KU_NLP</td><td colspan=\"5\">13.46 10.25 12.32 10.99 11.8</td></tr><tr><td>Baseline</td><td>6.01</td><td>4.94</td><td>9.34</td><td>3.78</td><td>6.0</td></tr></table>",
"type_str": "table",
"num": null
},
"TABREF6": {
"html": null,
"text": "",
"content": "<table><tr><td colspan=\"4\">: Performance on Task 2 (Evaluation Phase) -</td></tr><tr><td colspan=\"3\">Bridging Anaphora (Entity F1)</td><td/></tr><tr><td>Team</td><td>LIGHT</td><td>AMI</td><td>PERS. SWBD. Avg.</td></tr><tr><td/><td colspan=\"3\">Eval DD (Gold)</td></tr><tr><td colspan=\"4\">UTD_NLP 43.44 36.91 52.09 40.44 43.2</td></tr><tr><td/><td colspan=\"3\">Eval DD (Pred)</td></tr><tr><td colspan=\"4\">UTD_NLP 42.70 35.35 39.64 35.43 38.3</td></tr><tr><td>DFKI</td><td colspan=\"3\">20.97 17.43 23.76 23.86 21.5</td></tr><tr><td>Baseline</td><td colspan=\"3\">12.12 15.75 18.27 13.55 14.9</td></tr></table>",
"type_str": "table",
"num": null
},
"TABREF7": {
"html": null,
"text": "",
"content": "<table><tr><td>: Performance on Task 3 (Evaluation Phase) -</td></tr><tr><td>Discourse Deixis (CoNLL Avg. F1)</td></tr></table>",
"type_str": "table",
"num": null
}
}
}
} |