File size: 104,849 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 |
{
"paper_id": "I13-1001",
"header": {
"generated_with": "S2ORC 1.0.0",
"date_generated": "2023-01-19T07:14:28.670757Z"
},
"title": "Semi-Supervised Answer Extraction from Discussion Forums",
"authors": [
{
"first": "Rose",
"middle": [],
"last": "Catherine",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "IBM Research Bangalore",
"location": {
"country": "India"
}
},
"email": "rosecatherinek@in.ibm.com"
},
{
"first": "Rashmi",
"middle": [],
"last": "Gangadharaiah",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "IBM Research Bangalore",
"location": {
"country": "India"
}
},
"email": "rashgang@in.ibm.com"
},
{
"first": "Karthik",
"middle": [],
"last": "Visweswariah",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "IBM Research Bangalore",
"location": {
"country": "India"
}
},
"email": ""
},
{
"first": "Dinesh",
"middle": [],
"last": "Raghu",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "IBM Research Bangalore",
"location": {
"country": "India"
}
},
"email": "diraghu1@in.ibm.com"
}
],
"year": "",
"venue": null,
"identifiers": {},
"abstract": "Mining online discussions to extract answers is an important research problem. Methods proposed in the past used supervised classifiers trained on labeled data. But, collecting training data for each target forum is labor intensive and time consuming, thus limiting their deployment. A recent approach had proposed to extract answers in an unsupervised manner, by taking cues from their repetitions. This assumption however, does not hold true in many cases. In this paper, we propose two semi-supervised methods for extracting answers from discussions, which utilize the large amount of unlabeled data available, alongside a very small training set to obtain improved accuracies. We show that it is possible to boost the performance by introducing a related, but parallel task of identifying acknowledgments to the answers. The accuracy achieved by our approaches surpass the baselines by a wide margin, as shown by our experiments.",
"pdf_parse": {
"paper_id": "I13-1001",
"_pdf_hash": "",
"abstract": [
{
"text": "Mining online discussions to extract answers is an important research problem. Methods proposed in the past used supervised classifiers trained on labeled data. But, collecting training data for each target forum is labor intensive and time consuming, thus limiting their deployment. A recent approach had proposed to extract answers in an unsupervised manner, by taking cues from their repetitions. This assumption however, does not hold true in many cases. In this paper, we propose two semi-supervised methods for extracting answers from discussions, which utilize the large amount of unlabeled data available, alongside a very small training set to obtain improved accuracies. We show that it is possible to boost the performance by introducing a related, but parallel task of identifying acknowledgments to the answers. The accuracy achieved by our approaches surpass the baselines by a wide margin, as shown by our experiments.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Abstract",
"sec_num": null
}
],
"body_text": [
{
"text": "Online discussion forums, also known as community question answering (CQA) sites, are internet sites that provide a medium for users to discuss and share information on a wide range of topics. Due to their vast popularity, gradually, they have aggregated a massive collection of discussion data. Mining such forums have numerous applications such as improving question-answer (QA) retrieval , learning important insights like features of products that are drawing negative reviews (Lakkaraju et al., 2011) or discovering longstanding unresolved severe technical issues etc. For this reason, substantial research effort has been directed at mining discussions, in recent times. In this paper, we focus on the specific problem of extracting answers from these discussions.",
"cite_spans": [
{
"start": 481,
"end": 505,
"text": "(Lakkaraju et al., 2011)",
"ref_id": "BIBREF17"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "In forums, typically a user starts a discussion by posting a question to which multiple members of the forum suggest answers. The discussion evolves into a complex multi-party conversation as the question gets refined, with additional details specified, clarifications sought, multiple answers provided, frequent digressions, and occasional follow-up discussions and acknowledgments, altogether spanning several pages. Answers easily get buried deep within this and locating them automatically is far from straightforward.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "In this paper, we propose two semi-supervised approaches that require only a very small amount of training data (only 3 manually tagged discussion threads ) and achieve high accuracy levels by using the available unlabeled data. With this, we eliminate the need to collect vast amounts of training data, thus aiding faster deployment for new domains. Specifically, our contributions are: \u2022 A semi-supervised answer extraction method for discussions: This paper makes the first attempt at extracting answers from discussions in a semisupervised manner. We show how existing features can be engineered into a co-training framework to accomplish this. \u2022 A parallel co-training method to leverage acknowledgments for improved answer extraction accuracy: We motivate and demonstrate that it is possible to improve the performance tremendously by introducing a related task of identifying acknowledgments in the discussions, which we run as a parallel task alongside the main answer extraction task (Section 5). \u2022 We demonstrate that with a very small training data and by using the available unlabeled data, it is possible to extract answers from forums with an accuracy that is substantially better than extracting them in an unsupervised manner or in a fully supervised setting.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "The rest of the paper is organized as follows: Section 2 discusses related work. Section 3 sets the terminology and introduces the co-training framework, which is used throughout this paper. Section 4 details how the co-training framework can be applied to the answer extraction task. Section 5 introduces the acknowledgment extraction task in a parallel co-training framework. Experiments and results are discussed in Section 6 followed by conclusions in Section 7.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "Research in the area of extracting question and answers from online forums, has grown considerably. Almost all approaches proposed so far for this task are supervised learning methods. Ding et al. (2008) , Kim et al. (2010) , Raghavan et al. (2010) and Kim et al. (2012) employed Conditional Random Fields, Hong and Davison (2009) , Huang et al. (2007) and used Support Vector Machines (SVM), Shrestha and McKeown (2004) learnt rules using Ripper, and Yang et al. (2009) used Struct SVMs for extracting answers. The obvious downside to these methods is that for any new domain or forum, substantial amounts of manually labeled training examples have to be collected. This is usually time consuming and costly. Gandhe et al. (2012) proposed an approach for adapting an answer extractor trained on one domain to another, by separating out the lexical characteristics of an answer from its domain relevance. However, learning the lexical characteristics still required a training set.",
"cite_spans": [
{
"start": 185,
"end": 203,
"text": "Ding et al. (2008)",
"ref_id": "BIBREF6"
},
{
"start": 206,
"end": 223,
"text": "Kim et al. (2010)",
"ref_id": "BIBREF14"
},
{
"start": 226,
"end": 248,
"text": "Raghavan et al. (2010)",
"ref_id": "BIBREF20"
},
{
"start": 253,
"end": 270,
"text": "Kim et al. (2012)",
"ref_id": "BIBREF15"
},
{
"start": 307,
"end": 330,
"text": "Hong and Davison (2009)",
"ref_id": "BIBREF10"
},
{
"start": 333,
"end": 352,
"text": "Huang et al. (2007)",
"ref_id": "BIBREF11"
},
{
"start": 393,
"end": 420,
"text": "Shrestha and McKeown (2004)",
"ref_id": "BIBREF25"
},
{
"start": 452,
"end": 470,
"text": "Yang et al. (2009)",
"ref_id": "BIBREF31"
},
{
"start": 710,
"end": 730,
"text": "Gandhe et al. (2012)",
"ref_id": "BIBREF8"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Related work",
"sec_num": "2"
},
{
"text": "A recent work by proposed an unsupervised method using PageRank-style random walks on a graph representation of the discussion, with the hypothesis that inter-candidate similarities can improve accuracy of the answer extraction task. The intuition is that posts that bear more resemblance to other posts in the thread have higher chances of being answers. However, in a lot of discussion forums, especially those related to troubleshooting and problem resolution, we found that this assumption usually does not hold. An answer that was suggested earlier in the discussion is not usually suggested again -only new ones or a modification of the same would appear. A general observation here was that posts that had similar content as other posts were found to be others complaining about the same issue. This was also noted by Gandhe et al. (2012) and . Nevertheless, is the only work so far, that sought to extract answers without supervision.",
"cite_spans": [
{
"start": 825,
"end": 845,
"text": "Gandhe et al. (2012)",
"ref_id": "BIBREF8"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Related work",
"sec_num": "2"
},
{
"text": "One of the methods proposed in this paper that uses a parallel acknowledgment classification task, belongs to the family of Multi-Task Learning (MTL) (Caruana, 1997) since what is learned for each task is used to improve the other task. However, to the best of our knowledge, this is the first work that proposes a MTL-type answer classifier for forums in a semi-supervised setting. Cross-Training (Sarawagi et al., 2003) is a related methodology which improves classification performance on one taxonomy by accessing labels from another taxonomy for the same document. Our method differs because, the answer and acknowledgment labels are on different posts.",
"cite_spans": [
{
"start": 150,
"end": 165,
"text": "(Caruana, 1997)",
"ref_id": "BIBREF3"
},
{
"start": 398,
"end": 421,
"text": "(Sarawagi et al., 2003)",
"ref_id": "BIBREF21"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Related work",
"sec_num": "2"
},
{
"text": "Some other closely related works are listed below; however, their focus is different from the task proposed in this paper. Jijkoun and de Rijke (2005) proposed a method to automatically extract question-answer pairs from FAQ pages using formatting cues. Since it is known that the entry following the question is definitely an answer, they did not have to classify the entries. Sarencheh et al. (2010) proposed a semi-automatic wrapper induction method for extracting different structural components of a discussion, like the time of posting, author name, content of the post etc. Answer retrieval is another closely related task where the emphasis is on retrieving the most relevant post (Xue et al., 2008) . The scope of our paper, however, is limited to tagging posts in forum discussions as answers or not.",
"cite_spans": [
{
"start": 123,
"end": 150,
"text": "Jijkoun and de Rijke (2005)",
"ref_id": "BIBREF12"
},
{
"start": 378,
"end": 401,
"text": "Sarencheh et al. (2010)",
"ref_id": "BIBREF22"
},
{
"start": 689,
"end": 707,
"text": "(Xue et al., 2008)",
"ref_id": "BIBREF30"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Related work",
"sec_num": "2"
},
{
"text": "A discussion in an online forum is created when a user posts a question. Other members of the forum reply to this post or to other replies, thereby evolving the discussion. A sample discussion with 7 posts including 2 answers and 2 acknowledgments, is shown in Figure 1 . In this paper, we use the terms discussion and thread (as in, a thread of discussion) interchangeably.",
"cite_spans": [],
"ref_spans": [
{
"start": 261,
"end": 269,
"text": "Figure 1",
"ref_id": "FIGREF0"
}
],
"eq_spans": [],
"section": "Terminology and Scope",
"sec_num": "3.1"
},
{
"text": "An answer is typically spread over multiple sentences within the same post, especially in the case of non-factoid answers. It would have been ideal, if the system extracted answers at the granularity of a sentence. However, the inter-annotator agreement 1 for answer sentences in our dataset (Section 6) was a mere 0.19. Hence, we extract answers at I am having the same problem when charging the phone from the USB port charger. I just plugged it into a wall outlet and it is now charging fine. Digressions are very common in such community question answering systems. We do not attempt to find these questions or separate out the sub-discussions. Question detection as well as disentangling multi-party discussions, is a well researched area Elsner and Charniak, 2010) , and is outside the scope of this paper. For the purposes of this paper, the first post is the question and we attempt to find answers to only this question. Answers to other questions within the discussion are negative examples.",
"cite_spans": [
{
"start": 744,
"end": 770,
"text": "Elsner and Charniak, 2010)",
"ref_id": "BIBREF7"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Terminology and Scope",
"sec_num": "3.1"
},
{
"text": "Co-Training introduced by Blum and Mitchell (1998) , is a general framework for semisupervised classification, where the features for classifying each data point can be partitioned into two distinct sets or views. The views are such that either of them is sufficient to classify any datapoint, had there been enough training examples.",
"cite_spans": [
{
"start": 26,
"end": 50,
"text": "Blum and Mitchell (1998)",
"ref_id": "BIBREF0"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Co-Training Methodology",
"sec_num": "3.2"
},
{
"text": "The algorithm proceeds in two half-steps: in iteration i, the current set of labeled examples L i (initially, a very small set) is used to train a classifier C 1 that uses only one view v 1 of each training instance and another classifier C 2 that uses only view v 2 . C 1 and C 2 are then used to classify the unlabeled points, and the most confident m predictions are moved from the unlabeled pool U to the set of labeled examples, which are used",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Co-Training Methodology",
"sec_num": "3.2"
},
{
"text": "\u03a61(x) \u03a62(x) C1 C2 Most confident predictions on U -L i L i Iteration i Figure 2: Co-Training Framework",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Co-Training Methodology",
"sec_num": "3.2"
},
{
"text": "for training in the i + 1 th iteration. Essentially, each classifier teaches the other by providing examples which the other would have misclassified. Figure 2 shows this workflow, where \u03a6 1 and \u03a6 2 are the feature vectors of the input corresponding to the two views v 1 and v 2 . The paper showed that when the two views are independent given the label of the data point (conditional independence), any initial weak predictor can be boosted to a high accuracy using unlabeled examples by co-training. This was empirically evaluated for a webpage classification task where v 1 was the set of words in the webpage and v 2 , the anchor texts of all links pointing to that page. Co-training framework is widely used in many text mining tasks like parsing (Sarkar, 2001) , machine translation (Callison-Burch, 2002) and for creating parallel corpora (Callison-Burch and Osborne, 2003) .",
"cite_spans": [
{
"start": 752,
"end": 766,
"text": "(Sarkar, 2001)",
"ref_id": "BIBREF23"
},
{
"start": 846,
"end": 880,
"text": "(Callison-Burch and Osborne, 2003)",
"ref_id": "BIBREF1"
}
],
"ref_spans": [
{
"start": 151,
"end": 159,
"text": "Figure 2",
"ref_id": null
}
],
"eq_spans": [],
"section": "Co-Training Methodology",
"sec_num": "3.2"
},
{
"text": "To apply the co-training framework to the task of answer extraction, we need two independent views of the data. Prior work in supervised answer extraction from forum discussions have reported good accuracies when using features constructed from the structure of the thread (Ding et al., 2008; Hong and Davison, 2009; Kim et al., 2010; . This provides us with one of the views, which we refer to as the STRUCT view. had previously used pattern mining for the related task of question sentence extraction. Similarly, Jindal and Liu (2006) had used pattern mining for identifying comparative sentences in a supervised learning setting. We mine patterns on the sentences of the posts and employ it as the second view, which we refer to as the PAT-TERN view. The exact set of features are explained in the subsections below.",
"cite_spans": [
{
"start": 273,
"end": 292,
"text": "(Ding et al., 2008;",
"ref_id": "BIBREF6"
},
{
"start": 293,
"end": 316,
"text": "Hong and Davison, 2009;",
"ref_id": "BIBREF10"
},
{
"start": 317,
"end": 334,
"text": "Kim et al., 2010;",
"ref_id": "BIBREF14"
},
{
"start": 515,
"end": 536,
"text": "Jindal and Liu (2006)",
"ref_id": "BIBREF13"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Answer Extraction by Co-Training: ANS CT Model",
"sec_num": "4"
},
{
"text": "Note that we have used only a modest set of features in both STRUCT and PATTERN views, to highlight the effect of co-training in improving the answer extraction accuracy.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Answer Extraction by Co-Training: ANS CT Model",
"sec_num": "4"
},
{
"text": "Compared to a general text document, discussion threads have a structure, which can be used to construct features for classification. The features that we use, referred to as STRUCT features henceforth, are listed in Table 1 . All the features are eventually converted to binary attributes for the experiments, where numerical attributes are grouped into a suitable number of buckets. Each binary value corresponds to a dimension in the STRUCT view, \u03a6 i struct , which is 1 if that attributevalue was present in the post; else, is set to 0.",
"cite_spans": [],
"ref_spans": [
{
"start": 217,
"end": 224,
"text": "Table 1",
"ref_id": "TABREF1"
}
],
"eq_spans": [],
"section": "STRUCT view",
"sec_num": "4.1"
},
{
"text": "A forum specific value measuring the expertise of the author. Could be numerical (e.g. 50 points) or categorical (e.g. Expert).",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Author Rating",
"sec_num": null
},
{
"text": "The position of the post with respect to the thread. It is grouped into Beginning, Middle and End.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Relative Post Position",
"sec_num": null
},
{
"text": "A measure of how informative the post is. Could be numerical (e.g. 50 votes) or categorical (e.g. Helpful). Consider the below snippets from different discussion threads. Some words have been intentionally masked to illustrate that it is possible to identify to a considerable extent, that these are answer suggestions from the structure of the sentence and without regard to the context or the question.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Post Rating",
"sec_num": null
},
{
"text": "... You can see if X will solve it ... ... Try resetting your X with the Y turned off and then turn it back on after the X is fully booted back up ... ... Go to A -> B -> C and toggle the D mode ... ... X is no longer supported by Y ...",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Post Rating",
"sec_num": null
},
{
"text": "The PATTERN view uses a pattern mining module, which mines the answer posts in L i to discover the most frequent sequential patterns, F P i for iteration i. Each such discovered pattern p \u2208 F P i corresponds to a dimension in the PATTERN view, \u03a6 i pattern , which is 1 if p matches (is subsequence of) any sentence of the post.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Post Rating",
"sec_num": null
},
{
"text": "We implemented the PrefixSpan (Pei et al., 2001 ) algorithm for mining sequential patterns, but with the following modifications to contain the blow up in the number of patterns:",
"cite_spans": [
{
"start": 30,
"end": 47,
"text": "(Pei et al., 2001",
"ref_id": "BIBREF18"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Post Rating",
"sec_num": null
},
{
"text": "\u2022 Variable Minimum Support: the number of items in which a pattern appears is called its support, and minimum support, min sup is an input parameter that determines whether a pattern is frequent enough. We set min sup to max(min sup 0 , frac \u00d7 numItems i ), where frac is a preset fraction, set to 0.03 in our experiments, numItems i is the number of items being mined in iteration i, and min sup 0 is a default minimum, set to 3 in our experiments. \u2022 Pattern Length: only patterns of length at least min len, set to 3 in our experiments, are acceptable. \u2022 Item Gap: the items of a frequent pattern are sequential, but not consecutive, thus allowing PrefixSpan to pick items that are arbitrary number of items apart (gap). We constrain the gap between items of a pattern to a maximum of max gap, set to again 3 in our experiments. Posts are mined at a sentence level, for which we use OpenNLP 2 sentence detector.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Post Rating",
"sec_num": null
},
{
"text": "We found that using the exact words limited the number of frequent patterns that could be found. To minimize this problem, we used Part-Of-Speech (POS) tags of the words to:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Text Pre-Processing",
"sec_num": "4.2.1"
},
{
"text": "\u2022 Replace all nouns with their POS tags.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Text Pre-Processing",
"sec_num": "4.2.1"
},
{
"text": "\u2022 Replace all verbs with its root/stemmed (using Porter stemmer (Porter, 1980) ) form and its POS tag. For example, restarting becomes restart VBG. We let PrefixSpan pick the verb-stem and/or the POS tag according to their support. All words are lowercased. A discussion on the set of patterns that were detected is in Section 6.3.",
"cite_spans": [
{
"start": 64,
"end": 78,
"text": "(Porter, 1980)",
"ref_id": "BIBREF19"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Text Pre-Processing",
"sec_num": "4.2.1"
},
{
"text": "In this section, we motivate and introduce a related task of extracting acknowledgments in forum discussions and inducing signals from them to improve the accuracy of the answer extraction task.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Leveraging Acknowledgment Signals: ANS-ACK PCT Model",
"sec_num": "5"
},
{
"text": "Merriam-Webster 3 defines an acknowledgment as a recognition or favorable notice of an act or achievement. Acknowledgment is an inevitable component of any conversation, especially, when it evolves around seeking assistance. And so they find their place in forum discussions too. Consider the below snippets taken from replies by question authors. They are grouped according to their polarity -Positive, Negative and Neutral.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Leveraging Acknowledgment Signals: ANS-ACK PCT Model",
"sec_num": "5"
},
{
"text": "Positive: author reports that the suggestion solved the issue. Similar to the case of answer sentences in Section 4, the above examples can be easily identified as acknowledgments and it is fairly clear that the posts to which the above sentences are replies, are answer suggestions. Note that this can be determined without knowing the contents of the latter, if we can assume that the reply-to relation of the posts is known. This however is not always the case. In a small study conducted, we found that only 75% of forums displayed or had the required information in the html of the webpage for constructing the reply-to relation of the posts, out of 12 technical forums that we inspected. In the absence of this information, (Wang et al., 2011; Seo et al., 2009; Wang and Ros\u00e9, 2010) propose techniques to automatically recover the structure. For the purposes of this paper, we assume that the reply-to structure of the discussion thread is given.",
"cite_spans": [
{
"start": 730,
"end": 749,
"text": "(Wang et al., 2011;",
"ref_id": "BIBREF29"
},
{
"start": 750,
"end": 767,
"text": "Seo et al., 2009;",
"ref_id": "BIBREF24"
},
{
"start": 768,
"end": 788,
"text": "Wang and Ros\u00e9, 2010)",
"ref_id": "BIBREF28"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Leveraging Acknowledgment Signals: ANS-ACK PCT Model",
"sec_num": "5"
},
{
"text": "ANS-ACK PCT (ANSwer ACKnowledgment Parallel Co-Training) aims to leverage signals from acknowledgment posts, to better identify answer posts. We cast this as another instance of semi-supervised learning task (another co-training instance) which runs in parallel to the main answer extraction instance of co-training. Hence the name, PARALLEL co-training.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Leveraging Acknowledgment Signals: ANS-ACK PCT Model",
"sec_num": "5"
},
{
"text": "It is worth listing down some of the design decisions for this choice of approach: (i) There is no public dataset available to train an acknowledgment classifier. So, it is important to note here that the task of detecting acknowledgments cannot be fully supervised where a large amount of training data is collected for the specific domain; this will defeat the entire purpose of semi-supervised answer extraction. (ii) For the initial small training set required for the semi-supervised approach, we do not label additional threads. Instead, we create a training set from the initial training set of the answer extraction task by marking replies from the question author to posts that are answers, as positive examples. Other replies from the question author become negative examples. To avoid getting influenced by digressions, we do not consider replies from other authors. (iii) The reader might suggest using acknowledgment as one of the views within the co-training instance of answer detection, instead of two parallel co-training instances. i.e. to mark all posts that have an acknowledgment as an answer in that view. Here, we would like to point out that acknowledgment is a strong indicator only when it is available. In other words, even if we learn to classify acknowledgment posts perfectly, it cannot classify all answer posts perfectly since not all answers are acknowledged. In our test set (Section 6), there were 559 answers, but only 173 of them had any reply from the question author (30.9%), of which only 72% were actually acknowledgments, as found through manual inspection (the rest had to do with refining the question, requesting clarification on the answer, etc.). So, the hope is to learn how to use the signal when it is available, and not rely on it exclusively by using it as one of the two views of answer co-training.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Leveraging Acknowledgment Signals: ANS-ACK PCT Model",
"sec_num": "5"
},
{
"text": "The acknowledgment extraction uses the same two views -STRUCT and PATTERN -for its cotraining instance, similar to the ANS CT model of Section 4, to generate the views, \u03a8 ack i struct and \u03a8 ack i pattern , respectively. Except that here, positive examples are the posts that are acknowledgments, as obtained by Point (ii) above.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Leveraging Acknowledgment Signals: ANS-ACK PCT Model",
"sec_num": "5"
},
{
"text": "Parallel Co-Training is a method for semisupervised learning where there are two (or more) co-training instances corresponding to different, but related learning tasks running side by side, where in iteration i, each task can induce features based on the current state of the system. i.e. using the outcome of iteration i \u2212 1 of other tasks. Figure 3 depicts Parallel Co-Training for the specific case of answer extraction, where: 1. Answer Co-training: the main task which learns to classify each post as ans or ans. 2. Acknowledgment Co-training: the auxiliary task which learns to classify each post as ack or ack. \u2022 which is then concatenated to its original feature vector, \u03a6 ans i",
"cite_spans": [],
"ref_spans": [
{
"start": 342,
"end": 348,
"text": "Figure",
"ref_id": null
}
],
"eq_spans": [],
"section": "Parallel Co-Training for Answer Extraction",
"sec_num": "5.1"
},
{
"text": "Most confident Answer predictions on U - Iteration i ( \u03a6 struct i ans ( x) , \u03a6 struct i ack ( x )) S struct i ans Answer Co-training L i ans L i ans Most confident Ack predictions on U - Iteration i -1 ( \u03a6 pattern i ans ( x) , \u03a6 pattern i ack (x)) S pattern i ans Acknowledgment Co-training L i\u22121 ack L i\u22121 ack H struct i\u22121 ack \u03a8 struct i\u22121 ack ( x) \u03a8 pattern i\u22121 ack (x ) H pattern i\u22121 ack",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Parallel Co-Training for Answer Extraction",
"sec_num": "5.1"
},
{
"text": "\u2022 , to get the new feature vector \u03a6 ans i",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Parallel Co-Training for Answer Extraction",
"sec_num": "5.1"
},
{
"text": "\u2022 , \u03a6 ack i",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Parallel Co-Training for Answer Extraction",
"sec_num": "5.1"
},
{
"text": "\u2022 (we use A, B to represent concatenation of two vectors, where the length of the new vector is A + B ). The concatenated feature vector is then used to train the answer classifiers S ans i",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Parallel Co-Training for Answer Extraction",
"sec_num": "5.1"
},
{
"text": "\u2022 of the i th iteration.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Parallel Co-Training for Answer Extraction",
"sec_num": "5.1"
},
{
"text": "\u2022 The STRUCT view of Answer Co-training uses predictions from the acknowledgment classifier that was trained on the STRUCT view of Acknowledgment Co-training, and similarly for the PATTERN view, so that the concatenated features vectors still remain independent.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Parallel Co-Training for Answer Extraction",
"sec_num": "5.1"
},
{
"text": "Given a thread and acknowledgment tags on some of the posts, the most obvious feature that can be induced on an answer post is a hasAck feature which is True if any child of this post is marked as an acknowledgment; else False. All features that we generated are listed in Table 2 .",
"cite_spans": [],
"ref_spans": [
{
"start": 273,
"end": 280,
"text": "Table 2",
"ref_id": "TABREF3"
}
],
"eq_spans": [],
"section": "Inducing Features from Acknowledgments",
"sec_num": "5.2"
},
{
"text": "Has Ack True if this post has a reply that is tagged as an acknowledgment; else False.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "ACK Feature Description",
"sec_num": null
},
{
"text": "The number of posts, in the chronological order, between this post and its acknowledgment.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Ack Distance",
"sec_num": null
},
{
"text": "The number of posts, in the chronological order, between this post and the last acknowledgment post in the thread. ",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Last Ack Distance",
"sec_num": null
},
{
"text": "We crawled about 140K threads from Apple Discussions 4 . From these, after discarding those with no replies, 303 threads were randomly chosen, and manually tagged. The inter-annotator agreement 5 between 3 annotators for this task was 0.71. For the experiments, the training set had 3 of the tagged threads and the remaining 300 formed the test set, the statistics of which are in Table 3 . To demonstrate the benefits of co-training, we first trained a supervised classifier (SVM) on the training set for answer extraction, separately on the two views -STRUCT and PATTERN. With such a little amount of training data, the classifiers gave unimpressive F scores (van Rijsbergen, 1979) , shown in the first row of Table 4 . The COMBINED classifier is a combination of the individual STRUCT and PATTERN classifiers, computed as: (P (ans|S combined ) \u221d P (ans|S struct ) \u00d7 P (ans|S pattern )); and similarly for ans. The post is tagged as ans if P (ans|S combined ) \u2265 P (ans|S combined ). Else, it is ans.",
"cite_spans": [
{
"start": 661,
"end": 683,
"text": "(van Rijsbergen, 1979)",
"ref_id": "BIBREF26"
}
],
"ref_spans": [
{
"start": 381,
"end": 388,
"text": "Table 3",
"ref_id": "TABREF5"
},
{
"start": 712,
"end": 719,
"text": "Table 4",
"ref_id": "TABREF6"
}
],
"eq_spans": [],
"section": "Experiments",
"sec_num": "6"
},
{
"text": "Next, we performed 40 iterations of co-training and in each step, 5 threads with the most confident predictions were added by each view from the unlabeled pool to the training set. If more than one thread had the same confidence, any one thread was chosen randomly. The accuracies achieved by ANS CT after the final iteration (averaged over 3 runs) is listed in Table 4 . Clearly, both STRUCT and PATTERN classifiers drastically improved their F scores and the COMBINED classifier showed a substantial 94% improvement over the SVM baseline. The growth of F score of the two sub-classifiers as the co-training proceeds, is plotted in Figure 4 . It can be seen that both the classifiers reached their best within 10 iterations and did not improve any further. For ANS-ACK PCT, we performed 40 cotraining iterations similar to ANS CT; the number of threads chosen after each iteration was similarly set to 5, for both answer and acknowledgment instances. The answer classification accuracies achieved by ANS-ACK PCT after the final iteration (averaged over 3 runs) is also listed in Table 4 . Similar to ANS CT, both STRUCT and PATTERN classifiers improved their F scores significantly. The COMBINED classifier showed a substantial 137% improvement over the SVM baseline and 22% improvement over ANS CT. The F score growth of the answer and the acknowledgment classifiers as the co-training proceeds, is plotted in Figure 5 and Figure 6 respectively. Unlike Figure 4 , the answer classifiers in Figure 5 continue to improve even after 10 iterations, since the acknowledgment instance is supplying it with more signals. In Figure 6 , the PAT-TERN sub-classifier of the acknowledgment classifier constantly improved throughout the 40 iterations even though its STRUCT counterpart stabilized in about 10 iterations. The F scores of the acknowledgment classifiers at the end of the final iteration was 82.8%, 52.9% and 81.9% respectively for STRUCT, PATTERN and COMBINED. is an unsupervised method for extracting answers from discussion forums. It is based on the premise that a correct answer will be repeated often within the discussion and thus, the similarity of the post to other posts can be used as a measure of their \"answer-ness\". We used our own implementation of this algorithm, referred to as CONG in the experiments . The similarity between posts is computed using Kullback-Leibler divergence (Kullback, 1997) , which was reported by the authors to have given the best performance. The Precision, Recall and F scores of CONG are compared with those of the proposed methods in Table 5 . Table 5 shows that both proposed methods perform substantially better than CONG: ANS CT exceeds it by 43.6% and ANS-ACK PCT surpasses it by 75.1% (F score). Consequently, we can conclude that with very small training data, it is possible to achieve high accuracies compared to extracting them in an unsupervised manner. 6.3 Discussion: Answer and Acknowledgment Patterns This section studies the patterns that were mined from answers and acknowledgments, which reveal the types of sentence structures that frequently appear in them. Some of the interesting answer patterns are listed in Table 6 . They are grouped into Imperative, Factual, Conditional and Questions, based on manual inspection. Similarly, the acknowledgment sentences also showed interesting patterns, manually grouped into Action and Others, listed in Table 7 . From inspecting the answer and acknowledgment patterns, we conjecture that it should be possible to build classifiers based on rules defined over the structure of the sentence, without requiring access to a training set.",
"cite_spans": [
{
"start": 2371,
"end": 2415,
"text": "Kullback-Leibler divergence (Kullback, 1997)",
"ref_id": null
}
],
"ref_spans": [
{
"start": 362,
"end": 369,
"text": "Table 4",
"ref_id": "TABREF6"
},
{
"start": 633,
"end": 641,
"text": "Figure 4",
"ref_id": null
},
{
"start": 1080,
"end": 1087,
"text": "Table 4",
"ref_id": "TABREF6"
},
{
"start": 1412,
"end": 1420,
"text": "Figure 5",
"ref_id": null
},
{
"start": 1425,
"end": 1433,
"text": "Figure 6",
"ref_id": null
},
{
"start": 1455,
"end": 1463,
"text": "Figure 4",
"ref_id": null
},
{
"start": 1492,
"end": 1500,
"text": "Figure 5",
"ref_id": null
},
{
"start": 1619,
"end": 1627,
"text": "Figure 6",
"ref_id": null
},
{
"start": 2582,
"end": 2589,
"text": "Table 5",
"ref_id": "TABREF8"
},
{
"start": 2592,
"end": 2599,
"text": "Table 5",
"ref_id": "TABREF8"
},
{
"start": 3179,
"end": 3186,
"text": "Table 6",
"ref_id": "TABREF10"
},
{
"start": 3412,
"end": 3419,
"text": "Table 7",
"ref_id": "TABREF11"
}
],
"eq_spans": [],
"section": "Experiments",
"sec_num": "6"
},
{
"text": "In this paper, we proposed two semi-supervised methods for extracting answers from discussion We showed how the structural features and sentence construction patterns could be engineered into a co-training setting such that by using a very small training set, and the large amount of unlabeled data available, answers could be extracted with high accuracy, substantially surpassing that attained by an unsupervised method.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Conclusion and Future Work",
"sec_num": "7"
},
{
"text": "To demonstrate the benefits of our method, we also showed that completely supervised methods would fail to train a decent model with the very little training data that we used. In one of our methods, we motivated and introduced a related task of identifying acknowledgments to the answers, which was cast in a parallel co-training setting. We proposed new features which the answer labeling instance could induce from the acknowledgment instance. Our experiments showed that having access to this view of the discussion thread substantially improved the answer extraction accuracy.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Conclusion and Future Work",
"sec_num": "7"
},
{
"text": "Our work opens up new directions of research. In the parallel co-training setting, other than inducing features, the co-training instances are essentially independent. In future, we plan to extend it such that the two instances would collaboratively label new threads; this should lead to higher gains since the instances would now strive to achieve higher coherence between their labels. Also, extending the method to extract answers at a lower granularity like a snippet or a sentence, instead of at a post level would be advantageous for domains that have more factoid type answers.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Conclusion and Future Work",
"sec_num": "7"
},
{
"text": "http://en.wikipedia.org/wiki/Cohen's kappa",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
},
{
"text": "http://opennlp.apache.org 3 http://www.merriam-webster.com",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
},
{
"text": "https://discussions.apple.com 5 http://en.wikipedia.org/wiki/Cohen's kappa 7 http://www.csie.ntu.edu.tw/\u223ccjlin/libsvm/",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
}
],
"back_matter": [],
"bib_entries": {
"BIBREF0": {
"ref_id": "b0",
"title": "Combining labeled and unlabeled data with co-training",
"authors": [
{
"first": "A",
"middle": [],
"last": "Blum",
"suffix": ""
},
{
"first": "T",
"middle": [],
"last": "Mitchell",
"suffix": ""
}
],
"year": 1998,
"venue": "Proc. eleventh annual conference on Computational learning theory, COLT' 98",
"volume": "",
"issue": "",
"pages": "92--100",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "A. Blum and T. Mitchell. 1998. Combining labeled and un- labeled data with co-training. In Proc. eleventh annual conference on Computational learning theory, COLT' 98, pages 92-100.",
"links": null
},
"BIBREF1": {
"ref_id": "b1",
"title": "Bootstrapping parallel corpora",
"authors": [
{
"first": "C",
"middle": [],
"last": "Callison-Burch",
"suffix": ""
},
{
"first": "M",
"middle": [],
"last": "Osborne",
"suffix": ""
}
],
"year": 2003,
"venue": "Proc. HLT-NAACL 2003 Workshop on Building and using parallel texts: data driven machine translation and beyond",
"volume": "3",
"issue": "",
"pages": "44--49",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "C. Callison-Burch and M. Osborne. 2003. Bootstrapping parallel corpora. In Proc. HLT-NAACL 2003 Workshop on Building and using parallel texts: data driven ma- chine translation and beyond -Volume 3, HLT-NAACL- PARALLEL '03, pages 44-49. Association for Computa- tional Linguistics.",
"links": null
},
"BIBREF2": {
"ref_id": "b2",
"title": "Co-training for statistical machine translation",
"authors": [
{
"first": "C",
"middle": [],
"last": "Callison-Burch",
"suffix": ""
}
],
"year": 2002,
"venue": "Proc. of the 6th Annual CLUK Research Colloquium",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "C. Callison-Burch. 2002. Co-training for statistical machine translation. In Proc. of the 6th Annual CLUK Research Colloquium.",
"links": null
},
"BIBREF3": {
"ref_id": "b3",
"title": "Multitask learning",
"authors": [
{
"first": "R",
"middle": [],
"last": "Caruana",
"suffix": ""
}
],
"year": 1997,
"venue": "Machine Learning",
"volume": "28",
"issue": "",
"pages": "41--75",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "R. Caruana. 1997. Multitask learning. Machine Learning, 28(1):41-75, July.",
"links": null
},
"BIBREF4": {
"ref_id": "b4",
"title": "Does similarity matter? the case of answer extraction from technical discussion forums",
"authors": [
{
"first": "R",
"middle": [],
"last": "Catherine",
"suffix": ""
},
{
"first": "A",
"middle": [],
"last": "Singh",
"suffix": ""
},
{
"first": "R",
"middle": [],
"last": "Gangadharaiah",
"suffix": ""
},
{
"first": "D",
"middle": [],
"last": "Raghu",
"suffix": ""
},
{
"first": "K",
"middle": [],
"last": "Visweswariah",
"suffix": ""
}
],
"year": 2012,
"venue": "Proc. 24th International Conference on Computational Linguistics, COLING",
"volume": "",
"issue": "",
"pages": "175--184",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "R. Catherine, A. Singh, R. Gangadharaiah, D. Raghu, and K. Visweswariah. 2012. Does similarity matter? the case of answer extraction from technical discussion fo- rums. In Proc. 24th International Conference on Com- putational Linguistics, COLING, pages 175-184.",
"links": null
},
"BIBREF5": {
"ref_id": "b5",
"title": "Finding question-answer pairs from online forums",
"authors": [
{
"first": "G",
"middle": [],
"last": "Cong",
"suffix": ""
},
{
"first": "L",
"middle": [],
"last": "Wang",
"suffix": ""
},
{
"first": "C",
"middle": [],
"last": "Lin",
"suffix": ""
},
{
"first": "Y",
"middle": [],
"last": "Song",
"suffix": ""
},
{
"first": "Y",
"middle": [],
"last": "Sun",
"suffix": ""
}
],
"year": 2008,
"venue": "The 31st Annual International ACM SIGIR Conference",
"volume": "",
"issue": "",
"pages": "467--474",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "G. Cong, L. Wang, C. Lin, Y. Song, and Y. Sun. 2008. Find- ing question-answer pairs from online forums. In The 31st Annual International ACM SIGIR Conference, pages 467- 474.",
"links": null
},
"BIBREF6": {
"ref_id": "b6",
"title": "Using conditional random fields to extract contexts and answers of questions from online forums",
"authors": [
{
"first": "S",
"middle": [],
"last": "Ding",
"suffix": ""
},
{
"first": "G",
"middle": [],
"last": "Cong",
"suffix": ""
},
{
"first": "C",
"middle": [
"Y"
],
"last": "Lin",
"suffix": ""
},
{
"first": "X",
"middle": [],
"last": "Zhu",
"suffix": ""
}
],
"year": 2008,
"venue": "Meeting of the Association for Computational Linguistics (ACL)",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "S. Ding, G. Cong, C. Y. Lin, and X. Zhu. 2008. Using con- ditional random fields to extract contexts and answers of questions from online forums. In Meeting of the Associa- tion for Computational Linguistics (ACL).",
"links": null
},
"BIBREF7": {
"ref_id": "b7",
"title": "Disentangling chat. Computational Linguistics",
"authors": [
{
"first": "M",
"middle": [],
"last": "Elsner",
"suffix": ""
},
{
"first": "E",
"middle": [],
"last": "Charniak",
"suffix": ""
}
],
"year": 2010,
"venue": "",
"volume": "36",
"issue": "",
"pages": "389--409",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "M. Elsner and E. Charniak. 2010. Disentangling chat. Com- putational Linguistics, 36:389-409.",
"links": null
},
"BIBREF8": {
"ref_id": "b8",
"title": "Domain adaptive answer extraction for discussion boards",
"authors": [
{
"first": "A",
"middle": [],
"last": "Gandhe",
"suffix": ""
},
{
"first": "D",
"middle": [],
"last": "Raghu",
"suffix": ""
},
{
"first": "R",
"middle": [],
"last": "Catherine",
"suffix": ""
}
],
"year": 2012,
"venue": "Proc. 21st international conference companion on World Wide Web, WWW '12 Companion",
"volume": "",
"issue": "",
"pages": "501--502",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "A. Gandhe, D. Raghu, and R. Catherine. 2012. Domain adaptive answer extraction for discussion boards. In Proc. 21st international conference companion on World Wide Web, WWW '12 Companion, pages 501-502. ACM.",
"links": null
},
"BIBREF9": {
"ref_id": "b9",
"title": "Prism: discovering and prioritizing severe technical issues from product discussion forums",
"authors": [
{
"first": "R",
"middle": [],
"last": "Gangadharaiah",
"suffix": ""
},
{
"first": "R",
"middle": [],
"last": "Catherine",
"suffix": ""
}
],
"year": 2012,
"venue": "Proc. 21st ACM International Conference on Information and Knowledge Management, CIKM '12",
"volume": "",
"issue": "",
"pages": "1627--1631",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "R. Gangadharaiah and R. Catherine. 2012. Prism: discov- ering and prioritizing severe technical issues from prod- uct discussion forums. In Proc. 21st ACM International Conference on Information and Knowledge Management, CIKM '12, pages 1627-1631.",
"links": null
},
"BIBREF10": {
"ref_id": "b10",
"title": "A classification-based approach to question answering in discussion boards",
"authors": [
{
"first": "L",
"middle": [],
"last": "Hong",
"suffix": ""
},
{
"first": "B",
"middle": [
"D"
],
"last": "Davison",
"suffix": ""
}
],
"year": 2009,
"venue": "Proc. 32nd Annual Intl ACM SIGIR Conf. on Research and Dev. in Information Retrieval",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "L. Hong and B. D. Davison. 2009. A classification-based approach to question answering in discussion boards. In Proc. 32nd Annual Intl ACM SIGIR Conf. on Research and Dev. in Information Retrieval.",
"links": null
},
"BIBREF11": {
"ref_id": "b11",
"title": "Extracting chatbot knowledge from online discussion forums",
"authors": [
{
"first": "J",
"middle": [],
"last": "Huang",
"suffix": ""
},
{
"first": "M",
"middle": [],
"last": "Zhou",
"suffix": ""
},
{
"first": "D",
"middle": [],
"last": "Yang",
"suffix": ""
}
],
"year": 2007,
"venue": "Proc. 20th international joint conference on Artifical intelligence, IJ-CAI'07",
"volume": "",
"issue": "",
"pages": "423--428",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "J. Huang, M. Zhou, and D. Yang. 2007. Extracting chatbot knowledge from online discussion forums. In Proc. 20th international joint conference on Artifical intelligence, IJ- CAI'07, pages 423-428.",
"links": null
},
"BIBREF12": {
"ref_id": "b12",
"title": "Retrieving answers from frequently asked questions pages on the web",
"authors": [
{
"first": "V",
"middle": [],
"last": "Jijkoun",
"suffix": ""
},
{
"first": "M",
"middle": [],
"last": "De Rijke",
"suffix": ""
}
],
"year": 2005,
"venue": "Proc. 14th ACM international conference on Information and knowledge management, CIKM '05",
"volume": "",
"issue": "",
"pages": "76--83",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "V. Jijkoun and M. de Rijke. 2005. Retrieving answers from frequently asked questions pages on the web. In Proc. 14th ACM international conference on Information and knowledge management, CIKM '05, pages 76-83.",
"links": null
},
"BIBREF13": {
"ref_id": "b13",
"title": "Identifying comparative sentences in text documents",
"authors": [
{
"first": "Nitin",
"middle": [],
"last": "Jindal",
"suffix": ""
},
{
"first": "Bing",
"middle": [],
"last": "Liu",
"suffix": ""
}
],
"year": 2006,
"venue": "Proc. 29th SIGIR",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Nitin Jindal and Bing Liu. 2006. Identifying comparative sentences in text documents. In In Proc. 29th SIGIR.",
"links": null
},
"BIBREF14": {
"ref_id": "b14",
"title": "Tagging and linking web forum posts",
"authors": [
{
"first": "S",
"middle": [
"N"
],
"last": "Kim",
"suffix": ""
},
{
"first": "L",
"middle": [],
"last": "Wang",
"suffix": ""
},
{
"first": "T",
"middle": [],
"last": "Baldwin",
"suffix": ""
}
],
"year": 2010,
"venue": "Proc. Fourteenth Conference on Computational Natural Language Learning, CoNLL '10",
"volume": "",
"issue": "",
"pages": "192--202",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "S. N. Kim, L. Wang, and T. Baldwin. 2010. Tagging and linking web forum posts. In Proc. Fourteenth Conference on Computational Natural Language Learning, CoNLL '10, pages 192-202. Association for Computational Lin- guistics.",
"links": null
},
"BIBREF15": {
"ref_id": "b15",
"title": "Classifying dialogue acts in multi-party live chats",
"authors": [
{
"first": "S",
"middle": [
"N"
],
"last": "Kim",
"suffix": ""
},
{
"first": "L",
"middle": [],
"last": "Cavedon",
"suffix": ""
},
{
"first": "T",
"middle": [],
"last": "Baldwin",
"suffix": ""
}
],
"year": 2012,
"venue": "Proc. 26th Pacic Asia Conference on Language, Information and Computation",
"volume": "",
"issue": "",
"pages": "463--472",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "S. N. Kim, L. Cavedon, and T. Baldwin. 2012. Classifying dialogue acts in multi-party live chats. In Proc. 26th Pacic Asia Conference on Language, Information and Compu- tation, pages 463-472.",
"links": null
},
"BIBREF16": {
"ref_id": "b16",
"title": "Information Theory and Statistics",
"authors": [
{
"first": "S",
"middle": [],
"last": "Kullback",
"suffix": ""
}
],
"year": 1997,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "S. Kullback. 1997. Information Theory and Statistics. Dover Publications.",
"links": null
},
"BIBREF17": {
"ref_id": "b17",
"title": "Exploiting coherence for the simultaneous discovery of latent facets and associated sentiments",
"authors": [
{
"first": "H",
"middle": [],
"last": "Lakkaraju",
"suffix": ""
},
{
"first": "C",
"middle": [],
"last": "Bhattacharyya",
"suffix": ""
},
{
"first": "I",
"middle": [],
"last": "Bhattacharya",
"suffix": ""
},
{
"first": "S",
"middle": [],
"last": "Merugu",
"suffix": ""
}
],
"year": 2011,
"venue": "Proc. 11th SIAM International Conference on Data Mining, SDM '11",
"volume": "",
"issue": "",
"pages": "498--509",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "H. Lakkaraju, C. Bhattacharyya, I. Bhattacharya, and S. Merugu. 2011. Exploiting coherence for the simul- taneous discovery of latent facets and associated senti- ments. In Proc. 11th SIAM International Conference on Data Mining, SDM '11, pages 498-509.",
"links": null
},
"BIBREF18": {
"ref_id": "b18",
"title": "Prefixspan: Mining sequential patterns efficiently by prefix-projected pattern growth",
"authors": [
{
"first": "J",
"middle": [],
"last": "Pei",
"suffix": ""
},
{
"first": "J",
"middle": [],
"last": "Han",
"suffix": ""
},
{
"first": "B",
"middle": [],
"last": "Mortazavi-Asl",
"suffix": ""
},
{
"first": "H",
"middle": [],
"last": "Pinto",
"suffix": ""
},
{
"first": "Q",
"middle": [],
"last": "Chen",
"suffix": ""
},
{
"first": "U",
"middle": [],
"last": "Dayal",
"suffix": ""
},
{
"first": "M",
"middle": [],
"last": "Hsu",
"suffix": ""
}
],
"year": 2001,
"venue": "Proc. 17th International Conference on Data Engineering",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "J. Pei, J. Han, B. Mortazavi-asl, H. Pinto, Q. Chen, U. Dayal, and M. Hsu. 2001. Prefixspan: Mining sequential pat- terns efficiently by prefix-projected pattern growth. In Proc. 17th International Conference on Data Engineer- ing. IEEE Computer Society.",
"links": null
},
"BIBREF19": {
"ref_id": "b19",
"title": "An algorithm for suffix stripping",
"authors": [
{
"first": "M",
"middle": [
"F"
],
"last": "Porter",
"suffix": ""
}
],
"year": 1980,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "M.F. Porter. 1980. An algorithm for suffix stripping. In Program.",
"links": null
},
"BIBREF20": {
"ref_id": "b20",
"title": "Extracting problem and resolution information from online discussion forums",
"authors": [
{
"first": "P",
"middle": [],
"last": "Raghavan",
"suffix": ""
},
{
"first": "R",
"middle": [],
"last": "Catherine",
"suffix": ""
},
{
"first": "S",
"middle": [],
"last": "Ikbal",
"suffix": ""
},
{
"first": "N",
"middle": [],
"last": "Kambhatla",
"suffix": ""
},
{
"first": "D",
"middle": [],
"last": "Majumdar",
"suffix": ""
}
],
"year": 2010,
"venue": "Proc. 16th International Conference on Management of Data",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "P. Raghavan, R. Catherine, S. Ikbal, N. Kambhatla, and D. Majumdar. 2010. Extracting problem and resolution information from online discussion forums. In Proc. 16th International Conference on Management of Data, CO- MAD.",
"links": null
},
"BIBREF21": {
"ref_id": "b21",
"title": "Crosstraining: learning probabilistic mappings between topics",
"authors": [
{
"first": "S",
"middle": [],
"last": "Sarawagi",
"suffix": ""
},
{
"first": "S",
"middle": [],
"last": "Chakrabarti",
"suffix": ""
},
{
"first": "S",
"middle": [],
"last": "Godbole",
"suffix": ""
}
],
"year": 2003,
"venue": "Proc. ninth ACM SIGKDD international conference on Knowledge discovery and data mining, KDD '03",
"volume": "",
"issue": "",
"pages": "177--186",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "S. Sarawagi, S. Chakrabarti, and S. Godbole. 2003. Cross- training: learning probabilistic mappings between topics. In Proc. ninth ACM SIGKDD international conference on Knowledge discovery and data mining, KDD '03, pages 177-186.",
"links": null
},
"BIBREF22": {
"ref_id": "b22",
"title": "Semi-automatic information extraction from discussion boards with applications for anti-spam technology",
"authors": [
{
"first": "S",
"middle": [],
"last": "Sarencheh",
"suffix": ""
},
{
"first": "V",
"middle": [],
"last": "Potdar",
"suffix": ""
},
{
"first": "E",
"middle": [],
"last": "Yeganeh",
"suffix": ""
},
{
"first": "N",
"middle": [],
"last": "Firoozeh",
"suffix": ""
}
],
"year": 2010,
"venue": "Computational Science and Its Applications -ICCSA 2010",
"volume": "6017",
"issue": "",
"pages": "370--382",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "S. Sarencheh, V. Potdar, E. Yeganeh, and N. Firoozeh. 2010. Semi-automatic information extraction from dis- cussion boards with applications for anti-spam technol- ogy. In Computational Science and Its Applications - ICCSA 2010, volume 6017 of Lecture Notes in Computer Science, pages 370-382. Springer Berlin Heidelberg.",
"links": null
},
"BIBREF23": {
"ref_id": "b23",
"title": "Applying co-training methods to statistical parsing",
"authors": [
{
"first": "A",
"middle": [],
"last": "Sarkar",
"suffix": ""
}
],
"year": 2001,
"venue": "Proc. second meeting of the North American Chapter of the Association for Computational Linguistics on Language technologies",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "A. Sarkar. 2001. Applying co-training methods to statistical parsing. In Proc. second meeting of the North American Chapter of the Association for Computational Linguistics on Language technologies, NAACL '01.",
"links": null
},
"BIBREF24": {
"ref_id": "b24",
"title": "Online community search using thread structure",
"authors": [
{
"first": "J",
"middle": [],
"last": "Seo",
"suffix": ""
},
{
"first": "B",
"middle": [],
"last": "Croft",
"suffix": ""
},
{
"first": "D",
"middle": [
"A"
],
"last": "Smith",
"suffix": ""
}
],
"year": 2009,
"venue": "Proceeding of the 18th ACM conference on Information and knowledge management, CIKM '09",
"volume": "",
"issue": "",
"pages": "1907--1910",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "J. Seo, B. Croft, and D. A. Smith. 2009. Online community search using thread structure. In Proceeding of the 18th ACM conference on Information and knowledge manage- ment, CIKM '09, pages 1907-1910. ACM.",
"links": null
},
"BIBREF25": {
"ref_id": "b25",
"title": "Detection of question-answer pairs in email conversation",
"authors": [
{
"first": "L",
"middle": [],
"last": "Shrestha",
"suffix": ""
},
{
"first": "K",
"middle": [],
"last": "Mckeown",
"suffix": ""
}
],
"year": 2004,
"venue": "Proc. 20th International Conference on Computational LIN-Guistic(COLING)",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "L. Shrestha and K. McKeown. 2004. Detection of question-answer pairs in email conversation. In Proc. 20th International Conference on Computational LIN- Guistic(COLING).",
"links": null
},
"BIBREF26": {
"ref_id": "b26",
"title": "Information Retrieval",
"authors": [
{
"first": "C",
"middle": [
"J"
],
"last": "Van Rijsbergen",
"suffix": ""
}
],
"year": 1979,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "C. J. van Rijsbergen. 1979. Information Retrieval (2nd ed.). Butterworth.",
"links": null
},
"BIBREF27": {
"ref_id": "b27",
"title": "The Nature of Statistical Learning Theory",
"authors": [
{
"first": "V",
"middle": [
"N"
],
"last": "Vapnik",
"suffix": ""
}
],
"year": 1995,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "V. N. Vapnik. 1995. The Nature of Statistical Learning The- ory. Springer.",
"links": null
},
"BIBREF28": {
"ref_id": "b28",
"title": "Making conversational structure explicit: identification of initiation-response pairs within online discussions",
"authors": [
{
"first": "Y",
"middle": [],
"last": "Wang",
"suffix": ""
},
{
"first": "C",
"middle": [
"P"
],
"last": "Ros\u00e9",
"suffix": ""
}
],
"year": 2010,
"venue": "Human Language Technologies: The 2010 Annual Conference of the North American Chapter of the Association for Computational Linguistics, HLT '10",
"volume": "",
"issue": "",
"pages": "673--676",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Y. Wang and C. P. Ros\u00e9. 2010. Making conversational struc- ture explicit: identification of initiation-response pairs within online discussions. In Human Language Technolo- gies: The 2010 Annual Conference of the North American Chapter of the Association for Computational Linguistics, HLT '10, pages 673-676. Association for Computational Linguistics.",
"links": null
},
"BIBREF29": {
"ref_id": "b29",
"title": "Learning online discussion structures by conditional random fields",
"authors": [
{
"first": "H",
"middle": [],
"last": "Wang",
"suffix": ""
},
{
"first": "C",
"middle": [],
"last": "Wang",
"suffix": ""
},
{
"first": "C",
"middle": [],
"last": "Zhai",
"suffix": ""
},
{
"first": "J",
"middle": [],
"last": "Han",
"suffix": ""
}
],
"year": 2011,
"venue": "Proc. 34th international ACM SIGIR conference on Research and development in Information Retrieval, SIGIR '11",
"volume": "",
"issue": "",
"pages": "435--444",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "H. Wang, C. Wang, C. Zhai, and J. Han. 2011. Learning online discussion structures by conditional random fields. In Proc. 34th international ACM SIGIR conference on Re- search and development in Information Retrieval, SIGIR '11, pages 435-444.",
"links": null
},
"BIBREF30": {
"ref_id": "b30",
"title": "Retrieval models for question and answer archives",
"authors": [
{
"first": "X",
"middle": [],
"last": "Xue",
"suffix": ""
},
{
"first": "J",
"middle": [],
"last": "Jeon",
"suffix": ""
},
{
"first": "W",
"middle": [
"B"
],
"last": "Croft",
"suffix": ""
}
],
"year": 2008,
"venue": "Proc. 31st annual international ACM SIGIR conference on Research and development in information retrieval, SIGIR '08",
"volume": "",
"issue": "",
"pages": "475--482",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "X. Xue, J. Jeon, and W. B. Croft. 2008. Retrieval models for question and answer archives. In Proc. 31st annual inter- national ACM SIGIR conference on Research and devel- opment in information retrieval, SIGIR '08, pages 475- 482. ACM.",
"links": null
},
"BIBREF31": {
"ref_id": "b31",
"title": "A structural support vector method for extracting contexts and answers of questions from online forums",
"authors": [
{
"first": "W",
"middle": [],
"last": "Yang",
"suffix": ""
},
{
"first": "Y",
"middle": [],
"last": "Cao",
"suffix": ""
},
{
"first": "C",
"middle": [],
"last": "Lin",
"suffix": ""
}
],
"year": 2009,
"venue": "Proc. 2009 Conference on Empirical Methods in Natural Language Processing",
"volume": "2",
"issue": "",
"pages": "514--523",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "W. Yang, Y. Cao, and C. Lin. 2009. A structural support vec- tor method for extracting contexts and answers of ques- tions from online forums. In Proc. 2009 Conference on Empirical Methods in Natural Language Processing: Vol- ume 2 -Volume 2, EMNLP '09, pages 514-523.",
"links": null
}
},
"ref_entries": {
"FIGREF0": {
"type_str": "figure",
"text": "A Sample Discussion a post level -a post is classified as an answer if any sentence within it suggests a solution.",
"num": null,
"uris": null
},
"FIGREF1": {
"type_str": "figure",
"text": "Parallel Co-Training Methodology \u2022 Two tasks run in parallel:",
"num": null,
"uris": null
},
"FIGREF2": {
"type_str": "figure",
"text": "\u2022 In iteration i, Answer Co-training uses the Acknowledgment classifiers, H ack i\u22121 \u2022 of the i \u2212 1 th iteration, to induce more features (detailed in Section 5.2), \u03a6 ack i",
"num": null,
"uris": null
},
"FIGREF3": {
"type_str": "figure",
"text": "ANS CT: F-scores of the STRUCT and PATTERN sub-classifiers after each iteration ANS-ACK PCT: F scores of the STRUCT and PATTERN sub-classifiers of the Answer Classifier after each iteration ANS-ACK PCT: F scores of theSTRUCT and PATTERN sub-classifiers of the Acknowledgment Classifier after each iteration",
"num": null,
"uris": null
},
"TABREF0": {
"num": null,
"type_str": "table",
"text": "the same problem here. Tried USB on computer and wall using the plug provided. It detects the cable, but zero charge! Bad times for a new product! Sounds like \"Lightning Gate\"... I have the same issue. The phone won't charge via the wall plug or connect to the computer. Sounds like bad cable or connection. Why don't you get another cable?",
"content": "<table><tr><td>Post: 0 Author: A Level: 1 Points: 50</td><td>My iPhone 5 will not charge has anyone else got this problem? When I plug the lightning cable in, its as if the phone registers this but it will not charge.</td></tr><tr><td>Post: 1</td><td/></tr><tr><td>Author: B Level: 3 Points: 150</td><td>Maybe it's not recognizing the new lightning cable? Try using an AC outlet</td></tr><tr><td>Post: 2 Author: A Level: 1</td><td>Thanks for the reply, the AC outlet has already been tried but it won't charge at all.</td></tr><tr><td>Points: 50</td><td/></tr><tr><td>Post: 3</td><td/></tr><tr><td>Author: C</td><td/></tr><tr><td>Level: 1 Points: 0</td><td/></tr><tr><td>Post: 4 Author: D Level: 1</td><td>I'm having the same issue, and it's not recognizing it at all. There's always a problem!</td></tr><tr><td>Points: 5</td><td/></tr><tr><td>Post: 5</td><td/></tr><tr><td>Author: E Level: 5</td><td/></tr><tr><td>Points: 270</td><td/></tr><tr><td/><td>Answer Suggestion</td></tr><tr><td>Post: 6 Author: A</td><td/></tr><tr><td>Level: 1</td><td/></tr><tr><td>Points: 50</td><td/></tr></table>",
"html": null
},
"TABREF1": {
"num": null,
"type_str": "table",
"text": "STRUCT features for a post 4.2 PATTERN view",
"content": "<table/>",
"html": null
},
"TABREF2": {
"num": null,
"type_str": "table",
"text": "... Great! That solved it! Thanks a bunch ... ... Thanks for your help. Finally got it working ... ... Switching on X did the trick. Now I can Y without any problem ... ... Thanks a lot guys. X solved my woes. I must have Y-ed it by mistake at some point ... Negative: the suggestion did not solve the issue. ... That didn't help. Any other suggestions? ... ... I tried that. It is still showing X ... ... Getting the same X. Thanks anyway ... ... Thanks for your advice. Unfortunately, it didn't help! Neutral: it is not clear if the issue was solved, but the statement is an acknowledgment nevertheless ... Thanks for the reply ... ... I will try that ... ... Thanks for the helpful advice. Hope resetting X properly will fix my problem ... ... I'm reinstalling X. Will keep you posted ...",
"content": "<table/>",
"html": null
},
"TABREF3": {
"num": null,
"type_str": "table",
"text": "Features induced from Acknowledgments",
"content": "<table/>",
"html": null
},
"TABREF5": {
"num": null,
"type_str": "table",
"text": "Statistics of the Training and Test Sets\u2022 , used in the different views of the co-training instances of ANS CT and ANS-ACK PCT models.6.1 Study of Improvement in AnswerExtraction Accuracy",
"content": "<table><tr><td colspan=\"2\">We used Support Vector Machines (Vapnik,</td></tr><tr><td colspan=\"2\">1995) (implementation from the LibSVM 7 li-</td></tr><tr><td>brary) for all the individual classifiers,</td><td>S ans i \u2022 and</td></tr></table>",
"html": null
},
"TABREF6": {
"num": null,
"type_str": "table",
"text": "F Scores for the Answer Extraction task",
"content": "<table/>",
"html": null
},
"TABREF8": {
"num": null,
"type_str": "table",
"text": "Comparison of accuracy measures of different methods for the answer classification task Graph Propagation based Answer Extraction by",
"content": "<table/>",
"html": null
},
"TABREF9": {
"num": null,
"type_str": "table",
"text": "go -to -NNS -NN -on 2. you -can -VB -NN 3. VBG -your -NN -NN 4. VB -to -NNS -NN 5. VBG -your -NN 6. check -NN -NN Fact 7. is -VBZ -not -NN",
"content": "<table><tr><td>Pattern Type</td><td colspan=\"2\">Examples</td></tr><tr><td colspan=\"3\">Imperative Sentence 1. Conditional State-8. if -you -VBP -NN</td></tr><tr><td>ment</td><td/><td/></tr><tr><td>Questions</td><td>9.</td><td>have -VB -you -tri -VBN -</td></tr><tr><td/><td colspan=\"2\">VBG -NN</td></tr><tr><td/><td colspan=\"2\">10. have -you -VBN -VBG -NN</td></tr></table>",
"html": null
},
"TABREF10": {
"num": null,
"type_str": "table",
"text": "Mined Answer Patterns",
"content": "<table><tr><td>Pattern Type</td><td>Examples</td></tr><tr><td>Action</td><td>1. i -VBP -to -VB</td></tr><tr><td/><td>2. i -VBP -NN -it</td></tr><tr><td/><td>3. i -not -VB -NN</td></tr><tr><td/><td>4. i -have -VBP -NN,</td></tr><tr><td/><td>5. i -am -VBP -VBG -NN</td></tr><tr><td>Others</td><td>6. but -i -VBP</td></tr><tr><td/><td>7. i -am -VBP -sure</td></tr></table>",
"html": null
},
"TABREF11": {
"num": null,
"type_str": "table",
"text": "Mined Acknowledgment Patterns threads.",
"content": "<table/>",
"html": null
}
}
}
} |