ACL-OCL / Base_JSON /prefixD /json /D08 /D08-1042.json
Benjamin Aw
Add updated pkl file v3
6fa4bc9
{
"paper_id": "D08-1042",
"header": {
"generated_with": "S2ORC 1.0.0",
"date_generated": "2023-01-19T16:29:38.147329Z"
},
"title": "A Dependency-based Word Subsequence Kernel",
"authors": [
{
"first": "Rohit",
"middle": [
"J"
],
"last": "Kate",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "The University of Texas at Austin",
"location": {}
},
"email": "rjkate@cs.utexas.edu"
}
],
"year": "",
"venue": null,
"identifiers": {},
"abstract": "This paper introduces a new kernel which computes similarity between two natural language sentences as the number of paths shared by their dependency trees. The paper gives a very efficient algorithm to compute it. This kernel is also an improvement over the word subsequence kernel because it only counts linguistically meaningful word subsequences which are based on word dependencies. It overcomes some of the difficulties encountered by syntactic tree kernels as well. Experimental results demonstrate the advantage of this kernel over word subsequence and syntactic tree kernels.",
"pdf_parse": {
"paper_id": "D08-1042",
"_pdf_hash": "",
"abstract": [
{
"text": "This paper introduces a new kernel which computes similarity between two natural language sentences as the number of paths shared by their dependency trees. The paper gives a very efficient algorithm to compute it. This kernel is also an improvement over the word subsequence kernel because it only counts linguistically meaningful word subsequences which are based on word dependencies. It overcomes some of the difficulties encountered by syntactic tree kernels as well. Experimental results demonstrate the advantage of this kernel over word subsequence and syntactic tree kernels.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Abstract",
"sec_num": null
}
],
"body_text": [
{
"text": "Kernel-based learning methods (Vapnik, 1998) are becoming increasingly popular in natural language processing (NLP) because they allow one to work with potentially infinite number of features without explicitly constructing or manipulating them. In most NLP problems, the data is present in structured forms, like strings or trees, and this structural information can be effectively passed to a kernel-based learning algorithm using an appropriate kernel, like a string kernel (Lodhi et al., 2002) or a tree kernel (Collins and Duffy, 2001) . In contrast, feature-based methods require reducing the data to a pre-defined set of features often leading to some loss of the useful structural information present in the data.",
"cite_spans": [
{
"start": 30,
"end": 44,
"text": "(Vapnik, 1998)",
"ref_id": "BIBREF20"
},
{
"start": 477,
"end": 497,
"text": "(Lodhi et al., 2002)",
"ref_id": "BIBREF12"
},
{
"start": 515,
"end": 540,
"text": "(Collins and Duffy, 2001)",
"ref_id": "BIBREF3"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "A kernel is a measure of similarity between every pair of examples in the data and a kernel-based machine learning algorithm accesses the data only through these kernel values. For example, the string kernel (Lodhi et al., 2002; Cancedda et al., 2003) computes the similarity between two natural language strings as the number of common word subsequences between them. A subsequence allows gaps between the common words which are penalized according to a parameter. Each word subsequence hence becomes an implicit feature used by the kernel-based machine learning algorithm. A problem with this kernel is that many of these word subsequences common between two strings may not be semantically expressive or linguistically meaningful 1 . Another problem with this kernel is that if there are long-range dependencies between the words in a common word subsequence, then they will unfairly get heavily penalized because of the presence of word gaps.",
"cite_spans": [
{
"start": 208,
"end": 228,
"text": "(Lodhi et al., 2002;",
"ref_id": "BIBREF12"
},
{
"start": 229,
"end": 251,
"text": "Cancedda et al., 2003)",
"ref_id": null
},
{
"start": 733,
"end": 734,
"text": "1",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "The syntactic tree kernel presented in (Collins and Duffy, 2001) captures the structural similarity between two syntactic trees as the number of syntactic subtrees common between them. However, often syntactic parse trees may share syntactic subtrees which correspond to very different semantics based on what words they represent in the sentence. On the other hand, some subtrees may differ syntactically but may represent similar underlying semantics. These differences can become particularly problematic if the tree kernel is to be used for tasks which require semantic processing.",
"cite_spans": [
{
"start": 39,
"end": 64,
"text": "(Collins and Duffy, 2001)",
"ref_id": "BIBREF3"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "This paper presents a new kernel which computes similarity between two sentences as the the number of paths common between their dependency trees. (a) A fat cat was chased by a dog. (b) A cat with a red collar was chased two days ago by a fat dog. It improves over the word subsequence kernel because it only counts the word subsequences which are linked by dependencies. It also circumvents some of the difficulties encountered with the syntactic tree kernel when applied for semantic processing tasks.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "Although several dependency-tree-based kernels and modifications to syntactic tree kernels have been proposed which we briefly discuss in the Related Work section, to our best knowledge no previous work has presented a kernel based on dependency paths which offers some unique advantages. We also give a very efficient algorithm to compute this kernel. We present experimental results on the task of domain-specific semantic parsing demonstrating the advantage of this kernel over word subsequence and syntactic tree kernels.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "The following section gives some background on string and tree kernels. Section 3 then introduces the dependency-based word subsequence kernel and gives an efficient algorithm to compute it. Some of the related work is discussed next, followed by experiments, future work and conclusions.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "A kernel between two sentences measures the similarity between them. Lodhi et al. (2002) presented a string kernel which measures the similarity between two sentences, or two documents in general, as the number of character subsequences shared between them. This was extended by Cancedda et al. (2003) to the number of common word subsequences between them. We will refer to this kernel as the word subsequence kernel.",
"cite_spans": [
{
"start": 69,
"end": 88,
"text": "Lodhi et al. (2002)",
"ref_id": "BIBREF12"
},
{
"start": 279,
"end": 301,
"text": "Cancedda et al. (2003)",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Word-Subsequence Kernel",
"sec_num": "2.1"
},
{
"text": "Consider the two sentences shown in Figure 1 . Some common word subsequences between them are \"a cat\", \"was chased by\", \"by a dog\", \"a cat chased by a dog\", etc. Note that the subsequence \"was chased by\" is present in the second sentence but it requires skipping the words \"two days ago\" or has a gap of three words present in it. The kernel downweights the presence of gaps by a decay factor \u03bb\u01eb(0, 1]. If g 1 and g 2 are the sum totals of gaps for a subsequence present in the two sentences respectively, then the contribution of this subsequence towards the kernel value will be \u03bb g 1 +g 2 . The kernel can be normalized to have values in the range of [0, 1] to remove any bias due to different sentence lengths. Lodhi et al. (2002) give a dynamic programming algorithm to compute string subsequence kernels in O(nst) time where s and t are the lengths of the two input strings and n is the maximum length of common subsequences one wants to consider. Rousu and Shawe-Taylor (2005) present an improved algorithm which works faster when the vocabulary size is large. Subsequence kernels have been used with success in NLP for text classification (Lodhi et al., 2002; Cancedda et al., 2003) , information extraction (Bunescu and Mooney, 2005b) and semantic parsing (Kate and Mooney, 2006) .",
"cite_spans": [
{
"start": 715,
"end": 734,
"text": "Lodhi et al. (2002)",
"ref_id": "BIBREF12"
},
{
"start": 954,
"end": 983,
"text": "Rousu and Shawe-Taylor (2005)",
"ref_id": "BIBREF17"
},
{
"start": 1147,
"end": 1167,
"text": "(Lodhi et al., 2002;",
"ref_id": "BIBREF12"
},
{
"start": 1168,
"end": 1190,
"text": "Cancedda et al., 2003)",
"ref_id": null
},
{
"start": 1216,
"end": 1243,
"text": "(Bunescu and Mooney, 2005b)",
"ref_id": "BIBREF1"
},
{
"start": 1265,
"end": 1288,
"text": "(Kate and Mooney, 2006)",
"ref_id": "BIBREF9"
}
],
"ref_spans": [
{
"start": 36,
"end": 44,
"text": "Figure 1",
"ref_id": "FIGREF0"
}
],
"eq_spans": [],
"section": "Word-Subsequence Kernel",
"sec_num": "2.1"
},
{
"text": "There are, however, some shortcomings of this word subsequence kernel as a measure of similarity between two sentences. Firstly, since it considers all possible common subsequences, it is not sensitive to whether the subsequence is linguistically meaningful or not. For example, the meaningless subsequences \"cat was by\" and \"a was a\" will also be considered common between the two sentences by this kernel. Since these subsequences will be used as implicit features by the kernel-based machine learning algorithm, their presence can only hurt the performance. Secondly, if there are long distance dependencies between the words of the subsequence present in a sentence then the subsequence will get unfairly penalized. For example, the most important word subsequence shared between the two sentences shown in Figure 1 is \"a cat was chased by a dog\" which will get penalized by total gap of eight words coming from the second sentence and a gap of one word from the first sentence. Finally, the kernel is not sensitive to the relations between the words, for example, the kernel will consider \"a fat dog\" as a common subsequence although in the first sentence \"a fat\" relates to the cat and not to the dog.",
"cite_spans": [],
"ref_spans": [
{
"start": 811,
"end": 819,
"text": "Figure 1",
"ref_id": "FIGREF0"
}
],
"eq_spans": [],
"section": "Word-Subsequence Kernel",
"sec_num": "2.1"
},
{
"text": "Syntactic tree kernels were first introduced by Collins and Duffy (2001) and were also used by Collins (2002) for the task of re-ranking syntactic parse trees. They define a kernel between two trees as the number of subtrees shared between them. A subtree is defined as any subgraph of the tree which includes more than one node, with the restriction that entire productions must be included at every node. The kernel defined this way captures most of the structural information present in the syntactic parse trees in the form of tree fragments which the kernelized learning algorithms can then implicitly use as features. The kernel can be computed in O(|N 1 ||N 2 |) time, where |N 1 | and |N 2 | are the number of nodes of the two trees. An efficient algorithm to compute tree kernels was given by Moschitti (2006a) which runs in close to linear time in the size of the input trees.",
"cite_spans": [
{
"start": 48,
"end": 72,
"text": "Collins and Duffy (2001)",
"ref_id": "BIBREF3"
},
{
"start": 95,
"end": 109,
"text": "Collins (2002)",
"ref_id": "BIBREF5"
},
{
"start": 802,
"end": 819,
"text": "Moschitti (2006a)",
"ref_id": "BIBREF15"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Syntactic Tree Kernel",
"sec_num": "2.2"
},
{
"text": "One drawback of this tree kernel, though, particularly when used for any task requiring semantic processing, is that it may match syntactic subtrees between two trees even though they represent very dissimilar things in the sentence. For example, between the syntactic parse trees shown in Figures 2 and 3 for the two sentences shown in Figure 1 , the syntactic tree kernel will find (NP (DT a) JJ NN) as a common subtree but in the first sentence it represents \"cat\" while in the second it represents \"collar\" and \"dog\". It will also find \"(NP (DT a) (JJ fat) NN)\" as a common subtree which again refers to \"cat\" in the first sentence and \"dog\" in the second sentence. As another example, consider two simple sentences: (S (NP Chip) (VP (V saw) (NP Dale))) and (S (NP Mary) (VP (V heard) (NP Sally))). Even though semantically nothing is similar between them, the syntactic tree kernel will still find common subtrees (S NP VP), (VP N NP) and (S NP (VP V NP)). The underlying problem is that the syntactic tree kernel tends to overlook the words of the sentences which, in fact, carry the essential semantics. On the other hand, although (NP (DT a) (NN cat)) and (NP (DT a) (JJ fat) (NN cat)) represent very similar concepts but the kernel will not capture this high level similarity between the two constituents, and will only find (DT a) and (NN cat) as the common substructures. Finally, the most important similarity between the two sentences is \"a cat was chased by a dog\" which will not be captured by this kernel because there is no common subtree which covers it. The Related Work section discusses some modifications that have been proposed to the syntactic tree kernel.",
"cite_spans": [],
"ref_spans": [
{
"start": 337,
"end": 345,
"text": "Figure 1",
"ref_id": "FIGREF0"
}
],
"eq_spans": [],
"section": "Syntactic Tree Kernel",
"sec_num": "2.2"
},
{
"text": "A dependency tree encodes functional relationships between the words in a sentence (Hudson, 1984) . The words of the sentence are the nodes and if a word complements or modifies another word then there is a child to parent edge from the first word to the second word. Every word in a dependency tree has exactly one parent except for the root word. Figures 4 and 5 show dependency trees for the two sentences shown in Figure 1 . There has been a lot of progress in learning dependency tree parsers (Mc-Donald et al., 2005; Koo et al., 2008; Wang et al., 2008) . They can also be obtained indirectly from syntactic parse trees utilizing the head words of the constituents. We introduce a new kernel which takes the words into account like the word-subsequence kernel and also takes the syntactic relations between them into account like the syntactic tree kernel, however, it does not have the shortcomings of the two kernels pointed out in the previous section. This kernel counts the number of common paths between the dependency trees of the two sentences. Another way to look at this kernel is that it counts all the common word subsequences which are linked by dependencies. Hence we will call it a dependency-based word subsequence kernel. Since the implicit features it uses are dependency paths which are enumerable, it is a well defined kernel. In other words, an example gets implicitly mapped to the feature space in which each dependency path is a dimension.",
"cite_spans": [
{
"start": 83,
"end": 97,
"text": "(Hudson, 1984)",
"ref_id": "BIBREF8"
},
{
"start": 498,
"end": 522,
"text": "(Mc-Donald et al., 2005;",
"ref_id": null
},
{
"start": 523,
"end": 540,
"text": "Koo et al., 2008;",
"ref_id": "BIBREF11"
},
{
"start": 541,
"end": 559,
"text": "Wang et al., 2008)",
"ref_id": "BIBREF21"
}
],
"ref_spans": [
{
"start": 349,
"end": 358,
"text": "Figures 4",
"ref_id": null
},
{
"start": 418,
"end": 426,
"text": "Figure 1",
"ref_id": "FIGREF0"
}
],
"eq_spans": [],
"section": "A Dependency-based Word Subsequence Kernel",
"sec_num": "3"
},
{
"text": "The dependency-based word subsequence kernel will find the common paths 'a \u2192 cat', 'cat \u2192 was \u2190 chased', 'chased \u2190 by \u2190 dog' among many others between the dependency trees shown in Figures 4 and 5. The arrows are always shown from child node to the parent node. A common path takes into account the direction between the words as well. Also note that it will find the important subsequence 'a \u2192 cat \u2192 was \u2190 chased \u2190 by \u2190 dog \u2190 a' as a common path.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "A Dependency-based Word Subsequence Kernel",
"sec_num": "3"
},
{
"text": "It can be seen that the word subsequences this kernel considers as common paths are linguistically meaningful. It is also not affected by long-range dependencies between words because those words are always directly linked in a dependency tree. There is no need to allow gaps in this kernel either because related words are always linked. It also won't find 'a fat' as a common path because in the first tree \"cat\" is between the two words and in the second sentence \"dog\" is between them. Thus it does not have the shortcomings of the word subsequence kernel. It also avoids the shortcomings of the syntactic tree kernel because the common paths are words themselves and syntactic labels do not interfere in capturing the similarity between the two sentences. It will not find anything common between dependency trees for the sentences \"Chip saw Dale\" and \"Mary heard Sally\". But it will find 'a \u2192 cat' as a common path between \"a cat\" and \"a fat cat\". We however note that this kernel does not use general syntactic categories, unlike the syntactic tree kernel, which will limit its applicability to the tasks which depend on the syntactic categories, like re-ranking syntactic parse trees.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "A Dependency-based Word Subsequence Kernel",
"sec_num": "3"
},
{
"text": "We now give an efficient algorithm to compute all the common paths between two trees. To our best knowledge, no previous work has considered this problem. The key observation for this algorithm is that a path in a tree always has a structure in which nodes (possibly none) go up to a highest node followed by nodes (possibly none) coming down. Based on this observation we compute two quantities for every pair of nodes between the two trees. We call the first quantity common downward paths (CDP ) between two nodes, one from each tree, and it counts the number of common paths between the two trees which originate from those two nodes and which always go downward. For example, the common downward paths between the 'chased' node of the tree in Figure 4 and the 'chased' node of the tree in Figure 5 are 'chased \u2190 by', 'chased \u2190 by \u2190 dog' and 'chased \u2190 by \u2190 dog \u2190 a'. Hence CDP (chased, chased) = 3. A word may occur multiple times in a sentence so the CDP values will be computed separately for each occurrence. We will shortly give a fast recursive algorithm to compute CDP values.",
"cite_spans": [],
"ref_spans": [
{
"start": 748,
"end": 756,
"text": "Figure 4",
"ref_id": null
},
{
"start": 794,
"end": 802,
"text": "Figure 5",
"ref_id": "FIGREF2"
}
],
"eq_spans": [],
"section": "A Dependency-based Word Subsequence Kernel",
"sec_num": "3"
},
{
"text": "Once these CDP values are known, using these the second quantity is computed which we call common peak paths (CP P ) between every two nodes, one from each tree. This counts the number of common paths between the two trees which peak at those two nodes, i.e. these nodes are the highest nodes in those paths. For example, 'was' is the peak for the path 'a \u2192 cat \u2192 was \u2190 chased'. Since every common path between the two trees has a unique highest node, once these CP P values have been computed, the number of common paths between the two trees is simply the sum of all these CP P values.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "A Dependency-based Word Subsequence Kernel",
"sec_num": "3"
},
{
"text": "We now describe how all these values are efficiently computed. The CDP values between every two nodes n 1 and n 2 of the trees T 1 and T 2 respectively, is recursively computed as follows:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "A Dependency-based Word Subsequence Kernel",
"sec_num": "3"
},
{
"text": "CDP (n 1 , n 2 ) = 0 if n 1 .w = n 2 .w otherwise, CDP (n 1 , n 2 ) = c 1 \u01ebC(n 1 ) c 2 \u01ebC(n 2 ) c 1 .w = c 2 .w (1 + CDP (c 1 , c 2 ))",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "A Dependency-based Word Subsequence Kernel",
"sec_num": "3"
},
{
"text": "In the first equation, n.w stands for the word at the node n. If the words are not equal then there cannot be any common downward paths originating from the nodes. In the second equation, C(n) represents the set of children nodes of the node n in a tree. If the words at two children nodes are the same, then the number of common downward paths from the parent will include all the common downward paths at the two children nodes incremented with the link from the parent to the children. In addition the path from parent to the child node is also a common downward path. For example, in the trees shown in Figures 4 and 5 , the nodes with word 'was' have 'chased' as a common child. Hence all the common downward paths originating from 'chased' (namely 'chased \u2190 by', 'chased \u2190 by \u2190 dog' and 'chased \u2190 by \u2190 dog \u2190 a') when incremented with 'was \u2190 chased' become common downward paths originating from 'was'. In addition, the path 'was \u2190 chased' itself is a common downward path. Since 'cat' is also a common child at 'was', it's common downward paths will also be added.",
"cite_spans": [],
"ref_spans": [
{
"start": 607,
"end": 622,
"text": "Figures 4 and 5",
"ref_id": "FIGREF2"
}
],
"eq_spans": [],
"section": "A Dependency-based Word Subsequence Kernel",
"sec_num": "3"
},
{
"text": "The CDP values thus computed are then used to compute the CP P values as follows:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "A Dependency-based Word Subsequence Kernel",
"sec_num": "3"
},
{
"text": "CP P (n 1 , n 2 ) = 0 if n 1 .w = n 2 .w otherwise, CP P (n 1 , n 2 ) = CDP (n 1 , n 2 ) + c 1 ,\u0109 1 \u01ebC(n 1 ) c 2 ,\u0109 2 \u01ebC(n 2 ) c 1 .w = c 2 .\u0175 c 1 .w =\u0109 2 .w ( 1 + CDP (c 1 , c2) + CDP (\u0109 1 ,\u0109 2 )+ CDP (c 1 , c 2 ) * CDP (\u0109 1 ,\u0109 2 ) )",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "A Dependency-based Word Subsequence Kernel",
"sec_num": "3"
},
{
"text": "If the two nodes are not equal then the number of common paths that peak at them will be zero. If the nodes are equal, then all the common downward paths between them will also be the paths that peak at them, hence it is the first term in the above equation. Next, the remaining paths that peak at them can be counted by considering every pair of common children nodes represented by c 1 & c 2 and\u0109 1 &\u0109 2 . For example, for the common node 'was' in Figures 4 and 5, the children nodes 'cat' and 'chased' are common. The path 'cat \u2192 was \u2190 chased' is a path that peaks at 'was', hence 1 is added in the second term. All the downward paths from 'cat' when incremented up to 'was' and down to 'chased' are also the paths that peak at 'was' (namely 'a \u2192 cat \u2192 was \u2190 chased'). Similarly, all the downward paths from 'chased' when incremented up to 'was' and down to 'cat' are also paths that peak at 'was' ('cat \u2192 was \u2190 chased \u2190 by', 'cat \u2192 was \u2190 chased \u2190 by \u2190 dog', etc.). Hence the next two terms are present in the equation. Finally, all the downward paths from 'cat' when incremented up to 'was' and down to every downward path from 'chased' are also the paths that peak at 'was' ('a \u2192 cat \u2192 was \u2190 chased \u2190 by', 'a \u2192 cat \u2192 was \u2190 chased \u2190 by \u2190 dog' etc.). Hence there is the product term present in the equation. It is important not to re-count a path from the opposite direction hence the two pairs of common children are considered only once (i.e. not reconsidered symmetrically).",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "A Dependency-based Word Subsequence Kernel",
"sec_num": "3"
},
{
"text": "The dependency word subsequence kernel between two dependency trees T 1 and T 2 is then simply:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "A Dependency-based Word Subsequence Kernel",
"sec_num": "3"
},
{
"text": "K(T 1 , T 2 ) = n 1 \u01ebT 1 n 2 \u01ebT 2 n 1 .w = n 2 .w (1 + CP P (n 1 , n 2 ))",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "A Dependency-based Word Subsequence Kernel",
"sec_num": "3"
},
{
"text": "We also want to count the number of common words between the two trees in addition to the number of common paths, hence 1 is added in the equation. The kernel is normalized to remove any bias due to different tree sizes:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "A Dependency-based Word Subsequence Kernel",
"sec_num": "3"
},
{
"text": "K normalized (T 1 , T 2 ) = K(T 1 , T 2 ) K(T 1 , T 1 ) * K(T 2 , T 2 )",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "A Dependency-based Word Subsequence Kernel",
"sec_num": "3"
},
{
"text": "Since for any long path common between two trees, there will be many shorter paths within it which will be also common between the two trees, it is reasonable to downweight the contribution of long paths. We do this by introducing a parameter \u03b1\u01eb(0, 1] and by downweighting a path of length l by \u03b1 l . A similar mechanism was also used in the syntactic tree kernel (Collins and Duffy, 2001) .",
"cite_spans": [
{
"start": 364,
"end": 389,
"text": "(Collins and Duffy, 2001)",
"ref_id": "BIBREF3"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "A Dependency-based Word Subsequence Kernel",
"sec_num": "3"
},
{
"text": "The equations for computing CDP and CP P are accordingly modified as follows to accommodate this downweighting.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "A Dependency-based Word Subsequence Kernel",
"sec_num": "3"
},
{
"text": "CDP (n 1 , n 2 ) = 0 if n 1 .w = n 2 .w otherwise, CDP (n 1 , n 2 ) = c 1 \u01ebC(n 1 ) c 2 \u01ebC(n 2 ) c 1 .w = c 2 .w (\u03b1 + \u03b1 * CDP (c 1 , c 2 )) CP P (n 1 , n 2 ) = 0 if n 1 .w = n 2 .w otherwise, CP P (n 1 , n 2 ) = CDP (n 1 , n 2 ) + c 1 ,\u0109 1 \u01ebC(n 1 ) c 2 ,\u0109 2 \u01ebC(n 2 ) c 1 .w = c 2 .\u0175 c 1 .w =\u0109 2 .w ( \u03b1 2 + \u03b1 * CDP (c 1 , c2)+ \u03b1 * CDP (\u0109 1 ,\u0109 2 )+ \u03b1 2 * CDP (c 1 , c 2 ) * CDP (\u0109 1 ,\u0109 2 ) )",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "A Dependency-based Word Subsequence Kernel",
"sec_num": "3"
},
{
"text": "This algorithm to compute all the common paths between two trees has worst time complexity of O(|T 1 ||T 2 |), where |T 1 | and |T 2 | are the number of nodes of the two trees T 1 and T 2 respectively. This is because CDP computations are needed for every pairs of nodes between the two trees and is recursively computed. Using dynamic programming their recomputations can be easily avoided. The CP P computations then simply add the CDP values 2 . If the nodes common between the two trees are sparse then the algorithm will run much faster. Since the algorithm only needs to store the CDP values, its space complexity is O(|T 1 ||T 2 |). Also note that this algorithm computes the number of common paths of all lengths unlike the word subsequence kernel in which the maximum subsequence length needs to be specified and the time complexity then depends on this length.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "A Dependency-based Word Subsequence Kernel",
"sec_num": "3"
},
{
"text": "Several modifications to the syntactic tree kernels have been proposed to overcome the type of problems pointed out in Subsection 2.2. Zhang et al. (2007) proposed a grammar-driven syntactic tree kernel which allows soft matching between the subtrees of the trees if that is deemed appropriate by the grammar. For example, their kernel will be able to match the subtrees (NP (DT a) (NN cat)) and (NP (DT a ) (JJ fat) (NN cat)) with some penalty. Moschitti (2006b) proposed a partial tree kernel which can partially match subtrees. Moschitti et al. (2007) proposed a tree kernel over predicateargument structures of sentences based on the Prob-Bank labels. Che et al. (2006) presented a hybrid tree kernel which combines a constituent and a path kernel. We however note that the paths in this kernel link predicates and their arguments and are very different from general paths in a tree that our dependency-based word subsequence kernel uses. Shen et al. (2003) proposed a lexicalized syntactic tree kernel which utilizes LTAG-based features. Toutanova et al. (2004) compute similarity between two HPSG parse trees by finding similarity between the leaf projection paths using string kernels.",
"cite_spans": [
{
"start": 135,
"end": 154,
"text": "Zhang et al. (2007)",
"ref_id": "BIBREF23"
},
{
"start": 446,
"end": 463,
"text": "Moschitti (2006b)",
"ref_id": "BIBREF16"
},
{
"start": 531,
"end": 554,
"text": "Moschitti et al. (2007)",
"ref_id": "BIBREF14"
},
{
"start": 656,
"end": 673,
"text": "Che et al. (2006)",
"ref_id": "BIBREF2"
},
{
"start": 943,
"end": 961,
"text": "Shen et al. (2003)",
"ref_id": "BIBREF18"
},
{
"start": 1043,
"end": 1066,
"text": "Toutanova et al. (2004)",
"ref_id": "BIBREF19"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Related Work",
"sec_num": "4"
},
{
"text": "A few kernels based on dependency trees have also been proposed. Zelenko et al. (2003) proposed a tree kernel over shallow parse tree representations of sentences. This tree kernel was slightly generalized by Culotta and Sorensen (2004) to compute similarity between two dependency trees. In addition to the words, this kernel also incorporates word classes into the kernel. The kernel is based on counting matching subsequences of children of matching nodes. But as was also noted in (Bunescu and Mooney, 2005a), this kernel is opaque i.e. it is not obvious what the implicit features are and the authors do not describe it either. In contrast, our dependency-based word subsequence kernel, which also computes similarity between two dependency trees, is very transparent with the implicit features being simply the dependency paths. Their kernel is also very time consuming and in their more general sparse setting it requires O(mn 3 ) time and O(mn 2 ) space, where m and n are the number of nodes of the two trees (m >= n) (Zelenko et al., 2003) . Bunescu and Mooney (2005a) give a shortest path dependency kernel for relation extraction. Their kernel, however, does not find similarity between two sentences but between the shortest dependency paths connecting the two entities of interests in the sentences. This kernel uses general dependency graphs but if the graph is a tree then the shortest path is the only path between the entities. Their kernel also uses word classes in addition to the words themselves.",
"cite_spans": [
{
"start": 65,
"end": 86,
"text": "Zelenko et al. (2003)",
"ref_id": "BIBREF22"
},
{
"start": 209,
"end": 236,
"text": "Culotta and Sorensen (2004)",
"ref_id": "BIBREF7"
},
{
"start": 1027,
"end": 1049,
"text": "(Zelenko et al., 2003)",
"ref_id": "BIBREF22"
},
{
"start": 1052,
"end": 1078,
"text": "Bunescu and Mooney (2005a)",
"ref_id": "BIBREF0"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Related Work",
"sec_num": "4"
},
{
"text": "We show that the new dependency-based word subsequence kernel performs better than word subsequence kernel and syntactic tree kernel on the task of domain-specific semantic parsing.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Experiments",
"sec_num": "5"
},
{
"text": "Semantic parsing is the task of converting natural language sentences into their domain-specific complete formal meaning representations which an application can execute, for example, to answer database queries or to control a robot. A learning system for semantic parsing induces a semantic parser from the training data of natural language sentences paired with their respective meaning representations. KRISP (Kate and Mooney, 2006) is a semantic parser learning system which uses word subsequence kernel based SVM (Cristianini and Shawe-Taylor, 2000) classifiers and was shown to be robust to noise compared to other semantic parser learners. The system learns an SVM classifier for every production of the meaning representation grammar which tells the probability with which a substring of the sentence represents the semantic concept of the production. Using these classifiers a complete meaning representation of an input sentence is obtained by finding the most probable parse which covers the whole sentence. For details please refer to (Kate and Mooney, 2006) .",
"cite_spans": [
{
"start": 406,
"end": 435,
"text": "KRISP (Kate and Mooney, 2006)",
"ref_id": null
},
{
"start": 518,
"end": 554,
"text": "(Cristianini and Shawe-Taylor, 2000)",
"ref_id": "BIBREF6"
},
{
"start": 1047,
"end": 1070,
"text": "(Kate and Mooney, 2006)",
"ref_id": "BIBREF9"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Semantic Parsing",
"sec_num": "5.1"
},
{
"text": "The key operation in KRISP is to find the similarity between any two substrings of two natural language sentences. Word subsequence kernel was employed in (Kate and Mooney, 2006) to compute the similarity between two substrings. We modified KRISP so that the similarity between two substrings can also be computed using the syntactic tree kernel and the dependency-based word subsequence kernel. For applying the syntactic tree kernel, the syntactic subtree over a substring of a sentence is determined from the syntactic tree of the sentence by finding the lowest common ancestor of the words in this substring and then considering the smallest subtree rooted at this node which includes all the words of the substring. For applying the dependency-based word subsequence kernel to two substrings of a sentence, the kernel computation was suitably modified so that the common paths between the two depen-dency trees always begin and end with the words present in the substrings. This is achieved by including only those downward paths in computations of CDP which end with words within the given substrings. These paths relate the words within the substrings perhaps using words outside of these substrings.",
"cite_spans": [
{
"start": 155,
"end": 178,
"text": "(Kate and Mooney, 2006)",
"ref_id": "BIBREF9"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Semantic Parsing",
"sec_num": "5.1"
},
{
"text": "We measure the performance of KRISP obtained using the three types of kernels on the GEOQUERY corpus which has been used previously by several semantic parsing learning systems. It contains 880 natural language questions about the US geography paired with their executable meaning representations in a functional query language (Kate et al., 2005) . Since the purpose of the experiments is to compare different kernels and not different semantic parsers, we do not compare the performance with other semantic parser learning systems. The training and testing was done using standard 10-fold cross-validation and the performance was measured in terms of precision (the percentage of generated meaning representations that were correct) and recall (the percentage of all sentences for which correct meaning representations were obtained). Since KRISP assigns confidences to the meaning representations it outputs, an entire range of precision-recall trade-off can be obtained. We measure the best Fmeasure (harmonic mean of precision and recall) obtained when the system is trained using increasing amounts of training data.",
"cite_spans": [
{
"start": 328,
"end": 347,
"text": "(Kate et al., 2005)",
"ref_id": "BIBREF10"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Methodology",
"sec_num": "5.2"
},
{
"text": "Since we were not interested in the accuracy of dependency trees or syntactic trees but in the comparison between various kernels, we worked with gold-standard syntactic trees. We did not have goldstandard dependency trees available for this corpus so we obtained them indirectly from the goldstandard syntactic trees using the head-rules from (Collins, 1999) . We however note that accurate syntactic trees can be obtained by training a syntactic parser on WSJ treebank and gold-standard parse trees of some domain-specific sentences (Kate et al., 2005) .",
"cite_spans": [
{
"start": 344,
"end": 359,
"text": "(Collins, 1999)",
"ref_id": "BIBREF4"
},
{
"start": 535,
"end": 554,
"text": "(Kate et al., 2005)",
"ref_id": "BIBREF10"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Methodology",
"sec_num": "5.2"
},
{
"text": "In the experiments, the \u03b1 parameter of the dependency-based word subsequence kernel was set to 0.25, the \u03bb parameter of the word subsequence kernel was fixed to 0.75 and the downweighting pa- rameter for the syntactic tree kernel was fixed to 0.4. These were determined through pilot experiments with a smaller portion of the data set. The maximum length of subsequences required by the word subsequence kernel was fixed to 3, a longer length was not found to improve the performance and was only increasing the running time. Table 1 shows the results. The dependency-based word subsequence kernel always performs better than the syntactic tree kernel. All the numbers under the dependency kernel were found statistically significant (p < 0.05) over the corresponding numbers under the syntactic tree kernel based on paired t-tests. The improvement of the dependencybased word subsequence kernel over the word subsequence kernel is greater with less training data, showing that the dependency information is more useful when the training data is limited. The performance converges with higher amounts of training data. The numbers shown in bold were found statistically significant over the corresponding numbers under the word subsequence kernel. It may be noted that syntactic tree kernel is mostly doing worse than the word subsequence kernel. We believe this is because of the shortcomings of the syntactic tree kernel pointed out in Subsection 2.2. Since this is a semantic processing task, the words play an important role and the generalized syntactic categories are not very helpful.",
"cite_spans": [],
"ref_spans": [
{
"start": 526,
"end": 533,
"text": "Table 1",
"ref_id": null
}
],
"eq_spans": [],
"section": "Methodology",
"sec_num": "5.2"
},
{
"text": "In future, the dependency-based word subsequence kernel could be extended to incorporate word classes like the kernels presented in (Bunescu and Mooney, 2005a; Zelenko et al., 2003) . It should be possible to achieve this by incorporating matches between word classes in addition to the exact word matches in the kernel computations similar to the way in which the word subsequence kernel was extended to incorporate word classes in (Bunescu and Mooney, 2005b) . This will generalize the kernel and make it more robust to data sparsity.",
"cite_spans": [
{
"start": 132,
"end": 159,
"text": "(Bunescu and Mooney, 2005a;",
"ref_id": "BIBREF0"
},
{
"start": 160,
"end": 181,
"text": "Zelenko et al., 2003)",
"ref_id": "BIBREF22"
},
{
"start": 433,
"end": 460,
"text": "(Bunescu and Mooney, 2005b)",
"ref_id": "BIBREF1"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Future Work",
"sec_num": "6"
},
{
"text": "The dependency-based word subsequence kernel could be tested on other tasks which require computing similarity between sentences or texts, like text classification, paraphrasing, summarization etc. We believe this kernel will help improve performance on those tasks.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Future Work",
"sec_num": "6"
},
{
"text": "We introduced a new kernel which finds similarity between two sentences as the number of common paths shared between their dependency trees. This kernel can also be looked upon as an improved word subsequence kernels which only counts the common word subsequences which are related by dependencies. We also gave an efficient algorithm to compute this kernel. The kernel was shown to out-perform the word subsequence kernel and the syntactic tree kernel on the task of semantic parsing.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Conclusions",
"sec_num": "7"
},
{
"text": "(Lodhi et al., 2002) use character subsequences instead of word subsequences which are even less meaningful.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
},
{
"text": "This analysis uses the fact that any node in a tree on average has O(1) number of children.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
}
],
"back_matter": [],
"bib_entries": {
"BIBREF0": {
"ref_id": "b0",
"title": "A shortest path dependency kernel for relation extraction",
"authors": [
{
"first": "C",
"middle": [],
"last": "Razvan",
"suffix": ""
},
{
"first": "Raymond",
"middle": [
"J"
],
"last": "Bunescu",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Mooney",
"suffix": ""
}
],
"year": 2005,
"venue": "Proc. of HLT/EMNLP-05",
"volume": "",
"issue": "",
"pages": "724--731",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Razvan C. Bunescu and Raymond J. Mooney. 2005a. A shortest path dependency kernel for relation extrac- tion. In Proc. of HLT/EMNLP-05, pages 724-731, Vancouver, BC, October.",
"links": null
},
"BIBREF1": {
"ref_id": "b1",
"title": "Vancouver, BC. Nicola Cancedda, Eric Gaussier, Cyril Goutte, and Jean Michel Renders",
"authors": [
{
"first": "C",
"middle": [],
"last": "Razvan",
"suffix": ""
},
{
"first": "Raymond",
"middle": [
"J"
],
"last": "Bunescu",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Mooney",
"suffix": ""
}
],
"year": 2003,
"venue": "Advances in Neural Information Processing Systems",
"volume": "18",
"issue": "",
"pages": "1059--1082",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Razvan C. Bunescu and Raymond J. Mooney. 2005b. Subsequence kernels for relation extraction. In Y. Weiss, B. Sch\u00f6lkopf, and J. Platt, editors, Advances in Neural Information Processing Systems 18, Vancou- ver, BC. Nicola Cancedda, Eric Gaussier, Cyril Goutte, and Jean Michel Renders. 2003. Word sequence kernels. Journal of Machine Learning Research, Special Issue on Machine Learning Methods for Text and Images, 3:1059-1082, February.",
"links": null
},
"BIBREF2": {
"ref_id": "b2",
"title": "A hybrid convolution tree kernel for semantic role labeling",
"authors": [
{
"first": "Wanxiang",
"middle": [],
"last": "Che",
"suffix": ""
},
{
"first": "Min",
"middle": [],
"last": "Zhang",
"suffix": ""
},
{
"first": "Ting",
"middle": [],
"last": "Liu",
"suffix": ""
},
{
"first": "Sheng",
"middle": [],
"last": "Li",
"suffix": ""
}
],
"year": 2006,
"venue": "Proc. of COLING/ACL-06",
"volume": "",
"issue": "",
"pages": "73--80",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Wanxiang Che, Min Zhang, Ting Liu, and Sheng Li. 2006. A hybrid convolution tree kernel for semantic role labeling. In Proc. of COLING/ACL-06, pages 73- 80, Sydney, Australia, July.",
"links": null
},
"BIBREF3": {
"ref_id": "b3",
"title": "Convolution kernels for natural language",
"authors": [
{
"first": "Michael",
"middle": [],
"last": "Collins",
"suffix": ""
},
{
"first": "Nigel",
"middle": [],
"last": "Duffy",
"suffix": ""
}
],
"year": 2001,
"venue": "Proc. of NIPS",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Michael Collins and Nigel Duffy. 2001. Convolution kernels for natural language. In Proc. of NIPS-2001.",
"links": null
},
"BIBREF4": {
"ref_id": "b4",
"title": "Head-driven Statistical Models for Natural Language Parsing",
"authors": [
{
"first": "Michael",
"middle": [],
"last": "Collins",
"suffix": ""
}
],
"year": 1999,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Michael Collins. 1999. Head-driven Statistical Models for Natural Language Parsing. Ph.D. thesis, Univer- sity of Pennsylvania.",
"links": null
},
"BIBREF5": {
"ref_id": "b5",
"title": "New ranking algorithms for parsing and tagging: Kernels over discrete structures, and the voted perceptron",
"authors": [
{
"first": "Michael",
"middle": [],
"last": "Collins",
"suffix": ""
}
],
"year": 2002,
"venue": "Proc. of ACL-2002",
"volume": "",
"issue": "",
"pages": "263--270",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Michael Collins. 2002. New ranking algorithms for pars- ing and tagging: Kernels over discrete structures, and the voted perceptron. In Proc. of ACL-2002, pages 263-270, Philadelphia, PA, July.",
"links": null
},
"BIBREF6": {
"ref_id": "b6",
"title": "An Introduction to Support Vector Machines and Other Kernel-based Learning Methods",
"authors": [
{
"first": "Nello",
"middle": [],
"last": "Cristianini",
"suffix": ""
},
{
"first": "John",
"middle": [],
"last": "Shawe-Taylor",
"suffix": ""
}
],
"year": 2000,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Nello Cristianini and John Shawe-Taylor. 2000. An Introduction to Support Vector Machines and Other Kernel-based Learning Methods. Cambridge Univer- sity Press.",
"links": null
},
"BIBREF7": {
"ref_id": "b7",
"title": "Dependency tree kernels for relation extraction",
"authors": [
{
"first": "Aron",
"middle": [],
"last": "Culotta",
"suffix": ""
},
{
"first": "Jeffrey",
"middle": [],
"last": "Sorensen",
"suffix": ""
}
],
"year": 2004,
"venue": "Proc. of ACL-04",
"volume": "",
"issue": "",
"pages": "423--429",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Aron Culotta and Jeffrey Sorensen. 2004. Dependency tree kernels for relation extraction. In Proc. of ACL- 04, pages 423-429, Barcelona, Spain, July.",
"links": null
},
"BIBREF8": {
"ref_id": "b8",
"title": "Word Grammar",
"authors": [
{
"first": "Richard",
"middle": [],
"last": "Hudson",
"suffix": ""
}
],
"year": 1984,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Richard Hudson. 1984. Word Grammar. Blackwell.",
"links": null
},
"BIBREF9": {
"ref_id": "b9",
"title": "Using string-kernels for learning semantic parsers",
"authors": [
{
"first": "J",
"middle": [],
"last": "Rohit",
"suffix": ""
},
{
"first": "Raymond",
"middle": [
"J"
],
"last": "Kate",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Mooney",
"suffix": ""
}
],
"year": 2006,
"venue": "Proc. of COLING/ACl-06",
"volume": "",
"issue": "",
"pages": "913--920",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Rohit J. Kate and Raymond J. Mooney. 2006. Us- ing string-kernels for learning semantic parsers. In Proc. of COLING/ACl-06, pages 913-920, Sydney, Australia, July.",
"links": null
},
"BIBREF10": {
"ref_id": "b10",
"title": "Learning to transform natural to formal languages",
"authors": [
{
"first": "J",
"middle": [],
"last": "Rohit",
"suffix": ""
},
{
"first": "Yuk",
"middle": [
"Wah"
],
"last": "Kate",
"suffix": ""
},
{
"first": "Raymond",
"middle": [
"J"
],
"last": "Wong",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Mooney",
"suffix": ""
}
],
"year": 2005,
"venue": "Proc. AAAI-2005",
"volume": "",
"issue": "",
"pages": "1062--1068",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Rohit J. Kate, Yuk Wah Wong, and Raymond J. Mooney. 2005. Learning to transform natural to formal lan- guages. In Proc. AAAI-2005, pages 1062-1068, Pitts- burgh, PA, July.",
"links": null
},
"BIBREF11": {
"ref_id": "b11",
"title": "Simple semi-supervised dependency parsing",
"authors": [
{
"first": "Terry",
"middle": [],
"last": "Koo",
"suffix": ""
},
{
"first": "Xavier",
"middle": [],
"last": "Carreras",
"suffix": ""
},
{
"first": "Michael",
"middle": [],
"last": "Collins",
"suffix": ""
}
],
"year": 2008,
"venue": "Proc. of ACL-08",
"volume": "",
"issue": "",
"pages": "595--603",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Terry Koo, Xavier Carreras, and Michael Collins. 2008. Simple semi-supervised dependency parsing. In Proc. of ACL-08, pages 595-603, Columbus, Ohio, June.",
"links": null
},
"BIBREF12": {
"ref_id": "b12",
"title": "Text classification using string kernels",
"authors": [
{
"first": "Huma",
"middle": [],
"last": "Lodhi",
"suffix": ""
},
{
"first": "Craig",
"middle": [],
"last": "Saunders",
"suffix": ""
},
{
"first": "John",
"middle": [],
"last": "Shawe-Taylor",
"suffix": ""
},
{
"first": "Nello",
"middle": [],
"last": "Cristianini",
"suffix": ""
},
{
"first": "Chris",
"middle": [],
"last": "Watkins",
"suffix": ""
}
],
"year": 2002,
"venue": "Journal of Machine Learning Research",
"volume": "2",
"issue": "",
"pages": "419--444",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Huma Lodhi, Craig Saunders, John Shawe-Taylor, Nello Cristianini, and Chris Watkins. 2002. Text classifica- tion using string kernels. Journal of Machine Learning Research, 2:419-444.",
"links": null
},
"BIBREF13": {
"ref_id": "b13",
"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": "Proc. of HLT/EMNLP-05",
"volume": "",
"issue": "",
"pages": "523--530",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Ryan McDonald, Fernando Pereira, Kiril Ribarov, and Jan Hajic. 2005. Non-projective dependency pars- ing using spanning tree algorithms. In Proc. of HLT/EMNLP-05, pages 523-530, Vancouver, BC.",
"links": null
},
"BIBREF14": {
"ref_id": "b14",
"title": "Exploiting syntactic and shallow semantic kernels for question answer classification",
"authors": [
{
"first": "Alessandro",
"middle": [],
"last": "Moschitti",
"suffix": ""
},
{
"first": "Silvia",
"middle": [],
"last": "Quarteroni",
"suffix": ""
},
{
"first": "Roberto",
"middle": [],
"last": "Basili",
"suffix": ""
},
{
"first": "Suresh",
"middle": [],
"last": "Manandhar",
"suffix": ""
}
],
"year": 2007,
"venue": "Proc. of ACL-07",
"volume": "",
"issue": "",
"pages": "776--783",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Alessandro Moschitti, Silvia Quarteroni, Roberto Basili, and Suresh Manandhar. 2007. Exploiting syntactic and shallow semantic kernels for question answer clas- sification. In Proc. of ACL-07, pages 776-783, Prague, Czech Republic, June.",
"links": null
},
"BIBREF15": {
"ref_id": "b15",
"title": "Making tree kernels practical for natural language learning",
"authors": [
{
"first": "Alessandro",
"middle": [],
"last": "Moschitti",
"suffix": ""
}
],
"year": 2006,
"venue": "Proc. of EACL-06",
"volume": "",
"issue": "",
"pages": "113--120",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Alessandro Moschitti. 2006a. Making tree kernels prac- tical for natural language learning. In Proc. of EACL- 06, pages 113-120, Trento, Italy, April.",
"links": null
},
"BIBREF16": {
"ref_id": "b16",
"title": "Syntactic kernels for natural language learning: the semantic role labeling case",
"authors": [
{
"first": "Alessandro",
"middle": [],
"last": "Moschitti",
"suffix": ""
}
],
"year": 2006,
"venue": "Proc. of HLT/NAACL-06, short papers",
"volume": "",
"issue": "",
"pages": "97--100",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Alessandro Moschitti. 2006b. Syntactic kernels for natu- ral language learning: the semantic role labeling case. In Proc. of HLT/NAACL-06, short papers, pages 97- 100, New York City, USA, June.",
"links": null
},
"BIBREF17": {
"ref_id": "b17",
"title": "Efficient computation of gapped substring kernels on large alphabets",
"authors": [
{
"first": "Juho",
"middle": [],
"last": "Rousu",
"suffix": ""
},
{
"first": "John",
"middle": [],
"last": "Shawe-Taylor",
"suffix": ""
}
],
"year": 2005,
"venue": "Journal of Machine Learning Research",
"volume": "6",
"issue": "",
"pages": "1323--1344",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Juho Rousu and John Shawe-Taylor. 2005. Efficient computation of gapped substring kernels on large al- phabets. Journal of Machine Learning Research, 6:1323-1344.",
"links": null
},
"BIBREF18": {
"ref_id": "b18",
"title": "Using ltag based features in parse reranking",
"authors": [
{
"first": "Libin",
"middle": [],
"last": "Shen",
"suffix": ""
},
{
"first": "Anoop",
"middle": [],
"last": "Sarkar",
"suffix": ""
},
{
"first": "Aravind",
"middle": [],
"last": "Joshi",
"suffix": ""
}
],
"year": 2003,
"venue": "Proc. of EMNLP-2003",
"volume": "",
"issue": "",
"pages": "89--96",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Libin Shen, Anoop Sarkar, and Aravind Joshi. 2003. Us- ing ltag based features in parse reranking. In Proc. of EMNLP-2003, pages 89-96, Sapporo, Japan, July.",
"links": null
},
"BIBREF19": {
"ref_id": "b19",
"title": "The leaf projection path view of parse trees: Exploring string kernels for HPSG parse selection",
"authors": [
{
"first": "Kristina",
"middle": [],
"last": "Toutanova",
"suffix": ""
},
{
"first": "Penka",
"middle": [],
"last": "Markova",
"suffix": ""
},
{
"first": "Christopher",
"middle": [],
"last": "Manning",
"suffix": ""
}
],
"year": 2004,
"venue": "Proc. EMNLP-04",
"volume": "",
"issue": "",
"pages": "166--173",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Kristina Toutanova, Penka Markova, and Christopher Manning. 2004. The leaf projection path view of parse trees: Exploring string kernels for HPSG parse selection. In Proc. EMNLP-04, pages 166-173, Barcelona, Spain, July.",
"links": null
},
"BIBREF20": {
"ref_id": "b20",
"title": "Statistical Learning Theory",
"authors": [
{
"first": "N",
"middle": [],
"last": "Vladimir",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Vapnik",
"suffix": ""
}
],
"year": 1998,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Vladimir N. Vapnik. 1998. Statistical Learning Theory. John Wiley & Sons.",
"links": null
},
"BIBREF21": {
"ref_id": "b21",
"title": "Semi-supervised convex training for dependency parsing",
"authors": [
{
"first": "Qin Iris",
"middle": [],
"last": "Wang",
"suffix": ""
},
{
"first": "Dale",
"middle": [],
"last": "Schuurmans",
"suffix": ""
},
{
"first": "Dekang",
"middle": [],
"last": "Lin",
"suffix": ""
}
],
"year": 2008,
"venue": "Proceedings of ACL-08: HLT",
"volume": "",
"issue": "",
"pages": "532--540",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Qin Iris Wang, Dale Schuurmans, and Dekang Lin. 2008. Semi-supervised convex training for dependency pars- ing. In Proceedings of ACL-08: HLT, pages 532-540, Columbus, Ohio, June.",
"links": null
},
"BIBREF22": {
"ref_id": "b22",
"title": "Kernel methods for relation extraction",
"authors": [
{
"first": "D",
"middle": [],
"last": "Zelenko",
"suffix": ""
},
{
"first": "C",
"middle": [],
"last": "Aone",
"suffix": ""
},
{
"first": "A",
"middle": [],
"last": "Richardella",
"suffix": ""
}
],
"year": 2003,
"venue": "Journal of Machine Learning Research",
"volume": "3",
"issue": "",
"pages": "1083--1106",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "D. Zelenko, C. Aone, and A. Richardella. 2003. Kernel methods for relation extraction. Journal of Machine Learning Research, 3:1083-1106.",
"links": null
},
"BIBREF23": {
"ref_id": "b23",
"title": "A grammar-driven convolution tree kernel for semantic role classification",
"authors": [
{
"first": "Min",
"middle": [],
"last": "Zhang",
"suffix": ""
},
{
"first": "Wanxiang",
"middle": [],
"last": "Che",
"suffix": ""
},
{
"first": "Aiti",
"middle": [],
"last": "Aw",
"suffix": ""
},
{
"first": "Guodong",
"middle": [],
"last": "Chew Lim Tan",
"suffix": ""
},
{
"first": "Ting",
"middle": [],
"last": "Zhou",
"suffix": ""
},
{
"first": "Sheng",
"middle": [],
"last": "Liu",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Li",
"suffix": ""
}
],
"year": 2007,
"venue": "Proc. of ACL-2007",
"volume": "",
"issue": "",
"pages": "200--207",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Min Zhang, Wanxiang Che, Aiti Aw, Chew Lim Tan, Guodong Zhou, Ting Liu, and Sheng Li. 2007. A grammar-driven convolution tree kernel for semantic role classification. In Proc. of ACL-2007, pages 200- 207, Prague, Czech Republic, June.",
"links": null
}
},
"ref_entries": {
"FIGREF0": {
"type_str": "figure",
"text": "Two natural language sentences.",
"uris": null,
"num": null
},
"FIGREF1": {
"type_str": "figure",
"text": "Syntactic parse tree of the sentence shown inFigure 1 (b). Syntactic parse tree of the sentence shown inFigure 1 (a).",
"uris": null,
"num": null
},
"FIGREF2": {
"type_str": "figure",
"text": "Dependency tree of the sentence shown inFigure 1 (b).",
"uris": null,
"num": null
}
}
}
}