File size: 80,177 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 | {
"paper_id": "P06-1003",
"header": {
"generated_with": "S2ORC 1.0.0",
"date_generated": "2023-01-19T09:24:41.545481Z"
},
"title": "Unsupervised Topic Modelling for Multi-Party Spoken Discourse",
"authors": [
{
"first": "Matthew",
"middle": [],
"last": "Purver",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "CSLI Stanford University Stanford",
"location": {
"postCode": "94305",
"region": "CA",
"country": "USA"
}
},
"email": "mpurver@stanford.edu"
},
{
"first": "Konrad",
"middle": [
"P"
],
"last": "K\u00f6rding",
"suffix": "",
"affiliation": {},
"email": "kording@mit.edu"
},
{
"first": "Thomas",
"middle": [
"L"
],
"last": "Griffiths",
"suffix": "",
"affiliation": {},
"email": "tomgriffiths@brown.edu"
},
{
"first": "Joshua",
"middle": [
"B"
],
"last": "Tenenbaum",
"suffix": "",
"affiliation": {},
"email": ""
}
],
"year": "",
"venue": null,
"identifiers": {},
"abstract": "We present a method for unsupervised topic modelling which adapts methods used in document classification (Blei et al., 2003; Griffiths and Steyvers, 2004) to unsegmented multi-party discourse transcripts. We show how Bayesian inference in this generative model can be used to simultaneously address the problems of topic segmentation and topic identification: automatically segmenting multi-party meetings into topically coherent segments with performance which compares well with previous unsupervised segmentation-only methods (Galley et al., 2003) while simultaneously extracting topics which rate highly when assessed for coherence by human judges. We also show that this method appears robust in the face of off-topic dialogue and speech recognition errors.",
"pdf_parse": {
"paper_id": "P06-1003",
"_pdf_hash": "",
"abstract": [
{
"text": "We present a method for unsupervised topic modelling which adapts methods used in document classification (Blei et al., 2003; Griffiths and Steyvers, 2004) to unsegmented multi-party discourse transcripts. We show how Bayesian inference in this generative model can be used to simultaneously address the problems of topic segmentation and topic identification: automatically segmenting multi-party meetings into topically coherent segments with performance which compares well with previous unsupervised segmentation-only methods (Galley et al., 2003) while simultaneously extracting topics which rate highly when assessed for coherence by human judges. We also show that this method appears robust in the face of off-topic dialogue and speech recognition errors.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Abstract",
"sec_num": null
}
],
"body_text": [
{
"text": "Topic segmentation -division of a text or discourse into topically coherent segments -and topic identification -classification of those segments by subject matter -are joint problems. Both are necessary steps in automatic indexing, retrieval and summarization from large datasets, whether spoken or written. Both have received significant attention in the past (see Section 2), but most approaches have been targeted at either text or monologue, and most address only one of the two issues (usually for the very good reason that the dataset itself provides the other, for example by the explicit separation of individual documents or news stories in a collection). Spoken multi-party meetings pose a difficult problem: firstly, neither the segmentation nor the discussed topics can be taken as given; secondly, the discourse is by nature less tidily structured and less restricted in domain; and thirdly, speech recognition results have unavoidably high levels of error due to the noisy multispeaker environment.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "In this paper we present a method for unsupervised topic modelling which allows us to approach both problems simultaneously, inferring a set of topics while providing a segmentation into topically coherent segments. We show that this model can address these problems over multi-party discourse transcripts, providing good segmentation performance on a corpus of meetings (comparable to the best previous unsupervised method that we are aware of (Galley et al., 2003) ), while also inferring a set of topics rated as semantically coherent by human judges. We then show that its segmentation performance appears relatively robust to speech recognition errors, giving us confidence that it can be successfully applied in a real speech-processing system.",
"cite_spans": [
{
"start": 445,
"end": 466,
"text": "(Galley et al., 2003)",
"ref_id": "BIBREF7"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "The plan of the paper is as follows. Section 2 below briefly discusses previous approaches to the identification and segmentation problems. Section 3 then describes the model we use here. Section 4 then details our experiments and results, and conclusions are drawn in Section 5.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "In this paper we are interested in spoken discourse, and in particular multi-party human-human meetings. Our overall aim is to produce information which can be used to summarize, browse and/or retrieve the information contained in meetings. User studies (Lisowska et al., 2004; Banerjee et al., 2005) have shown that topic information is important here: people are likely to want to know which topics were discussed in a particular meeting, as well as have access to the discussion on particular topics in which they are interested. Of course, this requires both identification of the topics discussed, and segmentation into the periods of topically related discussion.",
"cite_spans": [
{
"start": 254,
"end": 277,
"text": "(Lisowska et al., 2004;",
"ref_id": "BIBREF14"
},
{
"start": 278,
"end": 300,
"text": "Banerjee et al., 2005)",
"ref_id": "BIBREF1"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Background and Related Work",
"sec_num": "2"
},
{
"text": "Work on automatic topic segmentation of text and monologue has been prolific, with a variety of approaches used. (Hearst, 1994) uses a measure of lexical cohesion between adjoining paragraphs in text; (Reynar, 1999) and (Beeferman et al., 1999) combine a variety of features such as statistical language modelling, cue phrases, discourse information and the presence of pronouns or named entities to segment broadcast news; (Maskey and Hirschberg, 2003) use entirely non-lexical features. Recent advances have used generative models, allowing lexical models of the topics themselves to be built while segmenting (Imai et al., 1997; Barzilay and Lee, 2004) , and we take a similar approach here, although with some important differences detailed below.",
"cite_spans": [
{
"start": 113,
"end": 127,
"text": "(Hearst, 1994)",
"ref_id": "BIBREF10"
},
{
"start": 201,
"end": 215,
"text": "(Reynar, 1999)",
"ref_id": "BIBREF18"
},
{
"start": 220,
"end": 244,
"text": "(Beeferman et al., 1999)",
"ref_id": "BIBREF3"
},
{
"start": 424,
"end": 453,
"text": "(Maskey and Hirschberg, 2003)",
"ref_id": "BIBREF15"
},
{
"start": 612,
"end": 631,
"text": "(Imai et al., 1997;",
"ref_id": "BIBREF12"
},
{
"start": 632,
"end": 655,
"text": "Barzilay and Lee, 2004)",
"ref_id": "BIBREF2"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Background and Related Work",
"sec_num": "2"
},
{
"text": "Turning to multi-party discourse and meetings, however, most previous work on automatic segmentation (Reiter and Rigoll, 2004; Dielmann and Renals, 2004; Banerjee and Rudnicky, 2004) , treats segments as representing meeting phases or events which characterize the type or style of discourse taking place (presentation, briefing, discussion etc.), rather than the topic or subject matter. While we expect some correlation between these two types of segmentation, they are clearly different problems. However, one comparable study is described in (Galley et al., 2003) . Here, a lexical cohesion approach was used to develop an essentially unsupervised segmentation tool (LC-Seg) which was applied to both text and meeting transcripts, giving performance better than that achieved by applying text/monologue-based techniques (see Section 4 below), and we take this as our benchmark for the segmentation problem. Note that they improved their accuracy by combining the unsupervised output with discourse features in a supervised classifier -while we do not attempt a similar comparison here, we expect a similar technique would yield similar segmentation improvements.",
"cite_spans": [
{
"start": 101,
"end": 126,
"text": "(Reiter and Rigoll, 2004;",
"ref_id": "BIBREF17"
},
{
"start": 127,
"end": 153,
"text": "Dielmann and Renals, 2004;",
"ref_id": "BIBREF6"
},
{
"start": 154,
"end": 182,
"text": "Banerjee and Rudnicky, 2004)",
"ref_id": "BIBREF0"
},
{
"start": 546,
"end": 567,
"text": "(Galley et al., 2003)",
"ref_id": "BIBREF7"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Background and Related Work",
"sec_num": "2"
},
{
"text": "In contrast, we take a generative approach, modelling the text as being generated by a sequence of mixtures of underlying topics. The approach is unsupervised, allowing both segmenta-tion and topic extraction from unlabelled data.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Background and Related Work",
"sec_num": "2"
},
{
"text": "We specify our model to address the problem of topic segmentation: attempting to break the discourse into discrete segments in which a particular set of topics are discussed. Assume we have a corpus of U utterances, ordered in sequence. The uth utterance consists of N u words, chosen from a vocabulary of size W . The set of words associated with the uth utterance are denoted w u , and indexed as w u,i . The entire corpus is represented by w.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Learning topics and segments",
"sec_num": "3"
},
{
"text": "Following previous work on probabilistic topic models (Hofmann, 1999; Blei et al., 2003; Griffiths and Steyvers, 2004) , we model each utterance as being generated from a particular distribution over topics, where each topic is a probability distribution over words. The utterances are ordered sequentially, and we assume a Markov structure on the distribution over topics: with high probability, the distribution for utterance u is the same as for utterance u\u22121; otherwise, we sample a new distribution over topics. This pattern of dependency is produced by associating a binary switching variable with each utterance, indicating whether its topic is the same as that of the previous utterance. The joint states of all the switching variables define segments that should be semantically coherent, because their words are generated by the same topic vector. We will first describe this generative model in more detail, and then discuss inference in this model.",
"cite_spans": [
{
"start": 54,
"end": 69,
"text": "(Hofmann, 1999;",
"ref_id": "BIBREF11"
},
{
"start": 70,
"end": 88,
"text": "Blei et al., 2003;",
"ref_id": "BIBREF5"
},
{
"start": 89,
"end": 118,
"text": "Griffiths and Steyvers, 2004)",
"ref_id": "BIBREF9"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Learning topics and segments",
"sec_num": "3"
},
{
"text": "We are interested in where changes occur in the set of topics discussed in these utterances. To this end, let c u indicate whether a change in the distribution over topics occurs at the uth utterance and let P (c u = 1) = \u03c0 (where \u03c0 thus defines the expected number of segments). The distribution over topics associated with the uth utterance will be denoted \u03b8 (u) , and is a multinomial distribution over T topics, with the probability of topic t being \u03b8",
"cite_spans": [
{
"start": 361,
"end": 364,
"text": "(u)",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "A hierarchical Bayesian model",
"sec_num": "3.1"
},
{
"text": "(u) t . If c u = 0, then \u03b8 (u) = \u03b8 (u\u22121) . Otherwise, \u03b8 (u)",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "A hierarchical Bayesian model",
"sec_num": "3.1"
},
{
"text": "is drawn from a symmetric Dirichlet distribution with parameter \u03b1. The distribution is thus: is the generalized factorial function. This distribution is not well-defined when u = 1, so we set c 1 = 1 and draw \u03b8 (1) from a symmetric Dirichlet(\u03b1) distribution accordingly. As in (Hofmann, 1999; Blei et al., 2003; Griffiths and Steyvers, 2004) , each topic T j is a multinomial distribution \u03c6 (j) over words, and the probability of the word w under that topic is \u03c6 (j)",
"cite_spans": [
{
"start": 277,
"end": 292,
"text": "(Hofmann, 1999;",
"ref_id": "BIBREF11"
},
{
"start": 293,
"end": 311,
"text": "Blei et al., 2003;",
"ref_id": "BIBREF5"
},
{
"start": 312,
"end": 341,
"text": "Griffiths and Steyvers, 2004)",
"ref_id": "BIBREF9"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "A hierarchical Bayesian model",
"sec_num": "3.1"
},
{
"text": "P (\u03b8 (u) |cu, \u03b8 (u\u22121) ) = ( \u03b4(\u03b8 (u) , \u03b8 (u\u22121) ) cu = 0 \u0393(T \u03b1) \u0393(\u03b1) T Q T t=1 (\u03b8 (u) t ) \u03b1\u22121 cu = 1",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "A hierarchical Bayesian model",
"sec_num": "3.1"
},
{
"text": "w . The uth utterance is generated by sampling a topic assignment z u,i for each word i in that utterance with P (z u,i = t|\u03b8 (u) ",
"cite_spans": [
{
"start": 126,
"end": 129,
"text": "(u)",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "A hierarchical Bayesian model",
"sec_num": "3.1"
},
{
"text": ") = \u03b8 (u)",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "A hierarchical Bayesian model",
"sec_num": "3.1"
},
{
"text": "t , and then sampling a word w u,i from \u03c6 (j) , with",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "A hierarchical Bayesian model",
"sec_num": "3.1"
},
{
"text": "P (w u,i = w|z u,i = j, \u03c6 (j) ) = \u03c6 (j)",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "A hierarchical Bayesian model",
"sec_num": "3.1"
},
{
"text": "w . If we assume that \u03c0 is generated from a symmetric Beta(\u03b3) distribution, and each \u03c6 (j) is generated from a symmetric Dirichlet(\u03b2) distribution, we obtain a joint distribution over all of these variables with the dependency structure shown in Figure 1A .",
"cite_spans": [],
"ref_spans": [
{
"start": 246,
"end": 255,
"text": "Figure 1A",
"ref_id": "FIGREF0"
}
],
"eq_spans": [],
"section": "A hierarchical Bayesian model",
"sec_num": "3.1"
},
{
"text": "Assessing the posterior probability distribution over topic changes c given a corpus w can be simplified by integrating out the parameters \u03b8, \u03c6, and \u03c0. According to Bayes rule we have:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Inference",
"sec_num": "3.2"
},
{
"text": "EQUATION",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [
{
"start": 0,
"end": 8,
"text": "EQUATION",
"ref_id": "EQREF",
"raw_str": "P (z, c|w) = P (w|z)P (z|c)P (c) P z,c P (w|z)P (z|c)P (c)",
"eq_num": "(1)"
}
],
"section": "Inference",
"sec_num": "3.2"
},
{
"text": "Evaluating P (c) requires integrating over \u03c0. Specifically, we have:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Inference",
"sec_num": "3.2"
},
{
"text": "EQUATION",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [
{
"start": 0,
"end": 8,
"text": "EQUATION",
"ref_id": "EQREF",
"raw_str": "P (c) = R 1 0 P (c|\u03c0)P (\u03c0) d\u03c0 = \u0393(2\u03b3) \u0393(\u03b3) 2 \u0393(n 1 +\u03b3)\u0393(n 0 +\u03b3) \u0393(N +2\u03b3)",
"eq_num": "(2)"
}
],
"section": "Inference",
"sec_num": "3.2"
},
{
"text": "where n 1 is the number of utterances for which c u = 1, and n 0 is the number of utterances for which c u = 0. Computing P (w|z) proceeds along similar lines:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Inference",
"sec_num": "3.2"
},
{
"text": "P (w|z) = R \u2206 T W P (w|z, \u03c6)P (\u03c6) d\u03c6 = \" \u0393(W \u03b2) \u0393(\u03b2) W \" T Q T t=1 Q W w=1 \u0393(n (t) w +\u03b2) \u0393(n (t) \u2022 +W \u03b2) (3) where \u2206 T W is the T -dimensional cross-product of the multinomial simplex on W points, n (t)",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Inference",
"sec_num": "3.2"
},
{
"text": "w is the number of times word w is assigned to topic t in z, and n (t)",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Inference",
"sec_num": "3.2"
},
{
"text": "\u2022 is the total number of words assigned to topic t in z. To evaluate P (z|c) we have:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Inference",
"sec_num": "3.2"
},
{
"text": "EQUATION",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [
{
"start": 0,
"end": 8,
"text": "EQUATION",
"ref_id": "EQREF",
"raw_str": "P (z|c) = Z \u2206 U T P (z|\u03b8)P (\u03b8|c) d\u03b8",
"eq_num": "(4)"
}
],
"section": "Inference",
"sec_num": "3.2"
},
{
"text": "The fact that the c u variables effectively divide the sequence of utterances into segments that use the same distribution over topics simplifies solving the integral and we obtain:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Inference",
"sec_num": "3.2"
},
{
"text": "P (z|c) = \" \u0393(T \u03b1) \u0393(\u03b1) T \u00ab n 1 Y u\u2208U 1 Q T t=1 \u0393(n (Su) t + \u03b1) \u0393(n (Su) \u2022 + T \u03b1) . (5) P (cu|c\u2212u, z, w) \u221d 8 > > > < > > > : Q T t=1 \u0393(n (S 0 u ) t +\u03b1) \u0393(n (S 0 u ) \u2022 +T \u03b1) n 0 +\u03b3 N +2\u03b3 cu = 0 \u0393(T \u03b1) \u0393(\u03b1) T Q T t=1 \u0393(n (S 1 u\u22121 ) t +\u03b1) \u0393(n (S 1 u\u22121 ) \u2022 +T \u03b1) Q T t=1 \u0393(n (S 1 u ) t +\u03b1) \u0393(n (S 1 u ) \u2022 +T \u03b1) n 1 +\u03b3 N +2\u03b3 cu = 1 (7)",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Inference",
"sec_num": "3.2"
},
{
"text": "where U 1 = {u|c u = 1}, U 0 = {u|c u = 0}, S u denotes the set of utterances that share the same topic distribution (i.e. belong to the same segment) as u, and n (Su) t is the number of times topic t appears in the segment S u (i.e. in the values of z u corresponding for u \u2208 S u ).",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Inference",
"sec_num": "3.2"
},
{
"text": "Equations 2, 3, and 5 allow us to evaluate the numerator of the expression in Equation 1. However, computing the denominator is intractable. Consequently, we sample from the posterior distribution P (z, c|w) using Markov chain Monte Carlo (MCMC) (Gilks et al., 1996) . We use Gibbs sampling, drawing the topic assignment for each word, z u,i , conditioned on all other topic assignments, z \u2212(u,i) , all topic change indicators, c, and all words, w; and then drawing the topic change indicator for each utterance, c u , conditioned on all other topic change indicators, c \u2212u , all topic assignments z, and all words w.",
"cite_spans": [
{
"start": 246,
"end": 266,
"text": "(Gilks et al., 1996)",
"ref_id": "BIBREF8"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Inference",
"sec_num": "3.2"
},
{
"text": "The conditional probabilities we need can be derived directly from Equations 2, 3, and 5. The conditional probability of z u,i indicates the probability that w u,i should be assigned to a particular topic, given other assignments, the current segmentation, and the words in the utterances. Cancelling constant terms, we obtain:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Inference",
"sec_num": "3.2"
},
{
"text": "P (zu,i|z \u2212(u,i) , c, w) = n (t) w u,i + \u03b2 n (t) \u2022 + W \u03b2 n (Su) z u,i + \u03b1 n (Su) \u2022 + T \u03b1 . (6)",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Inference",
"sec_num": "3.2"
},
{
"text": "where all counts (i.e. the n terms) exclude z u,i . The conditional probability of c u indicates the probability that a new segment should start at u. In sampling c u from this distribution, we are splitting or merging segments. Similarly we obtain the expression in (7), where S 1 u is S u for the segmentation when c u = 1, S 0 u is S u for the segmentation when c u = 0, and all counts (e.g. n 1 ) exclude c u . For this paper, we fixed \u03b1, \u03b2 and \u03b3 at 0.01.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Inference",
"sec_num": "3.2"
},
{
"text": "Our algorithm is related to (Barzilay and Lee, 2004)'s approach to text segmentation, which uses a hidden Markov model (HMM) to model segmentation and topic inference for text using a bigram representation in restricted domains. Due to the adaptive combination of different topics our algorithm can be expected to generalize well to larger domains. It also relates to earlier work by (Blei and Moreno, 2001 ) that uses a topic representation but also does not allow adaptively combining different topics. However, while HMM approaches allow a segmentation of the data by topic, they do not allow adaptively combining different topics into segments: while a new segment can be modelled as being identical to a topic that has already been observed, it can not be modelled as a combination of the previously observed topics. 1 Note that while (Imai et al., 1997) 's HMM approach allows topic mixtures, it requires supervision with hand-labelled topics.",
"cite_spans": [
{
"start": 384,
"end": 406,
"text": "(Blei and Moreno, 2001",
"ref_id": "BIBREF4"
},
{
"start": 840,
"end": 859,
"text": "(Imai et al., 1997)",
"ref_id": "BIBREF12"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Inference",
"sec_num": "3.2"
},
{
"text": "In our experiments we therefore compared our results with those obtained by a similar but simpler 10 state HMM, using a similar Gibbs sampling algorithm. The key difference between the two models is shown in Figure 1 . In the HMM, all variation in the content of utterances is modelled at a single level, with each segment having a distribution over words corresponding to a single state. The hierarchical structure of our topic segmentation model allows variation in content to be expressed at two levels, with each segment being produced from a linear combination of the distributions associated with each topic. Consequently, our model can often capture the content of a sequence of words by postulating a single segment with a novel distribution over topics, while the HMM has to frequently switch between states.",
"cite_spans": [],
"ref_spans": [
{
"start": 208,
"end": 216,
"text": "Figure 1",
"ref_id": "FIGREF0"
}
],
"eq_spans": [],
"section": "Inference",
"sec_num": "3.2"
},
{
"text": "To analyze the properties of this algorithm we first applied it to a simulated dataset: a sequence of 10,000 words chosen from a vocabulary of 25. Each segment of 100 successive words had a con-1 Say that a particular corpus leads us to infer topics corresponding to \"speech recognition\" and \"discourse understanding\". A single discussion concerning speech recognition for discourse understanding could be modelled by our algorithm as a single segment with a suitable weighted mixture of the two topics; a HMM approach would tend to split it into multiple segments (or require a specific topic for this segment). stant topic distribution (with distributions for different segments drawn from a Dirichlet distribution with \u03b2 = 0.1), and each subsequence of 10 words was taken to be one utterance. The topicword assignments were chosen such that when the vocabulary is aligned in a 5\u00d75 grid the topics were binary bars. The inference algorithm was then run for 200,000 iterations, with samples collected after every 1,000 iterations to minimize autocorrelation. Figure 2 shows the inferred topic-word distributions and segment boundaries, which correspond well with those used to generate the data.",
"cite_spans": [],
"ref_spans": [
{
"start": 1060,
"end": 1068,
"text": "Figure 2",
"ref_id": "FIGREF1"
}
],
"eq_spans": [],
"section": "Experiment 0: Simulated data",
"sec_num": "4.1"
},
{
"text": "We applied the algorithm to the ICSI meeting corpus transcripts (Janin et al., 2003) , consisting of manual transcriptions of 75 meetings. For evaluation, we use (Galley et al., 2003) 's set of human-annotated segmentations, which covers a sub-portion of 25 meetings and takes a relatively coarse-grained approach to topic with an average of 5-6 topic segments per meeting. Note that these segmentations were not used in training the model: topic inference and segmentation was unsupervised, with the human annotations used only to provide some knowledge of the overall segmentation density and to evaluate performance.",
"cite_spans": [
{
"start": 64,
"end": 84,
"text": "(Janin et al., 2003)",
"ref_id": "BIBREF13"
},
{
"start": 162,
"end": 183,
"text": "(Galley et al., 2003)",
"ref_id": "BIBREF7"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Experiment 1: The ICSI corpus",
"sec_num": "4.2"
},
{
"text": "The transcripts from all 75 meetings were linearized by utterance start time and merged into a single dataset that contained 607,263 word tokens. We sampled for 200,000 iterations of MCMC, taking samples every 1,000 iterations, and then averaged the sampled c u variables over the last 100 samples to derive an estimate for the posterior probability of a segmentation boundary at each utterance start. This probability was then thresholded to derive a final segmentation which was compared to the manual annotations. More precisely, we apply a small amount of smoothing (Gaussian kernel convolution) and take the mid-points of any areas above a set threshold to be the segment boundaries. Varying this threshold allows us to segment the discourse in a more or less finegrained way (and we anticipate that this could be user-settable in a meeting browsing application). If the correct number of segments is known for a meeting, this can be used directly to determine the optimum threshold, increasing performance; if not, we must set it at a level which corresponds to the desired general level of granularity. For each set of annotations, we therefore performed two sets of segmentations: one in which the threshold was set for each meeting to give the known goldstandard number of segments, and one in which the threshold was set on a separate development set to give the overall corpus-wide average number of segments, and held constant for all test meetings. 2 This also allows us to compare our results with those of (Galley et al., 2003) , who apply a similar threshold to their lexical cohesion function and give corresponding results produced with known/unknown numbers of segments.",
"cite_spans": [
{
"start": 1521,
"end": 1542,
"text": "(Galley et al., 2003)",
"ref_id": "BIBREF7"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Experiment 1: The ICSI corpus",
"sec_num": "4.2"
},
{
"text": "Segmentation We assessed segmentation performance using the P k and WindowDiff (W D ) error measures proposed by (Beeferman et al., 1999) and (Pevzner and Hearst, 2002) respectively; both intuitively provide a measure of the probability that two points drawn from the meeting will be incorrectly separated by a hypothesized segment boundary -thus, lower P k and W D figures indicate better agreement with the human-annotated results. 3 For the numbers of segments we are dealing with, a baseline of segmenting the discourse into equal-length segments gives both P k and W D about 50%. In order to investigate the effect of the number of underlying topics T , we tested models using 2, 5, 10 and 20 topics. We then compared performance with (Galley et al., 2003) 's LC-Seg tool, and with a 10-state HMM model as described above. Results are shown in Table 1 , averaged over the 25 test meetings.",
"cite_spans": [
{
"start": 113,
"end": 137,
"text": "(Beeferman et al., 1999)",
"ref_id": "BIBREF3"
},
{
"start": 142,
"end": 168,
"text": "(Pevzner and Hearst, 2002)",
"ref_id": "BIBREF16"
},
{
"start": 740,
"end": 761,
"text": "(Galley et al., 2003)",
"ref_id": "BIBREF7"
}
],
"ref_spans": [
{
"start": 849,
"end": 856,
"text": "Table 1",
"ref_id": "TABREF1"
}
],
"eq_spans": [],
"section": "Experiment 1: The ICSI corpus",
"sec_num": "4.2"
},
{
"text": "Results show that our model significantly outperforms the HMM equivalent -because the HMM cannot combine different topics, it places a lot of segmentation boundaries, resulting in inferior performance. Using stemming and a bigram Figure 3 : Results from the ICSI corpus: A) the words most indicative for each topic; B) Probability of a segment boundary, compared with human segmentation, for an arbitrary subset of the data; C) Receiveroperator characteristic (ROC) curves for predicting human segmentation, and conditional probabilities of placing a boundary at an offset from a human boundary; D) subjective topic coherence ratings. representation, however, might improve its performance (Barzilay and Lee, 2004) , although similar benefits might equally apply to our model. It also performs comparably to (Galley et al., 2003) 's unsupervised performance (exceeding it for some settings of T ). It does not perform as well as their hybrid supervised system, which combined LC-Seg with supervised learning over discourse features (P k = .23); but we expect that a similar approach would be possible here, combining our segmentation probabilities with other discourse-based features in a supervised way for improved performance. Interestingly, segmentation quality, at least at this relatively coarse-grained level, seems hardly affected by the overall number of topics T . Figure 3B shows an example for one meeting of how the inferred topic segmentation probabilities at each utterance compare with the gold-standard segment boundaries. Figure 3C illustrates the performance difference between our model and the HMM equivalent at an example segment boundary: for this example, the HMM model gives almost no discrimination.",
"cite_spans": [
{
"start": 690,
"end": 714,
"text": "(Barzilay and Lee, 2004)",
"ref_id": "BIBREF2"
},
{
"start": 808,
"end": 829,
"text": "(Galley et al., 2003)",
"ref_id": "BIBREF7"
}
],
"ref_spans": [
{
"start": 230,
"end": 238,
"text": "Figure 3",
"ref_id": null
},
{
"start": 1375,
"end": 1384,
"text": "Figure 3B",
"ref_id": null
},
{
"start": 1540,
"end": 1549,
"text": "Figure 3C",
"ref_id": null
}
],
"eq_spans": [],
"section": "Experiment 1: The ICSI corpus",
"sec_num": "4.2"
},
{
"text": "Identification Figure 3A shows the most indicative words for a subset of the topics inferred at the last iteration. Encouragingly, most topics seem intuitively to reflect the subjects we know were discussed in the ICSI meetings -the majority of them (67 meetings) are taken from the weekly meetings of 3 distinct research groups, where discussions centered around speech recognition techniques (topics 2, 5), meeting recording, annotation and hardware setup (topics 6, 3, 1, 8), robust language processing (topic 7). Others reflect general classes of words which are independent of subject matter (topic 4).",
"cite_spans": [],
"ref_spans": [
{
"start": 15,
"end": 24,
"text": "Figure 3A",
"ref_id": null
}
],
"eq_spans": [],
"section": "Experiment 1: The ICSI corpus",
"sec_num": "4.2"
},
{
"text": "To compare the quality of these inferred topics we performed an experiment in which 7 human observers rated (on a scale of 1 to 9) the semantic coherence of 50 lists of 10 words each. Of these lists, 40 contained the most indicative words for each of the 10 topics from different models: the topic segmentation model; a topic model that had the same number of segments but with fixed evenly spread segmentation boundaries; an equiv-alent with randomly placed segmentation boundaries; and the HMM. The other 10 lists contained random samples of 10 words from the other 40 lists. Results are shown in Figure 3D , with the topic segmentation model producing the most coherent topics and the HMM model and random words scoring less well. Interestingly, using an even distribution of boundaries but allowing the topic model to infer topics performs similarly well with even segmentation, but badly with random segmentation -topic quality is thus not very susceptible to the precise segmentation of the text, but does require some reasonable approximation (on ICSI data, an even segmentation gives a P k of about 50%, while random segmentations can do much worse). However, note that the full topic segmentation model is able to identify meaningful segmentation boundaries at the same time as inferring topics.",
"cite_spans": [],
"ref_spans": [
{
"start": 599,
"end": 608,
"text": "Figure 3D",
"ref_id": null
}
],
"eq_spans": [],
"section": "Experiment 1: The ICSI corpus",
"sec_num": "4.2"
},
{
"text": "Meetings often include off-topic dialogue, in particular at the beginning and end, where informal chat and meta-dialogue are common. Galley et al. (2003) annotated these sections explicitly, together with the ICSI \"digit-task\" sections (participants read sequences of digits to provide data for speech recognition experiments), and removed them from their data, as did we in Experiment 1 above. While this seems reasonable for the purposes of investigating ideal algorithm performance, in real situations we will be faced with such off-topic dialogue, and would obviously prefer segmentation performance not to be badly affected (and ideally, enabling segmentation of the off-topic sections from the meeting proper). One might suspect that an unsupervised generative model such as ours might not be robust in the presence of numerous off-topic words, as spurious topics might be inferred and used in the mixture model throughout. In order to investigate this, we therefore also tested on the full dataset without removing these sections (806,026 word tokens in total), and added the section boundaries as further desired gold-standard segmentation boundaries. Table 2 shows the results: performance is not significantly affected, and again is very similar for both our model and LCSeg.",
"cite_spans": [
{
"start": 133,
"end": 153,
"text": "Galley et al. (2003)",
"ref_id": "BIBREF7"
}
],
"ref_spans": [
{
"start": 1160,
"end": 1167,
"text": "Table 2",
"ref_id": "TABREF3"
}
],
"eq_spans": [],
"section": "Experiment 2: Dialogue robustness",
"sec_num": "4.3"
},
{
"text": "The experiments so far have all used manual word transcriptions. Of course, in real meeting pro- cessing systems, we will have to deal with speech recognition (ASR) errors. We therefore also tested on 1-best ASR output provided by ICSI, and results are shown in Table 2 . The \"off-topic\" and \"digits\" sections were removed in this test, so results are comparable with Experiment 1. Segmentation accuracy seems extremely robust; interestingly, LCSeg's results are less robust (the drop in performance is higher), especially when the number of segments in a meeting is unknown.",
"cite_spans": [],
"ref_spans": [
{
"start": 262,
"end": 269,
"text": "Table 2",
"ref_id": "TABREF3"
}
],
"eq_spans": [],
"section": "Experiment 3: Speech recognition",
"sec_num": "4.4"
},
{
"text": "It is surprising to notice that the segmentation accuracy in this experiment was actually slightly higher than achieved in Experiment 1 (especially given that ASR word error rates were generally above 20%). This may simply be a smoothing effect: differences in vocabulary and its distribution can effectively change the prior towards sparsity instantiated in the Dirichlet distributions.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Experiment 3: Speech recognition",
"sec_num": "4.4"
},
{
"text": "We have presented an unsupervised generative model which allows topic segmentation and identification from unlabelled data. Performance on the ICSI corpus of multi-party meetings is comparable with the previous unsupervised segmentation results, and the extracted topics are rated well by human judges. Segmentation accuracy is robust in the face of noise, both in the form of off-topic discussion and speech recognition hypotheses.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Summary and Future Work",
"sec_num": "5"
},
{
"text": "Future Work Spoken discourse exhibits several features not derived from the words themselves but which seem intuitively useful for segmentation, e.g. speaker changes, speaker identities and roles, silences, overlaps, prosody and so on. As shown by (Galley et al., 2003) , some of these features can be combined with lexical information to improve segmentation performance (although in a supervised manner), and (Maskey and Hirschberg, 2003) show some success in broadcast news segmentation using only these kinds of non-lexical features. We are currently investigating the addition of non-lexical features as observed outputs in our unsupervised generative model. We are also investigating improvements into the lexical model as presented here, firstly via simple techniques such as word stemming and replacement of named entities by generic class tokens (Barzilay and Lee, 2004) ; but also via the use of multiple ASR hypotheses by incorporating word confusion networks into our model. We expect that this will allow improved segmentation and identification performance with ASR data.",
"cite_spans": [
{
"start": 248,
"end": 269,
"text": "(Galley et al., 2003)",
"ref_id": "BIBREF7"
},
{
"start": 411,
"end": 440,
"text": "(Maskey and Hirschberg, 2003)",
"ref_id": "BIBREF15"
},
{
"start": 855,
"end": 879,
"text": "(Barzilay and Lee, 2004)",
"ref_id": "BIBREF2"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Summary and Future Work",
"sec_num": "5"
},
{
"text": "Proceedings of the 21st International Conference on Computational Linguistics and 44th Annual Meeting of the ACL, pages 17-24, Sydney, July 2006. c 2006 Association for Computational Linguistics",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
},
{
"text": "The development set was formed from the other meetings in the same ICSI subject areas as the annotated test meetings.3 WD takes into account the likely number of incorrectly separating hypothesized boundaries; P k only a binary correct/incorrect classification.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
}
],
"back_matter": [
{
"text": "This work was supported by the CALO project (DARPA grant NBCH-D-03-0010). We thank Elizabeth Shriberg and Andreas Stolcke for providing automatic speech recognition data for the ICSI corpus and for their helpful advice; John Niekrasz and Alex Gruenstein for help with the NOMOS corpus annotation tool; and Michel Galley for discussion of his approach and results.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Acknowledgements",
"sec_num": null
}
],
"bib_entries": {
"BIBREF0": {
"ref_id": "b0",
"title": "Using simple speech-based features to detect the state of a meeting and the roles of the meeting participants",
"authors": [
{
"first": "Satanjeev",
"middle": [],
"last": "Banerjee",
"suffix": ""
},
{
"first": "Alex",
"middle": [],
"last": "Rudnicky",
"suffix": ""
}
],
"year": 2004,
"venue": "Proceedings of the 8th International Conference on Spoken Language Processing",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Satanjeev Banerjee and Alex Rudnicky. 2004. Using simple speech-based features to detect the state of a meeting and the roles of the meeting participants. In Proceedings of the 8th International Conference on Spoken Language Processing.",
"links": null
},
"BIBREF1": {
"ref_id": "b1",
"title": "The necessity of a meeting recording and playback system, and the benefit of topic-level annotations to meeting browsing",
"authors": [
{
"first": "Satanjeev",
"middle": [],
"last": "Banerjee",
"suffix": ""
},
{
"first": "Carolyn",
"middle": [],
"last": "Ros\u00e9",
"suffix": ""
},
{
"first": "Alex",
"middle": [],
"last": "Rudnicky",
"suffix": ""
}
],
"year": 2005,
"venue": "Proceedings of the 10th International Conference on Human-Computer Interaction",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Satanjeev Banerjee, Carolyn Ros\u00e9, and Alex Rudnicky. 2005. The necessity of a meeting recording and playback system, and the benefit of topic-level anno- tations to meeting browsing. In Proceedings of the 10th International Conference on Human-Computer Interaction.",
"links": null
},
"BIBREF2": {
"ref_id": "b2",
"title": "Catching the drift: Probabilistic content models, with applications to generation and summarization",
"authors": [
{
"first": "Regina",
"middle": [],
"last": "Barzilay",
"suffix": ""
},
{
"first": "Lillian",
"middle": [],
"last": "Lee",
"suffix": ""
}
],
"year": 2004,
"venue": "HLT-NAACL 2004: Proceedings of the Main Conference",
"volume": "",
"issue": "",
"pages": "113--120",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Regina Barzilay and Lillian Lee. 2004. Catching the drift: Probabilistic content models, with applications to generation and summarization. In HLT-NAACL 2004: Proceedings of the Main Conference, pages 113-120.",
"links": null
},
"BIBREF3": {
"ref_id": "b3",
"title": "Statistical models for text segmentation. Machine Learning",
"authors": [
{
"first": "Doug",
"middle": [],
"last": "Beeferman",
"suffix": ""
},
{
"first": "Adam",
"middle": [],
"last": "Berger",
"suffix": ""
},
{
"first": "John",
"middle": [
"D"
],
"last": "Lafferty",
"suffix": ""
}
],
"year": 1999,
"venue": "",
"volume": "34",
"issue": "",
"pages": "177--210",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Doug Beeferman, Adam Berger, and John D. Lafferty. 1999. Statistical models for text segmentation. Ma- chine Learning, 34(1-3):177-210.",
"links": null
},
"BIBREF4": {
"ref_id": "b4",
"title": "Topic segmentation with an aspect hidden Markov model",
"authors": [
{
"first": "David",
"middle": [],
"last": "Blei",
"suffix": ""
},
{
"first": "Pedro",
"middle": [],
"last": "Moreno",
"suffix": ""
}
],
"year": 2001,
"venue": "Proceedings of the 24th Annual International Conference on Research and Development in Information Retrieval",
"volume": "",
"issue": "",
"pages": "343--348",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "David Blei and Pedro Moreno. 2001. Topic segmenta- tion with an aspect hidden Markov model. In Pro- ceedings of the 24th Annual International Confer- ence on Research and Development in Information Retrieval, pages 343-348.",
"links": null
},
"BIBREF5": {
"ref_id": "b5",
"title": "Latent Dirichlet allocation",
"authors": [
{
"first": "David",
"middle": [],
"last": "Blei",
"suffix": ""
},
{
"first": "Andrew",
"middle": [],
"last": "Ng",
"suffix": ""
},
{
"first": "Michael",
"middle": [],
"last": "Jordan",
"suffix": ""
}
],
"year": 2003,
"venue": "Journal of Machine Learning Research",
"volume": "3",
"issue": "",
"pages": "993--1022",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "David Blei, Andrew Ng, and Michael Jordan. 2003. Latent Dirichlet allocation. Journal of Machine Learning Research, 3:993-1022.",
"links": null
},
"BIBREF6": {
"ref_id": "b6",
"title": "Dynamic Bayesian Networks for meeting structuring",
"authors": [
{
"first": "Alfred",
"middle": [],
"last": "Dielmann",
"suffix": ""
},
{
"first": "Steve",
"middle": [],
"last": "Renals",
"suffix": ""
}
],
"year": 2004,
"venue": "Proceedings of the IEEE International Conference on Acoustics, Speech, and Signal Processing",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Alfred Dielmann and Steve Renals. 2004. Dynamic Bayesian Networks for meeting structuring. In Pro- ceedings of the IEEE International Conference on Acoustics, Speech, and Signal Processing (ICASSP).",
"links": null
},
"BIBREF7": {
"ref_id": "b7",
"title": "Discourse segmentation of multi-party conversation",
"authors": [
{
"first": "Michel",
"middle": [],
"last": "Galley",
"suffix": ""
},
{
"first": "Kathleen",
"middle": [],
"last": "Mckeown",
"suffix": ""
},
{
"first": "Eric",
"middle": [],
"last": "Fosler-Lussier",
"suffix": ""
},
{
"first": "Hongyan",
"middle": [],
"last": "Jing",
"suffix": ""
}
],
"year": 2003,
"venue": "Proceedings of the 41st Annual Meeting of the Association for Computational Linguistics",
"volume": "",
"issue": "",
"pages": "562--569",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Michel Galley, Kathleen McKeown, Eric Fosler- Lussier, and Hongyan Jing. 2003. Discourse seg- mentation of multi-party conversation. In Proceed- ings of the 41st Annual Meeting of the Association for Computational Linguistics, pages 562-569.",
"links": null
},
"BIBREF8": {
"ref_id": "b8",
"title": "Markov Chain Monte Carlo in Practice",
"authors": [
{
"first": "W",
"middle": [
"R"
],
"last": "Gilks",
"suffix": ""
},
{
"first": "S",
"middle": [],
"last": "Richardson",
"suffix": ""
},
{
"first": "D",
"middle": [
"J"
],
"last": "Spiegelhalter",
"suffix": ""
}
],
"year": 1996,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "W.R. Gilks, S. Richardson, and D.J. Spiegelhalter, edi- tors. 1996. Markov Chain Monte Carlo in Practice. Chapman and Hall, Suffolk.",
"links": null
},
"BIBREF9": {
"ref_id": "b9",
"title": "Finding scientific topics",
"authors": [
{
"first": "Thomas",
"middle": [],
"last": "Griffiths",
"suffix": ""
},
{
"first": "Mark",
"middle": [],
"last": "Steyvers",
"suffix": ""
}
],
"year": 2004,
"venue": "Proceedings of the National Academy of Science",
"volume": "101",
"issue": "",
"pages": "5228--5235",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Thomas Griffiths and Mark Steyvers. 2004. Find- ing scientific topics. Proceedings of the National Academy of Science, 101:5228-5235.",
"links": null
},
"BIBREF10": {
"ref_id": "b10",
"title": "Multi-paragraph segmentation of expository text",
"authors": [
{
"first": "Marti",
"middle": [
"A"
],
"last": "Hearst",
"suffix": ""
}
],
"year": 1994,
"venue": "Proc. 32nd Meeting of the Association for Computational Linguistics",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Marti A. Hearst. 1994. Multi-paragraph segmenta- tion of expository text. In Proc. 32nd Meeting of the Association for Computational Linguistics, Los Cruces, NM, June.",
"links": null
},
"BIBREF11": {
"ref_id": "b11",
"title": "Probablistic latent semantic indexing",
"authors": [
{
"first": "Thomas",
"middle": [],
"last": "Hofmann",
"suffix": ""
}
],
"year": 1999,
"venue": "Proceedings of the 22nd Annual SIGIR Conference on Research and Development in Information Retrieval",
"volume": "",
"issue": "",
"pages": "50--57",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Thomas Hofmann. 1999. Probablistic latent semantic indexing. In Proceedings of the 22nd Annual SIGIR Conference on Research and Development in Infor- mation Retrieval, pages 50-57.",
"links": null
},
"BIBREF12": {
"ref_id": "b12",
"title": "Improved topic discrimination of broadcast news using a model of multiple simultaneous topics",
"authors": [
{
"first": "Toru",
"middle": [],
"last": "Imai",
"suffix": ""
},
{
"first": "Richard",
"middle": [],
"last": "Schwartz",
"suffix": ""
},
{
"first": "Francis",
"middle": [],
"last": "Kubala",
"suffix": ""
},
{
"first": "Long",
"middle": [],
"last": "Nguyen",
"suffix": ""
}
],
"year": 1997,
"venue": "Proceedings of the IEEE International Conference on Acoustics, Speech, and Signal Processing (ICASSP)",
"volume": "",
"issue": "",
"pages": "727--730",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Toru Imai, Richard Schwartz, Francis Kubala, and Long Nguyen. 1997. Improved topic discrimination of broadcast news using a model of multiple simul- taneous topics. In Proceedings of the IEEE Interna- tional Conference on Acoustics, Speech, and Signal Processing (ICASSP), pages 727-730.",
"links": null
},
"BIBREF13": {
"ref_id": "b13",
"title": "Andreas Stolcke, and Chuck Wooters",
"authors": [
{
"first": "Adam",
"middle": [],
"last": "Janin",
"suffix": ""
},
{
"first": "Don",
"middle": [],
"last": "Baron",
"suffix": ""
},
{
"first": "Jane",
"middle": [],
"last": "Edwards",
"suffix": ""
},
{
"first": "Dan",
"middle": [],
"last": "Ellis",
"suffix": ""
},
{
"first": "David",
"middle": [],
"last": "Gelbart",
"suffix": ""
},
{
"first": "Nelson",
"middle": [],
"last": "Morgan",
"suffix": ""
},
{
"first": "Barbara",
"middle": [],
"last": "Peskin",
"suffix": ""
},
{
"first": "Thilo",
"middle": [],
"last": "Pfau",
"suffix": ""
},
{
"first": "Elizabeth",
"middle": [],
"last": "Shriberg",
"suffix": ""
}
],
"year": 2003,
"venue": "Proceedings of the IEEE International Conference on Acoustics, Speech, and Signal Processing (ICASSP)",
"volume": "",
"issue": "",
"pages": "364--367",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Adam Janin, Don Baron, Jane Edwards, Dan Ellis, David Gelbart, Nelson Morgan, Barbara Peskin, Thilo Pfau, Elizabeth Shriberg, Andreas Stolcke, and Chuck Wooters. 2003. The ICSI Meeting Cor- pus. In Proceedings of the IEEE International Con- ference on Acoustics, Speech, and Signal Processing (ICASSP), pages 364-367.",
"links": null
},
"BIBREF14": {
"ref_id": "b14",
"title": "User query analysis for the specification and evaluation of a dialogue processing and retrieval system",
"authors": [
{
"first": "Agnes",
"middle": [],
"last": "Lisowska",
"suffix": ""
},
{
"first": "Andrei",
"middle": [],
"last": "Popescu-Belis",
"suffix": ""
},
{
"first": "Susan",
"middle": [],
"last": "Armstrong",
"suffix": ""
}
],
"year": 2004,
"venue": "Proceedings of the 4th International Conference on Language Resources and Evaluation",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Agnes Lisowska, Andrei Popescu-Belis, and Susan Armstrong. 2004. User query analysis for the spec- ification and evaluation of a dialogue processing and retrieval system. In Proceedings of the 4th Interna- tional Conference on Language Resources and Eval- uation.",
"links": null
},
"BIBREF15": {
"ref_id": "b15",
"title": "Automatic summarization of broadcast news using structural features",
"authors": [
{
"first": "R",
"middle": [],
"last": "Sameer",
"suffix": ""
},
{
"first": "Julia",
"middle": [],
"last": "Maskey",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Hirschberg",
"suffix": ""
}
],
"year": 2003,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Sameer R. Maskey and Julia Hirschberg. 2003. Au- tomatic summarization of broadcast news using structural features. In Eurospeech 2003, Geneva, Switzerland.",
"links": null
},
"BIBREF16": {
"ref_id": "b16",
"title": "A critique and improvement of an evaluation metric for text segmentation",
"authors": [
{
"first": "Lev",
"middle": [],
"last": "Pevzner",
"suffix": ""
},
{
"first": "Marti",
"middle": [],
"last": "Hearst",
"suffix": ""
}
],
"year": 2002,
"venue": "Computational Linguistics",
"volume": "28",
"issue": "1",
"pages": "19--36",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Lev Pevzner and Marti Hearst. 2002. A critique and improvement of an evaluation metric for text seg- mentation. Computational Linguistics, 28(1):19- 36.",
"links": null
},
"BIBREF17": {
"ref_id": "b17",
"title": "Segmentation and classification of meeting events using multiple classifier fusion and dynamic programming",
"authors": [
{
"first": "Stehpan",
"middle": [],
"last": "Reiter",
"suffix": ""
},
{
"first": "Gerhard",
"middle": [],
"last": "Rigoll",
"suffix": ""
}
],
"year": 2004,
"venue": "Proceedings of the International Conference on Pattern Recognition",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Stehpan Reiter and Gerhard Rigoll. 2004. Segmenta- tion and classification of meeting events using mul- tiple classifier fusion and dynamic programming. In Proceedings of the International Conference on Pat- tern Recognition.",
"links": null
},
"BIBREF18": {
"ref_id": "b18",
"title": "Statistical models for topic segmentation",
"authors": [
{
"first": "Jeffrey",
"middle": [],
"last": "Reynar",
"suffix": ""
}
],
"year": 1999,
"venue": "Proceedings of the 37th Annual Meeting of the Association for Computational Linguistics",
"volume": "",
"issue": "",
"pages": "357--364",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Jeffrey Reynar. 1999. Statistical models for topic seg- mentation. In Proceedings of the 37th Annual Meet- ing of the Association for Computational Linguis- tics, pages 357-364.",
"links": null
}
},
"ref_entries": {
"FIGREF0": {
"uris": null,
"type_str": "figure",
"text": "Graphical models indicating the dependencies among variables in (a) the topic segmentation model and (b) the hidden Markov model used as a comparison. where \u03b4(\u2022, \u2022) is the Dirac delta function, and \u0393(\u2022)",
"num": null
},
"FIGREF1": {
"uris": null,
"type_str": "figure",
"text": "Simulated data: A) inferred topics; B) segmentation probabilities; C) HMM version.",
"num": null
},
"TABREF1": {
"content": "<table/>",
"num": null,
"html": null,
"type_str": "table",
"text": "Results on the ICSI meeting corpus."
},
"TABREF3": {
"content": "<table/>",
"num": null,
"html": null,
"type_str": "table",
"text": "Results for Experiments 2 & 3: robustness to off-topic and ASR data."
}
}
}
} |