Benjamin Aw
Add updated pkl file v3
6fa4bc9
{
"paper_id": "Q14-1001",
"header": {
"generated_with": "S2ORC 1.0.0",
"date_generated": "2023-01-19T15:11:41.707580Z"
},
"title": "Heterogeneous Networks and Their Applications: Scientometrics, Name Disambiguation, and Topic Modeling",
"authors": [
{
"first": "Ben",
"middle": [],
"last": "King",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "EECS University of Michigan",
"location": {
"settlement": "Ann Arbor",
"region": "MI"
}
},
"email": "[email protected]"
},
{
"first": "Rahul",
"middle": [],
"last": "Jha",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "EECS University of Michigan",
"location": {
"settlement": "Ann Arbor",
"region": "MI"
}
},
"email": "[email protected]"
},
{
"first": "Dragomir",
"middle": [
"R"
],
"last": "Radev",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "University of Michigan",
"location": {
"settlement": "Ann Arbor",
"region": "MI"
}
},
"email": "[email protected]"
}
],
"year": "",
"venue": null,
"identifiers": {},
"abstract": "We present heterogeneous networks as a way to unify lexical networks with relational data. We build a unified ACL Anthology network, tying together the citation, author collaboration, and term-cooccurence networks with affiliation and venue relations. This representation proves to be convenient and allows problems such as name disambiguation, topic modeling, and the measurement of scientific impact to be easily solved using only this network and off-the-shelf graph algorithms.",
"pdf_parse": {
"paper_id": "Q14-1001",
"_pdf_hash": "",
"abstract": [
{
"text": "We present heterogeneous networks as a way to unify lexical networks with relational data. We build a unified ACL Anthology network, tying together the citation, author collaboration, and term-cooccurence networks with affiliation and venue relations. This representation proves to be convenient and allows problems such as name disambiguation, topic modeling, and the measurement of scientific impact to be easily solved using only this network and off-the-shelf graph algorithms.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Abstract",
"sec_num": null
}
],
"body_text": [
{
"text": "Graph-based methods have been used to great effect in NLP, on problems such as word sense disambiguation (Mihalcea, 2005) , summarization (Erkan and Radev, 2004) , and dependency parsing (McDonald et al., 2005) . Most previous studies of networks consider networks with only a single type of node, and in some cases using a network with a single type of node can be an oversimplified view if it ignores other types of relationships.",
"cite_spans": [
{
"start": 105,
"end": 121,
"text": "(Mihalcea, 2005)",
"ref_id": "BIBREF37"
},
{
"start": 138,
"end": 161,
"text": "(Erkan and Radev, 2004)",
"ref_id": "BIBREF15"
},
{
"start": 187,
"end": 210,
"text": "(McDonald et al., 2005)",
"ref_id": "BIBREF34"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "In this paper we will demonstrate heterogeneous networks, networks with multiple different types of nodes and edges, along with several applications of them. The applications in this paper are not presented so much as robust attempts to out-perform the current state-of-the-art, but rather attempts at being competitive against top methods with little effort beyond the construction of the heterogeneous network.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "Throughout this paper, we will use the data from the ACL Anthology Network (AAN) (Bird et al., 2008; Radev et al., 2013) , which contains additional metadata relationships not found in the ACL Anthology, as a typical heterogeneous network. The results in this paper should be generally applicable to other heterogeneous networks.",
"cite_spans": [
{
"start": 81,
"end": 100,
"text": "(Bird et al., 2008;",
"ref_id": "BIBREF4"
},
{
"start": 101,
"end": 120,
"text": "Radev et al., 2013)",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "We build a heterogeneous graph G(V, E) from AAN, where V is the set of vertices and E is the set of edges connecting vertices. A vertex can be one of five semantic types: {paper, author, venue, institution, term}. An edge can also be one of five types, each connecting different types of vertices: All of this data, except for the terms, is available for all papers in the 2009 release of AAN. Terms are extracted from titles by running TextRank (Mihalcea and Tarau, 2004) on NP-chunks from titles and manually filtering out bad terms.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Heterogeneous AAN schema",
"sec_num": "1.1"
},
{
"text": "We show the usefulness of this representation in several applications: the measurement of scientific impact (Section 2), name disambiguation (Section 3), and topic modeling (Section 4). The heterogeneous network representation provides a simple framework for combining lexical networks (like the term co-occurence network) with metadata relations from a source like AAN and allows us to begin to develop NLP-aware methods for problems like scientometrics and name disambiguation, which are not usually framed in an NLP perspective.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Heterogeneous AAN schema",
"sec_num": "1.1"
},
{
"text": "1 For a joint meeting of venues A and B publishing a paper",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Heterogeneous AAN schema",
"sec_num": "1.1"
},
{
"text": "x, two edges (x, A) and (x, B) are created.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Heterogeneous AAN schema",
"sec_num": "1.1"
},
{
"text": "2 Author-affiliation edges are weighted according to the number of papers an author has published from an institution.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Heterogeneous AAN schema",
"sec_num": "1.1"
},
{
"text": "The study of scientometrics, which attempts to quantify the scientific impact of papers, authors, etc. has received much attention recently, even within the NLP community. In the past few years, there have been many proposed measures of scientific impact based on relationships between entities. Intuitively, a model that can take into account many different types of relationships between entities should be able to measure scientific impact more accurately than simpler measures like citation counts or h-index.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Scientific Impact Measurement",
"sec_num": "2"
},
{
"text": "We propose using Pagerank on the heterogeneous AAN (Page et al., 1999) to measure scientific impact. Since changes in the network schema can affect the relative rankings between different types of entities, this method is probably not appropriate for comparing entities of two different types against each other. But between nodes of the same type, this measure is an appropriate (and as we will show, accurate) way to compare impacts.",
"cite_spans": [
{
"start": 51,
"end": 70,
"text": "(Page et al., 1999)",
"ref_id": "BIBREF44"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Scientific Impact Measurement",
"sec_num": "2"
},
{
"text": "We see this method as a first logical step in the direction of heterogeneous network-based scientometrics. This method could easily be extended to use a directed schema (Kurland and Lee, 2005) or a schema that is aware of the lexical content of citation sentences, such as sentiment-based signed networks (Hassan et al., 2012) .",
"cite_spans": [
{
"start": 169,
"end": 192,
"text": "(Kurland and Lee, 2005)",
"ref_id": "BIBREF25"
},
{
"start": 305,
"end": 326,
"text": "(Hassan et al., 2012)",
"ref_id": "BIBREF19"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Scientific Impact Measurement",
"sec_num": "2"
},
{
"text": "Determining the intrinsic quality of scientific impact measures can be difficult since there is no way to collect gold standard measurements for realworld entities. Previous studies have attempted to show that their measures give high scores to a few known high-impact entities, e.g. Nobel prize winners (Hirsch, 2005) , or have performed a statistical component analysis to find the most important measures in a group of related statistics (Bollen et al., 2009) . Our approach, instead, is to generate realistic data from synthetic entities whose impacts are known.",
"cite_spans": [
{
"start": 304,
"end": 318,
"text": "(Hirsch, 2005)",
"ref_id": "BIBREF20"
},
{
"start": 441,
"end": 462,
"text": "(Bollen et al., 2009)",
"ref_id": "BIBREF8"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Scientific Impact Measurement",
"sec_num": "2"
},
{
"text": "We had considered alternative formulations that did not rely on synthetic data, but each of them presented problems. When we attempted manual prominence annotation for AAN data, the interjudge agreement (measured by Spearman correlation) in our experiments ranged from decent (0.9 in the case of institutions) to poor (0.3 for authors) to nearly random (0.03 for terms), far too low to use in most cases. We also considered evaluating prominence measures by their ability to predict future citations to an entity. Citations are often used as a proxy for impact, but our measurements have found that correlation between past citations and future citations is too high for citation prediction to be a meaningful evaluation 3 .",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Scientific Impact Measurement",
"sec_num": "2"
},
{
"text": "In network theory, a common technique for testing network algorithms when judgments of real-world data are expensive or impossible to obtain is to test the algorithm on a synthetic network. To create such a synthetic network, the authors define a simple, but realistic generative process by which the real-world networks of interest may arise. The properties of the network are measured to ensure that it replicates certain observable behaviors of the real-world network. They can then test network algorithms to see how well they are able to recover the hidden parameters that generated the synthetic network. (Pastor-Satorras and Vespignani, 2001; Clauset et al., 2009; Karrer and Newman, 2011) We take a two-step approach to generating this synthetic data, first generating entities with known impacts, and second, linking these entities together according to their latent impacts. Our heuristic is that high impact entities should be linked to other high impact entities and vice-versa. As in the network theory literature, we must show that this data reflects important properties observed in the true AAN.",
"cite_spans": [
{
"start": 611,
"end": 649,
"text": "(Pastor-Satorras and Vespignani, 2001;",
"ref_id": "BIBREF45"
},
{
"start": 650,
"end": 671,
"text": "Clauset et al., 2009;",
"ref_id": "BIBREF12"
},
{
"start": 672,
"end": 696,
"text": "Karrer and Newman, 2011)",
"ref_id": "BIBREF23"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Creating a synthetic AAN",
"sec_num": "2.1"
},
{
"text": "One such property is that the number of citations per paper follows a power law distribution (Redner, 1998) . We observe this behavior in AAN along with several other small-world behaviors, such as a small diameter, a small average shortest path length, and a high clustering coefficient in the coauthorship graph. We strive to replicate these properties in our synthetic data.",
"cite_spans": [
{
"start": 93,
"end": 107,
"text": "(Redner, 1998)",
"ref_id": "BIBREF48"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Creating a synthetic AAN",
"sec_num": "2.1"
},
{
"text": "3 Most existing impact measurements require access to at least one year's worth of citation information. The Spearman correlation between the number of citations received after one year and after five years is 0.79 with correlation between successive years as high as 0.99. Practically this means that the measures that best correlate with citations after five years are exactly those that best correlate with citations after one year.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Creating a synthetic AAN",
"sec_num": "2.1"
},
{
"text": "Since scientific impact measures attempt to quantify the true impact of entities, we can use these measures to help understand how the true impact measures are distributed across different entities. In fact, citation counts, being a good estimate of impact, can be used to generate these latent impact variables for each entity. For each type of entity (papers, authors, institutions, venues, and terms), we create a latent impact by sampling from the appropriate citation count distribution. After sampling, all the impacts are normalized to fall in the [0, 1] interval, with the highest-impact entity of each type having a latent impact of 1. Additive smoothing is used to avoid having an impact of 0.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Creating a synthetic AAN",
"sec_num": "2.1"
},
{
"text": "Once we have created the entities, our method for placing edges is most similar to the Erd\u0151s-R\u00e9yni method for creating random graphs (Erd\u0151s and R\u00e9nyi, 1960) , in which edges are distributed uniformly at random between pairs of vertices. Instead of distributing links uniformly, links between entities are sampled proportionally to I(a)I",
"cite_spans": [
{
"start": 133,
"end": 156,
"text": "(Erd\u0151s and R\u00e9nyi, 1960)",
"ref_id": "BIBREF14"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Creating a synthetic AAN",
"sec_num": "2.1"
},
{
"text": "(b)(1 \u2212 (I(a) \u2212 I(b)) 2 ), where I(x) is the latent impact of entity x.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Creating a synthetic AAN",
"sec_num": "2.1"
},
{
"text": "We tried several other formulae that failed to replicate the properties of the real AAN. The I(a)I(b) part of the formula above reflects a preference for nodes of any type to connect with highimpact entities (e.g., major conferences receive many submissions even though most submissions will be rejected), but the 1 \u2212 (I(a) \u2212 I(b)) 2 part also reflects the reality that entities of similar prominence are most likely to attach to each other (e.g., well-known authors publish in major conferences, while less well-known authors may publish mostly in lesser-known workshops).",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Creating a synthetic AAN",
"sec_num": "2.1"
},
{
"text": "Using this distribution, we randomly sample links between papers and authors; authors and institutions; papers and venues; and papers and terms. The only exception to this was paper-to-paper citation links, for which we did not expect this same behavior to apply, as low-impact papers regularly cite high-impact papers, but not vice-versa. To model citations, we selected citing papers uniformly at random and cited papers in proportion to their impacts. (Albert and Barab\u00e1si, 2002) Finally, we generated a network equal in size to AAN, that is, with the exact same numbers of papers, authors, etc. and the exact same number of paper-author links, paper-venue links, etc. Table 1 compares the observed properties of the true AAN with the observed properties of this synthetic version of AAN. None of the statistics are exact matches, but when building random graphs, it is not uncommon for measures to differ by many orders of magnitude, so a model that has measures that are on the same order of magnitude as the observed data is generally considered to be a decent model (Newman and Park, 2003) .",
"cite_spans": [
{
"start": 455,
"end": 482,
"text": "(Albert and Barab\u00e1si, 2002)",
"ref_id": "BIBREF1"
},
{
"start": 1073,
"end": 1096,
"text": "(Newman and Park, 2003)",
"ref_id": "BIBREF42"
}
],
"ref_spans": [
{
"start": 672,
"end": 679,
"text": "Table 1",
"ref_id": null
}
],
"eq_spans": [],
"section": "Creating a synthetic AAN",
"sec_num": "2.1"
},
{
"text": "This random network is, of course, still imperfect in some regards. First of all, it has no time aspect, so it is not possible for impact to change over time, which means we cannot test against some impact measures that have a time component like CiteRank (Maslov and Redner, 2008) . Second, there are some constraints present in the real world that are not enforced here. Because the edges are randomly selected, some papers have no venues, while others have multiple venues. There is also nothing to enforce certain consistencies, such as authors publishing many papers from relatively few institutions, or repeatedly collaborating with the same authors. We had also considered using existing random graph models such as the Barab\u00e1si-Albert model ( Barab\u00e1si and Albert, 1999) , which are known to produce graphs that exhibit power law behavior. These models, however, do not provide a way to respect the latent impacts of the entities, as they add links in proportion only to the number of existing links a node has.",
"cite_spans": [
{
"start": 256,
"end": 281,
"text": "(Maslov and Redner, 2008)",
"ref_id": "BIBREF33"
},
{
"start": 751,
"end": 777,
"text": "Barab\u00e1si and Albert, 1999)",
"ref_id": "BIBREF2"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Measuring impact on the synthetic AAN",
"sec_num": "2.2"
},
{
"text": "We measure the quality of impact measures by comparing ranked lists: the ordering of the entities (Mitra, 2006) 0.334 Aggregated citation count 0.327",
"cite_spans": [
{
"start": 98,
"end": 111,
"text": "(Mitra, 2006)",
"ref_id": "BIBREF39"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Measuring impact on the synthetic AAN",
"sec_num": "2.2"
},
{
"text": "Venue measure Agreement Heterogeneous network Pagerank 0.449 h-index (Braun et al., 2006) 0.425 Aggregated citation count 0.370 Impact factor 0.092 Venue citation network Pagerank (Bollen et al., 2006) 0.366 Table 2 : Agreement of various impact measures with the true latent impact.",
"cite_spans": [
{
"start": 69,
"end": 89,
"text": "(Braun et al., 2006)",
"ref_id": "BIBREF9"
},
{
"start": 180,
"end": 201,
"text": "(Bollen et al., 2006)",
"ref_id": null
}
],
"ref_spans": [
{
"start": 208,
"end": 215,
"text": "Table 2",
"ref_id": null
}
],
"eq_spans": [],
"section": "Measuring impact on the synthetic AAN",
"sec_num": "2.2"
},
{
"text": "by their true (but hidden) impact against their ordering according to the impact measure. The agreement between these lists is measured by Kendall's Tau. Table 2 compares several well-known impact measures with our impact measure, Pagerank centrality on the heterogeneous AAN network. We find that some popular methods, such as h-index (Hirsch, 2005) are too coarse to accurately capture much of the underlying variation. There is a version of Kendall's Tau that accounts for ties, and while this metric slightly helps the coarser measures, Pagerank on the heterogeneous network is still the clear winner. When comparing different ordering methods, it is natural to wonder which of entities the orderings disagree on. In general, non-heterogeneous measures like h-index or collaboration network Pagerank, which only focus on one type of relationship can suffer when the entity in question has an important relationship of another type. For example, if an author is highly cited, but mostly works alone, his contribution would be undervalued in the collaboration network, but would be more accurate in the heterogeneous network.",
"cite_spans": [
{
"start": 336,
"end": 350,
"text": "(Hirsch, 2005)",
"ref_id": "BIBREF20"
}
],
"ref_spans": [
{
"start": 154,
"end": 161,
"text": "Table 2",
"ref_id": null
}
],
"eq_spans": [],
"section": "Measuring impact on the synthetic AAN",
"sec_num": "2.2"
},
{
"text": "The majority of the differences between the impact measures, though, tend to be in how they handle entities of low prominence. It seems that, for the most part, there is relatively little disagreement in the orderings of high-impact entities between different impact measures. That is, most highly prominent entities tend to be highly rated by most measures. But when an author or a paper, for example, only has one or two citations, it can be advantageous to look at more types of relationships than just citations. The paper may be written by an otherwise prominent author, or published at a well-known venue, and having many types of relations at its disposal can help a method like heterogeneous network Pagerank better distinguish between two low-prominence entities.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Measuring impact on the synthetic AAN",
"sec_num": "2.2"
},
{
"text": "heterogeneous network PageRank Table 3 shows the papers, authors, institutions, venues, and terms that received the highest Pagerank in the heterogeneous AAN. It is obvious that the top-ranked entities in this network are not simply the most highly cited entities. This ranking also does not have any time bias toward the entities that are currently prominent, as some of the top authors were more prolific in previous decades than at the current time. We also see this effect with COLING, which for many of the early years, is the only venue in the ACL Anthology. Table 3 : The entities of each type receiving the highest scores from the heterogeneous network Pagerank impact measure along with their respective changes in ranking when compared to a simple citation count measure.",
"cite_spans": [],
"ref_spans": [
{
"start": 31,
"end": 38,
"text": "Table 3",
"ref_id": null
},
{
"start": 565,
"end": 572,
"text": "Table 3",
"ref_id": null
}
],
"eq_spans": [],
"section": "Top-ranked entities according to",
"sec_num": "2.3"
},
{
"text": "One possible way to address this is to use a narrower time window when creating the graph, such as only including edges from the previous five years. We apply this technique in the following section.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Top-ranked entities according to",
"sec_num": "2.3"
},
{
"text": "The heterogeneous graph formalism also provides a natural way to study the evolution of impact over time, as in (Hall et al., 2008) , but at a much finer granularity. Hall et al. measured the year-by-year prominence of statistical topics, but we can measure year-by-year prominence for any entity in the graph.",
"cite_spans": [
{
"start": 112,
"end": 131,
"text": "(Hall et al., 2008)",
"ref_id": "BIBREF18"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Entity impact evolution",
"sec_num": "2.4"
},
{
"text": "To measure the evolution of impacts over the years, we iteratively create year-by-year versions of the heterogeneous AAN. Each of these graphs contains all entities along with all edges occurring in a five year window. Due to space, we cannot comprehensively exhibit this technique and the data it produces, but as a brief example, in Figure 1 , we show how the impacts of some major NLP conferences changes over time.",
"cite_spans": [],
"ref_spans": [
{
"start": 335,
"end": 343,
"text": "Figure 1",
"ref_id": "FIGREF1"
}
],
"eq_spans": [],
"section": "Entity impact evolution",
"sec_num": "2.4"
},
{
"text": "The graph shows that NAACL and EMNLP have been steadily gaining prominence since their intro-ductions, but also shows that ACL has had to make up a lot of ground since 1990 to surpass COLING. We also notice that all the major conferences have grown in impact since 2005, and believe that as the field continues to grow, the major conferences will continue to become more and more important.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Entity impact evolution",
"sec_num": "2.4"
},
{
"text": "We frame network name disambiguation in a link prediction setting (Taskar et al., 2003; Liben-Nowell and Kleinberg, 2007) . The problems of name disambiguation and link prediction share many characteristics, and we have found that if two ambiguous name nodes are close enough to be selected by a link-prediction method, then they likely correspond to the same real-world author.",
"cite_spans": [
{
"start": 66,
"end": 87,
"text": "(Taskar et al., 2003;",
"ref_id": "BIBREF56"
},
{
"start": 88,
"end": 121,
"text": "Liben-Nowell and Kleinberg, 2007)",
"ref_id": "BIBREF27"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Name Disambiguation",
"sec_num": "3"
},
{
"text": "We intend to show that the heterogeneous bibliographic network can be used to better disambiguate author names than the author collaboration network. The heterogeneous network for this problem contains papers, authors, terms, venues, and institutions. We compare several well-known network similarity measures from link prediction by transforming the Table 4 : Performance of different networks and distance measures on the author name disambiguation task. The performance measures are averaged over the sets of two, three, and four authors. Rand index is from (Rand, 1971) and NMI is an abbreviation for normalized mutual information (Strehl and Ghosh, 2003) similarities to distances and inducing clusters of authors based on these distances. We compare three distance measures: shortest path, truncated commute time (Sarkar et al., 2008) , and PropFlow (Lichtenwalter et al., 2010 ). Shortest path distance can be a useful metric for author disambiguation because it is small when two ambiguous nodes are neighbors in the graph or share a neighbor. Its downside is that it only considers one path between nodes, the shortest, and cannot take advantage of the fact that there may be many short paths between two nodes.",
"cite_spans": [
{
"start": 561,
"end": 573,
"text": "(Rand, 1971)",
"ref_id": "BIBREF47"
},
{
"start": 635,
"end": 659,
"text": "(Strehl and Ghosh, 2003)",
"ref_id": "BIBREF52"
},
{
"start": 819,
"end": 840,
"text": "(Sarkar et al., 2008)",
"ref_id": "BIBREF49"
},
{
"start": 856,
"end": 883,
"text": "(Lichtenwalter et al., 2010",
"ref_id": "BIBREF28"
}
],
"ref_spans": [
{
"start": 351,
"end": 358,
"text": "Table 4",
"ref_id": null
}
],
"eq_spans": [],
"section": "Name Disambiguation",
"sec_num": "3"
},
{
"text": "Truncated commute time is a variant of commute time where all paths longer than some threshold are truncated. The truncation threshold l should be set such that no semantically meaningful path is truncated. We use a value of ten for l in the heterogeneous graph and three in the coauthorship graph 4 . The advantage of truncated commute time over ordinary commute time is simpler calculation, as no paths longer than l need be considered. The downside of this method is that large branching factors tend to lead to less agreement between commute time and truncated commute time.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Name Disambiguation",
"sec_num": "3"
},
{
"text": "PropFlow is a quantity that measures the probability that a non-intersecting random walk starting at node a reaches node b in l steps or fewer, where l is again a threshold. As before, l should be a bound on the length of semantically meaningful paths, so we use the same values for l as with truncated commute time. Of course, PropFlow is not a metric, which is required for some clustering methods. We use the following equation to transform PropFlow to a metric: d(a, b) = 1 P ropF low(a,b) \u2212 1. With each of the distance measures, we apply the same clustering method: partitioning around medoids, with the number of clusters automatically determined using the gap statistic method (Tibshirani et al., 2001) . We create the null distribution needed for the gap statistic method by many iterations of randomly sampling distances from the complete distance matrix between all nodes in the graph. The gap statistic method automatically selects the number of clusters from two, three, or four author clusters.",
"cite_spans": [
{
"start": 685,
"end": 710,
"text": "(Tibshirani et al., 2001)",
"ref_id": "BIBREF57"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Name Disambiguation",
"sec_num": "3"
},
{
"text": "We compare our methods against GHOST (Fan et al., 2011) , a high-performance author disambiguation method based on the coauthorship graph.",
"cite_spans": [
{
"start": 37,
"end": 55,
"text": "(Fan et al., 2011)",
"ref_id": "BIBREF16"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Name Disambiguation",
"sec_num": "3"
},
{
"text": "To generate name disambiguation data, we use the pseudoword method of (Gale et al., 1992) . Specifically, we choose two or more completely random authors and conflate them by giving all instances of both authors the same name. We let each paper written by this pseudoauthor be an instance to be clustered. The clusters produced by any author disambiguation method can then be compared against the papers actually written by each of the two authors. This method, of course, relies on having all of the underlying authors completely disambiguated, which AAN provides.",
"cite_spans": [
{
"start": 70,
"end": 89,
"text": "(Gale et al., 1992)",
"ref_id": "BIBREF17"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Data",
"sec_num": "3.1"
},
{
"text": "This method is used to create 100 distambiguation sets with two authors, 100 for three authors, and 100 for four authors. Table 4 shows the performance of author name disambiguation with different networks and distance metrics. F1-score is the measure that is most often used to compare author disambiguation methods. Both PropFlow and shortest path similarity on the heterogeneous network perform quite well according this measure, as well as the other reported measures. While comparable recall can be achieved using only the coauthorship graph, the heterogeneous graph allows for much higher precision.",
"cite_spans": [],
"ref_spans": [
{
"start": 122,
"end": 129,
"text": "Table 4",
"ref_id": null
}
],
"eq_spans": [],
"section": "Data",
"sec_num": "3.1"
},
{
"text": "Here we present a topic model based entirely on graph random walks. This method is not truly a statistical model as there are no statistical parameters being learned, but rather a topic-discovery and -assignment method, attempting to solve the same problem as statistical topic models such as probabilistic latent semantic analysis (pLSA) (Hofmann, 1999) or latent Dirichlet allocation (LDA) (Blei et al., 2003) . In the absence of better terminology, we use the name random walk topic model.",
"cite_spans": [
{
"start": 339,
"end": 354,
"text": "(Hofmann, 1999)",
"ref_id": "BIBREF21"
},
{
"start": 392,
"end": 411,
"text": "(Blei et al., 2003)",
"ref_id": "BIBREF5"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Random walk topic model",
"sec_num": "4"
},
{
"text": "While this method does not have the robust mathematical foundation that statistical topic models possess, in its favor it has modularity, simplicity, and interpretability. This language model is modular as it completely separates the discovery of topics from the association of topics with entities. It is simple because it requires only a clustering algorithm and random walk algorithms, instead of complex inference algorithms. The method also does not require any modification if the topology of the network changes, whereas statistical models may need an entirely different inference procedure if, e.g., author topics are desired in addition to paper topics. Thirdly this method is easily interpretable with topics provided by clustering in the word-relatedness graph and topic association based on random walks from entities to topics.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Random walk topic model",
"sec_num": "4"
},
{
"text": "From the set of ACL anthology titles, we create two graphs: (1) a word relatedness graph by creating a weighted link between each pair of words corresponding to the PropFlow (Lichtenwalter et al., 2010) measure between them on the full heteroge-neous graph and (2) a word co-occurence graph by creating a weighted link between each pair of words corresponding to the number of titles in which both words occur.",
"cite_spans": [
{
"start": 174,
"end": 202,
"text": "(Lichtenwalter et al., 2010)",
"ref_id": "BIBREF28"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Topics from word graph clustering",
"sec_num": "4.1"
},
{
"text": "Both of these graphs are then clustered using Graph Factorization Clustering (GFC). GFC is a soft clustering algorithm for graphs that models graph edges as a mixture of latent node-cluster association variables. (Yu et al., 2006) Given a word graph G with vertices V and adjacency matrix [w] ij , GFC attempts to fit a bipartite graph K(V, U ) with adjacency matrix [b] ij onto this data, with the m nodes of U representing the clusters. Whereas in G, similarity between two words i and j can be measured with w ij , we can similarly measure their similarity in K with",
"cite_spans": [
{
"start": 213,
"end": 230,
"text": "(Yu et al., 2006)",
"ref_id": "BIBREF60"
},
{
"start": 367,
"end": 370,
"text": "[b]",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Topics from word graph clustering",
"sec_num": "4.1"
},
{
"text": "w ij = m p=1 b ip b jp \u03bbp where \u03bb p = n i=1 b ip is the degree of vertex p \u2208 U .",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Topics from word graph clustering",
"sec_num": "4.1"
},
{
"text": "Essentially the bipartite graph attempts to approximate the transition probability between i and j in G with the sum of transition probabilities from i to j through any of the m nodes in U . Yu, et al. (2006) present an algorithm for minimizing the divergence",
"cite_spans": [
{
"start": 191,
"end": 208,
"text": "Yu, et al. (2006)",
"ref_id": "BIBREF60"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Topics from word graph clustering",
"sec_num": "4.1"
},
{
"text": "distance (X, Y) = ij (x ij log x ij yij \u2212 x ij + y ij ) be- tween [w] ij and [w ] ij .",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Topics from word graph clustering",
"sec_num": "4.1"
},
{
"text": "We run GFC with this distance metric and m = 100 clusters on the word graph until convergence (change in log-likelihood < 0.1%). After convergence, the nodes in U become the clusters and the weights b ip (constrained to sum to 1 for each cluster) become the topic-word association scores.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Topics from word graph clustering",
"sec_num": "4.1"
},
{
"text": "Examples of some topics found by this method are shown in Table 5 . From manual inspection of these topics, we found them to be very much like topics created by statistical topic models. We find instances of all the types of topics listed in (Mimno et al., 2011) : chained, intruded, random, and unbalanced. For an evaluation of these topics see Section 4.3.1.",
"cite_spans": [
{
"start": 242,
"end": 262,
"text": "(Mimno et al., 2011)",
"ref_id": "BIBREF38"
}
],
"ref_spans": [
{
"start": 58,
"end": 65,
"text": "Table 5",
"ref_id": "TABREF4"
}
],
"eq_spans": [],
"section": "Topics from word graph clustering",
"sec_num": "4.1"
},
{
"text": "To associate entities with topics, we first create the heterogeneous network as in previous sections, adding links between papers and their title words, along with links between words and the topics that were discovered in the previous section. Word-topic links are also weighted according to the weights Word sense induction sense disambiguation word induction unsupervised clustering senses based similarity chinese CRFs + their applications entity named recognition random conditional fields chinese entities biomedical segmentation Dependency parsing parsing dependency projective probabilistic incremental deterministic algorithm data syntactic trees Tagging models tagging model latent markov conditional random parsing unsupervised segmentation Multi-doc summarization summarization multi document text topic based query extractive focused summaries Chinese word segmentation word segmentation chinese based alignment character tagging bakeoff model crf Lexical semantics lexical semantic distributional similarity wordnet resources lexicon acquistion semantics representation Cross-lingual IR cross lingual retrieval document language linguistic multi person multilingual coreference Generation for summar.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Entity-topic association",
"sec_num": "4.2"
},
{
"text": "sentence based compression text summarization ordering approach ranking generation Spoken language speech recognition automatic prosodic tagging spontaneous news broadcast understanding conversational French function words de la du des le automatique analyse une en pour Question answering",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Entity-topic association",
"sec_num": "4.2"
},
{
"text": "question answering system answer domain retrieval web based open systems Unsupervised learning unsupervised discovery learning induction knowledge graph acquisition concept clustering pattern SVMs for NLP support vector machines errors space classification correcting word parsing detecting MaxEnt models entropy maximum approach based attachment model models phrase prepositional disambiguation Dialogue systems dialogue spoken systems human conversational multi interaction dialogues utterances multimodal Semantic role-labeling semantic role labeling parsing syntactic features ill dependency formed framenet SMT based translation machine statistical phrase english approach learning reordering model Coreference resolution resolution coreference anaphora reference pronoun ellipsis ambiguity resolving approach pronominal Semi-and weak-supervision learning supervised semi classification active data clustering approach graph weakly Information retrieval based retrieval similarity models semantic space model distance measures document Discourse discourse relations structure rhetorical coherence temporal representation text connectives theory CFG parsing context free grammars parsing linear probabilistic rewriting grammar systems optimal Min. risk train. and decod.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Entity-topic association",
"sec_num": "4.2"
},
{
"text": "minimum efficient training error rate translation risk bayes decoding statistical Phonology phoneme conversion letter phonological grapheme rules applying transliteration syllable sound Sentiment sentiment opinion reviews classification mining polarity analysis predicting product features Neural net speech recog.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Entity-topic association",
"sec_num": "4.2"
},
{
"text": "speech robust recognition real network time neural networks language environments Finite state methods state finite transducers automata weighted translation parsing incremental minimal construction Mechanical Turk mechanical turk automatic evaluation amazon techniques data articles image scientific determined by GCF. We then simply take random walks from topics to entities and measure the proportion at which the random walk arrives at each entity of interest. These proportions become the entitytopic association scores. For example, if we wanted to find the authors most associated with topic 12, we would take a number of random walks (say 50,000) starting at topic 12 and terminating as soon as the random walk first reaches an author node. Measuring the proportion at which random walks arrive at each allows us to compute an association score between topic 12 and each author.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Entity-topic association",
"sec_num": "4.2"
},
{
"text": "A common problem in random walks on large graphs is that the walk can easily get \"lost\" between two nodes that should be very near by taking a just a few steps in the wrong direction. To keep the random walks from taking these wrong steps, we adjust the topology of the network using directed links to keep the random walks moving in the \"right\" direction. We design the graph such that if we desire a random walk from nodes of type s to nodes of type t, the random walk will never be able to follow an outgoing link that does not decrease its distance from the nodes of t.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Entity-topic association",
"sec_num": "4.2"
},
{
"text": "As shown in section 2.3, there are certain nodes at which a random walk (like Pagerank) arrives at more often than others simply because of their positions in the graph. This suggests that there may be stationary random walk distributions over entities, which we would need to adjust for in order to find the most significant entities for a topic.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Entity-topic association",
"sec_num": "4.2"
},
{
"text": "Indeed this is what we do find. As an example, if we sample topics uniformly and take random walks to author nodes, by chance we end up at Jun'ichi Tsujii on 0.3% of random walks, Eduard Hovy on 0.2% of walks, etc. These values are about 1000 times greater than would be expected at random.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Entity-topic association",
"sec_num": "4.2"
},
{
"text": "To adjust for this effect, when we take a random walk from a topic x to an entity type t, we subtract out this stationary distribution for t, which corresponds to the proportion of random walks that end at any particular entity of type t by chance, and not by virtue of the fact that the walk started at topic x. The resulting distribution yields the entities of t that are most significantly associated with topic x. Table 6 gives examples of the most significant entities for a couple of topics. ",
"cite_spans": [],
"ref_spans": [
{
"start": 418,
"end": 425,
"text": "Table 6",
"ref_id": "TABREF5"
}
],
"eq_spans": [],
"section": "Entity-topic association",
"sec_num": "4.2"
},
{
"text": "We provide two separate evaluations in this section, one of the topics alone, and one extrinstic evaluation of the entire paper-topic model. The variants of random walk topic models are compared against LDA and the relational topic model (RTM), each with 100 topics (Chang and Blei, 2010) . As RTM allows only a single type of relationship between documents, we use citations as the inter-document relationships.",
"cite_spans": [
{
"start": 266,
"end": 288,
"text": "(Chang and Blei, 2010)",
"ref_id": "BIBREF10"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Topic Model Evaluation",
"sec_num": "4.3"
},
{
"text": "The coherence of a topic is evaluated using the coherence metric introduced in (Mimno et al., 2011) . Given the top M words",
"cite_spans": [
{
"start": 79,
"end": 99,
"text": "(Mimno et al., 2011)",
"ref_id": "BIBREF38"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Topic Coherence",
"sec_num": "4.3.1"
},
{
"text": "V (t) = (v (t) 1 , ..., v (t) M",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Topic Coherence",
"sec_num": "4.3.1"
},
{
"text": ") for a topic t, the coherence of that topic can be calculated with the following formula:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Topic Coherence",
"sec_num": "4.3.1"
},
{
"text": "C(t; V (t) ) = M m=2 m\u22121 l=1 log D(v (t) m , v (t) l ) + 1 D(v (t) l )",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Topic Coherence",
"sec_num": "4.3.1"
},
{
"text": ", where D(v) is the number of documents containing v and D(v, v ) is the number of documents containing both v and v .",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Topic Coherence",
"sec_num": "4.3.1"
},
{
"text": "This measure of coherence is highly correlated with manual annotations of topic quality, with a higher coherence score corresponding to a more coherent, higher quality topic. After calculating the coherence for each of the 100 topics for RTM and the random-walk topic model, the average coherence for RTM topics was -135.2 and the average coherence for word-similarity random walk topics was -122.2, with statistical significance at p < 0.01. Figure 2 demonstrates this, showing that the word similaritybased random walk method generates several highly coherent topics. The average coherence for the LDA and the co-occurence random walk model were significantly lower.",
"cite_spans": [],
"ref_spans": [
{
"start": 443,
"end": 451,
"text": "Figure 2",
"ref_id": "FIGREF2"
}
],
"eq_spans": [],
"section": "Topic Coherence",
"sec_num": "4.3.1"
},
{
"text": "One difficulty in evaluating this random-walk topic model intrinsically against a statistical topic model like RTM is that existing evaluation measures assume certain statistical properties of the topic, for example, that the topics are generated according to a Dirichlet prior. Because of this, we choose instead to evaluate this topic model extrinsically with a downstream application. We choose an information retrieval application, returning a ranked list of similar documents, given a reference document.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Extrinsic Evaluation",
"sec_num": "4.3.2"
},
{
"text": "We evaluate five different methods: citation-RTM, LDA, the two versions of the random-walk topic model, and a simple word vector similarity baseline. Similarity between documents with the topic models are determined by cosine similarity between the topic vectors of the two documents. Word vector similarity determines the similarity between documents by taking the cosine similarity of their word vectors. From these similarity scores, a ranked list is produced.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Extrinsic Evaluation",
"sec_num": "4.3.2"
},
{
"text": "The document set for this task is the set of all papers appearing at ACL between 2000 and 2011. The top 10 results returned by each method are pooled and manually evaluated with a relevance score between 1 and 10. Thirty such result sets were manually annotated. We then evaluate each method according to its discounted cumulative gain (DCG) (J\u00e4rvelin and Kek\u00e4l\u00e4inen, 2000) .",
"cite_spans": [
{
"start": 342,
"end": 373,
"text": "(J\u00e4rvelin and Kek\u00e4l\u00e4inen, 2000)",
"ref_id": "BIBREF22"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Extrinsic Evaluation",
"sec_num": "4.3.2"
},
{
"text": "Performance of these methods is summarized in Table 7 . The co-occurence-based random walk topic model performed comparably with the best performer at this task, LDA, and there was no significant difference between the two at p < 0.05.",
"cite_spans": [],
"ref_spans": [
{
"start": 46,
"end": 53,
"text": "Table 7",
"ref_id": null
}
],
"eq_spans": [],
"section": "Extrinsic Evaluation",
"sec_num": "4.3.2"
},
{
"text": "Going forward, an important problem is to reconcile the co-occurence-and word-similarity-based formulations of this topic model, as the two formulations perform very differently in our two evaluations. Heuristically, the co-occurence model seems to create good human-readable topics, while the word-similarity model creates topics that are more mathematically-coherent, but less human-readable.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Extrinsic Evaluation",
"sec_num": "4.3.2"
},
{
"text": "Heterogeneous networks have been studied in a number of different fields, such as biology (Sioson, 2005) , transportation networks (Lozano and Method DCG Word vector 1.345 \u00b1 0.007 LDA 3.302 \u00b1 0.008 RTM 3.058 \u00b1 0.011 Random-walk (cooc) 3.295 \u00b1 0.006 Random-walk (sim) 2.761 \u00b1 0.007 Table 7 : DCG Performance of the various topic models and baselines on the related document finding task. A 95% confidence interval is provided.",
"cite_spans": [
{
"start": 90,
"end": 104,
"text": "(Sioson, 2005)",
"ref_id": "BIBREF50"
},
{
"start": 131,
"end": 142,
"text": "(Lozano and",
"ref_id": null
},
{
"start": 249,
"end": 266,
"text": "Random-walk (sim)",
"ref_id": null
}
],
"ref_spans": [
{
"start": 281,
"end": 288,
"text": "Table 7",
"ref_id": null
}
],
"eq_spans": [],
"section": "Related Work",
"sec_num": "5"
},
{
"text": "Storchi, 2002), social networks (Lambiotte and Ausloos, 2006) , and bibliographic networks (Sun et al., 2011) . These networks are also sometimes known by the name complex networks or multimodal networks, but both these terms have other connotations. We prefer \"heterogeneous networks\" as used by Sun et al. (2009) . There has also been some study of these networks in general, in community detection (Murata, 2010) , clustering (Long et al., 2008; Sun et al., 2012) , and data mining (Muthukrishnan et al., 2010) , but there has not yet been any comprehensive study. Recently, NLP has seen several uses of heterogeneous networks (though not by that name) for use with label propagation algorithms (Das and Petrov, 2011; Speriosu et al., 2011) and random walks (Toutanova et al., 2004; Kok and Brockett, 2010) .",
"cite_spans": [
{
"start": 32,
"end": 61,
"text": "(Lambiotte and Ausloos, 2006)",
"ref_id": "BIBREF26"
},
{
"start": 91,
"end": 109,
"text": "(Sun et al., 2011)",
"ref_id": "BIBREF54"
},
{
"start": 297,
"end": 314,
"text": "Sun et al. (2009)",
"ref_id": "BIBREF53"
},
{
"start": 401,
"end": 415,
"text": "(Murata, 2010)",
"ref_id": "BIBREF40"
},
{
"start": 429,
"end": 448,
"text": "(Long et al., 2008;",
"ref_id": "BIBREF30"
},
{
"start": 449,
"end": 466,
"text": "Sun et al., 2012)",
"ref_id": "BIBREF55"
},
{
"start": 485,
"end": 513,
"text": "(Muthukrishnan et al., 2010)",
"ref_id": "BIBREF41"
},
{
"start": 698,
"end": 720,
"text": "(Das and Petrov, 2011;",
"ref_id": "BIBREF13"
},
{
"start": 721,
"end": 743,
"text": "Speriosu et al., 2011)",
"ref_id": "BIBREF51"
},
{
"start": 761,
"end": 785,
"text": "(Toutanova et al., 2004;",
"ref_id": "BIBREF58"
},
{
"start": 786,
"end": 809,
"text": "Kok and Brockett, 2010)",
"ref_id": "BIBREF24"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Related Work",
"sec_num": "5"
},
{
"text": "Several authors have proposed the idea of using network centrality measures to rank the impacts of journals, authors, papers, etc. (Bollen et al., 2006; Bergstrom et al., 2008; Chen et al., 2007; Liu et al., 2005) , and it has even been proposed that centrality can be applicable in bipartite networks (Zhou et al., 2007) . We propose that Pagerank on any general heterogeneous network is appropriate for creating ranked lists for each type of entity. Most previous papers also lack a robust evaluation, demonstrating agreement with previous methods or with some external awards or recognitions. We use a random graph that replicates the properties of the real-world network to show that Pagerank on the heterogeneous network outperforms other methods.",
"cite_spans": [
{
"start": 131,
"end": 152,
"text": "(Bollen et al., 2006;",
"ref_id": null
},
{
"start": 153,
"end": 176,
"text": "Bergstrom et al., 2008;",
"ref_id": "BIBREF3"
},
{
"start": 177,
"end": 195,
"text": "Chen et al., 2007;",
"ref_id": "BIBREF11"
},
{
"start": 196,
"end": 213,
"text": "Liu et al., 2005)",
"ref_id": "BIBREF29"
},
{
"start": 302,
"end": 321,
"text": "(Zhou et al., 2007)",
"ref_id": "BIBREF61"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Related Work",
"sec_num": "5"
},
{
"text": "Name disambiguation has been studied in a number of different settings, including graph-based settings. It is common to use the coauthorship graph (Kang et al., 2009; Fan et al., 2011) , but authors have also used lexical similarity graphs , citation graphs (McRae-Spencer and Shadbolt, 2006) , or social networks (Malin, 2005) . Almost all graph methods are unsupervised.",
"cite_spans": [
{
"start": 147,
"end": 166,
"text": "(Kang et al., 2009;",
"ref_id": null
},
{
"start": 167,
"end": 184,
"text": "Fan et al., 2011)",
"ref_id": "BIBREF16"
},
{
"start": 258,
"end": 292,
"text": "(McRae-Spencer and Shadbolt, 2006)",
"ref_id": "BIBREF35"
},
{
"start": 314,
"end": 327,
"text": "(Malin, 2005)",
"ref_id": "BIBREF32"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Related Work",
"sec_num": "5"
},
{
"text": "There have been some topic models developed specifically for relational data (Wang et al., 2006; Airoldi et al., 2008) , but both of these models have limitations in the types of relational data they are able to model. The group topic model described in (Wang et al., 2006) is able to create stronger topics by considering associations between words, events, and entities, but is very coarse in the way it handles the behavior of entities, and does not generalize to multiple different types of entities. The stochastic blockmodel of (Airoldi et al., 2008) can create blocks of similar entities in a graph and is general in the types of graphs it can handle, but produces less meaningful results on graphs that have specific schemas.",
"cite_spans": [
{
"start": 77,
"end": 96,
"text": "(Wang et al., 2006;",
"ref_id": "BIBREF59"
},
{
"start": 97,
"end": 118,
"text": "Airoldi et al., 2008)",
"ref_id": "BIBREF0"
},
{
"start": 254,
"end": 273,
"text": "(Wang et al., 2006)",
"ref_id": "BIBREF59"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Related Work",
"sec_num": "5"
},
{
"text": "In this paper, we present a heterogeneous network treatment of the ACL Anthology Network and demonstrate several applications of it. Using only off-the-shelf graph algorithms with a single data representation, the heterogeneous AAN, we are able to very easily build a scientific impact measure that is more accurate than existing measures, an author disambiguation system better than existing graph-based author disambiguation systems, and a random-walkbased topic model that is competitive with statistical topic models.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Conclusion and Future Directions",
"sec_num": "6"
},
{
"text": "While there are many other tasks, such as citationbased summarization, that could likely be approached using this framework with the appropriate addition of new types of nodes into the heterogeneous AAN network, there are even some potential synergies between the tasks described in this paper that have yet to be explored. For example, we may consider that the methods of the author disambiguation or topic modeling tasks could be to find the highest-impact papers associated with a term (for survey generation, perhaps) or high-impact authors associated with a workshop's topic (to select good reviewers for it). We believe that heterogeneous graphs are a flexible framework that will allow re-searchers to find simple, flexible solutions for a variety of problems.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Conclusion and Future Directions",
"sec_num": "6"
},
{
"text": "This is a standard coauthorship graph with the edge weights equal to the number of publications shared between authors. The heterogeneous network does not have author-to-author links, as authors are linked by paper nodes.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
}
],
"back_matter": [
{
"text": "This research is supported by the Intelligence Advanced Research Projects Activity (IARPA) via Department of Interior National Business Center (DoI/NBC) contract number D11PC20153. The U.S. Government is authorized to reproduce and distribute reprints for Governmental purposes notwithstanding any copyright annotation thereon. Disclaimer: The views and conclusions contained herein are those of the authors and should not be interpreted as necessarily representing the official policies or endorsements, either expressed or implied, of IARPA, DoI/NBC, or the U.S. Government.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Acknowledgments",
"sec_num": null
}
],
"bib_entries": {
"BIBREF0": {
"ref_id": "b0",
"title": "Mixed membership stochastic blockmodels",
"authors": [
{
"first": "M",
"middle": [],
"last": "Edoardo",
"suffix": ""
},
{
"first": "David",
"middle": [
"M"
],
"last": "Airoldi",
"suffix": ""
},
{
"first": "Stephen",
"middle": [
"E"
],
"last": "Blei",
"suffix": ""
},
{
"first": "Eric",
"middle": [
"P"
],
"last": "Fienberg",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Xing",
"suffix": ""
}
],
"year": 2008,
"venue": "The Journal of Machine Learning Research",
"volume": "9",
"issue": "",
"pages": "1981--2014",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Edoardo M. Airoldi, David M. Blei, Stephen E. Fienberg, and Eric P. Xing. 2008. Mixed membership stochastic blockmodels. The Journal of Machine Learning Re- search, 9:1981-2014.",
"links": null
},
"BIBREF1": {
"ref_id": "b1",
"title": "Statistical mechanics of complex networks. Reviews of modern physics",
"authors": [
{
"first": "R\u00e9ka",
"middle": [],
"last": "Albert",
"suffix": ""
},
{
"first": "Albert-L\u00e1szl\u00f3",
"middle": [],
"last": "Barab\u00e1si",
"suffix": ""
}
],
"year": 2002,
"venue": "",
"volume": "74",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "R\u00e9ka Albert and Albert-L\u00e1szl\u00f3 Barab\u00e1si. 2002. Statisti- cal mechanics of complex networks. Reviews of mod- ern physics, 74(1):47.",
"links": null
},
"BIBREF2": {
"ref_id": "b2",
"title": "Emergence of scaling in random networks",
"authors": [
{
"first": "A",
"middle": [
"L"
],
"last": "Barab\u00e1si",
"suffix": ""
},
{
"first": "R",
"middle": [],
"last": "Albert",
"suffix": ""
}
],
"year": 1999,
"venue": "Science",
"volume": "286",
"issue": "5439",
"pages": "509--512",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "A.L. Barab\u00e1si and R. Albert. 1999. Emergence of scal- ing in random networks. Science, 286(5439):509-512.",
"links": null
},
"BIBREF3": {
"ref_id": "b3",
"title": "The eigenfactor metrics",
"authors": [
{
"first": "Carl",
"middle": [
"T"
],
"last": "Bergstrom",
"suffix": ""
},
{
"first": "Jevin",
"middle": [
"D"
],
"last": "West",
"suffix": ""
},
{
"first": "Marc",
"middle": [
"A"
],
"last": "Wiseman",
"suffix": ""
}
],
"year": 2008,
"venue": "The Journal of Neuroscience",
"volume": "28",
"issue": "45",
"pages": "11433--11434",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Carl T. Bergstrom, Jevin D. West, and Marc A. Wiseman. 2008. The eigenfactor metrics. The Journal of Neuro- science, 28(45):11433-11434.",
"links": null
},
"BIBREF4": {
"ref_id": "b4",
"title": "The ACL anthology reference corpus: A reference dataset for bibliographic research in computational linguistics",
"authors": [
{
"first": "Steven",
"middle": [],
"last": "Bird",
"suffix": ""
},
{
"first": "Robert",
"middle": [],
"last": "Dale",
"suffix": ""
},
{
"first": "J",
"middle": [],
"last": "Bonnie",
"suffix": ""
},
{
"first": "Bryan",
"middle": [],
"last": "Dorr",
"suffix": ""
},
{
"first": "Mark",
"middle": [],
"last": "Gibson",
"suffix": ""
},
{
"first": "Min-Yen",
"middle": [],
"last": "Joseph",
"suffix": ""
},
{
"first": "Dongwon",
"middle": [],
"last": "Kan",
"suffix": ""
},
{
"first": "Brett",
"middle": [],
"last": "Lee",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Powley",
"suffix": ""
},
{
"first": "Yee",
"middle": [
"Fan"
],
"last": "Dragomir R Radev",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Tan",
"suffix": ""
}
],
"year": 2008,
"venue": "Proc. of the 6th International Conference on Language Resources and Evaluation Conference (LREC08)",
"volume": "",
"issue": "",
"pages": "1755--1759",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Steven Bird, Robert Dale, Bonnie J Dorr, Bryan Gib- son, Mark Joseph, Min-Yen Kan, Dongwon Lee, Brett Powley, Dragomir R Radev, and Yee Fan Tan. 2008. The ACL anthology reference corpus: A reference dataset for bibliographic research in computational lin- guistics. In Proc. of the 6th International Conference on Language Resources and Evaluation Conference (LREC08), pages 1755-1759.",
"links": null
},
"BIBREF5": {
"ref_id": "b5",
"title": "Latent dirichlet allocation. the",
"authors": [
{
"first": "D",
"middle": [
"M"
],
"last": "Blei",
"suffix": ""
},
{
"first": "A",
"middle": [
"Y"
],
"last": "Ng",
"suffix": ""
},
{
"first": "M",
"middle": [
"I"
],
"last": "Jordan",
"suffix": ""
}
],
"year": 2003,
"venue": "Journal of machine Learning research",
"volume": "3",
"issue": "",
"pages": "993--1022",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "D.M. Blei, A.Y. Ng, and M.I. Jordan. 2003. Latent dirichlet allocation. the Journal of machine Learning research, 3:993-1022.",
"links": null
},
"BIBREF8": {
"ref_id": "b8",
"title": "A principal component analysis of 39 scientific impact measures",
"authors": [
{
"first": "Johan",
"middle": [],
"last": "Bollen",
"suffix": ""
},
{
"first": "Herbert",
"middle": [],
"last": "Van De Sompel",
"suffix": ""
},
{
"first": "Aric",
"middle": [],
"last": "Hagberg",
"suffix": ""
},
{
"first": "Ryan",
"middle": [],
"last": "Chute",
"suffix": ""
}
],
"year": 2009,
"venue": "PloS one",
"volume": "4",
"issue": "6",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Johan Bollen, Herbert Van de Sompel, Aric Hagberg, and Ryan Chute. 2009. A principal component analysis of 39 scientific impact measures. PloS one, 4(6):e6022.",
"links": null
},
"BIBREF9": {
"ref_id": "b9",
"title": "A hirsch-type index for journals",
"authors": [
{
"first": "Tibor",
"middle": [],
"last": "Braun",
"suffix": ""
},
{
"first": "Wolfgang",
"middle": [],
"last": "Gl\u00e4nzel",
"suffix": ""
},
{
"first": "Andr\u00e1s",
"middle": [],
"last": "Schubert",
"suffix": ""
}
],
"year": 2006,
"venue": "Scientometrics",
"volume": "69",
"issue": "1",
"pages": "169--173",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Tibor Braun, Wolfgang Gl\u00e4nzel, and Andr\u00e1s Schubert. 2006. A hirsch-type index for journals. Scientomet- rics, 69(1):169-173.",
"links": null
},
"BIBREF10": {
"ref_id": "b10",
"title": "Hierarchical relational models for document networks",
"authors": [
{
"first": "Jonathan",
"middle": [],
"last": "Chang",
"suffix": ""
},
{
"first": "M",
"middle": [],
"last": "David",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Blei",
"suffix": ""
}
],
"year": 2010,
"venue": "The Annals of Applied Statistics",
"volume": "4",
"issue": "1",
"pages": "124--150",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Jonathan Chang and David M Blei. 2010. Hierarchical relational models for document networks. The Annals of Applied Statistics, 4(1):124-150.",
"links": null
},
"BIBREF11": {
"ref_id": "b11",
"title": "Finding scientific gems with googles pagerank algorithm",
"authors": [
{
"first": "Peng",
"middle": [],
"last": "Chen",
"suffix": ""
},
{
"first": "Huafeng",
"middle": [],
"last": "Xie",
"suffix": ""
},
{
"first": "Sergei",
"middle": [],
"last": "Maslov",
"suffix": ""
},
{
"first": "Sid",
"middle": [],
"last": "Redner",
"suffix": ""
}
],
"year": 2007,
"venue": "Journal of Informetrics",
"volume": "1",
"issue": "1",
"pages": "8--15",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Peng Chen, Huafeng Xie, Sergei Maslov, and Sid Redner. 2007. Finding scientific gems with googles pagerank algorithm. Journal of Informetrics, 1(1):8-15.",
"links": null
},
"BIBREF12": {
"ref_id": "b12",
"title": "Power-law distributions in empirical data",
"authors": [
{
"first": "Aaron",
"middle": [],
"last": "Clauset",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Cosma Rohilla Shalizi",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Mark",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Newman",
"suffix": ""
}
],
"year": 2009,
"venue": "SIAM review",
"volume": "51",
"issue": "4",
"pages": "661--703",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Aaron Clauset, Cosma Rohilla Shalizi, and Mark EJ Newman. 2009. Power-law distributions in empirical data. SIAM review, 51(4):661-703.",
"links": null
},
"BIBREF13": {
"ref_id": "b13",
"title": "Unsupervised partof-speech tagging with bilingual graph-based projections",
"authors": [
{
"first": "Dipanjan",
"middle": [],
"last": "Das",
"suffix": ""
},
{
"first": "Slav",
"middle": [],
"last": "Petrov",
"suffix": ""
}
],
"year": 2011,
"venue": "Proceedings of the 49th Annual Meeting of the Association for Computational Linguistics: Human Language Technologies",
"volume": "",
"issue": "",
"pages": "600--609",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Dipanjan Das and Slav Petrov. 2011. Unsupervised part- of-speech tagging with bilingual graph-based projec- tions. In Proceedings of the 49th Annual Meeting of the Association for Computational Linguistics: Hu- man Language Technologies, pages 600-609.",
"links": null
},
"BIBREF14": {
"ref_id": "b14",
"title": "On the evolution of random graphs",
"authors": [
{
"first": "Paul",
"middle": [],
"last": "Erd\u0151s",
"suffix": ""
},
{
"first": "Alfr\u00e9d",
"middle": [],
"last": "R\u00e9nyi",
"suffix": ""
}
],
"year": 1960,
"venue": "Magyar Tud. Akad. Mat. Kutat\u00f3 Int. K\u00f6zl",
"volume": "5",
"issue": "",
"pages": "17--61",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Paul Erd\u0151s and Alfr\u00e9d R\u00e9nyi. 1960. On the evolution of random graphs. Magyar Tud. Akad. Mat. Kutat\u00f3 Int. K\u00f6zl, 5:17-61.",
"links": null
},
"BIBREF15": {
"ref_id": "b15",
"title": "Lexrank: Graph-based lexical centrality as salience in text summarization",
"authors": [
{
"first": "G\u00fcnes",
"middle": [],
"last": "Erkan",
"suffix": ""
},
{
"first": "Dragomir",
"middle": [
"R"
],
"last": "Radev",
"suffix": ""
}
],
"year": 2004,
"venue": "J. Artif. Intell. Res. (JAIR)",
"volume": "22",
"issue": "",
"pages": "457--479",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "G\u00fcnes Erkan and Dragomir R. Radev. 2004. Lexrank: Graph-based lexical centrality as salience in text sum- marization. J. Artif. Intell. Res. (JAIR), 22:457-479.",
"links": null
},
"BIBREF16": {
"ref_id": "b16",
"title": "On graph-based name disambiguation",
"authors": [
{
"first": "Xiaoming",
"middle": [],
"last": "Fan",
"suffix": ""
},
{
"first": "Jianyong",
"middle": [],
"last": "Wang",
"suffix": ""
},
{
"first": "Xu",
"middle": [],
"last": "Pu",
"suffix": ""
},
{
"first": "Lizhu",
"middle": [],
"last": "Zhou",
"suffix": ""
},
{
"first": "Bing",
"middle": [],
"last": "Lv",
"suffix": ""
}
],
"year": 2011,
"venue": "J. Data and Information Quality",
"volume": "2",
"issue": "2",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Xiaoming Fan, Jianyong Wang, Xu Pu, Lizhu Zhou, and Bing Lv. 2011. On graph-based name disambigua- tion. J. Data and Information Quality, 2(2):10:1- 10:23, February.",
"links": null
},
"BIBREF17": {
"ref_id": "b17",
"title": "Work on statistical methods for word sense disambiguation",
"authors": [
{
"first": "William",
"middle": [
"A"
],
"last": "Gale",
"suffix": ""
},
{
"first": "Kenneth",
"middle": [
"W"
],
"last": "Church",
"suffix": ""
},
{
"first": "David",
"middle": [],
"last": "Yarowsky",
"suffix": ""
}
],
"year": 1992,
"venue": "Working Notes of the AAAI Fall Symposium on Probabilistic Approaches to Natural Language",
"volume": "54",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "William A. Gale, Kenneth W. Church, and David Yarowsky. 1992. Work on statistical methods for word sense disambiguation. In Working Notes of the AAAI Fall Symposium on Probabilistic Approaches to Natu- ral Language, volume 54, page 60.",
"links": null
},
"BIBREF18": {
"ref_id": "b18",
"title": "Studying the history of ideas using topic models",
"authors": [
{
"first": "David",
"middle": [],
"last": "Hall",
"suffix": ""
},
{
"first": "Daniel",
"middle": [],
"last": "Jurafsky",
"suffix": ""
},
{
"first": "Christopher",
"middle": [
"D"
],
"last": "Manning",
"suffix": ""
}
],
"year": 2008,
"venue": "Proceedings of the Conference on Empirical Methods in Natural Language Processing",
"volume": "",
"issue": "",
"pages": "363--371",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "David Hall, Daniel Jurafsky, and Christopher D. Man- ning. 2008. Studying the history of ideas using topic models. In Proceedings of the Conference on Empir- ical Methods in Natural Language Processing, pages 363-371. ACL.",
"links": null
},
"BIBREF19": {
"ref_id": "b19",
"title": "Extracting signed social networks from text",
"authors": [
{
"first": "Ahmed",
"middle": [],
"last": "Hassan",
"suffix": ""
},
{
"first": "Amjad",
"middle": [],
"last": "Abu-Jbara",
"suffix": ""
},
{
"first": "Dragomir",
"middle": [],
"last": "Radev",
"suffix": ""
}
],
"year": 2012,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Ahmed Hassan, Amjad Abu-Jbara, and Dragomir Radev. 2012. Extracting signed social networks from text. TextGraphs-7, page 6.",
"links": null
},
"BIBREF20": {
"ref_id": "b20",
"title": "An index to quantify an individual's scientific research output",
"authors": [
{
"first": "Jorge",
"middle": [
"E"
],
"last": "Hirsch",
"suffix": ""
}
],
"year": 2005,
"venue": "Proceedings of the National Academy of Sciences of the United states of America",
"volume": "102",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Jorge E. Hirsch. 2005. An index to quantify an indi- vidual's scientific research output. Proceedings of the National Academy of Sciences of the United states of America, 102(46):16569.",
"links": null
},
"BIBREF21": {
"ref_id": "b21",
"title": "Probabilistic latent semantic indexing",
"authors": [
{
"first": "Thomas",
"middle": [],
"last": "Hofmann",
"suffix": ""
}
],
"year": 1999,
"venue": "Proceedings of the 22nd annual international ACM SIGIR conference on Research and development in information retrieval",
"volume": "",
"issue": "",
"pages": "50--57",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Thomas Hofmann. 1999. Probabilistic latent semantic indexing. In Proceedings of the 22nd annual interna- tional ACM SIGIR conference on Research and devel- opment in information retrieval, pages 50-57. ACM.",
"links": null
},
"BIBREF22": {
"ref_id": "b22",
"title": "IR evaluation methods for retrieving highly relevant documents",
"authors": [
{
"first": "Kalervo",
"middle": [],
"last": "J\u00e4rvelin",
"suffix": ""
},
{
"first": "Jaana",
"middle": [],
"last": "Kek\u00e4l\u00e4inen",
"suffix": ""
}
],
"year": 2000,
"venue": "Proceedings of the 23rd annual international ACM SIGIR conference on Research and development in information retrieval",
"volume": "45",
"issue": "",
"pages": "84--97",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Kalervo J\u00e4rvelin and Jaana Kek\u00e4l\u00e4inen. 2000. IR evalua- tion methods for retrieving highly relevant documents. In Proceedings of the 23rd annual international ACM SIGIR conference on Research and development in in- formation retrieval, pages 41-48. ACM. In-Su Kang, Seung-Hoon Na, Seungwoo Lee, Hanmin Jung, Pyung Kim, Won-Kyung Sung, and Jong-Hyeok Lee. 2009. On co-authorship for author disam- biguation. Information Processing & Management, 45(1):84-97.",
"links": null
},
"BIBREF23": {
"ref_id": "b23",
"title": "Stochastic blockmodels and community structure in networks",
"authors": [
{
"first": "Brian",
"middle": [],
"last": "Karrer",
"suffix": ""
},
{
"first": "E",
"middle": [
"J"
],
"last": "Mark",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Newman",
"suffix": ""
}
],
"year": 2011,
"venue": "Physical Review E",
"volume": "83",
"issue": "1",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Brian Karrer and Mark EJ Newman. 2011. Stochas- tic blockmodels and community structure in networks. Physical Review E, 83(1):016107.",
"links": null
},
"BIBREF24": {
"ref_id": "b24",
"title": "Hitting the right paraphrases in good time",
"authors": [
{
"first": "Stanley",
"middle": [],
"last": "Kok",
"suffix": ""
},
{
"first": "Chris",
"middle": [],
"last": "Brockett",
"suffix": ""
}
],
"year": 2010,
"venue": "Human Language Technologies: The 2010 Annual Conference of the North American Chapter of the Association for Computational Linguistics",
"volume": "",
"issue": "",
"pages": "145--153",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Stanley Kok and Chris Brockett. 2010. Hitting the right paraphrases in good time. In Human Language Tech- nologies: The 2010 Annual Conference of the North American Chapter of the Association for Computa- tional Linguistics, pages 145-153. ACL.",
"links": null
},
"BIBREF25": {
"ref_id": "b25",
"title": "Pagerank without hyperlinks: Structural reranking using links induced by language models",
"authors": [
{
"first": "Oren",
"middle": [],
"last": "Kurland",
"suffix": ""
},
{
"first": "Lillian",
"middle": [],
"last": "Lee",
"suffix": ""
}
],
"year": 2005,
"venue": "SIGIR '05",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Oren Kurland and Lillian Lee. 2005. Pagerank without hyperlinks: Structural reranking using links induced by language models. In SIGIR '05.",
"links": null
},
"BIBREF26": {
"ref_id": "b26",
"title": "Collaborative tagging as a tripartite network",
"authors": [
{
"first": "Renaud",
"middle": [],
"last": "Lambiotte",
"suffix": ""
},
{
"first": "Marcel",
"middle": [],
"last": "Ausloos",
"suffix": ""
}
],
"year": 2006,
"venue": "Computational Science-ICCS",
"volume": "",
"issue": "",
"pages": "1114--1117",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Renaud Lambiotte and Marcel Ausloos. 2006. Collabo- rative tagging as a tripartite network. Computational Science-ICCS 2006, pages 1114-1117.",
"links": null
},
"BIBREF27": {
"ref_id": "b27",
"title": "The linkprediction problem for social networks",
"authors": [
{
"first": "David",
"middle": [],
"last": "Liben",
"suffix": ""
},
{
"first": "-",
"middle": [],
"last": "Nowell",
"suffix": ""
},
{
"first": "Jon",
"middle": [],
"last": "Kleinberg",
"suffix": ""
}
],
"year": 2007,
"venue": "Journal of the American society for information science and technology",
"volume": "58",
"issue": "7",
"pages": "1019--1031",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "David Liben-Nowell and Jon Kleinberg. 2007. The link- prediction problem for social networks. Journal of the American society for information science and technol- ogy, 58(7):1019-1031.",
"links": null
},
"BIBREF28": {
"ref_id": "b28",
"title": "New perspectives and methods in link prediction",
"authors": [
{
"first": "R",
"middle": [
"N"
],
"last": "Lichtenwalter",
"suffix": ""
},
{
"first": "J",
"middle": [
"T"
],
"last": "Lussier",
"suffix": ""
},
{
"first": "N",
"middle": [
"V"
],
"last": "Chawla",
"suffix": ""
}
],
"year": 2010,
"venue": "Proceedings of the 16th ACM SIGKDD international conference on Knowledge discovery and data mining",
"volume": "",
"issue": "",
"pages": "243--252",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "R.N. Lichtenwalter, J.T. Lussier, and N.V. Chawla. 2010. New perspectives and methods in link prediction. In Proceedings of the 16th ACM SIGKDD international conference on Knowledge discovery and data mining, pages 243-252. ACM.",
"links": null
},
"BIBREF29": {
"ref_id": "b29",
"title": "Co-authorship networks in the digital library research community. Information processing & management",
"authors": [
{
"first": "Xiaoming",
"middle": [],
"last": "Liu",
"suffix": ""
},
{
"first": "Johan",
"middle": [],
"last": "Bollen",
"suffix": ""
},
{
"first": "Michael",
"middle": [
"L"
],
"last": "Nelson",
"suffix": ""
},
{
"first": "Herbert",
"middle": [],
"last": "Van De Sompel",
"suffix": ""
}
],
"year": 2005,
"venue": "",
"volume": "41",
"issue": "",
"pages": "1462--1480",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Xiaoming Liu, Johan Bollen, Michael L. Nelson, and Herbert Van de Sompel. 2005. Co-authorship net- works in the digital library research community. Infor- mation processing & management, 41(6):1462-1480.",
"links": null
},
"BIBREF30": {
"ref_id": "b30",
"title": "Clustering on complex graphs",
"authors": [
{
"first": "Bo",
"middle": [],
"last": "Long",
"suffix": ""
},
{
"first": "Zhongfei",
"middle": [],
"last": "Zhang",
"suffix": ""
},
{
"first": "Tianbing",
"middle": [],
"last": "Xu",
"suffix": ""
}
],
"year": 2008,
"venue": "Proc. the 23rd Conf. AAAI",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Bo Long, Zhongfei Zhang, and Tianbing Xu. 2008. Clustering on complex graphs. In Proc. the 23rd Conf. AAAI 2008.",
"links": null
},
"BIBREF31": {
"ref_id": "b31",
"title": "Shortest viable hyperpath in multimodal networks",
"authors": [
{
"first": "Angelica",
"middle": [],
"last": "Lozano",
"suffix": ""
},
{
"first": "Giovanni",
"middle": [],
"last": "Storchi",
"suffix": ""
}
],
"year": 2002,
"venue": "Transportation Research Part B: Methodological",
"volume": "36",
"issue": "10",
"pages": "853--874",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Angelica Lozano and Giovanni Storchi. 2002. Shortest viable hyperpath in multimodal networks. Transporta- tion Research Part B: Methodological, 36(10):853- 874.",
"links": null
},
"BIBREF32": {
"ref_id": "b32",
"title": "Unsupervised name disambiguation via social network similarity",
"authors": [
{
"first": "",
"middle": [],
"last": "Bradley Malin",
"suffix": ""
}
],
"year": 2005,
"venue": "Workshop on Link Analysis, Counterterrorism, and Security",
"volume": "",
"issue": "",
"pages": "93--102",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Bradley Malin. 2005. Unsupervised name disambigua- tion via social network similarity. In Workshop on Link Analysis, Counterterrorism, and Security, vol- ume 1401, pages 93-102.",
"links": null
},
"BIBREF33": {
"ref_id": "b33",
"title": "Promise and pitfalls of extending google's pagerank algorithm to citation networks",
"authors": [
{
"first": "Sergei",
"middle": [],
"last": "Maslov",
"suffix": ""
},
{
"first": "Sidney",
"middle": [],
"last": "Redner",
"suffix": ""
}
],
"year": 2008,
"venue": "The Journal of Neuroscience",
"volume": "28",
"issue": "44",
"pages": "11103--11105",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Sergei Maslov and Sidney Redner. 2008. Promise and pitfalls of extending google's pagerank algorithm to citation networks. The Journal of Neuroscience, 28(44):11103-11105.",
"links": null
},
"BIBREF34": {
"ref_id": "b34",
"title": "Non-projective dependency parsing using spanning tree algorithms",
"authors": [
{
"first": "Ryan",
"middle": [],
"last": "Mcdonald",
"suffix": ""
},
{
"first": "Fernando",
"middle": [],
"last": "Pereira",
"suffix": ""
},
{
"first": "Kiril",
"middle": [],
"last": "Ribarov",
"suffix": ""
}
],
"year": 2005,
"venue": "Proceedings of the conference on Human Language Technology and Empirical Methods in Natural Language Processing",
"volume": "",
"issue": "",
"pages": "523--530",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Ryan McDonald, Fernando Pereira, Kiril Ribarov, and Jan Haji\u010d. 2005. Non-projective dependency pars- ing using spanning tree algorithms. In Proceedings of the conference on Human Language Technology and Empirical Methods in Natural Language Processing, pages 523-530. ACL.",
"links": null
},
"BIBREF35": {
"ref_id": "b35",
"title": "Also by the same author: Aktiveauthor, a citation graph approach to name disambiguation",
"authors": [
{
"first": "M",
"middle": [],
"last": "Duncan",
"suffix": ""
},
{
"first": "Nigel",
"middle": [
"R"
],
"last": "Mcrae-Spencer",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Shadbolt",
"suffix": ""
}
],
"year": 2006,
"venue": "Proceedings of the 6th ACM/IEEE-CS joint conference on Digital libraries",
"volume": "",
"issue": "",
"pages": "53--54",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Duncan M. McRae-Spencer and Nigel R. Shadbolt. 2006. Also by the same author: Aktiveauthor, a cita- tion graph approach to name disambiguation. In Pro- ceedings of the 6th ACM/IEEE-CS joint conference on Digital libraries, pages 53-54. ACM.",
"links": null
},
"BIBREF36": {
"ref_id": "b36",
"title": "Textrank: Bringing order into texts",
"authors": [
{
"first": "Rada",
"middle": [],
"last": "Mihalcea",
"suffix": ""
},
{
"first": "Paul",
"middle": [],
"last": "Tarau",
"suffix": ""
}
],
"year": 2004,
"venue": "Proceedings of EMNLP",
"volume": "4",
"issue": "",
"pages": "404--411",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Rada Mihalcea and Paul Tarau. 2004. Textrank: Bring- ing order into texts. In Proceedings of EMNLP, vol- ume 4, pages 404-411. Barcelona, Spain.",
"links": null
},
"BIBREF37": {
"ref_id": "b37",
"title": "Unsupervised large-vocabulary word sense disambiguation with graph-based algorithms for sequence data labeling",
"authors": [
{
"first": "Rada",
"middle": [],
"last": "Mihalcea",
"suffix": ""
}
],
"year": 2005,
"venue": "Proceedings of HLT-EMNLP",
"volume": "",
"issue": "",
"pages": "411--418",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Rada Mihalcea. 2005. Unsupervised large-vocabulary word sense disambiguation with graph-based algo- rithms for sequence data labeling. In Proceedings of HLT-EMNLP, pages 411-418. ACL.",
"links": null
},
"BIBREF38": {
"ref_id": "b38",
"title": "Optimizing semantic coherence in topic models",
"authors": [
{
"first": "David",
"middle": [],
"last": "Mimno",
"suffix": ""
},
{
"first": "Hanna",
"middle": [
"M"
],
"last": "Wallach",
"suffix": ""
},
{
"first": "Edmund",
"middle": [],
"last": "Talley",
"suffix": ""
},
{
"first": "Miriam",
"middle": [],
"last": "Leenders",
"suffix": ""
},
{
"first": "Andrew",
"middle": [],
"last": "Mccallum",
"suffix": ""
}
],
"year": 2011,
"venue": "Proceedings of the Conference on Empirical Methods in Natural Language Processing",
"volume": "",
"issue": "",
"pages": "262--272",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "David Mimno, Hanna M. Wallach, Edmund Talley, Miriam Leenders, and Andrew McCallum. 2011. Op- timizing semantic coherence in topic models. In Pro- ceedings of the Conference on Empirical Methods in Natural Language Processing, pages 262-272. ACL.",
"links": null
},
"BIBREF39": {
"ref_id": "b39",
"title": "Hirsch-type indices for ranking institutions scientific research output",
"authors": [
{
"first": "Panchanan",
"middle": [],
"last": "Mitra",
"suffix": ""
}
],
"year": 2006,
"venue": "Current Science",
"volume": "91",
"issue": "11",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Panchanan Mitra. 2006. Hirsch-type indices for rank- ing institutions scientific research output. Current Sci- ence, 91(11):1439.",
"links": null
},
"BIBREF40": {
"ref_id": "b40",
"title": "Detecting communities from tripartite networks",
"authors": [
{
"first": "Tsuyoshi",
"middle": [],
"last": "Murata",
"suffix": ""
}
],
"year": 2010,
"venue": "Proceedings of the 19th international conference on World wide web",
"volume": "",
"issue": "",
"pages": "1159--1160",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Tsuyoshi Murata. 2010. Detecting communities from tripartite networks. In Proceedings of the 19th inter- national conference on World wide web, pages 1159- 1160. ACM.",
"links": null
},
"BIBREF41": {
"ref_id": "b41",
"title": "Edge weight regularization over multiple graphs for similarity learning",
"authors": [
{
"first": "Pradeep",
"middle": [],
"last": "Muthukrishnan",
"suffix": ""
},
{
"first": "Dragomir",
"middle": [],
"last": "Radev",
"suffix": ""
},
{
"first": "Qiaozhu",
"middle": [],
"last": "Mei",
"suffix": ""
}
],
"year": 2010,
"venue": "IEEE 10th International Conference on",
"volume": "",
"issue": "",
"pages": "374--383",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Pradeep Muthukrishnan, Dragomir Radev, and Qiaozhu Mei. 2010. Edge weight regularization over mul- tiple graphs for similarity learning. In Data Mining (ICDM), 2010 IEEE 10th International Conference on, pages 374-383. IEEE.",
"links": null
},
"BIBREF42": {
"ref_id": "b42",
"title": "Why social networks are different from other types of networks",
"authors": [
{
"first": "E",
"middle": [
"J"
],
"last": "Mark",
"suffix": ""
},
{
"first": "Juyong",
"middle": [],
"last": "Newman",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Park",
"suffix": ""
}
],
"year": 2003,
"venue": "Physical Review E",
"volume": "68",
"issue": "3",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Mark E.J. Newman and Juyong Park. 2003. Why social networks are different from other types of networks. Physical Review E, 68(3):036122.",
"links": null
},
"BIBREF43": {
"ref_id": "b43",
"title": "Scalable name disambiguation using multi-level graph partition",
"authors": [
{
"first": "Dongwon",
"middle": [],
"last": "Byung-Won On",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Lee",
"suffix": ""
}
],
"year": 2007,
"venue": "Proceedings of the 7th SIAM international conference on data mining",
"volume": "",
"issue": "",
"pages": "575--580",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Byung-Won On and Dongwon Lee. 2007. Scalable name disambiguation using multi-level graph partition. In Proceedings of the 7th SIAM international conference on data mining, pages 575-580.",
"links": null
},
"BIBREF44": {
"ref_id": "b44",
"title": "The pagerank citation ranking: bringing order to the web",
"authors": [
{
"first": "Lawrence",
"middle": [],
"last": "Page",
"suffix": ""
},
{
"first": "Sergey",
"middle": [],
"last": "Brin",
"suffix": ""
},
{
"first": "Rajeev",
"middle": [],
"last": "Motwani",
"suffix": ""
},
{
"first": "Terry",
"middle": [],
"last": "Winograd",
"suffix": ""
}
],
"year": 1999,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Lawrence Page, Sergey Brin, Rajeev Motwani, and Terry Winograd. 1999. The pagerank citation ranking: bringing order to the web.",
"links": null
},
"BIBREF45": {
"ref_id": "b45",
"title": "Epidemic spreading in scale-free networks",
"authors": [
{
"first": "Romualdo",
"middle": [],
"last": "Pastor",
"suffix": ""
},
{
"first": "-",
"middle": [],
"last": "Satorras",
"suffix": ""
},
{
"first": "Alessandro",
"middle": [],
"last": "Vespignani",
"suffix": ""
}
],
"year": 2001,
"venue": "Physical review letters",
"volume": "86",
"issue": "14",
"pages": "3200--3203",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Romualdo Pastor-Satorras and Alessandro Vespignani. 2001. Epidemic spreading in scale-free networks. Physical review letters, 86(14):3200-3203.",
"links": null
},
"BIBREF46": {
"ref_id": "b46",
"title": "Vahed Qazvinian, and Amjad Abu-Jbara. 2013. The ACL anthology network corpus. Language Resources and Evaluation",
"authors": [
{
"first": "R",
"middle": [],
"last": "Dragomir",
"suffix": ""
},
{
"first": "Pradeep",
"middle": [],
"last": "Radev",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Muthukrishnan",
"suffix": ""
}
],
"year": null,
"venue": "",
"volume": "",
"issue": "",
"pages": "1--26",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Dragomir R. Radev, Pradeep Muthukrishnan, Vahed Qazvinian, and Amjad Abu-Jbara. 2013. The ACL anthology network corpus. Language Resources and Evaluation, pages 1-26.",
"links": null
},
"BIBREF47": {
"ref_id": "b47",
"title": "Objective criteria for the evaluation of clustering methods",
"authors": [
{
"first": "William",
"middle": [
"M"
],
"last": "Rand",
"suffix": ""
}
],
"year": 1971,
"venue": "Journal of the American Statistical association",
"volume": "66",
"issue": "336",
"pages": "846--850",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "William M. Rand. 1971. Objective criteria for the eval- uation of clustering methods. Journal of the American Statistical association, 66(336):846-850.",
"links": null
},
"BIBREF48": {
"ref_id": "b48",
"title": "How popular is your paper? an empirical study of the citation distribution",
"authors": [
{
"first": "S",
"middle": [],
"last": "Redner",
"suffix": ""
}
],
"year": 1998,
"venue": "The European Physical Journal B-Condensed Matter and Complex Systems",
"volume": "4",
"issue": "2",
"pages": "131--134",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "S. Redner. 1998. How popular is your paper? an empir- ical study of the citation distribution. The European Physical Journal B-Condensed Matter and Complex Systems, 4(2):131-134.",
"links": null
},
"BIBREF49": {
"ref_id": "b49",
"title": "Fast incremental proximity search in large graphs",
"authors": [
{
"first": "P",
"middle": [],
"last": "Sarkar",
"suffix": ""
},
{
"first": "A",
"middle": [
"W"
],
"last": "Moore",
"suffix": ""
},
{
"first": "A",
"middle": [],
"last": "Prakash",
"suffix": ""
}
],
"year": 2008,
"venue": "Proceedings of the 25th international conference on Machine learning",
"volume": "",
"issue": "",
"pages": "896--903",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "P. Sarkar, A.W. Moore, and A. Prakash. 2008. Fast incre- mental proximity search in large graphs. In Proceed- ings of the 25th international conference on Machine learning, pages 896-903. ACM.",
"links": null
},
"BIBREF50": {
"ref_id": "b50",
"title": "Multimodal networks in biology",
"authors": [
{
"first": "Allan",
"middle": [
"A"
],
"last": "Sioson",
"suffix": ""
}
],
"year": 2005,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Allan A. Sioson. 2005. Multimodal networks in biology. Ph.D. thesis, Virginia Polytechnic Institute and State University.",
"links": null
},
"BIBREF51": {
"ref_id": "b51",
"title": "Twitter polarity classification with label propagation over lexical links and the follower graph",
"authors": [
{
"first": "Michael",
"middle": [],
"last": "Speriosu",
"suffix": ""
},
{
"first": "Nikita",
"middle": [],
"last": "Sudan",
"suffix": ""
},
{
"first": "Sid",
"middle": [],
"last": "Upadhyay",
"suffix": ""
},
{
"first": "Jason",
"middle": [],
"last": "Baldridge",
"suffix": ""
}
],
"year": 2011,
"venue": "Proceedings of the First workshop on Unsupervised Learning in NLP",
"volume": "",
"issue": "",
"pages": "53--63",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Michael Speriosu, Nikita Sudan, Sid Upadhyay, and Ja- son Baldridge. 2011. Twitter polarity classification with label propagation over lexical links and the fol- lower graph. In Proceedings of the First workshop on Unsupervised Learning in NLP, pages 53-63, Edin- burgh, Scotland, July. ACL.",
"links": null
},
"BIBREF52": {
"ref_id": "b52",
"title": "Cluster ensembles-a knowledge reuse framework for combining multiple partitions",
"authors": [
{
"first": "Alexander",
"middle": [],
"last": "Strehl",
"suffix": ""
},
{
"first": "Joydeep",
"middle": [],
"last": "Ghosh",
"suffix": ""
}
],
"year": 2003,
"venue": "The Journal of Machine Learning Research",
"volume": "3",
"issue": "",
"pages": "583--617",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Alexander Strehl and Joydeep Ghosh. 2003. Cluster ensembles-a knowledge reuse framework for com- bining multiple partitions. The Journal of Machine Learning Research, 3:583-617.",
"links": null
},
"BIBREF53": {
"ref_id": "b53",
"title": "Rankclus: integrating clustering with ranking for heterogeneous information network analysis",
"authors": [
{
"first": "Yizhou",
"middle": [],
"last": "Sun",
"suffix": ""
},
{
"first": "Jiawei",
"middle": [],
"last": "Han",
"suffix": ""
},
{
"first": "Peixiang",
"middle": [],
"last": "Zhao",
"suffix": ""
},
{
"first": "Zhijun",
"middle": [],
"last": "Yin",
"suffix": ""
},
{
"first": "Hong",
"middle": [],
"last": "Cheng",
"suffix": ""
},
{
"first": "Tianyi",
"middle": [],
"last": "Wu",
"suffix": ""
}
],
"year": 2009,
"venue": "Proceedings of the 12th International Conference on Extending Database Technology: Advances in Database Technology",
"volume": "",
"issue": "",
"pages": "565--576",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Yizhou Sun, Jiawei Han, Peixiang Zhao, Zhijun Yin, Hong Cheng, and Tianyi Wu. 2009. Rankclus: inte- grating clustering with ranking for heterogeneous in- formation network analysis. In Proceedings of the 12th International Conference on Extending Database Technology: Advances in Database Technology, pages 565-576. ACM.",
"links": null
},
"BIBREF54": {
"ref_id": "b54",
"title": "Co-author relationship prediction in heterogeneous bibliographic networks",
"authors": [
{
"first": "Yizhou",
"middle": [],
"last": "Sun",
"suffix": ""
},
{
"first": "Rick",
"middle": [],
"last": "Barber",
"suffix": ""
},
{
"first": "Manish",
"middle": [],
"last": "Gupta",
"suffix": ""
},
{
"first": "Jiawei",
"middle": [],
"last": "Han",
"suffix": ""
}
],
"year": 2011,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Yizhou Sun, Rick Barber, Manish Gupta, and Jiawei Han. 2011. Co-author relationship prediction in heteroge- neous bibliographic networks.",
"links": null
},
"BIBREF55": {
"ref_id": "b55",
"title": "Relation strength-aware clustering of heterogeneous information networks with incomplete attributes",
"authors": [
{
"first": "Yizhou",
"middle": [],
"last": "Sun",
"suffix": ""
},
{
"first": "C",
"middle": [],
"last": "Charu",
"suffix": ""
},
{
"first": "Jiawei",
"middle": [],
"last": "Aggarwal",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Han",
"suffix": ""
}
],
"year": 2012,
"venue": "Proceedings of the VLDB Endowment",
"volume": "5",
"issue": "5",
"pages": "394--405",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Yizhou Sun, Charu C. Aggarwal, and Jiawei Han. 2012. Relation strength-aware clustering of heterogeneous information networks with incomplete attributes. Pro- ceedings of the VLDB Endowment, 5(5):394-405.",
"links": null
},
"BIBREF56": {
"ref_id": "b56",
"title": "Link prediction in relational data",
"authors": [
{
"first": "Ben",
"middle": [],
"last": "Taskar",
"suffix": ""
},
{
"first": "Ming-Fai",
"middle": [],
"last": "Wong",
"suffix": ""
},
{
"first": "Pieter",
"middle": [],
"last": "Abbeel",
"suffix": ""
},
{
"first": "Daphne",
"middle": [],
"last": "Koller",
"suffix": ""
}
],
"year": 2003,
"venue": "Neural Information Processing Systems",
"volume": "15",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Ben Taskar, Ming-Fai Wong, Pieter Abbeel, and Daphne Koller. 2003. Link prediction in relational data. In Neural Information Processing Systems, volume 15.",
"links": null
},
"BIBREF57": {
"ref_id": "b57",
"title": "Estimating the number of clusters in a data set via the gap statistic",
"authors": [
{
"first": "Robert",
"middle": [],
"last": "Tibshirani",
"suffix": ""
},
{
"first": "Guenther",
"middle": [],
"last": "Walther",
"suffix": ""
},
{
"first": "Trevor",
"middle": [],
"last": "Hastie",
"suffix": ""
}
],
"year": 2001,
"venue": "Journal of the Royal Statistical Society: Series B (Statistical Methodology)",
"volume": "63",
"issue": "2",
"pages": "411--423",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Robert Tibshirani, Guenther Walther, and Trevor Hastie. 2001. Estimating the number of clusters in a data set via the gap statistic. Journal of the Royal Sta- tistical Society: Series B (Statistical Methodology), 63(2):411-423.",
"links": null
},
"BIBREF58": {
"ref_id": "b58",
"title": "Learning random walk models for inducing word dependency distributions",
"authors": [
{
"first": "Kristina",
"middle": [],
"last": "Toutanova",
"suffix": ""
},
{
"first": "D",
"middle": [],
"last": "Christopher",
"suffix": ""
},
{
"first": "Andrew Y",
"middle": [],
"last": "Manning",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Ng",
"suffix": ""
}
],
"year": 2004,
"venue": "Proceedings of the twenty-first international conference on Machine learning",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Kristina Toutanova, Christopher D Manning, and An- drew Y Ng. 2004. Learning random walk models for inducing word dependency distributions. In Pro- ceedings of the twenty-first international conference on Machine learning, page 103. ACM.",
"links": null
},
"BIBREF59": {
"ref_id": "b59",
"title": "Group and topic discovery from relations and their attributes",
"authors": [
{
"first": "Xuerui",
"middle": [],
"last": "Wang",
"suffix": ""
},
{
"first": "Natasha",
"middle": [],
"last": "Mohanty",
"suffix": ""
},
{
"first": "Andrew",
"middle": [],
"last": "Mccallum",
"suffix": ""
},
{
"first": "; Dtic",
"middle": [],
"last": "Document",
"suffix": ""
}
],
"year": 2006,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Xuerui Wang, Natasha Mohanty, and Andrew McCallum. 2006. Group and topic discovery from relations and their attributes. Technical report, DTIC Document.",
"links": null
},
"BIBREF60": {
"ref_id": "b60",
"title": "Soft clustering on graphs",
"authors": [
{
"first": "Kai",
"middle": [],
"last": "Yu",
"suffix": ""
},
{
"first": "Shipeng",
"middle": [],
"last": "Yu",
"suffix": ""
},
{
"first": "Volker",
"middle": [],
"last": "Tresp",
"suffix": ""
}
],
"year": 2006,
"venue": "Advances in Neural Information Processing Systems",
"volume": "18",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Kai Yu, Shipeng Yu, and Volker Tresp. 2006. Soft clustering on graphs. Advances in Neural Information Processing Systems, 18:1553.",
"links": null
},
"BIBREF61": {
"ref_id": "b61",
"title": "Co-ranking authors and documents in a heterogeneous network",
"authors": [
{
"first": "Ding",
"middle": [],
"last": "Zhou",
"suffix": ""
},
{
"first": "A",
"middle": [],
"last": "Sergey",
"suffix": ""
},
{
"first": "Hongyuan",
"middle": [],
"last": "Orshanskiy",
"suffix": ""
},
{
"first": "C. Lee",
"middle": [],
"last": "Zha",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Giles",
"suffix": ""
}
],
"year": 2007,
"venue": "Seventh IEEE International Conference on",
"volume": "",
"issue": "",
"pages": "739--744",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Ding Zhou, Sergey A. Orshanskiy, Hongyuan Zha, and C. Lee Giles. 2007. Co-ranking authors and docu- ments in a heterogeneous network. In Data Mining, 2007. ICDM 2007. Seventh IEEE International Con- ference on, pages 739-744. IEEE.",
"links": null
}
},
"ref_entries": {
"FIGREF0": {
"num": null,
"uris": null,
"type_str": "figure",
"text": "author -[writes] -paper \u2022 paper -[cites] -paper \u2022 paper -[published in] -venue 1 \u2022 author -[affiliated with] -institution 2 \u2022 paper -[contains] -term"
},
"FIGREF1": {
"num": null,
"uris": null,
"type_str": "figure",
"text": "Evolution of conference impacts. The yaxis measures relative Pagerank, the entity's Pagerank relative to the average Pagerank in that year."
},
"FIGREF2": {
"num": null,
"uris": null,
"type_str": "figure",
"text": "Distribution of topic coherences for the four topic models."
},
"TABREF4": {
"content": "<table><tr><td>Topic 59</td><td/><td>Topic 82</td><td/></tr><tr><td>translation</td><td>0.1953</td><td>parsing</td><td>0.1715</td></tr><tr><td>machine</td><td>0.1802</td><td>dependency</td><td>0.1192</td></tr><tr><td>statistical</td><td>0.0784</td><td>projective</td><td>0.0138</td></tr><tr><td>Machine Translation</td><td>0.0018</td><td>K-best Spanning Tree Parsing</td><td>0.0025</td></tr><tr><td>Better Hypothesis Testing for Statistical</td><td>0.0016</td><td>Pseudo-Projective Dependency Parsing</td><td>0.0024</td></tr><tr><td>Machine Translation: Controlling for</td><td/><td/><td/></tr><tr><td>Optimizer Instability</td><td/><td/><td/></tr><tr><td>Filtering Antonymous, Trend-Contrasting, and</td><td>0.0015</td><td>Shift-Reduce Dependency DAG Parsing</td><td>0.0017</td></tr><tr><td>Polarity-Dissimilar Distributional Paraphrases</td><td/><td/><td/></tr><tr><td>for Improving Statistical Machine Translation</td><td/><td/><td/></tr><tr><td>Knight, Kevin</td><td>0.0083</td><td>Nivre, Joakim</td><td>0.0120</td></tr><tr><td>Koehn, Philipp</td><td>0.0074</td><td>Johnson, Mark</td><td>0.0085</td></tr><tr><td>Ney, Hermann</td><td>0.0072</td><td>Nederhof, Mark-Jan</td><td>0.0064</td></tr><tr><td>RWTH Aachen University</td><td>0.0212</td><td>Vaxjo University</td><td>0.0113</td></tr><tr><td>Carnegie Mellon University</td><td>0.0183</td><td>Brown University</td><td>0.0107</td></tr><tr><td>University of Southern California</td><td>0.0177</td><td>University of Amsterdam</td><td>0.0094</td></tr><tr><td>Workshop on Statistical Machine Translation</td><td>0.0590</td><td>ACL</td><td>0.0512</td></tr><tr><td>EMNLP</td><td>0.0270</td><td>EMNLP</td><td>0.0259</td></tr><tr><td>COLING</td><td>0.0173</td><td>CoNLL</td><td>0.0223</td></tr></table>",
"html": null,
"num": null,
"text": "Top 10 words for several topics created by the co-occurence random walk topic model. The left column is a manual label.",
"type_str": "table"
},
"TABREF5": {
"content": "<table/>",
"html": null,
"num": null,
"text": "",
"type_str": "table"
}
}
}
}