File size: 103,725 Bytes
6fa4bc9 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 | {
"paper_id": "P09-1014",
"header": {
"generated_with": "S2ORC 1.0.0",
"date_generated": "2023-01-19T08:54:09.178924Z"
},
"title": "A Ranking Approach to Stress Prediction for Letter-to-Phoneme Conversion",
"authors": [
{
"first": "Qing",
"middle": [],
"last": "Dou",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "University of Alberta Edmonton",
"location": {
"postCode": "T6G 2E8",
"region": "AB",
"country": "Canada"
}
},
"email": "qdou@cs.ualberta.ca"
},
{
"first": "Shane",
"middle": [],
"last": "Bergsma",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "University of Alberta Edmonton",
"location": {
"postCode": "T6G 2E8",
"region": "AB",
"country": "Canada"
}
},
"email": "bergsma@cs.ualberta.ca"
},
{
"first": "Sittichai",
"middle": [],
"last": "Jiampojamarn",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "University of Alberta Edmonton",
"location": {
"postCode": "T6G 2E8",
"region": "AB",
"country": "Canada"
}
},
"email": ""
},
{
"first": "Grzegorz",
"middle": [],
"last": "Kondrak",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "University of Alberta Edmonton",
"location": {
"postCode": "T6G 2E8",
"region": "AB",
"country": "Canada"
}
},
"email": "kondrak@cs.ualberta.ca"
}
],
"year": "",
"venue": null,
"identifiers": {},
"abstract": "Correct stress placement is important in text-to-speech systems, in terms of both the overall accuracy and the naturalness of pronunciation. In this paper, we formulate stress assignment as a sequence prediction problem. We represent words as sequences of substrings, and use the substrings as features in a Support Vector Machine (SVM) ranker, which is trained to rank possible stress patterns. The ranking approach facilitates inclusion of arbitrary features over both the input sequence and output stress pattern. Our system advances the current state-of-the-art, predicting primary stress in English, German, and Dutch with up to 98% word accuracy on phonemes, and 96% on letters. The system is also highly accurate in predicting secondary stress. Finally, when applied in tandem with an L2P system, it substantially reduces the word error rate when predicting both phonemes and stress.",
"pdf_parse": {
"paper_id": "P09-1014",
"_pdf_hash": "",
"abstract": [
{
"text": "Correct stress placement is important in text-to-speech systems, in terms of both the overall accuracy and the naturalness of pronunciation. In this paper, we formulate stress assignment as a sequence prediction problem. We represent words as sequences of substrings, and use the substrings as features in a Support Vector Machine (SVM) ranker, which is trained to rank possible stress patterns. The ranking approach facilitates inclusion of arbitrary features over both the input sequence and output stress pattern. Our system advances the current state-of-the-art, predicting primary stress in English, German, and Dutch with up to 98% word accuracy on phonemes, and 96% on letters. The system is also highly accurate in predicting secondary stress. Finally, when applied in tandem with an L2P system, it substantially reduces the word error rate when predicting both phonemes and stress.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Abstract",
"sec_num": null
}
],
"body_text": [
{
"text": "In many languages, certain syllables in words are phonetically more prominent in terms of duration, pitch, and loudness. This phenomenon is referred to as lexical stress. In some languages, the location of stress is entirely predictable. For example, lexical stress regularly falls on the initial syllable in Hungarian, and on the penultimate syllable in Polish. In other languages, such as English and Russian, any syllable in the word can be stressed.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "Correct stress placement is important in textto-speech systems because it affects the accuracy of human word recognition (Tagliapietra and Tabossi, 2005; Arciuli and Cupples, 2006) . However, the issue has often been ignored in previous letter-to-phoneme (L2P) systems. The systems that do generate stress markers often do not report separate figures on stress prediction accuracy, or they only provide results on a single language. Some only predict primary stress markers (Black et al., 1998; Webster, 2004; Demberg et al., 2007) , while those that predict both primary and secondary stress generally achieve lower accuracy (Bagshaw, 1998; Coleman, 2000; Pearson et al., 2000) .",
"cite_spans": [
{
"start": 121,
"end": 153,
"text": "(Tagliapietra and Tabossi, 2005;",
"ref_id": "BIBREF25"
},
{
"start": 154,
"end": 180,
"text": "Arciuli and Cupples, 2006)",
"ref_id": "BIBREF0"
},
{
"start": 474,
"end": 494,
"text": "(Black et al., 1998;",
"ref_id": "BIBREF5"
},
{
"start": 495,
"end": 509,
"text": "Webster, 2004;",
"ref_id": "BIBREF27"
},
{
"start": 510,
"end": 531,
"text": "Demberg et al., 2007)",
"ref_id": "BIBREF13"
},
{
"start": 626,
"end": 641,
"text": "(Bagshaw, 1998;",
"ref_id": "BIBREF2"
},
{
"start": 642,
"end": 656,
"text": "Coleman, 2000;",
"ref_id": "BIBREF9"
},
{
"start": 657,
"end": 678,
"text": "Pearson et al., 2000)",
"ref_id": "BIBREF23"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "In this paper, we formulate stress assignment as a sequence prediction problem. We divide each word into a sequence of substrings, and use these substrings as features for a Support Vector Machine (SVM) ranker. For a given sequence length, there is typically only a small number of stress patterns in use. The task of the SVM is to rank the true stress pattern above the small number of acceptable alternatives. This is the first system to predict stress within a powerful discriminative learning framework. By using a ranking approach, we enable the use of arbitrary features over the entire (input) sequence and (output) stress pattern. We show that the addition of a feature for the entire output sequence improves prediction accuracy.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "Our experiments on English, German, and Dutch demonstrate that our ranking approach substantially outperforms previous systems. The SVM ranker achieves exceptional 96.2% word accuracy on the challenging task of predicting the full stress pattern in English. Moreover, when combining our stress predictions with a state-ofthe-art L2P system (Jiampojamarn et al., 2008) , we set a new standard for the combined prediction of phonemes and stress.",
"cite_spans": [
{
"start": 340,
"end": 367,
"text": "(Jiampojamarn et al., 2008)",
"ref_id": "BIBREF18"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "The paper is organized as follows. Section 2 provides background on lexical stress and a task definition. Section 3 presents our automatic stress prediction algorithm. In Section 4, we confirm the power of the discriminative approach with experiments on three languages. Section 5 describes how stress is integrated into L2P conversion.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "There is a long history of research into the principles governing lexical stress placement. Zipf (1929) showed that stressed syllables are often those with low frequency in speech, while unstressed syllables are usually very common. Chomsky and Halle (1968) proposed a set of context-sensitive rules for producing English stress from underlying word forms. Due to its importance in text-to-speech, there is also a long history of computational stress prediction systems (Fudge, 1984; Church, 1985; Williams, 1987) . While these early approaches depend on human definitions of vowel tensity, syllable weight, word etymology, etc., our work follows a recent trend of purely data-driven approaches to stress prediction (Black et al., 1998; Pearson et al., 2000; Webster, 2004; Demberg et al., 2007) .",
"cite_spans": [
{
"start": 97,
"end": 103,
"text": "(1929)",
"ref_id": null
},
{
"start": 233,
"end": 257,
"text": "Chomsky and Halle (1968)",
"ref_id": "BIBREF6"
},
{
"start": 470,
"end": 483,
"text": "(Fudge, 1984;",
"ref_id": "BIBREF16"
},
{
"start": 484,
"end": 497,
"text": "Church, 1985;",
"ref_id": "BIBREF7"
},
{
"start": 498,
"end": 513,
"text": "Williams, 1987)",
"ref_id": "BIBREF28"
},
{
"start": 716,
"end": 736,
"text": "(Black et al., 1998;",
"ref_id": "BIBREF5"
},
{
"start": 737,
"end": 758,
"text": "Pearson et al., 2000;",
"ref_id": "BIBREF23"
},
{
"start": 759,
"end": 773,
"text": "Webster, 2004;",
"ref_id": "BIBREF27"
},
{
"start": 774,
"end": 795,
"text": "Demberg et al., 2007)",
"ref_id": "BIBREF13"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Background and Task Definition",
"sec_num": "2"
},
{
"text": "In many languages, only two levels of stress are distinguished: stressed and unstressed. However, some languages exhibit more than two levels of stress. For example, in the English word economic, the first and the third syllable are stressed, with the former receiving weaker emphasis than the latter. In this case, the initial syllable is said to carry a secondary stress. Although each word has only one primary stress, it may have any number of secondary stresses. Predicting the full stress pattern is therefore inherently more difficult than predicting the location of primary stress only.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Background and Task Definition",
"sec_num": "2"
},
{
"text": "Our objective is to automatically assign primary and, where possible, secondary stress to out-ofvocabulary words. Stress is an attribute of syllables, but syllabification is a non-trivial task in itself (Bartlett et al., 2008) . Rather than assuming correct syllabification of the input word, we instead follow Webster (2004) in placing the stress on the vowel which constitutes the nucleus of the stressed syllable. If the syllable boundaries are known, the mapping from the vowel to the corresponding syllable is straightforward.",
"cite_spans": [
{
"start": 203,
"end": 226,
"text": "(Bartlett et al., 2008)",
"ref_id": "BIBREF3"
},
{
"start": 311,
"end": 325,
"text": "Webster (2004)",
"ref_id": "BIBREF27"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Background and Task Definition",
"sec_num": "2"
},
{
"text": "We investigate the assignment of stress to two related but different entities: the spoken word (represented by its phonetic transcription), and the written word (represented by its orthographic form). Although stress is a prosodic feature, assigning stress to written words (\"stressed orthography\") has been utilized as a preprocessing stage for the L2P task (Webster, 2004) . This preprocessing is motivated by two factors. First, stress greatly influences the pronunciation of vowels in English (c.f., allow vs. alloy). Second, since phoneme predictors typically utilize only local context around a letter, they do not incorporate the global, long-range information that is especially predictive of stress, such as penultimate syllable emphasis associated with the suffix -ation. By taking stressed orthography as input, the L2P system is able to implicitly leverage morphological information beyond the local context.",
"cite_spans": [
{
"start": 359,
"end": 374,
"text": "(Webster, 2004)",
"ref_id": "BIBREF27"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Background and Task Definition",
"sec_num": "2"
},
{
"text": "Indicating stress on letters can also be helpful to humans, especially second-language learners. In some languages, such as Spanish, orthographic markers are obligatory in words with irregular stress. The location of stress is often explicitly marked in textbooks for students of Russian. In both languages, the standard method of indicating stress is to place an acute accent above the vowel bearing primary stress, e.g., adi\u00f3s. The secondary stress in English can be indicated with a grave accent (Coleman, 2000) , e.g., pr\u00e8c\u00e9de.",
"cite_spans": [
{
"start": 499,
"end": 514,
"text": "(Coleman, 2000)",
"ref_id": "BIBREF9"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Background and Task Definition",
"sec_num": "2"
},
{
"text": "In summary, our task is to assign primary and secondary stress markers to stress-bearing vowels in an input word. The input word may be either phonemes or letters. If a stressed vowel is represented by more than one letter, we adopt the convention of marking the first vowel of the vowel sequence, e.g., m\u00e9eting. In this way, we are able to focus on the task of stress prediction, without having to determine at the same time the exact syllable boundaries, or whether a vowel letter sequence represents one or more spoken vowels (e.g., beating vs. be-at-i-fy).",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Background and Task Definition",
"sec_num": "2"
},
{
"text": "Our stress assignment system maps a word, w, to a stressed-form of the word,w. We formulate stress assignment as a sequence prediction problem. The assignment is made in three stages:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Automatic Stress Prediction",
"sec_num": "3"
},
{
"text": "(1) First, we map words to substrings (s), the basic units in our sequence (Section 3.1).",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Automatic Stress Prediction",
"sec_num": "3"
},
{
"text": "(2) Then, a particular stress pattern (t) is chosen for each substring sequence. We use a support vector machine (SVM) to rank the possible patterns for each sequence (Section 3.2).",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Automatic Stress Prediction",
"sec_num": "3"
},
{
"text": "(3) Finally, the stress pattern is used to produce the stressed-form of the word (Section 3.3). Table 1 gives examples of words at each stage of the algorithm. We discuss each step in more detail. (1) word splitting, (2) support vector ranking of stress patterns, and (3) pattern-to-vowel mapping.",
"cite_spans": [],
"ref_spans": [
{
"start": 96,
"end": 103,
"text": "Table 1",
"ref_id": "TABREF0"
}
],
"eq_spans": [],
"section": "Automatic Stress Prediction",
"sec_num": "3"
},
{
"text": "Pattern Word' w \u2192 s \u2192 t \u2192w worker \u2192 wor-ker \u2192 1-0 \u2192 w\u00f3rker overdo \u2192 ov-ver-do \u2192 2-0-1 \u2192\u00f2verd\u00f3 react \u2192 re-ac \u2192 0-1 \u2192 re\u00e1ct aebstraekt \u2192 aeb-raek \u2192 0-1 \u2192 aebstr\u01fdkt prisid \u2192 ri-sid \u2192 2-1 \u2192 pr\u00ecs\u00edd",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Substrings",
"sec_num": null
},
{
"text": "The first step in our approach is to represent the word as a sequence of N individual units:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Word Splitting",
"sec_num": "3.1"
},
{
"text": "w \u2192 s = {s 1 -s 2 -...-s N }.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Word Splitting",
"sec_num": "3.1"
},
{
"text": "These units are used to define the features and outputs used by the SVM ranker. Although we are ultimately interested in assigning stress to individual vowels in the phoneme and letter sequence, it is beneficial to represent the task in units larger than individual letters. Our substrings are similar to syllables; they have a vowel as their nucleus and include consonant context. By approximating syllables, our substring patterns will allow us to learn recurrent stress regularities, as well as dependencies between neighboring substrings. Since determining syllable breaks is a non-trivial task, we instead adopt the following simple splitting technique. Each vowel in the word forms the nucleus of a substring. Any single preceding or following consonant is added to the substring unit. Thus, each substring consists of at most three symbols (Table 1) .",
"cite_spans": [],
"ref_spans": [
{
"start": 847,
"end": 856,
"text": "(Table 1)",
"ref_id": "TABREF0"
}
],
"eq_spans": [],
"section": "Word Splitting",
"sec_num": "3.1"
},
{
"text": "Using shorter substrings reduces the sparsity of our training data; words like cryer, dryer and fryer are all mapped to the same form: ry-er. The SVM can thus generalize from observed words to similarly-spelled, unseen examples.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Word Splitting",
"sec_num": "3.1"
},
{
"text": "Since the number of vowels equals the number of syllables in the phonetic form of the word, applying this approach to phonemes will always generate the correct number of syllables. For letters, splitting may result in a different number of units than the true syllabification, e.g., pronounce \u2192 ron-no-un-ce. This does not prevent the system from producing the correct stress assignment after the pattern-to-vowel mapping stage (Section 3.3) is complete.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Word Splitting",
"sec_num": "3.1"
},
{
"text": "After creating a sequence of substring units, s = {s 1 -s 2 -...-s N }, the next step is to choose an output sequence, t = {t 1 -t 2 -...-t N }, that encodes whether each unit is stressed or unstressed. We use the number '1' to indicate that a substring receives primary stress, '2' for secondary stress, and '0' to indicate no stress. We call this output sequence the stress pattern for a word. Table 1 gives examples of words, substrings, and stress patterns.",
"cite_spans": [],
"ref_spans": [
{
"start": 396,
"end": 403,
"text": "Table 1",
"ref_id": "TABREF0"
}
],
"eq_spans": [],
"section": "Stress Prediction with SVM Ranking",
"sec_num": "3.2"
},
{
"text": "We use supervised learning to train a system to predict the stress pattern. We generate training (s, t) pairs in the obvious way from our stressmarked training words,w. That is, we first extract the letter/phoneme portion, w, and use it to create the substrings, s. We then create the stress pattern, t, usingw's stress markers. Given the training pairs, any sequence predictor can be used, for example a Conditional Random Field (CRF) (Lafferty et al., 2001 ) or a structured perceptron (Collins, 2002) . However, we can take advantage of a unique property of our problem to use a more expressive framework than is typically used in sequence prediction.",
"cite_spans": [
{
"start": 436,
"end": 458,
"text": "(Lafferty et al., 2001",
"ref_id": "BIBREF21"
},
{
"start": 488,
"end": 503,
"text": "(Collins, 2002)",
"ref_id": "BIBREF11"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Stress Prediction with SVM Ranking",
"sec_num": "3.2"
},
{
"text": "The key observation is that the output space of possible stress patterns is actually fairly limited. Clopper (2002) shows that people have strong preferences for particular sequences of stress, and this is confirmed by our training data (Section 4.1). In English, for example, we find that for each set of spoken words with the same number of syllables, there are no more than fifteen different stress patterns. In total, among 55K English training examples, there are only 70 different stress patterns. In both German and Dutch there are only about 50 patterns in 250K examples. 1 Therefore, for a particular input sequence, we can safely limit our consideration to only the small set of output patterns of the same length.",
"cite_spans": [
{
"start": 101,
"end": 115,
"text": "Clopper (2002)",
"ref_id": "BIBREF8"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Stress Prediction with SVM Ranking",
"sec_num": "3.2"
},
{
"text": "Thus, unlike typical sequence predictors, we do not have to search for the highest-scoring output according to our model. We can enumerate the full set of outputs and simply choose the highestscoring one. This enables a more expressive representation. We can define arbitrary features over the entire output sequence. In a typical CRF or structured perceptron approach, only output features that can be computed incrementally during search are used (e.g. Markov transition features that permit Viterbi search). Since search is not needed here, we can exploit longer-range features.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Stress Prediction with SVM Ranking",
"sec_num": "3.2"
},
{
"text": "Choosing the highest-scoring output from a fixed set is a ranking problem, and we provide the full ranking formulation below. Unlike previous ranking approaches (e.g. Collins and Koo (2005) ), we do not rely on a generative model to produce a list of candidates. Candidates are chosen in advance from observed training patterns.",
"cite_spans": [
{
"start": 167,
"end": 189,
"text": "Collins and Koo (2005)",
"ref_id": "BIBREF10"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Stress Prediction with SVM Ranking",
"sec_num": "3.2"
},
{
"text": "For a substring sequence, s, of length N , our task is to select the correct output pattern from the set of all length-N patterns observed in our training data, a set we denote as T N . We score each possible input-output combination using a linear model. Each substring sequence and possible output pattern, (s, t), is represented with a set of features, \u03a6(s, t). The score for a particular (s, t) combination is a weighted sum of these features, \u03bb\u2022\u03a6(s, t).",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Ranking Formulation",
"sec_num": "3.2.1"
},
{
"text": "The specific features we use are described in Section 3.2.2.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Ranking Formulation",
"sec_num": "3.2.1"
},
{
"text": "Let t j be the stress pattern for the jth training sequence s j , both of length N . At training time, the weights, \u03bb, are chosen such that for each s j , the correct output pattern receives a higher score than other patterns of the same length:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Ranking Formulation",
"sec_num": "3.2.1"
},
{
"text": "EQUATION",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [
{
"start": 0,
"end": 8,
"text": "EQUATION",
"ref_id": "EQREF",
"raw_str": "\u2200u \u2208 T N , u = t j , \u03bb \u2022 \u03a6(s j , t j ) > \u03bb \u2022 \u03a6(s j , u)",
"eq_num": "(1)"
}
],
"section": "Ranking Formulation",
"sec_num": "3.2.1"
},
{
"text": "The set of constraints generated by Equation 1 are called rank constraints. They are created separately for every (s j , t j ) training pair. Essentially, each training pair is matched with a set of automatically-created negative examples. Each negative has an incorrect, but plausible, stress pattern, u.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Ranking Formulation",
"sec_num": "3.2.1"
},
{
"text": "We adopt a Support Vector Machine (SVM) solution to these ranking constraints as described by Joachims (2002) . The learner finds the weights that ensure a maximum (soft) margin separation between the correct scores and the competitors. We use an SVM because it has been successful in similar settings (learning with thousands of sparse features) for both ranking and classification tasks, and because an efficient implementation is available (Joachims, 1999) .",
"cite_spans": [
{
"start": 94,
"end": 109,
"text": "Joachims (2002)",
"ref_id": "BIBREF20"
},
{
"start": 443,
"end": 459,
"text": "(Joachims, 1999)",
"ref_id": "BIBREF19"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Ranking Formulation",
"sec_num": "3.2.1"
},
{
"text": "At test time we simply score each possible output pattern using the learned weights. That is, for an input sequence s of length N , we compute \u03bb \u2022 \u03a6(s, t) for all t \u2208 T N , and we take the highest scoring t as our output. Note that because we only Table 2 : Feature Template consider previously-observed output patterns, it is impossible for our system to produce a nonsensical result, such as having two primary stresses in one word. Standard search-based sequence predictors need to be specially augmented with hard constraints in order to prevent such output (Roth and Yih, 2005) .",
"cite_spans": [
{
"start": 562,
"end": 582,
"text": "(Roth and Yih, 2005)",
"ref_id": "BIBREF24"
}
],
"ref_spans": [
{
"start": 248,
"end": 255,
"text": "Table 2",
"ref_id": null
}
],
"eq_spans": [],
"section": "Ranking Formulation",
"sec_num": "3.2.1"
},
{
"text": "Substring s i , t i s i , i, t i Context s i\u22121 , t i s i\u22121 s i , t i s i+1 , t i s i s i+1 , t i s i\u22121 s i s i+1 , t i Stress Pattern t 1 t 2 . . . t N",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Ranking Formulation",
"sec_num": "3.2.1"
},
{
"text": "The power of our ranker to identify the correct stress pattern depends on how expressive our features are. Table 2 shows the feature templates used to create the features \u03a6(s, t) for our ranker. We use binary features to indicate whether each combination occurs in the current (s,t) pair.",
"cite_spans": [],
"ref_spans": [
{
"start": 107,
"end": 114,
"text": "Table 2",
"ref_id": null
}
],
"eq_spans": [],
"section": "Features",
"sec_num": "3.2.2"
},
{
"text": "For example, if a substring tion is unstressed in a (s, t) pair, the Substring feature {s i , t i = tion,0} will be true. 2 In English, often the penultimate syllable is stressed if the final syllable is tion.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Features",
"sec_num": "3.2.2"
},
{
"text": "We can capture such a regularity with the Context feature s i+1 , t i . If the following syllable is tion and the current syllable is stressed, the feature {s i+1 , t i = tion,1} will be true. This feature will likely receive a positive weight, so that output sequences with a stress before tion receive a higher rank.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Features",
"sec_num": "3.2.2"
},
{
"text": "Finally, the full Stress Pattern serves as an important feature. Note that such a feature would not be possible in standard sequence predictors, where such information must be decomposed into Markov transition features like t i\u22121 t i . In a ranking framework, we can score output sequences using their full output pattern. Thus we can easily learn the rules in languages with regular stress rules. For languages that do not have a fixed stress rule, preferences for particular patterns can be learned using this feature.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Features",
"sec_num": "3.2.2"
},
{
"text": "The final stage of our system uses the predicted pattern t to create the stress-marked form of the word,w. Note the number of substrings created by our splitting method always equals the number of vowels in the word. We can thus simply map the indicator numbers in t to markers on their corresponding vowels to produce the stressed word.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Pattern-to-Vowel Mapping",
"sec_num": "3.3"
},
{
"text": "For our example, pronounce \u2192 ron-no-un-ce, if the SVM chooses the stress pattern, 0-1-0-0, we produce the correct stress-marked word, pron\u00f3unce. If we instead stress the third vowel, 0-0-1-0, we produce an incorrect output, prono\u00fance.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Pattern-to-Vowel Mapping",
"sec_num": "3.3"
},
{
"text": "In this section, we evaluate our ranking approach to stress prediction by assigning stress to spoken and written words in three languages: English, German, and Dutch. We first describe the data and the various systems we evaluate, and then provide the results.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Stress Prediction Experiments",
"sec_num": "4"
},
{
"text": "The data is extracted from CELEX (Baayen et al., 1996) . Following previous work on stress prediction, we randomly partition the data into 85% for training, 5% for development, and 10% for testing. To make results on German and Dutch comparable with English, we reduce the training, development, and testing set by 80% for each. After removing all duplicated items as well as abbreviations, phrases, and diacritics, each training set contains around 55K words.",
"cite_spans": [
{
"start": 33,
"end": 54,
"text": "(Baayen et al., 1996)",
"ref_id": "BIBREF1"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Data",
"sec_num": "4.1"
},
{
"text": "In CELEX, stress is labeled on syllables in the phonetic form of the words. Since our objective is to assign stress markers to vowels (as described in Section 2) we automatically map the stress markers from the stressed syllables in the phonetic forms onto phonemes and letters representing vowels. For phonemes, the process is straightforward: we move the stress marker from the beginning of a syllable to the phoneme which constitutes the nucleus of the syllable. For letters, we map the stress from the vowel phoneme onto the orthographic forms using the ALINE algorithm (Dwyer and Kondrak, 2009) . The stress marker is placed on the first letter within the syllable that represents a vowel sound. 3",
"cite_spans": [
{
"start": 574,
"end": 599,
"text": "(Dwyer and Kondrak, 2009)",
"ref_id": "BIBREF15"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Data",
"sec_num": "4.1"
},
{
"text": "3 Our stand-off stress annotations for English, German, and Dutch CELEX orthographic data can be downloaded at: http://www.cs.ualberta.ca/\u02dckondrak/celex.html.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Data",
"sec_num": "4.1"
},
{
"text": "Eng Table 3 : Stress prediction word accuracy (%) on phonemes for English, German, and Dutch. P: predicting primary stress only. P+S: primary and secondary.",
"cite_spans": [],
"ref_spans": [
{
"start": 4,
"end": 11,
"text": "Table 3",
"ref_id": "TABREF2"
}
],
"eq_spans": [],
"section": "System",
"sec_num": null
},
{
"text": "Ger Dut P+S",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "System",
"sec_num": null
},
{
"text": "CELEX also provides secondary stress annotation for English. We therefore evaluate on both primary and secondary stress (P+S) in English and on primary stress assignment alone (P) for English, German, and Dutch.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "System",
"sec_num": null
},
{
"text": "We evaluate three different systems on the letter and phoneme sequences in the experimental data: 1) SUBSTRING is the system presented in Section 3. It uses the vowel-based splitting method, followed by SVM ranking.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Comparison Approaches",
"sec_num": "4.2"
},
{
"text": "2) ORACLESYL splits the input word into syllables according to the CELEX gold-standard, before applying SVM ranking. The output pattern is evaluated directly against the goldstandard, without pattern-to-vowel mapping.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Comparison Approaches",
"sec_num": "4.2"
},
{
"text": "3) TOPPATTERN is our baseline system. It uses the vowel-based splitting method to produce a substring sequence of length N . Then it simply chooses the most common stress pattern among all the stress patterns of length N .",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Comparison Approaches",
"sec_num": "4.2"
},
{
"text": "SUBSTRING and ORACLESYL use scores produced by an SVM ranker trained on the training data. We employ the ranking mode of the popular learning package SVM light (Joachims, 1999) . In each case, we learn a linear kernel ranker on the training set stress patterns and tune the parameter that trades-off training error and margin on the development set.",
"cite_spans": [
{
"start": 160,
"end": 176,
"text": "(Joachims, 1999)",
"ref_id": "BIBREF19"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Comparison Approaches",
"sec_num": "4.2"
},
{
"text": "We evaluate the systems using word accuracy: the percent of words for which the output form of the word,w, matches the gold standard. Table 4 : Stress prediction word accuracy (%) on letters for English, German, and Dutch. P: predicting primary stress only. P+S: primary and secondary.",
"cite_spans": [],
"ref_spans": [
{
"start": 134,
"end": 141,
"text": "Table 4",
"ref_id": null
}
],
"eq_spans": [],
"section": "Comparison Approaches",
"sec_num": "4.2"
},
{
"text": "primary stress in English, 97.1% in German, and 93.1% in Dutch. It also predicts both primary and secondary stress in English with high accuracy, 96.2%. Performance is much higher than our baseline accuracy, which is between 60% and 70%. ORACLESYL, with longer substrings and hence sparser data, does not generally improve performance. This indicates that perfect syllabification is unnecessary for phonetic stress assignment.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Results",
"sec_num": "4.3"
},
{
"text": "Our system is a major advance over the previous state-of-the-art in phonetic stress assignment. For predicting stressed/unstressed syllables in English, Black et al. (1998) obtained a persyllable accuracy of 94.6%. We achieve 96.2% per-word accuracy for predicting both primary and secondary stress. Others report lower numbers on English phonemes. Bagshaw (1998) obtained 65%-83.3% per-syllable accuracy using Church (1985) 's rule-based system. For predicting both primary and secondary stress, Coleman (2000) and Pearson et al. (2000) report 69.8% and 81.0% word accuracy, respectively.",
"cite_spans": [
{
"start": 153,
"end": 172,
"text": "Black et al. (1998)",
"ref_id": "BIBREF5"
},
{
"start": 411,
"end": 424,
"text": "Church (1985)",
"ref_id": "BIBREF7"
},
{
"start": 497,
"end": 511,
"text": "Coleman (2000)",
"ref_id": "BIBREF9"
},
{
"start": 516,
"end": 537,
"text": "Pearson et al. (2000)",
"ref_id": "BIBREF23"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Results",
"sec_num": "4.3"
},
{
"text": "The performance on letters (Table 4) is also quite encouraging. SUBSTRING predicts primary stress with accuracy above 95% for English and German, and equal to 91% in Dutch. Performance is 1-3% lower on letters than on phonemes. On the other hand, the performance of ORACLESYL drops much less on letters. This indicates that most of SUBSTRING's errors are caused by the splitting method. Letter vowels may or may not represent spoken vowels. By creating a substring for every vowel letter we may produce an incorrect number of syllables. Our pattern feature is therefore less effective.",
"cite_spans": [],
"ref_spans": [
{
"start": 27,
"end": 36,
"text": "(Table 4)",
"ref_id": null
}
],
"eq_spans": [],
"section": "Results",
"sec_num": "4.3"
},
{
"text": "Nevertheless, SUBSTRING's accuracy on letters also represents a clear improvement over previous work. Webster (2004) reports 80.3% word accuracy on letters in English and 81.2% in German. The most comparable work is Demberg et al. 2007, which achieves 90.1% word accuracy on letters in German CELEX, assuming perfect letter syllabification. In order to reproduce their strict experimental setup, we re-partition the full set of German CELEX data to ensure that no overlap of word stems exists between the training and test sets. Using the new data sets, our system achieves a word accuracy of 92.3%, a 2.2% improvement over Demberg et al. (2007) 's result. Moreover, if we also assume perfect syllabification, the accuracy is 94.3%, a 40% reduction in error rate.",
"cite_spans": [
{
"start": 102,
"end": 116,
"text": "Webster (2004)",
"ref_id": "BIBREF27"
},
{
"start": 624,
"end": 645,
"text": "Demberg et al. (2007)",
"ref_id": "BIBREF13"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Results",
"sec_num": "4.3"
},
{
"text": "We performed a detailed analysis to understand the strong performance of our system. First of all, note that an error could happen if a test-set stress pattern was not observed in the training data; its correct stress pattern would not be considered as an output. In fact, no more than two test errors in any test set were so caused. This strongly justifies the reduced set of outputs used in our ranking formulation.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Results",
"sec_num": "4.3"
},
{
"text": "We also tested all systems with the Stress Pattern feature removed. Results were worse in all cases. As expected, it is most valuable for predicting primary and secondary stress. On English phonemes, accuracy drops from 96.2% to 95.3% without it. On letters, it drops from 93.5% to 90.0%. The gain from this feature also validates our ranking framework, as such arbitrary features over the entire output sequence can not be used in standard search-based sequence prediction.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Results",
"sec_num": "4.3"
},
{
"text": "Finally, we examined the relationship between training data size and performance by plotting learning curves for letter stress accuracy (Figure 1) . Unlike the tables above, here we use the full set of data in Dutch and German CELEX to create the largest-possible training sets (255K examples). None of the curves are levelling off; performance grows log-linearly across the full range.",
"cite_spans": [],
"ref_spans": [
{
"start": 136,
"end": 146,
"text": "(Figure 1)",
"ref_id": "FIGREF0"
}
],
"eq_spans": [],
"section": "Results",
"sec_num": "4.3"
},
{
"text": "In this section, we evaluate various methods of combining stress prediction with phoneme generation. We first describe the specific system that we use for letter-to-phoneme (L2P) conversion. We then discuss the different ways stress prediction can be integrated with L2P, and define the systems used in our experiments. Finally, we provide the results.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Lexical stress and L2P conversion",
"sec_num": "5"
},
{
"text": "We combine stress prediction with a state-of-theart L2P system (Jiampojamarn et al., 2008) . Like our stress ranker, their system is a data-driven sequence predictor that is trained with supervised learning. The score for each output sequence is a weighted combination of features. The feature weights are trained using the Margin Infused Relaxed Algorithm (MIRA) (Crammer and Singer, 2003) , a powerful online discriminative training framework. Like other recent L2P systems (Bisani and Ney, 2002; Marchand and Damper, 2007; Jiampojamarn et al., 2007) , this approach does not generate stress, nor does it consider stress when it generates phonemes.",
"cite_spans": [
{
"start": 63,
"end": 90,
"text": "(Jiampojamarn et al., 2008)",
"ref_id": "BIBREF18"
},
{
"start": 364,
"end": 390,
"text": "(Crammer and Singer, 2003)",
"ref_id": "BIBREF12"
},
{
"start": 476,
"end": 498,
"text": "(Bisani and Ney, 2002;",
"ref_id": "BIBREF4"
},
{
"start": 499,
"end": 525,
"text": "Marchand and Damper, 2007;",
"ref_id": "BIBREF22"
},
{
"start": 526,
"end": 552,
"text": "Jiampojamarn et al., 2007)",
"ref_id": "BIBREF17"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "The L2P system",
"sec_num": "5.1"
},
{
"text": "For L2P experiments, we use the same training, testing, and development data as was used in Section 4. For all experiments, we use the development set to determine at which iteration to stop training in the online algorithm.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The L2P system",
"sec_num": "5.1"
},
{
"text": "Various methods have been used for combining stress and phoneme generation. Phonemes can be generated without regard to stress, with stress assigned as a post-process (Bagshaw, 1998; Coleman, 2000) . Both van den Bosch (1997) and Black et al. (1998) argue that stress should be predicted at the same time as phonemes. They expand the output set to distinguish between stressed and unstressed phonemes. Similarly, Demberg et al. (2007) produce phonemes, stress, and syllableboundaries within a single joint n-gram model. Pearson et al. (2000) generate phonemes and stress together by jointly optimizing a decision-tree phoneme-generator and a stress predictor based on stress pattern counts. In contrast, Webster (2004) first assigns stress to letters, creating an expanded input set, and then predicts both phonemes and stress jointly. The system marks stress on letter vowels by determining the correspondence between affixes and stress in written words. Following the above approaches, we can expand the input or output symbols of our L2P system to include stress. However, since both decision tree systems and our L2P predictor utilize only local context, they may produce invalid global output. One option, used by Demberg et al. (2007) , is to add a constraint to the output generation, requiring each output sequence to have exactly one primary stress.",
"cite_spans": [
{
"start": 167,
"end": 182,
"text": "(Bagshaw, 1998;",
"ref_id": "BIBREF2"
},
{
"start": 183,
"end": 197,
"text": "Coleman, 2000)",
"ref_id": "BIBREF9"
},
{
"start": 230,
"end": 249,
"text": "Black et al. (1998)",
"ref_id": "BIBREF5"
},
{
"start": 413,
"end": 434,
"text": "Demberg et al. (2007)",
"ref_id": "BIBREF13"
},
{
"start": 520,
"end": 541,
"text": "Pearson et al. (2000)",
"ref_id": "BIBREF23"
},
{
"start": 704,
"end": 718,
"text": "Webster (2004)",
"ref_id": "BIBREF27"
},
{
"start": 1219,
"end": 1240,
"text": "Demberg et al. (2007)",
"ref_id": "BIBREF13"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Combining stress and phoneme generation",
"sec_num": "5.2"
},
{
"text": "We enhance this constraint, based on the observation that the number of valid output sequences is fairly limited (Section 3.2). The modified system produces the highest-scoring sequence such that the output's corresponding stress pattern has been observed in our training data. We call this the stress pattern constraint. This is a tighter constraint than having only one primary stress. 4 Another advantage is that it provides some guidance for the assignment of secondary stress.",
"cite_spans": [
{
"start": 388,
"end": 389,
"text": "4",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Combining stress and phoneme generation",
"sec_num": "5.2"
},
{
"text": "Inspired by the aforementioned strategies, we evaluate the following approaches: 1) JOINT: The L2P system's input sequence is letters, the output sequence is phonemes+stress.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Combining stress and phoneme generation",
"sec_num": "5.2"
},
{
"text": "2) JOINT+CONSTR: Same as JOINT, except it selects the highest scoring output that obeys the stress pattern constraint.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Combining stress and phoneme generation",
"sec_num": "5.2"
},
{
"text": "3) POSTPROCESS: The L2P system's input is letters, the output is phonemes. It then applies the SVM stress ranker (Section 3) to the phonemes to produce the full phoneme+stress output. 4) LETTERSTRESS: The L2P system's input is letters+stress, the output is phonemes+stress. It creates the stress-marked letters by applying the SVM ranker to the input letters as a preprocess. Table 5 : Combined phoneme and stress prediction word accuracy (%) for English, German, and Dutch. P: predicting primary stress only. P+S: primary and secondary.",
"cite_spans": [],
"ref_spans": [
{
"start": 376,
"end": 383,
"text": "Table 5",
"ref_id": null
}
],
"eq_spans": [],
"section": "Combining stress and phoneme generation",
"sec_num": "5.2"
},
{
"text": "Note that while the first approach uses only local information to make predictions (features within a context window around the current letter), systems 2 to 5 leverage global information in some manner: systems 3 and 4 use the predictions of our stress ranker, while 2 uses a global stress pattern constraint. 5 We also generated stress and phonemes using the popular Festival Speech Synthesis System 6 (version 1.96, 2004) and report its accuracy.",
"cite_spans": [
{
"start": 311,
"end": 312,
"text": "5",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Combining stress and phoneme generation",
"sec_num": "5.2"
},
{
"text": "Word accuracy results for predicting both phonemes and stress are provided in Table 5 . First of all, note that the JOINT approach, which simply expands the output set, is 4%-8% worse than all other comparison systems across the three languages. These results clearly indicate the drawbacks of predicting stress using only local information. In English, both LETTERSTRESS and POSTPROCESS perform best, while POSTPROCESS and the constrained system are highest on German and Dutch. Results using the oracle letter stress show that given perfect stress assignment on letters, phonemes and stress can be predicted very accurately, in all cases above 91%.",
"cite_spans": [],
"ref_spans": [
{
"start": 78,
"end": 85,
"text": "Table 5",
"ref_id": null
}
],
"eq_spans": [],
"section": "Results",
"sec_num": "5.3"
},
{
"text": "We also found that the phoneme prediction accuracy alone (i.e., without stress) is quite similar for all the systems. The gains over JOINT on combined stress and phoneme accuracy are almost entirely due to more accurate stress assignment. Utilizing the oracle stress on letters markedly improves phoneme prediction in English (from 88.8% to 91.4%). This can be explained by the fact that English vowels are often reduced to schwa when unstressed (Section 2).",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Results",
"sec_num": "5.3"
},
{
"text": "Predicting both phonemes and stress is a challenging task, and each of our globally-informed systems represents a major improvement over previous work. The accuracy of Festival is much lower even than our JOINT approach, but the relative performance on the different languages is quite similar.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Results",
"sec_num": "5.3"
},
{
"text": "A few papers report accuracy on the combined stress and phoneme prediction task. The most directly comparable work is van den Bosch (1997), which also predicts primary and secondary stress using English CELEX data. However, the reported word accuracy is only 62.1%. Three other papers report word accuracy on phonemes and stress, using different data sets. Pearson et al. (2000) report 58.5% word accuracy for predicting phonemes and primary/secondary stress. Black et al. (1998) report 74.6% word accuracy in English, while Webster (2004) reports 68.2% on English and 82.9% in German (all primary stress only). Finally, Demberg et al. (2007) report word accuracy on predicting phonemes, stress, and syllabification on German CELEX data. They achieve 86.3% word accuracy.",
"cite_spans": [
{
"start": 357,
"end": 378,
"text": "Pearson et al. (2000)",
"ref_id": "BIBREF23"
},
{
"start": 460,
"end": 479,
"text": "Black et al. (1998)",
"ref_id": "BIBREF5"
},
{
"start": 525,
"end": 539,
"text": "Webster (2004)",
"ref_id": "BIBREF27"
},
{
"start": 621,
"end": 642,
"text": "Demberg et al. (2007)",
"ref_id": "BIBREF13"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Results",
"sec_num": "5.3"
},
{
"text": "We have presented a discriminative ranking approach to lexical stress prediction, which clearly outperforms previously developed systems. The approach is largely language-independent, applicable to both orthographic and phonetic representations, and flexible enough to handle multiple stress levels. When combined with an existing L2P system, it achieves impressive accuracy in generating pronunciations together with their stress patterns. In the future, we will investigate additional features to leverage syllabic and morphological information, when available. Kernel functions could also be used to automatically create a richer feature space; preliminary experiments have shown gains in performance using polynomial and RBF kernels with our stress ranker.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Conclusion",
"sec_num": "6"
},
{
"text": "See(Dou, 2009) for more details.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
},
{
"text": "tion is a substring composed of three phonemes but we use its orthographic representation here for clarity.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
},
{
"text": "In practice, the L2P system generates a top-N list, and we take the highest-scoring output on the list that satisfies the constraint. If none satisfy the constraint, we take the top output that has only one primary stress.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
},
{
"text": "This constraint could also help the other systems. However, since they already use global information, it yields only marginal improvements.6 http://www.cstr.ed.ac.uk/projects/festival/",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
}
],
"back_matter": [
{
"text": "This research was supported by the Natural Sciences and Engineering Research Council of Canada, the Alberta Ingenuity Fund, and the Alberta Informatics Circle of Research Excellence.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Acknowledgements",
"sec_num": null
}
],
"bib_entries": {
"BIBREF0": {
"ref_id": "b0",
"title": "The processing of lexical stress during visual word recognition: Typicality effects and orthographic correlates",
"authors": [
{
"first": "Joanne",
"middle": [],
"last": "Arciuli",
"suffix": ""
},
{
"first": "Linda",
"middle": [],
"last": "Cupples",
"suffix": ""
}
],
"year": 2006,
"venue": "Quarterly Journal of Experimental Psychology",
"volume": "59",
"issue": "5",
"pages": "920--948",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Joanne Arciuli and Linda Cupples. 2006. The pro- cessing of lexical stress during visual word recog- nition: Typicality effects and orthographic corre- lates. Quarterly Journal of Experimental Psychol- ogy, 59(5):920-948.",
"links": null
},
"BIBREF1": {
"ref_id": "b1",
"title": "The CELEX2 lexical database. LDC96L14",
"authors": [
{
"first": "Harald",
"middle": [],
"last": "Baayen",
"suffix": ""
},
{
"first": "Richard",
"middle": [],
"last": "Piepenbrock",
"suffix": ""
},
{
"first": "Leon",
"middle": [],
"last": "Gulikers",
"suffix": ""
}
],
"year": 1996,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Harald Baayen, Richard Piepenbrock, and Leon Gu- likers. 1996. The CELEX2 lexical database. LDC96L14.",
"links": null
},
"BIBREF2": {
"ref_id": "b2",
"title": "Phonemic transcription by analogy in text-to-speech synthesis: Novel word pronunciation and lexicon compression",
"authors": [
{
"first": "C",
"middle": [],
"last": "Paul",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Bagshaw",
"suffix": ""
}
],
"year": 1998,
"venue": "Computer Speech and Language",
"volume": "12",
"issue": "2",
"pages": "119--142",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Paul C. Bagshaw. 1998. Phonemic transcription by analogy in text-to-speech synthesis: Novel word pronunciation and lexicon compression. Computer Speech and Language, 12(2):119-142.",
"links": null
},
"BIBREF3": {
"ref_id": "b3",
"title": "Automatic syllabification with structured SVMs for letter-to-phoneme conversion",
"authors": [
{
"first": "Susan",
"middle": [],
"last": "Bartlett",
"suffix": ""
},
{
"first": "Grzegorz",
"middle": [],
"last": "Kondrak",
"suffix": ""
},
{
"first": "Colin",
"middle": [],
"last": "Cherry",
"suffix": ""
}
],
"year": 2008,
"venue": "ACL-08: HLT",
"volume": "",
"issue": "",
"pages": "568--576",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Susan Bartlett, Grzegorz Kondrak, and Colin Cherry. 2008. Automatic syllabification with structured SVMs for letter-to-phoneme conversion. In ACL- 08: HLT, pages 568-576.",
"links": null
},
"BIBREF4": {
"ref_id": "b4",
"title": "Investigations on joint-multigram models for grapheme-tophoneme conversion",
"authors": [
{
"first": "Maximilian",
"middle": [],
"last": "Bisani",
"suffix": ""
},
{
"first": "Hermann",
"middle": [],
"last": "Ney",
"suffix": ""
}
],
"year": 2002,
"venue": "ICSLP",
"volume": "",
"issue": "",
"pages": "105--108",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Maximilian Bisani and Hermann Ney. 2002. Investi- gations on joint-multigram models for grapheme-to- phoneme conversion. In ICSLP, pages 105-108.",
"links": null
},
"BIBREF5": {
"ref_id": "b5",
"title": "Issues in building general letter to sound rules",
"authors": [
{
"first": "Alan",
"middle": [
"W"
],
"last": "Black",
"suffix": ""
},
{
"first": "Kevin",
"middle": [],
"last": "Lenzo",
"suffix": ""
},
{
"first": "Vincent",
"middle": [],
"last": "Pagel",
"suffix": ""
}
],
"year": 1998,
"venue": "The 3rd ESCA Workshop on Speech Synthesis",
"volume": "",
"issue": "",
"pages": "77--80",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Alan W Black, Kevin Lenzo, and Vincent Pagel. 1998. Issues in building general letter to sound rules. In The 3rd ESCA Workshop on Speech Synthesis, pages 77-80.",
"links": null
},
"BIBREF6": {
"ref_id": "b6",
"title": "The sound pattern of English",
"authors": [
{
"first": "Noam",
"middle": [],
"last": "Chomsky",
"suffix": ""
},
{
"first": "Morris",
"middle": [],
"last": "Halle",
"suffix": ""
}
],
"year": 1968,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Noam Chomsky and Morris Halle. 1968. The sound pattern of English. New York: Harper and Row.",
"links": null
},
"BIBREF7": {
"ref_id": "b7",
"title": "Stress assignment in letter to sound rules for speech synthesis",
"authors": [
{
"first": "Kenneth",
"middle": [],
"last": "Church",
"suffix": ""
}
],
"year": 1985,
"venue": "ACL",
"volume": "",
"issue": "",
"pages": "246--253",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Kenneth Church. 1985. Stress assignment in letter to sound rules for speech synthesis. In ACL, pages 246-253.",
"links": null
},
"BIBREF8": {
"ref_id": "b8",
"title": "Frequency of stress patterns in English: A computational analysis. IULC Working Papers Online",
"authors": [
{
"first": "Cynthia",
"middle": [
"G"
],
"last": "Clopper",
"suffix": ""
}
],
"year": 2002,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Cynthia G. Clopper. 2002. Frequency of stress pat- terns in English: A computational analysis. IULC Working Papers Online.",
"links": null
},
"BIBREF9": {
"ref_id": "b9",
"title": "Improved prediction of stress in out-of-vocabulary words",
"authors": [
{
"first": "John",
"middle": [],
"last": "Coleman",
"suffix": ""
}
],
"year": 2000,
"venue": "IEEE Seminar on the State of the Art in Speech Synthesis",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "John Coleman. 2000. Improved prediction of stress in out-of-vocabulary words. In IEEE Seminar on the State of the Art in Speech Synthesis.",
"links": null
},
"BIBREF10": {
"ref_id": "b10",
"title": "Discriminative reranking for natural language parsing",
"authors": [
{
"first": "Michael",
"middle": [],
"last": "Collins",
"suffix": ""
},
{
"first": "Terry",
"middle": [],
"last": "Koo",
"suffix": ""
}
],
"year": 2005,
"venue": "Computational Linguistics",
"volume": "31",
"issue": "1",
"pages": "25--70",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Michael Collins and Terry Koo. 2005. Discriminative reranking for natural language parsing. Computa- tional Linguistics, 31(1):25-70.",
"links": null
},
"BIBREF11": {
"ref_id": "b11",
"title": "Discriminative training methods for Hidden Markov Models: Theory and experiments with perceptron algorithms",
"authors": [
{
"first": "Michael",
"middle": [],
"last": "Collins",
"suffix": ""
}
],
"year": 2002,
"venue": "EMNLP",
"volume": "",
"issue": "",
"pages": "1--8",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Michael Collins. 2002. Discriminative training meth- ods for Hidden Markov Models: Theory and ex- periments with perceptron algorithms. In EMNLP, pages 1-8.",
"links": null
},
"BIBREF12": {
"ref_id": "b12",
"title": "Ultraconservative online algorithms for multiclass problems",
"authors": [
{
"first": "Koby",
"middle": [],
"last": "Crammer",
"suffix": ""
},
{
"first": "Yoram",
"middle": [],
"last": "Singer",
"suffix": ""
}
],
"year": 2003,
"venue": "Journal of Machine Learning Research",
"volume": "3",
"issue": "",
"pages": "951--991",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Koby Crammer and Yoram Singer. 2003. Ultracon- servative online algorithms for multiclass problems. Journal of Machine Learning Research, 3:951-991.",
"links": null
},
"BIBREF13": {
"ref_id": "b13",
"title": "Phonological constraints and morphological preprocessing for grapheme-to-phoneme conversion",
"authors": [
{
"first": "Vera",
"middle": [],
"last": "Demberg",
"suffix": ""
},
{
"first": "Helmut",
"middle": [],
"last": "Schmid",
"suffix": ""
},
{
"first": "Gregor",
"middle": [],
"last": "M\u00f6hler",
"suffix": ""
}
],
"year": 2007,
"venue": "ACL",
"volume": "",
"issue": "",
"pages": "96--103",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Vera Demberg, Helmut Schmid, and Gregor M\u00f6hler. 2007. Phonological constraints and morphologi- cal preprocessing for grapheme-to-phoneme conver- sion. In ACL, pages 96-103.",
"links": null
},
"BIBREF14": {
"ref_id": "b14",
"title": "An SVM ranking approach to stress assignment",
"authors": [
{
"first": "Qing",
"middle": [],
"last": "Dou",
"suffix": ""
}
],
"year": 2009,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Qing Dou. 2009. An SVM ranking approach to stress assignment. Master's thesis, University of Alberta.",
"links": null
},
"BIBREF15": {
"ref_id": "b15",
"title": "Reducing the annotation effort for letter-to-phoneme conversion",
"authors": [
{
"first": "Kenneth",
"middle": [],
"last": "Dwyer",
"suffix": ""
},
{
"first": "Grzegorz",
"middle": [],
"last": "Kondrak",
"suffix": ""
}
],
"year": 2009,
"venue": "ACL-IJCNLP",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Kenneth Dwyer and Grzegorz Kondrak. 2009. Reduc- ing the annotation effort for letter-to-phoneme con- version. In ACL-IJCNLP.",
"links": null
},
"BIBREF16": {
"ref_id": "b16",
"title": "English word-stress",
"authors": [
{
"first": "Erik",
"middle": [
"C"
],
"last": "Fudge",
"suffix": ""
}
],
"year": 1984,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Erik C. Fudge. 1984. English word-stress. London: Allen and Unwin.",
"links": null
},
"BIBREF17": {
"ref_id": "b17",
"title": "Applying many-to-many alignments and Hidden Markov Models to letter-to-phoneme conversion",
"authors": [
{
"first": "Grzegorz",
"middle": [],
"last": "Sittichai Jiampojamarn",
"suffix": ""
},
{
"first": "Tarek",
"middle": [],
"last": "Kondrak",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Sherif",
"suffix": ""
}
],
"year": 2007,
"venue": "NAACL-HLT 2007",
"volume": "",
"issue": "",
"pages": "372--379",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Sittichai Jiampojamarn, Grzegorz Kondrak, and Tarek Sherif. 2007. Applying many-to-many alignments and Hidden Markov Models to letter-to-phoneme conversion. In NAACL-HLT 2007, pages 372-379.",
"links": null
},
"BIBREF18": {
"ref_id": "b18",
"title": "Joint processing and discriminative training for letter-to-phoneme conversion",
"authors": [
{
"first": "Sittichai",
"middle": [],
"last": "Jiampojamarn",
"suffix": ""
},
{
"first": "Colin",
"middle": [],
"last": "Cherry",
"suffix": ""
},
{
"first": "Grzegorz",
"middle": [],
"last": "Kondrak",
"suffix": ""
}
],
"year": 2008,
"venue": "ACL-08: HLT",
"volume": "",
"issue": "",
"pages": "905--913",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Sittichai Jiampojamarn, Colin Cherry, and Grzegorz Kondrak. 2008. Joint processing and discriminative training for letter-to-phoneme conversion. In ACL- 08: HLT, pages 905-913.",
"links": null
},
"BIBREF19": {
"ref_id": "b19",
"title": "Making large-scale Support Vector Machine learning practical",
"authors": [
{
"first": "Thorsten",
"middle": [],
"last": "Joachims",
"suffix": ""
}
],
"year": 1999,
"venue": "Advances in Kernel Methods: Support Vector Machines",
"volume": "",
"issue": "",
"pages": "169--184",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Thorsten Joachims. 1999. Making large-scale Support Vector Machine learning practical. In B. Sch\u00f6lkopf and C. Burges, editors, Advances in Kernel Meth- ods: Support Vector Machines, pages 169-184. MIT-Press.",
"links": null
},
"BIBREF20": {
"ref_id": "b20",
"title": "Optimizing search engines using clickthrough data",
"authors": [
{
"first": "Thorsten",
"middle": [],
"last": "Joachims",
"suffix": ""
}
],
"year": 2002,
"venue": "KDD",
"volume": "",
"issue": "",
"pages": "133--142",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Thorsten Joachims. 2002. Optimizing search engines using clickthrough data. In KDD, pages 133-142.",
"links": null
},
"BIBREF21": {
"ref_id": "b21",
"title": "Conditional Random Fields: Probabilistic models for segmenting and labeling sequence data",
"authors": [
{
"first": "John",
"middle": [
"D"
],
"last": "Lafferty",
"suffix": ""
},
{
"first": "Andrew",
"middle": [],
"last": "Mccallum",
"suffix": ""
},
{
"first": "Fernando",
"middle": [
"C N"
],
"last": "Pereira",
"suffix": ""
}
],
"year": 2001,
"venue": "ICML",
"volume": "",
"issue": "",
"pages": "282--289",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "John D. Lafferty, Andrew McCallum, and Fernando C. N. Pereira. 2001. Conditional Random Fields: Probabilistic models for segmenting and labeling se- quence data. In ICML, pages 282-289.",
"links": null
},
"BIBREF22": {
"ref_id": "b22",
"title": "Can syllabification improve pronunciation by analogy of English?",
"authors": [
{
"first": "Yannick",
"middle": [],
"last": "Marchand",
"suffix": ""
},
{
"first": "Robert",
"middle": [
"I"
],
"last": "Damper",
"suffix": ""
}
],
"year": 2007,
"venue": "Natural Language Engineering",
"volume": "13",
"issue": "1",
"pages": "1--24",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Yannick Marchand and Robert I. Damper. 2007. Can syllabification improve pronunciation by analogy of English? Natural Language Engineering, 13(1):1- 24.",
"links": null
},
"BIBREF23": {
"ref_id": "b23",
"title": "Automatic methods for lexical stress assignment and syllabification",
"authors": [
{
"first": "Steve",
"middle": [],
"last": "Pearson",
"suffix": ""
},
{
"first": "Roland",
"middle": [],
"last": "Kuhn",
"suffix": ""
},
{
"first": "Steven",
"middle": [],
"last": "Fincke",
"suffix": ""
},
{
"first": "Nick",
"middle": [],
"last": "Kibre",
"suffix": ""
}
],
"year": 2000,
"venue": "ICSLP",
"volume": "",
"issue": "",
"pages": "423--426",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Steve Pearson, Roland Kuhn, Steven Fincke, and Nick Kibre. 2000. Automatic methods for lexical stress assignment and syllabification. In ICSLP, pages 423-426.",
"links": null
},
"BIBREF24": {
"ref_id": "b24",
"title": "Integer linear programming inference for conditional random fields",
"authors": [
{
"first": "Dan",
"middle": [],
"last": "Roth",
"suffix": ""
},
{
"first": "Wen-Tau",
"middle": [],
"last": "Yih",
"suffix": ""
}
],
"year": 2005,
"venue": "ICML",
"volume": "",
"issue": "",
"pages": "736--743",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Dan Roth and Wen-tau Yih. 2005. Integer linear pro- gramming inference for conditional random fields. In ICML, pages 736-743.",
"links": null
},
"BIBREF25": {
"ref_id": "b25",
"title": "Lexical stress effects in Italian spoken word recognition",
"authors": [
{
"first": "Lara",
"middle": [],
"last": "Tagliapietra",
"suffix": ""
},
{
"first": "Patrizia",
"middle": [],
"last": "Tabossi",
"suffix": ""
}
],
"year": 2005,
"venue": "The XXVII Annual Conference of the Cognitive Science Society",
"volume": "",
"issue": "",
"pages": "2140--2144",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Lara Tagliapietra and Patrizia Tabossi. 2005. Lexical stress effects in Italian spoken word recognition. In The XXVII Annual Conference of the Cognitive Sci- ence Society, pages 2140-2144.",
"links": null
},
"BIBREF26": {
"ref_id": "b26",
"title": "Learning to pronounce written words: A study in inductive language learning",
"authors": [
{
"first": "Antal",
"middle": [],
"last": "Van Den",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Bosch",
"suffix": ""
}
],
"year": 1997,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Antal van den Bosch. 1997. Learning to pronounce written words: A study in inductive language learn- ing. Ph.D. thesis, Universiteit Maastricht.",
"links": null
},
"BIBREF27": {
"ref_id": "b27",
"title": "Improving letterto-pronunciation accuracy with automatic morphologically-based stress prediction",
"authors": [
{
"first": "Gabriel",
"middle": [],
"last": "Webster",
"suffix": ""
}
],
"year": 2004,
"venue": "ICSLP",
"volume": "",
"issue": "",
"pages": "2573--2576",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Gabriel Webster. 2004. Improving letter- to-pronunciation accuracy with automatic morphologically-based stress prediction. In ICSLP, pages 2573-2576.",
"links": null
},
"BIBREF28": {
"ref_id": "b28",
"title": "Word stress assignment in a text-to-speech synthesis system for British English",
"authors": [
{
"first": "Briony",
"middle": [],
"last": "Williams",
"suffix": ""
}
],
"year": 1987,
"venue": "Computer Speech and Language",
"volume": "2",
"issue": "",
"pages": "235--272",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Briony Williams. 1987. Word stress assignment in a text-to-speech synthesis system for British English. Computer Speech and Language, 2:235-272.",
"links": null
},
"BIBREF29": {
"ref_id": "b29",
"title": "Relative frequency as a determinant of phonetic change",
"authors": [
{
"first": "George",
"middle": [],
"last": "Kingsley",
"suffix": ""
},
{
"first": "Zipf",
"middle": [],
"last": "",
"suffix": ""
}
],
"year": 1929,
"venue": "Harvard Studies in Classical Philology",
"volume": "15",
"issue": "",
"pages": "1--95",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "George Kingsley Zipf. 1929. Relative frequency as a determinant of phonetic change. Harvard Studies in Classical Philology, 15:1-95.",
"links": null
}
},
"ref_entries": {
"FIGREF0": {
"text": "Stress prediction accuracy on letters.",
"num": null,
"type_str": "figure",
"uris": null
},
"TABREF0": {
"html": null,
"text": "",
"content": "<table><tr><td>: The steps in our stress prediction sys-</td></tr><tr><td>tem (with orthographic and phonetic prediction</td></tr><tr><td>examples):</td></tr></table>",
"num": null,
"type_str": "table"
},
"TABREF2": {
"html": null,
"text": "",
"content": "<table><tr><td>provides results on English, German, and</td></tr><tr><td>Dutch phonemes. Overall, the performance of our</td></tr><tr><td>automatic stress predictor, SUBSTRING, is excel-</td></tr><tr><td>lent. It achieves 98.0% accuracy for predicting</td></tr></table>",
"num": null,
"type_str": "table"
}
}
}
} |