File size: 90,431 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 | {
"paper_id": "P09-1011",
"header": {
"generated_with": "S2ORC 1.0.0",
"date_generated": "2023-01-19T08:54:46.637316Z"
},
"title": "Learning Semantic Correspondences with Less Supervision",
"authors": [
{
"first": "Percy",
"middle": [],
"last": "Liang",
"suffix": "",
"affiliation": {},
"email": "pliang@cs.berkeley.edu"
},
{
"first": "Michael",
"middle": [
"I"
],
"last": "Jordan",
"suffix": "",
"affiliation": {},
"email": "jordan@cs.berkeley.edu"
},
{
"first": "U",
"middle": [
"C"
],
"last": "Berkeley",
"suffix": "",
"affiliation": {},
"email": ""
},
{
"first": "Dan",
"middle": [],
"last": "Klein",
"suffix": "",
"affiliation": {},
"email": "klein@cs.berkeley.edu"
}
],
"year": "",
"venue": null,
"identifiers": {},
"abstract": "A central problem in grounded language acquisition is learning the correspondences between a rich world state and a stream of text which references that world state. To deal with the high degree of ambiguity present in this setting, we present a generative model that simultaneously segments the text into utterances and maps each utterance to a meaning representation grounded in the world state. We show that our model generalizes across three domains of increasing difficulty-Robocup sportscasting, weather forecasts (a new domain), and NFL recaps.",
"pdf_parse": {
"paper_id": "P09-1011",
"_pdf_hash": "",
"abstract": [
{
"text": "A central problem in grounded language acquisition is learning the correspondences between a rich world state and a stream of text which references that world state. To deal with the high degree of ambiguity present in this setting, we present a generative model that simultaneously segments the text into utterances and maps each utterance to a meaning representation grounded in the world state. We show that our model generalizes across three domains of increasing difficulty-Robocup sportscasting, weather forecasts (a new domain), and NFL recaps.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Abstract",
"sec_num": null
}
],
"body_text": [
{
"text": "Recent work in learning semantics has focused on mapping sentences to meaning representations (e.g., some logical form) given aligned sentence/meaning pairs as training data (Ge and Mooney, 2005; Zettlemoyer and Collins, 2005; Zettlemoyer and Collins, 2007; Lu et al., 2008) . However, this degree of supervision is unrealistic for modeling human language acquisition and can be costly to obtain for building large-scale, broadcoverage language understanding systems.",
"cite_spans": [
{
"start": 174,
"end": 195,
"text": "(Ge and Mooney, 2005;",
"ref_id": "BIBREF7"
},
{
"start": 196,
"end": 226,
"text": "Zettlemoyer and Collins, 2005;",
"ref_id": "BIBREF18"
},
{
"start": 227,
"end": 257,
"text": "Zettlemoyer and Collins, 2007;",
"ref_id": "BIBREF19"
},
{
"start": 258,
"end": 274,
"text": "Lu et al., 2008)",
"ref_id": "BIBREF12"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "A more flexible direction is grounded language acquisition: learning the meaning of sentences in the context of an observed world state. The grounded approach has gained interest in various disciplines (Siskind, 1996; Yu and Ballard, 2004; Feldman and Narayanan, 2004; Gorniak and Roy, 2007) . Some recent work in the NLP community has also moved in this direction by relaxing the amount of supervision to the setting where each sentence is paired with a small set of candidate meanings (Kate and Mooney, 2007; Chen and Mooney, 2008) .",
"cite_spans": [
{
"start": 202,
"end": 217,
"text": "(Siskind, 1996;",
"ref_id": "BIBREF15"
},
{
"start": 218,
"end": 239,
"text": "Yu and Ballard, 2004;",
"ref_id": "BIBREF17"
},
{
"start": 240,
"end": 268,
"text": "Feldman and Narayanan, 2004;",
"ref_id": "BIBREF6"
},
{
"start": 269,
"end": 291,
"text": "Gorniak and Roy, 2007)",
"ref_id": "BIBREF8"
},
{
"start": 487,
"end": 510,
"text": "(Kate and Mooney, 2007;",
"ref_id": "BIBREF10"
},
{
"start": 511,
"end": 533,
"text": "Chen and Mooney, 2008)",
"ref_id": "BIBREF3"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "The goal of this paper is to reduce the amount of supervision even further. We assume that we are given a world state represented by a set of records along with a text, an unsegmented sequence of words. For example, in the weather forecast domain (Section 2.2), the text is the weather report, and the records provide a structured representation of the temperature, sky conditions, etc.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "In this less restricted data setting, we must resolve multiple ambiguities: (1) the segmentation of the text into utterances;",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "(2) the identification of relevant facts, i.e., the choice of records and aspects of those records; and (3) the alignment of utterances to facts (facts are the meaning representations of the utterances). Furthermore, in some of our examples, much of the world state is not referenced at all in the text, and, conversely, the text references things which are not represented in our world state. This increased amount of ambiguity and noise presents serious challenges for learning. To cope with these challenges, we propose a probabilistic generative model that treats text segmentation, fact identification, and alignment in a single unified framework. The parameters of this hierarchical hidden semi-Markov model can be estimated efficiently using EM. We tested our model on the task of aligning text to records in three different domains. The first domain is Robocup sportscasting (Chen and Mooney, 2008) . Their best approach (KRISPER) obtains 67% F 1 ; our method achieves 76.5%. This domain is simplified in that the segmentation is known. The second domain is weather forecasts, for which we created a new dataset. Here, the full complexity of joint segmentation and alignment arises. Nonetheless, we were able to obtain reasonable results on this task. The third domain we considered is NFL recaps (Barzilay and Lapata, 2005; Snyder and Barzilay, 2007) . The language used in this domain is richer by orders of magnitude, and much of it does not reference the world state. Nonetheless, taking the first unsupervised approach to this problem, we were able to make substantial progress: We achieve an F 1 of 53.2%, which closes over half of the gap between a heuristic baseline (26%) and supervised systems (68%-80%). Table 1 : Statistics for the three datasets. We report average values across all scenarios in the dataset: |w| is the number of words in the text, |T | is the number of record types, |s| is the number of records, and |A| is the number of gold alignments.",
"cite_spans": [
{
"start": 883,
"end": 906,
"text": "(Chen and Mooney, 2008)",
"ref_id": "BIBREF3"
},
{
"start": 1305,
"end": 1332,
"text": "(Barzilay and Lapata, 2005;",
"ref_id": "BIBREF0"
},
{
"start": 1333,
"end": 1359,
"text": "Snyder and Barzilay, 2007)",
"ref_id": "BIBREF16"
}
],
"ref_spans": [
{
"start": 1723,
"end": 1730,
"text": "Table 1",
"ref_id": null
}
],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "Our goal is to learn the correspondence between a text w and the world state s it describes. We use the term scenario to refer to such a (w, s) pair.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Domains and Datasets",
"sec_num": "2"
},
{
"text": "The text is simply a sequence of words w = (w 1 , . . . , w |w| ). We represent the world state s as a set of records, where each record r \u2208 s is described by a record type r.t \u2208 T and a tuple of field values r.v = (r.v 1 , . . . , r.v m ). 1 For example, temperature is a record type in the weather domain, and it has four fields: time, min, mean, and max.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Domains and Datasets",
"sec_num": "2"
},
{
"text": "The record type r.t \u2208 T specifies the field type r.t f \u2208 {INT, STR, CAT} of each field value r.v f , f = 1, . . . , m. There are three possible field types-integer (INT), string (STR), and categorical (CAT)-which are assumed to be known and fixed. Integer fields represent numeric properties of the world such as temperature, string fields represent surface-level identifiers such as names of people, and categorical fields represent discrete concepts such as score types in football (touchdown, field goal, and safety). The field type determines the way we expect the field value to be rendered in words: integer fields can be numerically perturbed, string fields can be spliced, and categorical fields are represented by open-ended word distributions, which are to be learned. See Section 3.3 for details.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Domains and Datasets",
"sec_num": "2"
},
{
"text": "In this domain, a Robocup simulator generates the state of a soccer game, which is represented by a set of event records. For example, the record pass(arg1=pink1,arg2=pink5) denotes a passing event; this type of record has two fields: arg1 (the actor) and arg2 (the recipient). As the game is progressing, humans interject commentaries about notable events in the game, e.g., pink1 passes back to pink5 near the middle of the field. All of the fields in this domain are categorical, which means there is no a priori association between the field value pink1 and the word pink1. This degree of flexibility is desirable because pink1 is sometimes referred to as pink goalie, a mapping which does not arise from string operations but must instead be learned.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Robocup Sportscasting",
"sec_num": "2.1"
},
{
"text": "We used the dataset created by Chen and Mooney (2008) , which contains 1919 scenarios from the 2001-2004 Robocup finals. Each scenario consists of a single sentence representing a fragment of a commentary on the game, paired with a set of candidate records. In the annotation, each sentence corresponds to at most one record (possibly one not in the candidate set, in which case we automatically get that sentence wrong). See Figure 1 (a) for an example and Table 1 for summary statistics on the dataset.",
"cite_spans": [
{
"start": 31,
"end": 53,
"text": "Chen and Mooney (2008)",
"ref_id": "BIBREF3"
}
],
"ref_spans": [
{
"start": 426,
"end": 434,
"text": "Figure 1",
"ref_id": "FIGREF3"
},
{
"start": 458,
"end": 465,
"text": "Table 1",
"ref_id": null
}
],
"eq_spans": [],
"section": "Robocup Sportscasting",
"sec_num": "2.1"
},
{
"text": "In this domain, the world state contains detailed information about a local weather forecast and the text is a short forecast report (see Figure 1(b) for an example). To create the dataset, we collected local weather forecasts for 3,753 cities in the US (those with population at least 10,000) over three days (February 7-9, 2009) from www.weather.gov. For each city and date, we created two scenarios, one for the day forecast and one for the night forecast. The forecasts consist of hour-by-hour measurements of temperature, wind speed, sky cover, chance of rain, etc., which represent the underlying world state.",
"cite_spans": [],
"ref_spans": [
{
"start": 138,
"end": 149,
"text": "Figure 1(b)",
"ref_id": "FIGREF3"
}
],
"eq_spans": [],
"section": "Weather Forecasts",
"sec_num": "2.2"
},
{
"text": "This world state is summarized by records which aggregate measurements over selected time intervals. For example, one of the records states the minimum, average, and maximum temperature from 5pm to 6am. This aggregation process produced 22,146 scenarios, each containing |s| = 36 multi-field records. There are 12 record types, each consisting of only integer and categorical fields.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Weather Forecasts",
"sec_num": "2.2"
},
{
"text": "To annotate the data, we split the text by punctuation into lines and labeled each line with the records to which the line refers. These lines are used only for evaluation and are not part of the model (see Section 5.1 for further discussion).",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Weather Forecasts",
"sec_num": "2.2"
},
{
"text": "The weather domain is more complex than the Robocup domain in several ways: The text w is longer, there are more candidate records, and most notably, w references multiple records (5.8 on av- . . . rainChance(time=26-30,mode=Def) temperature (time=17-30,min=43,mean=44,max=47) windDir(time=17-30,mode=SE) windSpeed (time=17-30,min=11,mean=12,max=14,mode=10-20) precipPotential(time=17-30,min=5,mean=26,max=75) rainChance(time=17-30,mode=--) windChill(time=17-30,min=37,mean=38,max=42) skyCover(time=17-30,mode=50-75) rainChance(time=21-30,mode=--) . . . . . . rushing(entity=richie anderson,att=5,yds=37,avg=7.4,lg=16,td=0) receiving(entity=richie anderson,rec=4,yds=46,avg=11.5,lg=20,td=0) play(quarter=1,description=richie anderson ( dal ) rushed left side for 13 yards .)",
"cite_spans": [
{
"start": 242,
"end": 276,
"text": "(time=17-30,min=43,mean=44,max=47)",
"ref_id": null
},
{
"start": 315,
"end": 360,
"text": "(time=17-30,min=11,mean=12,max=14,mode=10-20)",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Weather Forecasts",
"sec_num": "2.2"
},
{
"text": "defense(entity=eric ogbogu,tot=4,solo=3,ast=1,sck=0,yds=0) . . . erage), so the segmentation of w is unknown. See Table 1 for a comparison of the two datasets.",
"cite_spans": [],
"ref_spans": [
{
"start": 114,
"end": 121,
"text": "Table 1",
"ref_id": null
}
],
"eq_spans": [],
"section": "Weather Forecasts",
"sec_num": "2.2"
},
{
"text": "In this domain, each scenario represents a single NFL football game (see Figure 1 (c) for an example). The world state (the things that happened during the game) is represented by database tables, e.g., scoring summary, team comparison, drive chart, play-by-play, etc. Each record is a database entry, for instance, the receiving statistics for a certain player. The text is the recap of the gamean article summarizing the game highlights. The dataset we used was collected by Barzilay and Lapata (2005) . The data includes 466 games during the 2003-2004 NFL season. 78 of these games were annotated by Snyder and Barzilay (2007) , who aligned each sentence to a set of records.",
"cite_spans": [
{
"start": 477,
"end": 503,
"text": "Barzilay and Lapata (2005)",
"ref_id": "BIBREF0"
},
{
"start": 603,
"end": 629,
"text": "Snyder and Barzilay (2007)",
"ref_id": "BIBREF16"
}
],
"ref_spans": [
{
"start": 73,
"end": 81,
"text": "Figure 1",
"ref_id": "FIGREF3"
}
],
"eq_spans": [],
"section": "NFL Recaps",
"sec_num": "2.3"
},
{
"text": "This domain is by far the most complicated of the three. Many records corresponding to inconsequential game statistics are not mentioned. Conversely, the text contains many general remarks (e.g., it was just that type of game) which are not present in any of the records. Furthermore, the complexity of the language used in the recap is far greater than what we can represent us-ing our simple model. Fortunately, most of the fields are integer fields or string fields (generally names or brief descriptions), which provide important anchor points for learning the correspondences. Nonetheless, the same names and numbers occur in multiple records, so there is still uncertainty about which record is referenced by a given sentence.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "NFL Recaps",
"sec_num": "2.3"
},
{
"text": "To learn the correspondence between a text w and a world state s, we propose a generative model p(w | s) with latent variables specifying this correspondence.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Generative Model",
"sec_num": "3"
},
{
"text": "Our model combines segmentation with alignment. The segmentation aspect of our model is similar to that of Grenager et al. (2005) and Eisenstein and , but in those two models, the segments are clustered into topics rather than grounded to a world state. The alignment aspect of our model is similar to the HMM model for word alignment (Ney and Vogel, 1996) . DeNero et al. (2008) perform joint segmentation and word alignment for machine translation, but the nature of that task is different from ours.",
"cite_spans": [
{
"start": 107,
"end": 129,
"text": "Grenager et al. (2005)",
"ref_id": "BIBREF9"
},
{
"start": 335,
"end": 356,
"text": "(Ney and Vogel, 1996)",
"ref_id": "BIBREF14"
},
{
"start": 359,
"end": 379,
"text": "DeNero et al. (2008)",
"ref_id": "BIBREF4"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Generative Model",
"sec_num": "3"
},
{
"text": "The model is defined by a generative process, which proceeds in three stages ( Figure 2 shows the corresponding graphical model):",
"cite_spans": [],
"ref_spans": [
{
"start": 79,
"end": 87,
"text": "Figure 2",
"ref_id": null
}
],
"eq_spans": [],
"section": "Generative Model",
"sec_num": "3"
},
{
"text": "1. Record choice: choose a sequence of records r = (r 1 , . . . , r |r| ) to describe, where each r i \u2208 s.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Generative Model",
"sec_num": "3"
},
{
"text": "2. Field choice: for each chosen record r i , select a sequence of fields",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Generative Model",
"sec_num": "3"
},
{
"text": "f i = (f i1 , . . . , f i|f i | ),",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Generative Model",
"sec_num": "3"
},
{
"text": "where each f ij \u2208 {1, . . . , m}.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Generative Model",
"sec_num": "3"
},
{
"text": "3. Word choice: for each chosen field f ij , choose a number c ij > 0 and generate a sequence of c ij words.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Generative Model",
"sec_num": "3"
},
{
"text": "The observed text w is the terminal yield formed by concatenating the sequences of words of all fields generated; note that the segmentation of w provided by c = {c ij } is latent. Think of the words spanned by a record as constituting an utterance with a meaning representation given by the record and subset of fields chosen.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Generative Model",
"sec_num": "3"
},
{
"text": "Formally, our probabilistic model places a distribution over (r, f , c, w) and factorizes according to the three stages as follows:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Generative Model",
"sec_num": "3"
},
{
"text": "p(r, f , c, w | s) = p(r | s)p(f | r)p(c, w | r, f , s)",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Generative Model",
"sec_num": "3"
},
{
"text": "The following three sections describe each of these stages in more detail.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Generative Model",
"sec_num": "3"
},
{
"text": "The record choice model specifies a distribution over an ordered sequence of records r = (r 1 , . . . , r |r| ), where each record r i \u2208 s. This model is intended to capture two types of regularities in the discourse structure of language. The first is salience, that is, some record types are simply more prominent than others. For example, in the NFL domain, 70% of scoring records are mentioned whereas only 1% of punting records are mentioned. The second is the idea of local coherence, that is, the order in which one mentions records tend to follow certain patterns. For example, in the weather domain, the sky conditions are generally mentioned first, followed by temperature, and then wind speed.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Record Choice Model",
"sec_num": "3.1"
},
{
"text": "To capture these two phenomena, we define a Markov model on the record types (and given the record type, a record is chosen uniformly from the set of records with that type):",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Record Choice Model",
"sec_num": "3.1"
},
{
"text": "EQUATION",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [
{
"start": 0,
"end": 8,
"text": "EQUATION",
"ref_id": "EQREF",
"raw_str": "p(r | s) = |r| i=1 p(r i .t | r i\u22121 .t) 1 |s(r i .t)| ,",
"eq_num": "(1)"
}
],
"section": "Record Choice Model",
"sec_num": "3.1"
},
{
"text": "where s(t) def = {r \u2208 s : r.t = t} and r 0 .t is a dedicated START record type. 2 We also model the transition of the final record type to a designated STOP record type in order to capture regularities about the types of records which are described last. More sophisticated models of coherence could also be employed here (Barzilay and Lapata, 2008) .",
"cite_spans": [
{
"start": 80,
"end": 81,
"text": "2",
"ref_id": null
},
{
"start": 322,
"end": 349,
"text": "(Barzilay and Lapata, 2008)",
"ref_id": "BIBREF1"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Record Choice Model",
"sec_num": "3.1"
},
{
"text": "We assume that s includes a special null record whose type is NULL, responsible for generating parts of our text which do not refer to any real records.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Record Choice Model",
"sec_num": "3.1"
},
{
"text": "Each record type t \u2208 T has a separate field choice model, which specifies a distribution over a sequence of fields. We want to capture salience and coherence at the field level like we did at the record level. For instance, in the weather domain, the minimum and maximum fields of a temperature record are mentioned whereas the average is not. In the Robocup domain, the actor typically precedes the recipient in passing event records.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Field Choice Model",
"sec_num": "3.2"
},
{
"text": "Formally, we have a Markov model over the fields:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Field Choice Model",
"sec_num": "3.2"
},
{
"text": "EQUATION",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [
{
"start": 0,
"end": 8,
"text": "EQUATION",
"ref_id": "EQREF",
"raw_str": "3 p(f | r) = |r| i=1 |f j | j=1 p(f ij | f i(j\u22121) ).",
"eq_num": "(2)"
}
],
"section": "Field Choice Model",
"sec_num": "3.2"
},
{
"text": "Each record type has a dedicated null field with its own multinomial distribution over words, intended to model words which refer to that record type in general (e.g., the word passes for passing records). We also model transitions into the first field and transitions out of the final field with special START and STOP fields. This Markov structure allows us to capture a few elements of rudimentary syntax.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Field Choice Model",
"sec_num": "3.2"
},
{
"text": "We arrive at the final component of our model, which governs how the information about a particular field of a record is rendered into words. For each field f ij , we generate the number of words c ij from a uniform distribution over {1, 2, . . . , C max }, where C max is set larger than the length of the longest text we expect to see. Conditioned on",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Word Choice Model",
"sec_num": "3.3"
},
{
"text": "s r f c, w s r 1 f 11 w 1 \u2022 \u2022 \u2022 w c 11 \u2022 \u2022 \u2022 \u2022 \u2022 \u2022 r i f i1 w \u2022 \u2022 \u2022 w c i1 \u2022 \u2022 \u2022 f i|fi| w \u2022 \u2022 \u2022 w c i|fi| \u2022 \u2022 \u2022 r n \u2022 \u2022 \u2022 f n|fn| w \u2022 \u2022 \u2022 w |w| c n|fn|",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Word Choice Model",
"sec_num": "3.3"
},
{
"text": "Field choice",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Record choice",
"sec_num": null
},
{
"text": "Figure 2: Graphical model representing the generative model. First, records are chosen and ordered from the set s. Then fields are chosen for each record. Finally, words are chosen for each field. The world state s and the words w are observed, while (r, f , c) are latent variables to be inferred (note that the number of latent variables itself is unknown).",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Word choice",
"sec_num": null
},
{
"text": "the fields f , the words w are generated independently: 4",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Word choice",
"sec_num": null
},
{
"text": "p(w | r, f , c, s) = |w| k=1 p w (w k | r(k).t f (k) , r(k).v f (k) ),",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Word choice",
"sec_num": null
},
{
"text": "where r(k) and f (k) are the record and field responsible for generating word w k , as determined by the segmentation c. The word choice model p w (w | t, v) specifies a distribution over words given the field type t and field value v. This distribution is a mixture of a global backoff distribution over words and a field-specific distribution which depends on the field type t.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Word choice",
"sec_num": null
},
{
"text": "Although we designed our word choice model to be relatively general, it is undoubtedly influenced by the three domains. However, we can readily extend or replace it with an alternative if desired; this modularity is one principal benefit of probabilistic modeling.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Word choice",
"sec_num": null
},
{
"text": "Integer Fields (t = INT) For integer fields, we want to capture the intuition that a numeric quantity v is rendered in the text as a word which is possibly some other numerical value w due to stylistic factors. Sometimes the exact value v is used (e.g., in reporting football statistics). Other times, it might be customary to round v (e.g., wind speeds are typically rounded to a multiple of 5). In other cases, there might just be some unexplained error, where w deviates from v by some noise + = w \u2212 v > 0 or \u2212 = v \u2212 w > 0. We model + and \u2212 as geometric distributions. 5 In 4 While a more sophisticated model of words would be useful if we intended to use this model for natural language generation, the false independence assumptions present here matter less for the task of learning the semantic correspondences because we always condition on w.",
"cite_spans": [
{
"start": 577,
"end": 578,
"text": "4",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Word choice",
"sec_num": null
},
{
"text": "5 Specifically, p( +; \u03b1+) = (1 \u2212 \u03b1+) + \u22121 \u03b1+, where \u03b1+ is a field-specific parameter; p( \u2212; \u03b1\u2212) is defined analogously. : Two integer field types in the weather domain for which we learn different distributions over the ways in which a value v might appear in the text as a word w. Suppose the record field value is v = 13. Both distributions are centered around v, as is to be expected, but the two distributions have different shapes: For temperature.min, almost all the mass is to the left, suggesting that forecasters tend to report conservative lower bounds. For the wind speed, the mass is concentrated on 13 and 15, suggesting that forecasters frequently round wind speeds to multiples of 5. summary, we allow six possible ways of generating the word w given v:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Word choice",
"sec_num": null
},
{
"text": "v v 5 v 5 round 5 (v) v \u2212 \u2212 v + +",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Word choice",
"sec_num": null
},
{
"text": "Separate probabilities for choosing among these possibilities are learned for each field type (see Figure 3 for an example).",
"cite_spans": [],
"ref_spans": [
{
"start": 99,
"end": 107,
"text": "Figure 3",
"ref_id": "FIGREF5"
}
],
"eq_spans": [],
"section": "Word choice",
"sec_num": null
},
{
"text": "String Fields (t = STR) Strings fields are intended to represent values which we expect to be realized in the text via a simple surface-level transformation. For example, a name field with value v = Moe Williams is sometimes referenced in the text by just Williams. We used a simple generic model of rendering string fields: Let w be a word chosen uniformly from those in v.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Word choice",
"sec_num": null
},
{
"text": "Categorical Fields (t = CAT) Unlike string fields, categorical fields are not tied down to any lexical representation; in fact, the identities of the categorical field values are irrelevant. For each categorical field f and possible value v, we have a",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Word choice",
"sec_num": null
},
{
"text": "v p w (w | t, v) 0-25",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Word choice",
"sec_num": null
},
{
"text": ", clear mostly sunny 25-50 partly , cloudy increasing 50-75 mostly cloudy , partly 75-100 of inch an possible new a rainfall Table 2 : Highest probability words for the categorical field skyCover.mode in the weather domain. It is interesting to note that skyCover=75-100 is so highly correlated with rain that the model learns to connect an overcast sky in the world to the indication of rain in the text. separate multinomial distribution over words from which w is drawn. An example of a categorical field is skyCover.mode in the weather domain, which has four values: 0-25, 25-50, 50-75, and 75-100. Table 2 shows the top words for each of these field values learned by our model.",
"cite_spans": [],
"ref_spans": [
{
"start": 125,
"end": 132,
"text": "Table 2",
"ref_id": null
},
{
"start": 603,
"end": 610,
"text": "Table 2",
"ref_id": null
}
],
"eq_spans": [],
"section": "Word choice",
"sec_num": null
},
{
"text": "Our learning and inference methodology is a fairly conventional application of Expectation Maximization (EM) and dynamic programming. The input is a set of scenarios D, each of which is a text w paired with a world state s. We maximize the marginal likelihood of our data, summing out the latent variables (r, f , c):",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Learning and Inference",
"sec_num": "4"
},
{
"text": "EQUATION",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [
{
"start": 0,
"end": 8,
"text": "EQUATION",
"ref_id": "EQREF",
"raw_str": "max \u03b8 (w,s)\u2208D r,f ,c p(r, f , c, w | s; \u03b8),",
"eq_num": "(3)"
}
],
"section": "Learning and Inference",
"sec_num": "4"
},
{
"text": "where \u03b8 are the parameters of the model (all the multinomial probabilities). We use the EM algorithm to maximize (3), which alternates between the E-step and the M-step. In the E-step, we compute expected counts according to the posterior p(r, f , c | w, s; \u03b8). In the M-step, we optimize the parameters \u03b8 by normalizing the expected counts computed in the E-step. In our experiments, we initialized EM with a uniform distribution for each multinomial and applied add-0.1 smoothing to each multinomial in the M-step.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Learning and Inference",
"sec_num": "4"
},
{
"text": "As with most complex discrete models, the bulk of the work is in computing expected counts under p(r, f , c | w, s; \u03b8). Formally, our model is a hierarchical hidden semi-Markov model conditioned on s. Inference in the E-step can be done using a dynamic program similar to the inside-outside algorithm.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Learning and Inference",
"sec_num": "4"
},
{
"text": "Two important aspects of our model are the segmentation of the text and the modeling of the co-herence structure at both the record and field levels. To quantify the benefits of incorporating these two aspects, we compare our full model with two simpler variants.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Experiments",
"sec_num": "5"
},
{
"text": "\u2022 Model 1 (no model of segmentation or coherence): Each record is chosen independently; each record generates one field, and each field generates one word. This model is similar in spirit to IBM model 1 (Brown et al., 1993) .",
"cite_spans": [
{
"start": 203,
"end": 223,
"text": "(Brown et al., 1993)",
"ref_id": "BIBREF2"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Experiments",
"sec_num": "5"
},
{
"text": "\u2022 Model 2 (models segmentation but not coherence): Records and fields are still generated independently, but each field can now generate multiple words.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Experiments",
"sec_num": "5"
},
{
"text": "\u2022 Model 3 (our full model of segmentation and coherence): Records and fields are generated according to the Markov chains described in Section 3.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Experiments",
"sec_num": "5"
},
{
"text": "In the annotated data, each text w has been divided into a set of lines. These lines correspond to clauses in the weather domain and sentences in the Robocup and NFL domains. Each line is annotated with a (possibly empty) set of records. Let A be the gold set of these line-record alignment pairs.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Evaluation",
"sec_num": "5.1"
},
{
"text": "To evaluate a learned model, we compute the Viterbi segmentation and alignment (argmax r,f ,c p(r, f , c | w, s)). We produce a predicted set of line-record pairs A by aligning a line to a record r i if the span of (the utterance corresponding to) r i overlaps the line. The reason we evaluate indirectly using lines rather than using utterances is that it is difficult to annotate the segmentation of text into utterances in a simple and consistent manner.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Evaluation",
"sec_num": "5.1"
},
{
"text": "We compute standard precision, recall, and F 1 of A with respect to A. Unless otherwise specified, performance is reported on all scenarios, which were also used for training. However, we did not tune any hyperparameters, but rather used generic values which worked well enough across all three domains.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Evaluation",
"sec_num": "5.1"
},
{
"text": "We ran 10 iterations of EM on Models 1-3. Table 3 shows that performance improves with increased model sophistication. We also compare Table 4 : F1 scores based on the 4-fold cross-validation scheme in Chen and Mooney (2008) .",
"cite_spans": [
{
"start": 202,
"end": 224,
"text": "Chen and Mooney (2008)",
"ref_id": "BIBREF3"
}
],
"ref_spans": [
{
"start": 42,
"end": 49,
"text": "Table 3",
"ref_id": "TABREF2"
},
{
"start": 135,
"end": 142,
"text": "Table 4",
"ref_id": null
}
],
"eq_spans": [],
"section": "Robocup Sportscasting",
"sec_num": "5.2"
},
{
"text": "our model to the results of Chen and Mooney (2008) in Table 4 . Figure 4 provides a closer look at the predictions made by each of our three models for a particular example. Model 1 easily mistakes pink10 for the recipient of a pass record because decisions are made independently for each word. Model 2 chooses the correct record, but having no model of the field structure inside a record, it proposes an incorrect field segmentation (although our evaluation is insensitive to this). Equipped with the ability to prefer a coherent field sequence, Model 3 fixes these errors.",
"cite_spans": [
{
"start": 28,
"end": 50,
"text": "Chen and Mooney (2008)",
"ref_id": "BIBREF3"
}
],
"ref_spans": [
{
"start": 54,
"end": 61,
"text": "Table 4",
"ref_id": null
},
{
"start": 64,
"end": 72,
"text": "Figure 4",
"ref_id": "FIGREF6"
}
],
"eq_spans": [],
"section": "Robocup Sportscasting",
"sec_num": "5.2"
},
{
"text": "Many of the remaining errors are due to the garbage collection phenomenon familiar from word alignment models (Moore, 2004; Liang et al., 2006) . For example, the ballstopped record occurs frequently but is never mentioned in the text. At the same time, there is a correlation between ballstopped and utterances such as pink2 holds onto the ball, which are not aligned to any record in the annotation. As a result, our model incorrectly chooses to align the two.",
"cite_spans": [
{
"start": 110,
"end": 123,
"text": "(Moore, 2004;",
"ref_id": "BIBREF13"
},
{
"start": 124,
"end": 143,
"text": "Liang et al., 2006)",
"ref_id": "BIBREF11"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Robocup Sportscasting",
"sec_num": "5.2"
},
{
"text": "For the weather domain, staged training was necessary to get good results. For Model 1, we ran 15 iterations of EM. For Model 2, we ran 5 iterations of EM on Model 1, followed by 10 iterations on Model 2. For Model 3, we ran 5 iterations of Model 1, 5 iterations of a simplified variant of Model 3 where records were chosen independently, and finally, 5 iterations of Model 3. When going from one model to another, we used the final posterior distributions of the former to ini- tialize the parameters of the latter. 6 We also prohibited utterances in Models 2 and 3 from crossing punctuation during inference. Table 5 shows that performance improves substantially in the more sophisticated models, the gains being greater than in the Robocup domain. Figure 5 shows the predictions of the three models on an example. Model 1 is only able to form isolated (but not completely inaccurate) associations. By modeling segmentation, Model 2 accounts for the intermediate words, but errors are still made due to the lack of Markov structure. Model 3 remedies this. However, unexpected structures are sometimes learned. For example, the temperature.time=6-21 field indicates daytime, which happens to be perfectly correlated with the word high, although high intuitively should be associated with the temperature.max field. In these cases of high correlation (Table 2 provides another example), it is very difficult to recover the proper alignment without additional supervision.",
"cite_spans": [
{
"start": 517,
"end": 518,
"text": "6",
"ref_id": null
}
],
"ref_spans": [
{
"start": 611,
"end": 618,
"text": "Table 5",
"ref_id": "TABREF4"
},
{
"start": 751,
"end": 759,
"text": "Figure 5",
"ref_id": "FIGREF7"
},
{
"start": 1351,
"end": 1359,
"text": "(Table 2",
"ref_id": null
}
],
"eq_spans": [],
"section": "Weather Forecasts",
"sec_num": "5.3"
},
{
"text": "In order to scale up our models to the NFL domain, we first pruned for each sentence the records which have either no numerical values (e.g., 23, 23-10, 2/4) nor name-like words (e.g., those that appear only capitalized in the text) in common. This eliminated all but 1.5% of the record candidates per sentence, while maintaining an ora- cle alignment F 1 score of 88.7. Guessing a single random record for each sentence yields an F 1 of 12.0. A reasonable heuristic which uses weighted number-and string-matching achieves 26.7.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "NFL Recaps",
"sec_num": "5.4"
},
{
"text": "Due to the much greater complexity of this domain, Model 2 was easily misled as it tried without success to find a coherent segmentation of the fields. We therefore created a variant, Model 2', where we constrained each field to generate exactly one word. To train Model 2', we ran 5 iterations of EM where each sentence is assumed to have exactly one record, followed by 5 iterations where the constraint was relaxed to also allow record boundaries at punctuation and the word and. We did not experiment with Model 3 since the discourse structure on records in this domain is not at all governed by a simple Markov model on record types-indeed, most regions do not refer to any records at all. We also fixed the backoff probability to 0.1 instead of learning it and enforced zero numerical deviation on integer field values.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "NFL Recaps",
"sec_num": "5.4"
},
{
"text": "Model 2' achieved an F 1 of 39.9, an improvement over Model 1, which attained 32.8. Inspection of the errors revealed the following problem: The alignment task requires us to sometimes align a sentence to multiple redundant records (e.g., play and score) referenced by the same part of the text. However, our model generates each part of text from only one record, and thus it can only allow an alignment to one record. 7 To cope with this incompatibility between the data and our notion of semantics, we used the following solution: We divided the records into three groups by type: play, score, and other. Each group has a copy of the model, but we enforce that they share the same segmentation. We also introduce a potential that couples the presence or absence of records across 7 The model can align a sentence to multiple records provided that the records are referenced by non-overlapping parts of the text.",
"cite_spans": [
{
"start": 420,
"end": 421,
"text": "7",
"ref_id": null
},
{
"start": 783,
"end": 784,
"text": "7",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "NFL Recaps",
"sec_num": "5.4"
},
{
"text": "Precision 87.3 74.5 80.3 Table 6 : Alignment results on the NFL dataset. Graph matching and multilabel are supervised results reported in Snyder and Barzilay (2007) . 9",
"cite_spans": [
{
"start": 149,
"end": 164,
"text": "Barzilay (2007)",
"ref_id": "BIBREF16"
}
],
"ref_spans": [
{
"start": 25,
"end": 32,
"text": "Table 6",
"ref_id": null
}
],
"eq_spans": [],
"section": "Method",
"sec_num": null
},
{
"text": "groups on the same segment to capture regular cooccurrences between redundant records. Table 6 shows our results. With groups, we achieve an F 1 of 53.2. Though we still trail supervised techniques, which attain numbers in the 68-80 range, we have made substantial progress over our baseline using an unsupervised method. Furthermore, our model provides a more detailed analysis of the correspondence between the world state and text, rather than just producing a single alignment decision. Most of the remaining errors made by our model are due to a lack of calibration. Sometimes, our false positives are close calls where a sentence indirectly references a record, and our model predicts the alignment whereas the annotation standard does not. We believe that further progress is possible with a richer model.",
"cite_spans": [],
"ref_spans": [
{
"start": 87,
"end": 94,
"text": "Table 6",
"ref_id": null
}
],
"eq_spans": [],
"section": "Method",
"sec_num": null
},
{
"text": "We have presented a generative model of correspondences between a world state and an unsegmented stream of text. By having a joint model of salience, coherence, and segmentation, as well as a detailed rendering of the values in the world state into words in the text, we are able to cope with the increased ambiguity that arises in this new data setting, successfully pushing the limits of unsupervision.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Conclusion",
"sec_num": "6"
},
{
"text": "To simplify notation, we assume that each record has m fields, though in practice, m depends on the record type r.t.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
},
{
"text": "We constrain our inference to only consider record types t that occur in s, i.e., s(t) = \u2205.3 During inference, we prohibit consecutive fields from repeating.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
},
{
"text": "It is interesting to note that this type of staged training is evocative of language acquisition in children: lexical associations are formed (Model 1) before higher-level discourse structure is learned (Model 3).",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
}
],
"back_matter": [],
"bib_entries": {
"BIBREF0": {
"ref_id": "b0",
"title": "Collective content selection for concept-to-text generation",
"authors": [
{
"first": "R",
"middle": [],
"last": "Barzilay",
"suffix": ""
},
{
"first": "M",
"middle": [],
"last": "Lapata",
"suffix": ""
}
],
"year": 2005,
"venue": "Human Language Technology and Empirical Methods in Natural Language Processing (HLT/EMNLP)",
"volume": "",
"issue": "",
"pages": "331--338",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "R. Barzilay and M. Lapata. 2005. Collective content selec- tion for concept-to-text generation. In Human Language Technology and Empirical Methods in Natural Language Processing (HLT/EMNLP), pages 331-338, Vancouver, B.C.",
"links": null
},
"BIBREF1": {
"ref_id": "b1",
"title": "Modeling local coherence: An entity-based approach",
"authors": [
{
"first": "R",
"middle": [],
"last": "Barzilay",
"suffix": ""
},
{
"first": "M",
"middle": [],
"last": "Lapata",
"suffix": ""
}
],
"year": 2008,
"venue": "Computational Linguistics",
"volume": "34",
"issue": "",
"pages": "1--34",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "R. Barzilay and M. Lapata. 2008. Modeling local coher- ence: An entity-based approach. Computational Linguis- tics, 34:1-34.",
"links": null
},
"BIBREF2": {
"ref_id": "b2",
"title": "The mathematics of statistical machine translation: Parameter estimation",
"authors": [
{
"first": "P",
"middle": [
"F"
],
"last": "Brown",
"suffix": ""
},
{
"first": "S",
"middle": [
"A D"
],
"last": "Pietra",
"suffix": ""
},
{
"first": "V",
"middle": [
"J D"
],
"last": "Pietra",
"suffix": ""
},
{
"first": "R",
"middle": [
"L"
],
"last": "Mercer",
"suffix": ""
}
],
"year": 1993,
"venue": "Computational Linguistics",
"volume": "19",
"issue": "",
"pages": "263--311",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "P. F. Brown, S. A. D. Pietra, V. J. D. Pietra, and R. L. Mer- cer. 1993. The mathematics of statistical machine trans- lation: Parameter estimation. Computational Linguistics, 19:263-311.",
"links": null
},
"BIBREF3": {
"ref_id": "b3",
"title": "Learning to sportscast: A test of grounded language acquisition",
"authors": [
{
"first": "D",
"middle": [
"L"
],
"last": "Chen",
"suffix": ""
},
{
"first": "R",
"middle": [
"J"
],
"last": "Mooney",
"suffix": ""
}
],
"year": 2008,
"venue": "International Conference on Machine Learning (ICML)",
"volume": "",
"issue": "",
"pages": "128--135",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "D. L. Chen and R. J. Mooney. 2008. Learning to sportscast: A test of grounded language acquisition. In International Conference on Machine Learning (ICML), pages 128- 135. Omnipress.",
"links": null
},
"BIBREF4": {
"ref_id": "b4",
"title": "Sampling alignment structure under a Bayesian translation model",
"authors": [
{
"first": "J",
"middle": [],
"last": "Denero",
"suffix": ""
},
{
"first": "A",
"middle": [],
"last": "Bouchard-C\u00f4t\u00e9",
"suffix": ""
},
{
"first": "D",
"middle": [],
"last": "Klein",
"suffix": ""
}
],
"year": 2008,
"venue": "Empirical Methods in Natural Language Processing (EMNLP)",
"volume": "",
"issue": "",
"pages": "314--323",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "J. DeNero, A. Bouchard-C\u00f4t\u00e9, and D. Klein. 2008. Sampling alignment structure under a Bayesian translation model. In Empirical Methods in Natural Language Processing (EMNLP), pages 314-323, Honolulu, HI.",
"links": null
},
"BIBREF5": {
"ref_id": "b5",
"title": "Bayesian unsupervised topic segmentation",
"authors": [
{
"first": "J",
"middle": [],
"last": "Eisenstein",
"suffix": ""
},
{
"first": "R",
"middle": [],
"last": "Barzilay",
"suffix": ""
}
],
"year": 2008,
"venue": "Empirical Methods in Natural Language Processing (EMNLP)",
"volume": "",
"issue": "",
"pages": "334--343",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "J. Eisenstein and R. Barzilay. 2008. Bayesian unsupervised topic segmentation. In Empirical Methods in Natural Lan- guage Processing (EMNLP), pages 334-343.",
"links": null
},
"BIBREF6": {
"ref_id": "b6",
"title": "Embodied meaning in a neural theory of language",
"authors": [
{
"first": "J",
"middle": [],
"last": "Feldman",
"suffix": ""
},
{
"first": "S",
"middle": [],
"last": "Narayanan",
"suffix": ""
}
],
"year": 2004,
"venue": "Brain and Language",
"volume": "89",
"issue": "",
"pages": "385--392",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "J. Feldman and S. Narayanan. 2004. Embodied meaning in a neural theory of language. Brain and Language, 89:385- 392.",
"links": null
},
"BIBREF7": {
"ref_id": "b7",
"title": "A statistical semantic parser that integrates syntax and semantics",
"authors": [
{
"first": "R",
"middle": [],
"last": "Ge",
"suffix": ""
},
{
"first": "R",
"middle": [
"J"
],
"last": "Mooney",
"suffix": ""
}
],
"year": 2005,
"venue": "Computational Natural Language Learning (CoNLL)",
"volume": "",
"issue": "",
"pages": "9--16",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "R. Ge and R. J. Mooney. 2005. A statistical semantic parser that integrates syntax and semantics. In Computational Natural Language Learning (CoNLL), pages 9-16, Ann Arbor, Michigan.",
"links": null
},
"BIBREF8": {
"ref_id": "b8",
"title": "Situated language understanding as filtering perceived affordances",
"authors": [
{
"first": "P",
"middle": [],
"last": "Gorniak",
"suffix": ""
},
{
"first": "D",
"middle": [],
"last": "Roy",
"suffix": ""
}
],
"year": 2007,
"venue": "Cognitive Science",
"volume": "31",
"issue": "",
"pages": "197--231",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "P. Gorniak and D. Roy. 2007. Situated language understand- ing as filtering perceived affordances. Cognitive Science, 31:197-231.",
"links": null
},
"BIBREF9": {
"ref_id": "b9",
"title": "Unsupervised learning of field segmentation models for information extraction",
"authors": [
{
"first": "T",
"middle": [],
"last": "Grenager",
"suffix": ""
},
{
"first": "D",
"middle": [],
"last": "Klein",
"suffix": ""
},
{
"first": "C",
"middle": [
"D"
],
"last": "Manning",
"suffix": ""
}
],
"year": 2005,
"venue": "Association for Computational Linguistics (ACL)",
"volume": "",
"issue": "",
"pages": "371--378",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "T. Grenager, D. Klein, and C. D. Manning. 2005. Unsu- pervised learning of field segmentation models for infor- mation extraction. In Association for Computational Lin- guistics (ACL), pages 371-378, Ann Arbor, Michigan. As- sociation for Computational Linguistics.",
"links": null
},
"BIBREF10": {
"ref_id": "b10",
"title": "Learning language semantics from ambiguous supervision",
"authors": [
{
"first": "R",
"middle": [
"J"
],
"last": "Kate",
"suffix": ""
},
{
"first": "R",
"middle": [
"J"
],
"last": "Mooney",
"suffix": ""
}
],
"year": 2007,
"venue": "Association for the Advancement of Artificial Intelligence (AAAI)",
"volume": "",
"issue": "",
"pages": "895--900",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "R. J. Kate and R. J. Mooney. 2007. Learning language se- mantics from ambiguous supervision. In Association for the Advancement of Artificial Intelligence (AAAI), pages 895-900, Cambridge, MA. MIT Press.",
"links": null
},
"BIBREF11": {
"ref_id": "b11",
"title": "Alignment by agreement",
"authors": [
{
"first": "P",
"middle": [],
"last": "Liang",
"suffix": ""
},
{
"first": "B",
"middle": [],
"last": "Taskar",
"suffix": ""
},
{
"first": "D",
"middle": [],
"last": "Klein",
"suffix": ""
}
],
"year": 2006,
"venue": "North American Association for Computational Linguistics (NAACL)",
"volume": "",
"issue": "",
"pages": "104--111",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "P. Liang, B. Taskar, and D. Klein. 2006. Alignment by agree- ment. In North American Association for Computational Linguistics (NAACL), pages 104-111, New York City. As- sociation for Computational Linguistics.",
"links": null
},
"BIBREF12": {
"ref_id": "b12",
"title": "A generative model for parsing natural language to meaning representations",
"authors": [
{
"first": "W",
"middle": [],
"last": "Lu",
"suffix": ""
},
{
"first": "H",
"middle": [
"T"
],
"last": "Ng",
"suffix": ""
},
{
"first": "W",
"middle": [
"S"
],
"last": "Lee",
"suffix": ""
},
{
"first": "L",
"middle": [
"S"
],
"last": "Zettlemoyer",
"suffix": ""
}
],
"year": 2008,
"venue": "Empirical Methods in Natural Language Processing (EMNLP)",
"volume": "",
"issue": "",
"pages": "783--792",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "W. Lu, H. T. Ng, W. S. Lee, and L. S. Zettlemoyer. 2008. A generative model for parsing natural language to meaning representations. In Empirical Methods in Natural Lan- guage Processing (EMNLP), pages 783-792.",
"links": null
},
"BIBREF13": {
"ref_id": "b13",
"title": "Improving IBM word alignment model 1",
"authors": [
{
"first": "R",
"middle": [
"C"
],
"last": "Moore",
"suffix": ""
}
],
"year": 2004,
"venue": "Association for Computational Linguistics (ACL)",
"volume": "",
"issue": "",
"pages": "518--525",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "R. C. Moore. 2004. Improving IBM word alignment model 1. In Association for Computational Linguistics (ACL), pages 518-525, Barcelona, Spain. Association for Com- putational Linguistics.",
"links": null
},
"BIBREF14": {
"ref_id": "b14",
"title": "HMM-based word alignment in statistical translation",
"authors": [
{
"first": "H",
"middle": [],
"last": "Ney",
"suffix": ""
},
{
"first": "S",
"middle": [],
"last": "Vogel",
"suffix": ""
}
],
"year": 1996,
"venue": "International Conference on Computational Linguistics (COLING)",
"volume": "",
"issue": "",
"pages": "836--841",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "H. Ney and S. Vogel. 1996. HMM-based word align- ment in statistical translation. In International Conference on Computational Linguistics (COLING), pages 836-841. Association for Computational Linguistics.",
"links": null
},
"BIBREF15": {
"ref_id": "b15",
"title": "A computational study of crosssituational techniques for learning word-to-meaning mappings",
"authors": [
{
"first": "M",
"middle": [],
"last": "Siskind",
"suffix": ""
}
],
"year": 1996,
"venue": "Cognition",
"volume": "61",
"issue": "",
"pages": "1--38",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "M. Siskind. 1996. A computational study of cross- situational techniques for learning word-to-meaning map- pings. Cognition, 61:1-38.",
"links": null
},
"BIBREF16": {
"ref_id": "b16",
"title": "Database-text alignment via structured multilabel classification",
"authors": [
{
"first": "B",
"middle": [],
"last": "Snyder",
"suffix": ""
},
{
"first": "R",
"middle": [],
"last": "Barzilay",
"suffix": ""
}
],
"year": 2007,
"venue": "International Joint Conference on Artificial Intelligence (IJCAI)",
"volume": "",
"issue": "",
"pages": "1713--1718",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "B. Snyder and R. Barzilay. 2007. Database-text alignment via structured multilabel classification. In International Joint Conference on Artificial Intelligence (IJCAI), pages 1713-1718, Hyderabad, India.",
"links": null
},
"BIBREF17": {
"ref_id": "b17",
"title": "On the integration of grounding language and learning objects",
"authors": [
{
"first": "C",
"middle": [],
"last": "Yu",
"suffix": ""
},
{
"first": "D",
"middle": [
"H"
],
"last": "Ballard",
"suffix": ""
}
],
"year": 2004,
"venue": "Association for the Advancement of Artificial Intelligence (AAAI)",
"volume": "",
"issue": "",
"pages": "488--493",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "C. Yu and D. H. Ballard. 2004. On the integration of ground- ing language and learning objects. In Association for the Advancement of Artificial Intelligence (AAAI), pages 488- 493, Cambridge, MA. MIT Press.",
"links": null
},
"BIBREF18": {
"ref_id": "b18",
"title": "Learning to map sentences to logical form: Structured classification with probabilistic categorial grammars",
"authors": [
{
"first": "L",
"middle": [
"S"
],
"last": "Zettlemoyer",
"suffix": ""
},
{
"first": "M",
"middle": [],
"last": "Collins",
"suffix": ""
}
],
"year": 2005,
"venue": "Uncertainty in Artificial Intelligence (UAI)",
"volume": "",
"issue": "",
"pages": "658--666",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "L. S. Zettlemoyer and M. Collins. 2005. Learning to map sentences to logical form: Structured classification with probabilistic categorial grammars. In Uncertainty in Arti- ficial Intelligence (UAI), pages 658-666.",
"links": null
},
"BIBREF19": {
"ref_id": "b19",
"title": "Online learning of relaxed CCG grammars for parsing to logical form",
"authors": [
{
"first": "L",
"middle": [
"S"
],
"last": "Zettlemoyer",
"suffix": ""
},
{
"first": "M",
"middle": [],
"last": "Collins",
"suffix": ""
}
],
"year": 2007,
"venue": "Empirical Methods in Natural Language Processing and Computational Natural Language Learning (EMNLP/CoNLL)",
"volume": "",
"issue": "",
"pages": "678--687",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "L. S. Zettlemoyer and M. Collins. 2007. Online learn- ing of relaxed CCG grammars for parsing to logical form. In Empirical Methods in Natural Language Pro- cessing and Computational Natural Language Learning (EMNLP/CoNLL), pages 678-687.",
"links": null
}
},
"ref_entries": {
"FIGREF3": {
"text": "An example of a scenario for each of the three domains. Each scenario consists of a candidate set of records s and a text w. Each record is specified by a record type (e.g., badPass) and a set of field values. Integer values are in Roman, string values are in italics, and categorical values are in typewriter. The gold alignments are shown.",
"uris": null,
"type_str": "figure",
"num": null
},
"FIGREF5": {
"text": "Figure 3: Two integer field types in the weather domain for which we learn different distributions over the ways in which a value v might appear in the text as a word w. Suppose the record field value is v = 13. Both distributions are centered around v, as is to be expected, but the two distributions have different shapes: For temperature.min, almost all the mass is to the left, suggesting that forecasters tend to report conservative lower bounds. For the wind speed, the mass is concentrated on 13 and 15, suggesting that forecasters frequently round wind speeds to multiples of 5.",
"uris": null,
"type_str": "figure",
"num": null
},
"FIGREF6": {
"text": "An example of predictions made by each of the three models on the Robocup dataset.",
"uris": null,
"type_str": "figure",
"num": null
},
"FIGREF7": {
"text": "An example of predictions made by each of the three models on the weather dataset.",
"uris": null,
"type_str": "figure",
"num": null
},
"TABREF2": {
"content": "<table><tr><td>Method</td><td>F 1</td></tr><tr><td>Random baseline</td><td>48.0</td></tr><tr><td colspan=\"2\">Chen and Mooney (2008) 67.0</td></tr><tr><td>Model 3</td><td>75.7</td></tr></table>",
"text": "Alignment results on the Robocup sportscasting dataset.",
"html": null,
"type_str": "table",
"num": null
},
"TABREF4": {
"content": "<table><tr><td/><td>r:</td><td>pass</td><td/><td/></tr><tr><td>[Model 1]</td><td>f :</td><td>arg2=pink10</td><td/><td/></tr><tr><td/><td>w:</td><td>pink10</td><td colspan=\"3\">turns the ball over to purple5</td></tr><tr><td/><td>r:</td><td/><td>turnover</td><td/></tr><tr><td>[Model 2]</td><td>f :</td><td>x</td><td/><td colspan=\"2\">arg2=purple5</td></tr><tr><td/><td>w:</td><td colspan=\"2\">pink10 turns the ball over</td><td>to purple5</td></tr><tr><td/><td>r:</td><td/><td colspan=\"2\">turnover</td></tr><tr><td>[Model 3]</td><td>f :</td><td>arg1=pink10</td><td>x</td><td colspan=\"2\">arg2=purple5</td></tr><tr><td/><td>w:</td><td>pink10</td><td colspan=\"2\">turns the ball over to</td><td>purple5</td></tr></table>",
"text": "Alignment results on the weather forecast dataset.",
"html": null,
"type_str": "table",
"num": null
}
}
}
} |