<?xml version="1.0"?><!DOCTYPE article SYSTEM "/project/take/software/searchbench_offline_processing/paperxml_generator/aclextractor/src/python/../resource/dtd/paperxml.dtd"><article><header><firstpageheader><page local="1" global="472"/><title>UVAVU: WordNet Similarity and Lexical Patterns for Semantic Relation Classification</title><pubinfo>Y Proceedings of the 4th International Workshop on Semantic Evaluations (SemEval-2007),pages 472-475, Prague, June 2007. ©2007 Association for Computational Linguistics</pubinfo><author surname="van Hage" givenname="Willem Robert"><org  name="University of Amsterdam" country="The Netherlands" city="Amsterdam"/></author><author surname="Katrenko" givenname="Sophia"><org  name="University of Amsterdam" country="The Netherlands" city="Amsterdam"/></author></firstpageheader><frontmatter><p><b>UVAVU: WordNet Similarity and Lexical Patterns for Semantic Relation Classification</b></p><p><b>Willem Robert van Hage</b></p><p>TNO Science &amp; Industry Stieltjesweg 1, 2628CK Delft the Netherlands</p><p>wrvhage@few.vu.nl</p><p><b>Sophia Katrenko</b></p><p>HCSL, University of Amsterdam Kruislaan 419, 1098VA Amsterdam the Netherlands</p><p>katrenko@science.uva.nl</p></frontmatter><abstract>The system we propose to learning seman­tic relations consists of two parallel com­ponents. For our final submission we used components based on the similarity mea­sures defined over WordNet and the patterns extracted from the Web and WMTS. Other components using syntactic structures were explored but not used for the final run. </abstract></header><body><section number="1" title="Experimental Set-up"><p>The system we used to classify the semantic rela­tions consists of two parallel binary classifiers. We ran this system for each of the seven semantic re­lations separately. Each classifier predicts for each instance of the relation whether it holds or not. The predictions of all the classifiers are aggregated for each instance by disjunction. That is to say, each in­stance is predicted to be false by default unless any of the classifiers gives evidence against this.</p><p>To generate the submitted predictions we used two parallel classifiers: (1) a classifier that com­bines eleven WordNet-based similarity measures, see Sec. 2.1, and (2) a classifier that learns lexical patterns from Google and the Waterloo Multi-Text System (WMTS)(Turney, 2004) snippets and ap­plies these on the same corpora, see Sec. 2.2.</p><p>Three other classifiers we experimented with, but that were not used to generate the submitted predic­tions: (3) a classifier that uses string kernel methods on the dependency paths of the training sentences, see Sec. 3.1, (4) a classifier that uses string kernels on the local context of the subject and object nom-inals in the training sentences, see Sec. 3.2 and (5) a classifier that uses hand-made lexical patterns on</p><doubt alpha="66.0" length="47" tooSmall="False" monospace="0.0">Google and WMTS, see Sec. 3.3.2   Submitted Run</doubt><subsection number="2.1" title="WordNet-based Similarity Measures"><p>WordNet 3.0 (Fellbaum, 1998) is the most fre­quently used lexical database of English. As this re­source consists of lexical and semantic relations, its use constitutes an appealing option to learning rela­tions. In particular, we believe that given two men­tions of the same semantic relation, their arguments should also be similar. Or, in analogy learning terms, if <i>R\(X\,Y\</i>) and <i>R2(X2,Y2</i>) are relation mentions of the same type, then <i>X\ Y\ </i>as <i>X2 Y2</i>. Our prelim­inary experiments with WordNet suggested that few arguments of each relation are connected by imme­diate hyperonymy or meronymy relations. As a re­sult, we decided to use similarity measures defined over WordNet (Pedersen et al., 2004). The Word-Net::Similarity package (Pedersen et al., 2004) in­cludes 11 different measures, which mostly use ei­ther the WordNet glosses <i>(lesk </i>or <i>vector </i>measures) or the paths between a pair of concepts <i>(lch; wup) </i>to determine their relatedness.</p><p>To be able to use WordNet::Similarity, we mapped all WordNet sense keys from the training and test sets to the earlier WordNet version (2.1). Given a relation <i>R(X,</i><i> </i>), we computed the related-ness scores for each pair of arguments <i>X </i>and <i>Y</i>. The scores together with the sense keys of arguments were further used as features for the machine learn­ing method. As there is no a priori knowledge on what measures are the most important for each relation, all of them were used and no feature selection step has been taken.<page local="2" global="473"/></p><p>We experimented with a number of machine learning methods such as <i>k</i>-nearest neighbour al­gorithm, logistic regression, bayesian networks and others. For each relation a method performing best on the training set was selected (using 5-fold cross-validation).</p></subsection><subsection number="2.2" title="Learnt Lexical Patterns"><p>This classifier models the intuition that when a pair of nominals is used in similar phrases as another pair they share at least one relation, and when no such phrases can be found they do not share any relation. Applied to the semantic relation classification prob­lem this means that when a pair in the test set can be found in the same patterns as pairs from the training set, the classification for the pair will be true.</p><p>To find the patterns we followed step 1 to 6 de­scribed in (Turney, 2006), with the exception that we used both Google and the WMTS to compute pattern frequency.</p><p>First we extracted the pairs of nominals <i>(X,</i><i> </i><i>Y)</i><i> </i>from the training sentences and created one Google query and a set of WMTS queries for each pair. The Google queries were of the form <i>"X</i><i> </i>* <i>Y</i><i> </i>" OR <i>"Y</i><i> </i><i>*</i><i> </i><i>X</i>". Currently, Google performs mor­phological normalization on every query, so we did not make separate queries for various endings of the nominals. For the WMTS we did make separate queries for various morphological varia­tions. We used the following set of suffixes: '-tion(slal)', '-ly', '-ist', '-ical', '-y', '-ing', '-ed', '-ies , and '-s . For this we used Peter Turney s pairs Perl package. The WMTS queries looked like [ <i>n </i>]&gt;([5].."X "..[ <i>i </i>].." Y"..[5]) and <i>[n</i><i>]&gt;([5</i><i>].."Y</i><i> </i>"<i>..</i>[ <i>i</i><i> </i>].."X "..[5]) for <i>i</i><i> </i><i>=</i><i> </i>1, 2,3 and <i>n = i </i>+12, and for each variation of <i>X </i>and <i>Y </i>. Then we extracted sentences from the Google snippets and cut out a context of size 5, so that we were left with similar text segments as those returned by the WMTS queries. We merged the lists of text segments and counted all <i>n</i>-grams that contained both nominals for <i>n </i>= 1 to 6. We sub­stituted the nominals by variables in the <i>n</i>-grams with a count greater than 10 and used these as pat­terns for the classifier. An example of such a pat­tern for the Cause-Effect relation is "generation</p><p>of <i>Y </i>by <i>X</i>". After this we followed step 3 to 6 of (Turney, 2006), which left us with a matrix for each of the seven semantic relations, where each row represented a pair of nominals and each column represented the frequency of a pattern, and where each pair was classified as either true or false. The straightforward way to find pattern frequencies for the pairs in the test set would be to fill in these pat­terns with the pairs of nominals from the test set. This was not feasible given the time limitation on the task. So instead, for each pair of nominals in the test set we gathered the top-1000 snippets and computed pattern frequencies by counting how of­ten the nominals occur in every pattern on this set text segments. We constructed a matrix from these frequencies in the same way as for the training set, but without classifications for the pairs. We experi­mented with various machine learning algorithms to predict the classes of the pairs. We chose to use <i>k-</i>nearest neighbors, because it was the only algorithm that gave more subtle predictions than true for every pair or false for every pair. For each semantic rela­tion we used the value of <i>k </i>that produced the highest <i>F\</i><i> </i>score on 5-fold cross validation on the training data.</p></subsection></section><section number="3" title="Additional Runs"><subsection number="3.1" title="String Kernels on Dependency Paths"><p>It has been a long tradition to use syntactic structures for relation extraction task. Some of the methods as in (Katrenko and Adriaans, 2004) have used in­formation extracted from the dependency trees. We followed similar approach by considering the paths between each pair of arguments <i>X </i>and <i>Y </i>. Ideally, if each syntactic structure is a tree, there is only one path from one node to the other. After we have ex­tracted paths, we used them as input for the string kernel methods (Hal Daumé III, 2004). The advan­tage of using string kernels is that they can handle sequences of different lengths and already proved to be efficient for a number of tasks.</p><p>All sentences in the training data were parsed using MINIPAR (Lin, 1998). From each depen­dency tree we extracted a dependency path (if any) between the arguments by collecting all lemmas (nodes) and syntactic functions (edges). The se­quences we obtained were fed into string kernel.</p><page local="3" global="474"/><p>To assess the results, we carried out 5-fold cross-validation. Even by optimizing the parameters of the kernel (such as the length of subsequences) for each relation, the highest accuracy we obtained was equal 61,54% (on Origin-Entity relation) and the lowest was accuracy for the Instrument-Agency re­lation (50,48%).</p></subsection><subsection number="3.2" title="String Kernels on Local Context"><p>Alternatively to syntactic information, we also ex­tracted the snippets of the fixed length from each sentence. For each relation mention of <i>R(X</i><i>,Y</i>), all tokens between the relation arguments <i>X </i>and <i>Y </i>were collected along with at most three tokens to the left and to the right. Unfortunately, the results we ob­tained on the training set were comparable to those obtained by string kernels on dependency paths and less accurate than the results provided by WordNet similarity measures or patterns extracted from the Web and WMTS. As a consequence, string kernel methods were not used for the final submission.</p></subsection><subsection number="3.3" title="Manually-created Lexical Patterns"><p>The results of the method described in Sec. 2.2 are quite far below what we expected given earlier re­sults in the literature (Turney, 2006; van Hage, Ka-trenko, and Schreiber, 2005; van Hage, Kolb, and zioni et al., 2004). We think this is caused by the fact that many pairs in the training set are non-stereotypical examples. So often the most com­monly described relation of such a pair is not the re­lation we try to classify with the pair. For example, common associations with the pair (body,parents) are that it is the parents' body, or that the parents are member of some organizing body, while it is a positive example for the Product-Producer relation. We wanted to see if this could be the case by testing whether more intuitive patterns give better results on the test set. The patterns we manually created for each relation are shown in Table 1. If a pair gives any results for these patterns on Google or WMTS, we classify the pair as true, otherwise we classify it as false. The results are shown in Table 2. We did not use these results for the submitted run, be­cause only automatic runs were permitted. The man­ual patterns did not yield many useful results at all. Apparently intuitive patterns do not capture what is required to classify the relations in the test set. The patterns we used for the Part-Whole (6) relation had an average Precision of .50, which is much lower than the average Precision found in (van Hage, Kolb, and Schreiber, 2006), which was around 0.88. We conclude that both the sets of training and test ex­amples capture different semantics of the relations than the intuitive ones, which causes common sense background knowledge, such as Google to produce bad results.</p><doubt alpha="60.4" length="48" tooSmall="False" monospace="0.0">Schreiber, 2006; Berland and Charniak, 2006; Et-</doubt><p>rel. patterns</p><doubt alpha="61.0" length="41" tooSmall="False" monospace="0.0">1. X causes Y, X caused by Y, X * cause Y</doubt><doubt alpha="54.3" length="35" tooSmall="False" monospace="0.0">2. X used Y, X uses Y, X * with a Y</doubt></subsection></section><section number="3." title="X made by Y, X produced by Y, Y makes X, Y produces X"><doubt alpha="56.2" length="48" tooSmall="False" monospace="0.0">4. Y comes from X, X * source of Y, Y * from * X</doubt><doubt alpha="42.9" length="42" tooSmall="False" monospace="0.0">5. Y * to * X, Y * for * X, used Y for * X</doubt><doubt alpha="60.6" length="33" tooSmall="False" monospace="0.0">6. X in Y, Y contains X, X from Y</doubt></section><section number="7." title="Y contains X, X in Y, X containing Y, X into Y"><table caption="Table 1: Hand-written patterns."></table><p>Google and WMTS.</p></section><section number="4" title="Results"><subsection number="4.1" title="WordNet-based Similarity Measures"><p>Table 3 shows the results of the WordNet-based sim­ilarity measure method. In the 'methods' column, the abbreviation LR stands for logistic regression, <i>K</i>-NN stands for ^-nearest neighbour, and DT stands for decision trees.</p><table caption="Table 2: Results for hand-written lexical patterns on" class="main" frame="box" rules="all" border="0" regular="False"><tr class="row"><td class="cell"></td><td class="cell"></td><td class="cell"></td><td class="cell"></td><td class="cell"></td><td class="cell"></td><td class="cell"></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>relation</p></td><td class="cell"><p>N</p></td><td class="cell"><p>Prec.</p></td><td class="cell"><p>Recall</p></td><td class="cell"><p><i>Fi</i></p></td><td class="cell"><p>Acc.</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>1. Cause-Effect</p></td><td class="cell"><p>6</p></td><td class="cell"><p>1</p></td><td class="cell"><p>0.15</p></td><td class="cell"><p>0.25</p></td><td class="cell"><p>0.56</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>2. Instr.-Agency</p><p>3. Prod.-Prod.</p></td><td class="cell"><p>2 4</p></td><td class="cell"><p>1</p><p>0.75</p></td><td class="cell"><p>0.05 0.05</p></td><td class="cell"><p>0.10</p><p>0.09</p></td><td class="cell"><p>0.54 0.35</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>4. Origin-Ent.</p><p>5. Theme-Tool</p></td><td class="cell"><p>6 2</p></td><td class="cell"><p>0.33 0</p></td><td class="cell"><p>0.05 0</p></td><td class="cell"><p>0.09</p><p>0</p></td><td class="cell"><p>0.35 0.56</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>6. Part-Whole</p></td><td class="cell"><p>16</p></td><td class="cell"><p>0.50</p></td><td class="cell"><p>0.31</p></td><td class="cell"><p>0.38</p></td><td class="cell"><p>0.64</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>7. Cont.-Cont.</p></td><td class="cell"><p>11</p></td><td class="cell"><p>0.54</p></td><td class="cell"><p>0.16</p></td><td class="cell"><p>0.24</p></td><td class="cell"><p>0.50</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"></td><td class="cell"></td><td class="cell"></td><td class="cell"></td><td class="cell"></td><td class="cell"></td><td class="cell"></td></tr></table><table caption="Table 3: Results for similarity-measure methods." class="main" frame="box" rules="all" border="0" regular="False"><tr class="row"><td class="cell"></td><td class="cell"></td><td class="cell"></td><td class="cell"></td><td class="cell"></td><td class="cell"></td><td class="cell"></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>relation</p></td><td class="cell"><p>method</p></td><td class="cell"><p>Prec.</p></td><td class="cell"><p>Recall</p></td><td class="cell"><p><i>Fi</i></p></td><td class="cell"><p>Acc.</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>1. Cause-Effect</p></td><td class="cell"><p>LR</p></td><td class="cell"><p>0.48</p></td><td class="cell"><p>0.51</p></td><td class="cell"><p>0.49</p></td><td class="cell"><p>0.45</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>2. Instr.-Agency</p></td><td class="cell"><p>DT</p></td><td class="cell"><p>0.65</p></td><td class="cell"><p>0.63</p></td><td class="cell"><p>0.64</p></td><td class="cell"><p>0.62</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>3. Prod.-Prod.</p></td><td class="cell"><p>DT</p></td><td class="cell"><p>0.67</p></td><td class="cell"><p>0.50</p></td><td class="cell"><p>0.57</p></td><td class="cell"><p>0.46</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>4. Origin-Ent.</p></td><td class="cell"><p>LR</p></td><td class="cell"><p>0.50</p></td><td class="cell"><p>0.47</p></td><td class="cell"><p>0.49</p></td><td class="cell"><p>0.49</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>5. Theme-Tool</p></td><td class="cell"><p>LR</p></td><td class="cell"><p>0.54</p></td><td class="cell"><p>0.52</p></td><td class="cell"><p>0.53</p></td><td class="cell"><p>0.62</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>6. Part-Whole</p></td><td class="cell"><p>DT</p></td><td class="cell"><p>0.54</p></td><td class="cell"><p>0.73</p></td><td class="cell"><p>0.62</p></td><td class="cell"><p>0.67</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>7. Cont.-Cont.</p></td><td class="cell"><p>2-NN</p></td><td class="cell"><p>0.66</p></td><td class="cell"><p>0.55</p></td><td class="cell"><p>0.60</p></td><td class="cell"><p>0.62</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"></td><td class="cell"></td><td class="cell"></td><td class="cell"></td><td class="cell"></td><td class="cell"></td><td class="cell"></td></tr></table><page local="4" global="475"/></subsection><subsection number="4.2" title="Learnt Lexical Patterns"><p>Table 4 shows the results of the learnt lexical pat­terns method. For all relations we used the ^-nearest neighbour method.</p><p>relation method    Prec.    Recall    <i>F\</i><i> </i>Acc.</p><p>range restrictions: Product-Producer #142 <i>"And, of course, everyone wants to prove the truth of their be­liefs through experience, but the &lt;e1&gt;belief&lt;/e1&gt; begets the &lt;e2&gt;experience&lt;/e2&gt;." </i>The common-sense domain and range restriction of the Product-Producer relation are respectively something like 'Entity' and 'Agent'. However, 'belief' is generally not considered to be an entity, and 'experience' not an agent. The definition of Product-Producer rela­tion used for the Challenge is more flexible and al­lows therefore many examples which are difficult to find by such common-sense resources as Google or WordNet.</p><p>and WMTS.</p></subsection></section><section number="5" title="Discussion"><p>Our methods had the most difficulty with classify­ing relation 1, 3 and 4. We wanted to see if hu­man assessors perform less consistent for those re­lations. If so, then those relations would simply be harder to classify. Otherwise, our system performed worse for those relations. We manually assessed ten sample sentences from the test set, five of which were positive examples and five were false exam­ples. The result of a comparison with the test set is shown in Table 5. The numbers listed there repre­sent the fraction of examples on which we agreed with the judges of the test set. There was quite a large variation in the inter-judge agreement, but for relation 1 and 3 the consensus was high. We con­clude that the reason for our low performance on those relations are not caused by the difficulty of the sentences, but due to other reasons. Our intu­ition is that the sentences, especially those of rela­tion 1 and 3, are easily decidable by humans, but that they are non-stereotypical examples of the re­lation, and thus hard to learn. The following ex­ample sentence breaks common-sense domain and</p><table caption="Table 4: Results for learnt lexical patterns on Google" class="main" frame="box" rules="all" border="0" regular="False"><tr class="row"><td class="cell"></td><td class="cell"></td><td class="cell"></td><td class="cell"></td><td class="cell"></td><td class="cell"></td><td class="cell"></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>1. Cause-Effect</p></td><td class="cell"><p>3-NN</p></td><td class="cell"><p>0.53</p></td><td class="cell"><p>0.76</p></td><td class="cell"><p>0.63</p></td><td class="cell"><p>0.54</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>2. Instr.-Agency</p></td><td class="cell"><p>2-NN</p></td><td class="cell"><p>0.47</p></td><td class="cell"><p>0.89</p></td><td class="cell"><p>0.62</p></td><td class="cell"><p>0.46</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>3. Prod.-Prod.</p></td><td class="cell"><p>2-NN</p></td><td class="cell"><p>0</p></td><td class="cell"><p>0</p></td><td class="cell"><p>0</p></td><td class="cell"><p>0.33</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>4. Origin-Ent.</p></td><td class="cell"><p>2-NN</p></td><td class="cell"><p>0.47</p></td><td class="cell"><p>0.22</p></td><td class="cell"><p>0.30</p></td><td class="cell"><p>0.54</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>5. Theme-Tool</p></td><td class="cell"><p>3-NN</p></td><td class="cell"><p>0.39</p></td><td class="cell"><p>0.93</p></td><td class="cell"><p>0.55</p></td><td class="cell"><p>0.38</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>6. Part-Whole</p></td><td class="cell"><p>2-NN</p></td><td class="cell"><p>0.36</p></td><td class="cell"><p>1</p></td><td class="cell"><p>0.53</p></td><td class="cell"><p>0.36</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>7. Cont.-Cont.</p></td><td class="cell"><p>2-NN</p></td><td class="cell"><p>0.51</p></td><td class="cell"><p>0.97</p></td><td class="cell"><p>0.67</p></td><td class="cell"><p>0.51</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"></td><td class="cell"></td><td class="cell"></td><td class="cell"></td><td class="cell"></td><td class="cell"></td><td class="cell"></td></tr></table><table caption="Table 5: Inter-judge agreement." class="main" frame="box" rules="all" border="0" regular="False"><tr class="row"><td class="cell"></td><td class="cell"></td><td class="cell"></td><td class="cell"></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>relation</p></td><td class="cell"><p>judge 1</p></td><td class="cell"><p>judge</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>1. Cause-Effect</p></td><td class="cell"><p>0.93</p></td><td class="cell"><p>0.93</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>2. Instrument-Agency</p><p>3. Product-Producer</p></td><td class="cell"><p>0.77 0.87</p></td><td class="cell"><p>0.77 0.80</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>4. Origin-Entity</p><p>5. Theme-Tool</p></td><td class="cell"><p>0.80 0.80</p></td><td class="cell"><p>0.77 0.77</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>6. Part-Whole</p></td><td class="cell"><p>0.97</p></td><td class="cell"><p>1.00</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>7. Content-Container</p></td><td class="cell"><p>0.77</p></td><td class="cell"><p>0.77</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"></td><td class="cell"></td><td class="cell"></td><td class="cell"></td></tr></table></section><references><p>Matthew Berland and Eugene Charniak. 1999. Finding Parts in Very Large Corpora. <i>In Proceedings of ACL 1999.</i></p><p>Christiane Fellbaum (ed.). 1998. WordNet: An Elec­tronic Lexical Database. <i>MIT Press.</i></p><p>Hal Daumé III.   2004.   SVMsequel Tutorial Manual.</p><doubt alpha="64.3" length="42" tooSmall="False" monospace="0.0">Available        athttp://www.cs.utah.edu/</doubt><p><i>^hal/SVMsequel/svmsequel.pdf</i></p><p>Oren Etzioni et al. 2004. Methods for Domain-IndependentInformationExtractionfromtheWeb: An Experimental Comparison. <i>In Proceedings ofAAAI 2004.</i></p><p>Willem Robert van Hage, Sophia Katrenko, and Guus Schreiber. 2005. A Method to Combine Linguis­tic Ontology-Mapping Techniques. <i>In Proceedings of ISWC2005.</i></p><p>Willem Robert van Hage, Hap Kolb, and Guus Schreiber. 2006. A Method for Learning Part-Whole Relations. <i>In Proceedings ofISWC 2006.</i></p><p>Sophia Katrenko and Pieter Adriaans. 2007. Learn­ing Relations from Biomedical Corpora Using Depen­dency Trees. <i>In KDECB, LNBI, vol. 4366.</i></p><p>Dekang Lin. 1998. Dependency-based Evaluation of MINIPAR. <i>In Workshop on the Evaluation ofParsing Systems, Granada, Spain.</i></p><p>Ted Pedersen, Patwardhan, and Michelizzi. 2004. Word-Net::Similarity - Measuring the Relatedness of Con­cepts. <i>In the Proceedings ofAAAI-04, San Jose, CA.</i></p><p>Peter Turney. 2006. Expressing Implicit Semantic Relations without Supervision.   <i>In Proceedings of</i> <i>COLING-ACL 2006.</i><i></i></p><p>Peter Turney. 2004. The MultiText Project Home Page, University of Waterloo, School of Computer Science,</p><footnote>http://www.multitext.uwaterloo.ca</footnote></references></body></article>