File size: 50,490 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 |
{
"paper_id": "2021",
"header": {
"generated_with": "S2ORC 1.0.0",
"date_generated": "2023-01-19T07:24:22.912343Z"
},
"title": "",
"authors": [
{
"first": "Johan",
"middle": [],
"last": "Bos",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Rodrigo",
"middle": [],
"last": "Agerri",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Daisuke",
"middle": [],
"last": "Bekki",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Jean-Philippe",
"middle": [],
"last": "Bernardy",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Yuri",
"middle": [],
"last": "Bizzoni",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Ant\u00f3nio",
"middle": [],
"last": "Branco",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Ellen",
"middle": [],
"last": "Breitholz",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Chris",
"middle": [],
"last": "Brew",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Paul",
"middle": [],
"last": "Buitelaar",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Harry",
"middle": [],
"last": "Bunt",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Aljoscha",
"middle": [],
"last": "Burchardt",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Stergios",
"middle": [],
"last": "Chatzikyriakidis",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Rui",
"middle": [],
"last": "Chaves",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Philipp",
"middle": [],
"last": "Cimiano",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Daoud",
"middle": [],
"last": "Clarke",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Paul",
"middle": [],
"last": "Cook",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Robin",
"middle": [],
"last": "Cooper",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Montse",
"middle": [],
"last": "Cuadros",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Paula",
"middle": [],
"last": "Czarnowska",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Philippe",
"middle": [],
"last": "De Groote",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Gerard",
"middle": [],
"last": "De Melo",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Rodolfo",
"middle": [],
"last": "Delmonte",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Markus",
"middle": [],
"last": "Egg",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Guy",
"middle": [],
"last": "Emerson",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Katrin",
"middle": [],
"last": "Erk",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Arash",
"middle": [],
"last": "Eshghi",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Kilian",
"middle": [],
"last": "Evang",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Meaghan",
"middle": [],
"last": "Fowlie",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Anette",
"middle": [],
"last": "Frank",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Diego",
"middle": [],
"last": "Frassinelli",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Andr\u00e9",
"middle": [],
"last": "Freitas",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Mehdi",
"middle": [],
"last": "Ghanimifard",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Jonathan",
"middle": [],
"last": "Ginzburg",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Christine",
"middle": [],
"last": "Howes",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Elisabetta",
"middle": [],
"last": "Jezek",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Rohit",
"middle": [],
"last": "Kate",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Gene",
"middle": [],
"last": "Kim",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Ralf",
"middle": [],
"last": "Klabunde",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Nikhil",
"middle": [],
"last": "Krishnaswamy",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Staffan",
"middle": [],
"last": "Larsson",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Alex",
"middle": [],
"last": "Lascarides",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Alessandro",
"middle": [],
"last": "Lenci",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Zhaohui",
"middle": [],
"last": "Luo",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Aleksandre",
"middle": [],
"last": "Maskharashvili",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Louise",
"middle": [],
"last": "Mcnally",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Koji",
"middle": [],
"last": "Mineshima",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Yusuke",
"middle": [],
"last": "Miyao",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Richard",
"middle": [],
"last": "Moot",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Larry",
"middle": [],
"last": "Moss",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Sebastian",
"middle": [],
"last": "Pad\u00f3",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Ludovica",
"middle": [],
"last": "Pannitto",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Sandro",
"middle": [],
"last": "Pezzelle",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Manfred",
"middle": [],
"last": "Pinkal",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Paul",
"middle": [],
"last": "Piwek",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Massimo",
"middle": [],
"last": "Poesio",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Christopher",
"middle": [],
"last": "Potts",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Violaine",
"middle": [],
"last": "Prince",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Stephen",
"middle": [],
"last": "Pulman",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Matthew",
"middle": [],
"last": "Purver",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Allan",
"middle": [],
"last": "Ramsay",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Christian",
"middle": [],
"last": "Retor\u00e9",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Kyle",
"middle": [],
"last": "Richardson",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "German",
"middle": [
"Rigau"
],
"last": "Mats",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Rooth",
"middle": [],
"last": "Michael",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Roth",
"middle": [],
"last": "Mehrnoosh",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Sadrzadeh",
"middle": [
"Asad"
],
"last": "Sayeed",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Nathan",
"middle": [],
"last": "Schneider",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Sabine",
"middle": [],
"last": "Schulte Im Walde",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Rolf",
"middle": [],
"last": "Schwitter",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Ravi",
"middle": [],
"last": "Shekhar",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Carina",
"middle": [],
"last": "Silberer",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Mark",
"middle": [],
"last": "Steedman",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Tim",
"middle": [],
"last": "Van De Cruys",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Kees",
"middle": [],
"last": "Van Deemter",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Carl",
"middle": [],
"last": "Vogel",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Shan",
"middle": [],
"last": "Wang",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Christian",
"middle": [],
"last": "Wartena",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Bonnie",
"middle": [],
"last": "Webber",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Matthijs",
"middle": [],
"last": "Westera",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Gijs",
"middle": [],
"last": "Wijnholds",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Hitomi",
"middle": [],
"last": "Yanaka",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Annie",
"middle": [],
"last": "Zaenen",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Roberto",
"middle": [],
"last": "Zamparelli",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Fabio",
"middle": [
"Massimo"
],
"last": "Zanzotto",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Mirella",
"middle": [],
"last": "Lapata",
"suffix": "",
"affiliation": {},
"email": ""
}
],
"year": "",
"venue": null,
"identifiers": {},
"abstract": "Semantic parsing is the task of mapping natural language utterances to machine-interpretable expressions such as SQL or a logical meaning representation. It has emerged as a key technology for developing natural language interfaces, especially in the context of question answering where a semantically complex question is mapped to an executable query to retrieve an answer, or denotation.",
"pdf_parse": {
"paper_id": "2021",
"_pdf_hash": "",
"abstract": [
{
"text": "Semantic parsing is the task of mapping natural language utterances to machine-interpretable expressions such as SQL or a logical meaning representation. It has emerged as a key technology for developing natural language interfaces, especially in the context of question answering where a semantically complex question is mapped to an executable query to retrieve an answer, or denotation.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Abstract",
"sec_num": null
}
],
"body_text": [
{
"text": "These are the conference proceedings of IWCS 2021, the 14th edition of the International Conference on Computational Semantics. This conference is supported by the NWO-VICI grant \"Lost in , known from its research and creation of the Parallel Meaning Bank.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Message from the Organizers",
"sec_num": null
},
{
"text": "The original plan was to have this conference take place in the beautiful city of Groningen, situated in the north of the Netherlands. However, due to the outbreak of the pandemic last year it became soon clear that this would not be a feasible option. So we decided to go ahead anyway and organize it as a fully online event. And indeed, it is the first time that IWCS is organized as an online event, spread over two days from 17-18 June 2021. Four satellite workshops are organised in the days before the conference: Going back to the main conference, the call for papers triggered 50 submissions (39 long and 11 short). Each paper was reviewed by three reviewers. There were three desk rejects. Eventually, 24 papers were accepted for the conference, of which one was withdrawn. This results in 19 long and 4 short papers with a final acceptance rate of 46% (49% for long and 36% for short papers). The final programme shows a lot of diversity with topics ranging from semantic parsing, question answering, knowledge extraction, and frame semantics. Two keynotes complement the programme, given by Rachel Rudinger (University of Maryland) and Mirella Lapata (University of Edinburgh).",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Message from the Organizers",
"sec_num": null
},
{
"text": "Datasets for semantic parsing scarcely consider languages other than English and professional translation can be prohibitively expensive. Recent work has successfully applied machine translation to localize parsers to new languages. However, high-quality machine translation is less viable for lower resource languages, and can introduce performance limiting artifacts, struggling to accurately model native speakers.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Message from the Organizers",
"sec_num": null
},
{
"text": "In this talk view cross-lingual semantic parsing as a zero-shot learning problem. We propose a multi-task encoder-decoder model to transfer parsing knowledge to additional languages using only English-Logical form paired data and unlabeled, mono-lingual utterances in each target language. Our encoder learns language-agnostic representations and is jointly optimized for generating logical forms or utterance reconstruction and against language discriminability. We frame zero-shot parsing as a latent-space alignment problem and find that pre-trained models can be improved to generate logical forms with minimal cross-lingual transfer penalty. Our parser performs above back-translation baselines and, in some cases, approaches the supervised upper bound.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Message from the Organizers",
"sec_num": null
},
{
"text": "Bio: Mirella Lapata is professor of natural language processing in the School of Informatics at the University of Edinburgh. Her research focuses on getting computers to understand, reason with, and generate natural language. She is the first recipient (2009) of the British Computer Society and Information Retrieval Specialist Group (BCS/IRSG) Karen Sparck Jones award, a Fellow of the ACL and the Royal Society of Edinburgh. She has also received best paper awards in leading NLP conferences and has served on the editorial boards of the Journal of Artificial Intelligence Research, the Transactions of the ACL, and Computational Linguistics. She was president of SIGDAT (the group that organized EMNLP) in 2018.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Message from the Organizers",
"sec_num": null
},
{
"text": "Rachel Rudinger, University of Maryland Title: When Pigs Fly and Birds Don't: Exploring Defeasible Inference in Natural Language Abstract: Commonsense reasoning tasks are often posed in terms of soft inferences: given a textual description of a scenario, determine which inferences are likely or plausibly true. For example, if a person drops a glass, it is likely to shatter when it hits the ground. A hallmark of such inferences is that they are defeasible, meaning they may be undermined or retracted with the introduction of new information. (E.g., we no longer infer that the dropped glass is likely to have shattered upon learning that it landed on a soft pile of laundry.) While defeasible reasoning is a long-standing topic of research in Artificial Intelligence (McCarthy, 1980; McDermott and Doyle, 1980; Reiter, 1980) , it is less well studied in the context of contemporary text-based inference tasks, like Recognizing Textual Entailment (Dagan et al., 2005 ), or Natural Language Inference (MacCartney, 2009 Bowman et al., 2015) . In this talk, I will present a new line of work that merges traditional defeasible reasoning with contemporary data-driven textual inference tasks. I argue that defeasible inference is a broadly applicable framework for different types of language inference tasks, and present examples for physical, temporal, and social reasoning.",
"cite_spans": [
{
"start": 771,
"end": 787,
"text": "(McCarthy, 1980;",
"ref_id": null
},
{
"start": 788,
"end": 814,
"text": "McDermott and Doyle, 1980;",
"ref_id": null
},
{
"start": 815,
"end": 828,
"text": "Reiter, 1980)",
"ref_id": null
},
{
"start": 950,
"end": 969,
"text": "(Dagan et al., 2005",
"ref_id": null
},
{
"start": 970,
"end": 1020,
"text": "), or Natural Language Inference (MacCartney, 2009",
"ref_id": null
},
{
"start": 1021,
"end": 1041,
"text": "Bowman et al., 2015)",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Message from the Organizers",
"sec_num": null
},
{
"text": "Bio: Rachel Rudinger is an Assistant Professor of Computer Science at the University of Maryland, College Park. Previously, she obtained her PhD at John Hopkins University and spent a year as a Young Investigator at AI2 in Seattle. Her research focuses on problems in natural language understanding, including knowledge acquisition from text, commonsense inference, computationally-tractable semantic representations, and semantic parsing. She is also a contributing member of the Decompositional Semantics Initiative.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Message from the Organizers",
"sec_num": null
}
],
"back_matter": [
{
"text": "We wish you a pleasant conference! Groningen, 1 June 2021 Lasha Abzianidze Johan Bos Rik van Noord Sina Zarrie\u00df",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "acknowledgement",
"sec_num": null
}
],
"bib_entries": {
"BIBREF0": {
"ref_id": "b0",
"title": "of Contents Switching Contexts: Transportability Measures for NLP",
"authors": [
{
"first": "Guy",
"middle": [],
"last": "Marshall",
"suffix": ""
},
{
"first": "Mokanarangan",
"middle": [],
"last": "Thayaparan",
"suffix": ""
},
{
"first": "Philip",
"middle": [],
"last": "Osborne",
"suffix": ""
},
{
"first": "Andr\u00e9",
"middle": [
". . . . . . . . . . . . . ."
],
"last": "Freitas",
"suffix": ""
}
],
"year": null,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "of Contents Switching Contexts: Transportability Measures for NLP Guy Marshall, Mokanarangan Thayaparan, Philip Osborne and Andr\u00e9 Freitas . . . . . . . . . . . . . . . . . . 1",
"links": null
},
"BIBREF1": {
"ref_id": "b1",
"title": "Applied Temporal Analysis: A Complete Run of the FraCaS Test Suite Jean-Philippe Bernardy and Stergios Chatzikyriakidis",
"authors": [],
"year": null,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Applied Temporal Analysis: A Complete Run of the FraCaS Test Suite Jean-Philippe Bernardy and Stergios Chatzikyriakidis . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 11",
"links": null
},
"BIBREF2": {
"ref_id": "b2",
"title": "A Framework for Revealing Commonsense Knowledge Paths as Explicitations of Implicit Knowledge in Texts Maria Becker",
"authors": [
{
"first": "",
"middle": [],
"last": "Co-Nnect",
"suffix": ""
}
],
"year": null,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "CO-NNECT: A Framework for Revealing Commonsense Knowledge Paths as Explicitations of Implicit Knowledge in Texts Maria Becker, Katharina Korfhage, Debjit Paul and Anette Frank . . . . . . . . . . . . . . . . . . . . . . . . . . . . 21",
"links": null
},
"BIBREF3": {
"ref_id": "b3",
"title": "Computing All Quantifier Scopes with CCG Milo\u0161 Stanojevi\u0107",
"authors": [
{
"first": "Mark",
"middle": [
". ."
],
"last": "Steedman",
"suffix": ""
}
],
"year": null,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Computing All Quantifier Scopes with CCG Milo\u0161 Stanojevi\u0107 and Mark Steedman . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 33",
"links": null
},
"BIBREF5": {
"ref_id": "b5",
"title": "Predicate Representations and Polysemy in VerbNet Semantic Parsing James",
"authors": [
{
"first": "Martha",
"middle": [],
"last": "Gung",
"suffix": ""
},
{
"first": ".",
"middle": [
"."
],
"last": "Palmer",
"suffix": ""
}
],
"year": null,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Predicate Representations and Polysemy in VerbNet Semantic Parsing James Gung and Martha Palmer . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 51",
"links": null
},
"BIBREF7": {
"ref_id": "b7",
"title": "Do Natural Language Explanations Represent Valid Logical Arguments? Verifying Entailment in Explainable NLI Gold Standards Marco Valentino",
"authors": [
{
"first": "Ian",
"middle": [],
"last": "Pratt-Hartmann",
"suffix": ""
},
{
"first": "Andr\u00e9",
"middle": [],
"last": "Freitas",
"suffix": ""
},
{
"first": ".",
"middle": [
"."
],
"last": "",
"suffix": ""
}
],
"year": null,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Do Natural Language Explanations Represent Valid Logical Arguments? Verifying Entailment in Ex- plainable NLI Gold Standards Marco Valentino, Ian Pratt-Hartmann and Andr\u00e9 Freitas . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 76",
"links": null
},
"BIBREF8": {
"ref_id": "b8",
"title": "Eye-Tracking Features Prediction: Does Semantic Similarity Help? Lavinia Salicchi",
"authors": [
{
"first": "Alessandro",
"middle": [],
"last": "Lenci",
"suffix": ""
},
{
"first": ".",
"middle": [
"."
],
"last": "Emmanuele Chersoni",
"suffix": ""
}
],
"year": null,
"venue": "",
"volume": "87",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Looking for a Role for Word Embeddings in Eye-Tracking Features Prediction: Does Semantic Similarity Help? Lavinia Salicchi, Alessandro Lenci and Emmanuele Chersoni . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 87",
"links": null
},
"BIBREF9": {
"ref_id": "b9",
"title": "Automatic Assignment of Semantic Frames in Disaster Response Team Communication Dialogues Natalia Skachkova and Ivana Kruijff-Korbayova",
"authors": [],
"year": null,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Automatic Assignment of Semantic Frames in Disaster Response Team Communication Dialogues Natalia Skachkova and Ivana Kruijff-Korbayova . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 93",
"links": null
},
"BIBREF10": {
"ref_id": "b10",
"title": "Implicit representations of event properties within contextual language models: Searching for \"causativity neurons",
"authors": [
{
"first": "Younes",
"middle": [],
"last": "Samih",
"suffix": ""
},
{
"first": "Laura",
"middle": [],
"last": "Kallmeyer",
"suffix": ""
},
{
"first": "Hassan",
"middle": [],
"last": "Sajjad",
"suffix": ""
},
{
"first": ".",
"middle": [
"."
],
"last": "",
"suffix": ""
}
],
"year": null,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Implicit representations of event properties within contextual language models: Searching for \"causativ- ity neurons\" Esther Seyffarth, Younes Samih, Laura Kallmeyer and Hassan Sajjad . . . . . . . . . . . . . . . . . . . . . . . 110",
"links": null
},
"BIBREF12": {
"ref_id": "b12",
"title": "Is that really a question? Going beyond factoid questions in NLP Aikaterini",
"authors": [
{
"first": "Lida",
"middle": [],
"last": "Kalouli",
"suffix": ""
},
{
"first": "Rebecca",
"middle": [],
"last": "Kehlbeck",
"suffix": ""
},
{
"first": "Rita",
"middle": [],
"last": "Sevastjanova",
"suffix": ""
},
{
"first": "Oliver",
"middle": [],
"last": "Deussen",
"suffix": ""
},
{
"first": "Daniel",
"middle": [],
"last": "Keim",
"suffix": ""
},
{
"first": "Miriam",
"middle": [],
"last": "Butt",
"suffix": ""
},
{
"first": ".",
"middle": [
"."
],
"last": "",
"suffix": ""
}
],
"year": null,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Is that really a question? Going beyond factoid questions in NLP Aikaterini-Lida Kalouli, Rebecca Kehlbeck, Rita Sevastjanova, Oliver Deussen, Daniel Keim and Miriam Butt . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 132",
"links": null
},
"BIBREF13": {
"ref_id": "b13",
"title": "How Much Data is Necessary to Adapt a Temporal Tagger to the Voice Assistant Domain Touhidul Alam",
"authors": [
{
"first": "New",
"middle": [],
"last": "Domain",
"suffix": ""
},
{
"first": "Major",
"middle": [],
"last": "Effort",
"suffix": ""
},
{
"first": "Alessandra",
"middle": [],
"last": "Zarcone",
"suffix": ""
},
{
"first": "Sebastian",
"middle": [],
"last": "Pad\u00f3",
"suffix": ""
},
{
"first": ".",
"middle": [
"."
],
"last": "",
"suffix": ""
}
],
"year": null,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "New Domain, Major Effort? How Much Data is Necessary to Adapt a Temporal Tagger to the Voice Assistant Domain Touhidul Alam, Alessandra Zarcone and Sebastian Pad\u00f3 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 144",
"links": null
},
"BIBREF14": {
"ref_id": "b14",
"title": "Breeding Fillmore's Chickens and Hatching the Eggs: Recombining Frames and Roles in Frame-Semantic Parsing Gosse Minnema and Malvina Nissim",
"authors": [],
"year": null,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Breeding Fillmore's Chickens and Hatching the Eggs: Recombining Frames and Roles in Frame-Semantic Parsing Gosse Minnema and Malvina Nissim . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 155",
"links": null
},
"BIBREF15": {
"ref_id": "b15",
"title": "Large-scale text pre-training helps with dialogue act recognition, but not without fine-tuning Bill Noble and Vladislav Maraev",
"authors": [],
"year": null,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Large-scale text pre-training helps with dialogue act recognition, but not without fine-tuning Bill Noble and Vladislav Maraev . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 166",
"links": null
},
"BIBREF16": {
"ref_id": "b16",
"title": "Builder, we have done it: Evaluating & Extending Dialogue-AMR NLU Pipeline for Two Collaborative Domains Claire Bonial",
"authors": [
{
"first": "Mitchell",
"middle": [],
"last": "Abrams",
"suffix": ""
},
{
"first": "David",
"middle": [],
"last": "Traum",
"suffix": ""
},
{
"first": "Clare",
"middle": [],
"last": "Voss",
"suffix": ""
},
{
"first": ".",
"middle": [
"."
],
"last": "",
"suffix": ""
}
],
"year": null,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Builder, we have done it: Evaluating & Extending Dialogue-AMR NLU Pipeline for Two Collaborative Domains Claire Bonial, Mitchell Abrams, David Traum and Clare Voss . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 173",
"links": null
},
"BIBREF17": {
"ref_id": "b17",
"title": "Politeness, you simpleton!\" retorted [MASK]: Masked prediction of literary characters Eric Holgate and",
"authors": [
{
"first": "Gene",
"middle": [],
"last": "Kim",
"suffix": ""
},
{
"first": "Viet",
"middle": [],
"last": "Duong",
"suffix": ""
},
{
"first": "Xin",
"middle": [],
"last": "Lu",
"suffix": ""
},
{
"first": "Lenhart",
"middle": [],
"last": "Schubert",
"suffix": ""
},
{
"first": ".",
"middle": [
"."
],
"last": "",
"suffix": ""
}
],
"year": null,
"venue": "A Transition-based Parser for Unscoped Episodic Logical Forms",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "A Transition-based Parser for Unscoped Episodic Logical Forms Gene Kim, Viet Duong, Xin Lu and Lenhart Schubert . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 184 \"Politeness, you simpleton!\" retorted [MASK]: Masked prediction of literary characters Eric Holgate and Katrin Erk . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 202",
"links": null
},
"BIBREF18": {
"ref_id": "b18",
"title": "Tuning Deep Active Learning for Semantic Role Labeling Skatje",
"authors": [
{
"first": "Martha",
"middle": [],
"last": "Myers",
"suffix": ""
},
{
"first": ".",
"middle": [
"."
],
"last": "Palmer",
"suffix": ""
}
],
"year": null,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Tuning Deep Active Learning for Semantic Role Labeling Skatje Myers and Martha Palmer . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 212",
"links": null
},
"BIBREF19": {
"ref_id": "b19",
"title": "SemLink 2.0: Chasing Lexical Resources Kevin Stowe",
"authors": [],
"year": null,
"venue": "Jenette Preciado",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "SemLink 2.0: Chasing Lexical Resources Kevin Stowe, Jenette Preciado, Kathryn Conger, Susan Windisch Brown, Ghazaleh Kazeminejad,",
"links": null
},
"BIBREF21": {
"ref_id": "b21",
"title": "Variation in framing as a function of temporal reporting distance Levi Remijnse, Marten Postma and Piek Vossen",
"authors": [],
"year": null,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Variation in framing as a function of temporal reporting distance Levi Remijnse, Marten Postma and Piek Vossen . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 228",
"links": null
},
"BIBREF22": {
"ref_id": "b22",
"title": "Automatic Classification of Attributes in German Adjective-Noun Phrases Neele Falk, Yana Strakatova",
"authors": [],
"year": null,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Automatic Classification of Attributes in German Adjective-Noun Phrases Neele Falk, Yana Strakatova, Eva Huber and Erhard Hinrichs . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 239 x",
"links": null
}
},
"ref_entries": {
"FIGREF0": {
"text": "ISA-17: The Seventeenth Joint ACL -ISO Workshop on Interoperable Semantic Annotation; \u2022 MMSR I: Beyond Language: Multimodal Semantic Representations; \u2022 NALOMA'21: Natural Logic meets Machine Learning 2021; \u2022 SemSpace 2021: Semantic Spaces at the Intersection of NLP, Physics, and Cognitive Science.",
"num": null,
"type_str": "figure",
"uris": null
}
}
}
} |