<?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="187"/><title>ILK: Machine learning of semantic relations with shallow features and almost no data</title><pubinfo>Proceedings of the 4th International Workshop on Semantic Evaluations (SemEval-2007),pages 187-190, Prague, June 2007. ©2007 Association for Computational Linguistics</pubinfo><author surname="Hendrickx" givenname="Iris"><org  name="Tilburg University" country="The Netherlands" city="Tilburg"/></author><author surname="Morante" givenname="Roser"><org  name="Tilburg University" country="The Netherlands" city="Tilburg"/></author><author surname="Sporleder" givenname="Caroline"><org  name="Tilburg University" country="The Netherlands" city="Tilburg"/></author><author surname="van den Bosch" givenname="Antal"><org  name="Tilburg University" country="The Netherlands" city="Tilburg"/></author></firstpageheader><frontmatter><p><b>ILK: Machine learning of semantic relations with shallow features</b></p><p><b>and almost no data</b></p><p><b>Iris Hendrickx Roser Morante, Caroline Sporleder,</b></p><p>CNTS / Language Technology Group <b>Antal van den Bosch</b></p><p>Uversity of Antwerp, ILK / Communication and Information Sciences</p><p>Universiteitsplein 1 Tilburg University, P.O. Box 90153,</p><p>2610 Wilrijk, Belgium 5000 LE Tilburg, The Netherlands</p><p>iris.hendrickx@ua.ac.be {R.Morante,C.Sporleder,</p><p>Antal.vdnBosch}@uvt.nl</p></frontmatter><abstract>This paper summarizes our approach to the Semeval 2007 shared task on "Classifica­tion of Semantic Relations between Nom-inals". Our overall strategy is to develop machine-learning classifiers making use of a few easily computable and effective fea­tures, selected independently for each clas­sifier in wrapper experiments. We train two types of classifiers for each of the seven re­lations: with and without WordNet informa­tion. </abstract></header><body><section number="1" title="Introduction"><p>We interpret the task of determining semantic rela­tions between nominals as a classification problem that can be solved, per relation, by machine learning algorithms. We aim at using straightforward features that are easy to compute and relevant to preferably all of the seven relations central to the task.</p><p>The starting conditions of the task provide us with a very small amount of training data, which further stresses the need for robust, generalizable features, that generalize beyond surface words. We there­fore hypothesize that generic information on the lex­ical semantics of the entities involved in the rela­tion is crucial. We developed two systems, based on two sources of semantic information. Since the entities in the provided data were word-sense dis-ambiguated, an obvious way to model their lexical semantics was by utilizing WordNet3.0 (Fellbaum, 1998) (WN). One of the systems followed this route.</p><p>We also entered a second system, which did not rely on WN but instead made use of automatically generated semantic clusters (Decadt and Daelemans, 2004) to model the semantic classes of the entities.</p><p>For both systems we trained seven binary clas­sifiers; one for each relation. From a pool of eas­ily computable features, we selected feature subsets for each classifier in a number of wrapper exper­iments, i.e. repeated cross-validation experiments on the training set to test out subset selections sys­tematically. Along with feature subsets we also chose the machine-learning method independently for each classifier.</p><p>Section 2 presents the system description, Sec­tion 3, the results, and Section 4, the conclusions.</p></section><section number="2" title="System Description"><p>The development of the system consists of a prepro­cessing phase to extract the features, and the classi­fication phase.</p><subsection number="2.1" title="Preprocessing"><p>Each sentence is preprocessed automatically in the following steps. First, the sentence is tokenized with a rule-based tokenizer. Next a part-of-speech tag­ger and text chunker that use the memory-based tag­ger MBT (Daelemans et al., 1996) produces part-of-speech tags and NP chunk labels for each token. Then a memory-based shallow parser predicts gram­matical relations between verbs and NP chunks such as subject, object or modifier (Buchholz, 2002). The tagger, chunker and parser were all trained on the WSJ Corpus (Marcus et al., 1993). We also use a memory-based lemmatizer (Van den Bosch et al., 1996) trained on Celex (Baayen et al., 1993) to pre­dict the lemma of each word.</p><page local="2" global="188"/><p>The features extracted are of three types: seman­tic, lexical, and morpho-syntactic. The features that apply to the entities in a relation (e1,e2) are extracted for term 1 (t1) and term 2 (t2) of the relation, where t1 is the first term in the relation name, and t2 is the second term. For example, in the relation CAUSE-EFFECT, t1 is CAUSE and t2 is EFFECT.</p><p>The semantic features are the following:</p><p><b>WN semantic class of tl and t2. </b>The WN seman­tic class of each entity in the relation. For the WN-based system, we determined the semantic class of the entities on the basis of the lexicographer file numbers (LFN) in WN3.0. The LFN are encoded in the synset number provided in the annotation of the data. For nouns there are 25 file numbers that corre­spond to suitably abstract semantic classes, namely: noun.Tops(top concepts for nouns), act, animal, artifact, at­tribute, body, cognition, communication event, feeling, food, group, location, motive, object, person, phenomenon, plant, possession, process, quantity, relation, shape, state, substance, time.</p><p><b>Is_container (is_C). </b>Exclusively for the CONTENT-CONTAINER relation we furthermore included two binary features that test whether the two entities in the relation are hyponyms of the synset <i>container </i>in WN. For the part-whole relation we also experimented with binary features expressing whether the two entities in the relation have some type of meronym and holonym relation, but these features did not prove to be predictive.</p><p><b>Cluster class of tl and t2. </b>A cluster class iden­tifier for each entity in the relation. This informa­tion is drawn from automatically generated clusters of semantically similar nouns (Decadt and Daele­mans, 2004) generated on the British National Cor­pus (Clear, 1993). The corpus was first prepro-cessed by a lemmatizer and the memory-based shal­low parser, and the found verb-object relations were used to cluster nouns in groups. We used the top-5000 lemmatized nouns, that are clustered into 250 groups. This is an example of two of these clusters:</p><p>• {can pot basin tray glass container bottle tin pan mug cup jar bowl bucket plate jug vase kettle}</p><p>• {booth restaurant bath kitchen hallway toilet bedroom hall suite bathroom interior lounge shower compartment oven lavatory room}</p><p>The lexical features are the following:</p><p><b>Lemma of t1 and t2 (lem1, lem2). </b>The lemmas of the entities involved in the relation. In case an entity consisted of multiple words (e.g. <i>storage room) </i>we use the lemma of the head noun (i.e. <i>room).</i></p><p><b>Main verb (verb). </b>The main verb of the sentence in which the entities involved in the relation appear, as predicted by the shallow parser.</p><p>The morpho-syntactic features are:</p><p><b>GramRel (gr1, gr2). </b>The grammatical relation tags of the entities.</p><p><b>Suffixes of t1 and t2 (suf1, suf2). </b>The suffixes of the entity lemmas. We implemented a rule-based suffix guesser, which determines whether the nouns involved in the relation end in a derivational suffix, such as -ee, <i>-ment </i>etc. Suffixes often provide cues for semantic properties of the entities. For exam­ple, the suffix <i>-ee </i>usually indicates animate (and typ­ically human) referents (e.g. <i>detainee </i>etc.), whereas <i>(-ment) </i>points at abstract entities (e.g. <i>statement).</i></p><p>While the features were selected independently for all relations, the seven classifiers in the WN-based system all make use of the WN semantic class features; in the system that did not use WN, the seven classifiers make use of the cluster class fea­tures instead.</p></subsection><subsection number="2.2" title="Classification"><p>We experimented with several machine learning frameworks and different feature (sub-)sets. For rapid testing of different learners and feature sets, and given the size of the training data (140 exam­ples for each relation), we made use of the Weka ma­chine learning software<footnote anchor="1"/> (Witten and Frank, 1999). We systematically tested the following algorithms: NaiveBayes (NB) (Langley et al., 1992), BayesNet (BN) (Cooper and Herskovits, 1992), J48 (Quinlan, 1993), Jrip (Cohen, 1995), IB1 and IBk (Aha et al., 1991), LWL (Atkeson et al., 1997), and Decision-Stumps (DS) (Iba and Langley, 1992), all with de­fault algorithm settings.</p><p>The classifiers for all seven relations were opti­mized independently in a number of 10-fold cross-validation (CV) experiments on the provided training sets.<page local="3" global="189"/> The feature sets and learning algorithms which were found to obtain the highest accuracies for each relation were then used when applying the classifiers to the unseen test data.</p><footnote label="1">http://www.cs.waikato.ac.nz/ml/weka/</footnote><p>The classifiers of the cluster-based system (A) all use the two cluster class features. The other se­lected features and the chosen algorithms (CL) are displayed in Table 1. Knowledge of the identity of the lemmas was found to be beneficial for all clas­sifiers. With respect to the machine learning frame­work, Naive Bayes was selected most frequently.</p><p>Table 1 : The final selected algorithms and features for each relation by the cluster-based system (A).</p><p>The classifiers of the WN-based system (B) all use at least the WN semantic class features. Ta­ble 2 shows the other selected features and algorithm for each relation. None of the classifiers use all the features. For the part-whole relation no extra fea­tures besides the WN class are selected. Also the classifiers for the relations cause-effect and content­container only use two additional features. The list of best found algorithms shows that —like with the cluster-based system— a Bayesian approach is fa­vorable, as it is selected in four of seven cases.</p><p>Table 2: The final selected algorithms and features for each relation by the WN-based system (B). <i>(is-C </i>is the content-container specific feature.)</p></subsection></section><section number="3" title="Results"><p>In Table 3 we first present the best results computed on the training set using 10-fold CV for the clusterbased system (A) and the WN-based system (B). These results are generally higher than the official test set results, shown in Tables 4 and 5, possibly showing a certain amount of overfitting on the train­ing sets.</p><p>Table 3: Average accuracy on the training set com­puted in 10-fold CV experiments of the cluster-based system (A) and the WN-based system (B).</p><p>The official scores on the test set are computed by the task organizers: accuracy, precision, recall and Fi score. Table 4 presents the results of the cluster-based system. Table 5 presents the results of the WN-based system. (The column <i>Total </i>shows the number of instances in the test set.) Markable is the high accuracy for the part-whole relation as the classifier was only trained on two features cod­ing the WN classes.</p><p>Table 4: Test scores for the seven relations of the cluster-based system trained on 140 examples (A4).</p><p>The system using all training data with WordNet features, B4 (Table 5), performs better in terms of F-score on six out of the seven subtasks as compared to the system that does not use the WordNet features but the semantic cluster information instead, A4 (Ta­ble 4). This is largely due to a lower precision of the A4 system. The WordNet features appear to be di­rectly responsible for a relatively higher precision.</p><p>In contrast, the semantic cluster features of sys­tem A sometimes boost recall. A4's recall on the<page local="4" global="190"/></p><table class="main" frame="box" rules="all" border="1" 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>A</p></td><td class="cell"><p>B</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>Cause-Effect</p></td><td class="cell"><p>56.4</p></td><td class="cell"><p>72.9</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>Instrument-Agency</p></td><td class="cell"><p>71.4</p></td><td class="cell"><p>75.7</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>Product-Producer</p></td><td class="cell"><p>65.0</p></td><td class="cell"><p>67.9</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>Origin-Entity</p></td><td class="cell"><p>70.7</p></td><td class="cell"><p>78.6</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>Theme-Tool</p></td><td class="cell"><p>75.7</p></td><td class="cell"><p>79.3</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>Part-Whole</p></td><td class="cell"><p>65.7</p></td><td class="cell"><p>73.6</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>Content-Container</p></td><td class="cell"><p>70.0</p></td><td class="cell"><p>75.4</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>Avg</p></td><td class="cell"><p>67.9</p></td><td class="cell"><p>74.8</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><table 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><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>CL</p></td><td class="cell"><p>lem1</p></td><td class="cell"><p>lem2</p></td><td class="cell"><p>verb</p></td><td class="cell"><p>gr1</p></td><td class="cell"><p>gr2</p></td><td class="cell"><p>suf1</p></td><td class="cell"><p>suf2</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>Cause-Effect</p></td><td class="cell"><p>DS</p></td><td class="cell"><p>+</p></td><td class="cell"><p>+</p></td><td class="cell"><p>+</p></td><td class="cell"><p>+</p></td><td class="cell"><p>+</p></td><td class="cell"><p>+</p></td><td class="cell"><p>+</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>Instr-Agency</p></td><td class="cell"><p>LWL</p></td><td class="cell"><p>+</p></td><td class="cell"><p>+</p></td><td class="cell"><p>+</p></td><td class="cell"><p>+</p></td><td class="cell"><p>+</p></td><td class="cell"><p></p></td><td class="cell"><p></p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>Product-Producer</p></td><td class="cell"><p>NB</p></td><td class="cell"><p>+</p></td><td class="cell"><p>+</p></td><td class="cell"><p>+</p></td><td class="cell"><p>+</p></td><td class="cell"><p>+</p></td><td class="cell"><p>+</p></td><td class="cell"><p>+</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>Origin-Entity</p></td><td class="cell"><p>IBk</p></td><td class="cell"><p>+</p></td><td class="cell"><p>+</p></td><td class="cell"><p></p></td><td class="cell"><p>+</p></td><td class="cell"><p>+</p></td><td class="cell"><p>+</p></td><td class="cell"><p>+</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>Theme-Tool</p></td><td class="cell"><p>NB</p></td><td class="cell"><p>+</p></td><td class="cell"><p>+</p></td><td class="cell"><p>+</p></td><td class="cell"><p></p></td><td class="cell"><p></p></td><td class="cell"><p>+</p></td><td class="cell"><p>+</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>Part-Whole</p></td><td class="cell"><p>NB</p></td><td class="cell"><p>+</p></td><td class="cell"><p>+</p></td><td class="cell"><p></p></td><td class="cell"><p>+</p></td><td class="cell"><p>+</p></td><td class="cell"><p>+</p></td><td class="cell"><p>+</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>Content-Container</p></td><td class="cell"><p>NB</p></td><td class="cell"><p>+</p></td><td class="cell"><p>+</p></td><td class="cell"><p></p></td><td class="cell"><p>+</p></td><td class="cell"><p>+</p></td><td class="cell"><p>+</p></td><td class="cell"><p>+</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><td class="cell"></td><td class="cell"></td><td class="cell"></td></tr></table><table 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>A4</p></td><td class="cell"><p>Pre</p></td><td class="cell"><p>Rec</p></td><td class="cell"><p>F</p></td><td class="cell"><p>Acc</p></td><td class="cell"><p>Total</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>Cause-Effect</p></td><td class="cell"><p>53.3</p></td><td class="cell"><p>97.6</p></td><td class="cell"><p>69.0</p></td><td class="cell"><p>55.0</p></td><td class="cell"><p>80</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>Instrument-Agency</p></td><td class="cell"><p>56.1</p></td><td class="cell"><p>60.5</p></td><td class="cell"><p>58.2</p></td><td class="cell"><p>57.7</p></td><td class="cell"><p>78</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>Product-Producer</p></td><td class="cell"><p>69.1</p></td><td class="cell"><p>75.8</p></td><td class="cell"><p>72.3</p></td><td class="cell"><p>61.3</p></td><td class="cell"><p>93</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>Origin-Entity</p></td><td class="cell"><p>60.7</p></td><td class="cell"><p>47.2</p></td><td class="cell"><p>53.1</p></td><td class="cell"><p>63.0</p></td><td class="cell"><p>81</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>Theme-Tool</p></td><td class="cell"><p>64.5</p></td><td class="cell"><p>69.0</p></td><td class="cell"><p>66.7</p></td><td class="cell"><p>71.8</p></td><td class="cell"><p>71</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>Part-Whole</p></td><td class="cell"><p>48.4</p></td><td class="cell"><p>57.7</p></td><td class="cell"><p>52.6</p></td><td class="cell"><p>62.5</p></td><td class="cell"><p>72</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>Content-Container</p></td><td class="cell"><p>71.4</p></td><td class="cell"><p>78.9</p></td><td class="cell"><p>75.0</p></td><td class="cell"><p>73.0</p></td><td class="cell"><p>74</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>Avg</p></td><td class="cell"><p>60.5</p></td><td class="cell"><p>69.5</p></td><td class="cell"><p>63.8</p></td><td class="cell"><p>63.5</p></td><td class="cell"><p>78.4</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 class="main" frame="box" rules="all" border="1" regular="False"><tr class="row"><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>CL lem1 lem2 verb gr1 gr2 suf1 suf2 is_C</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>Cause-Effect</p><p>Instr-Agency</p><p>Product-Producer</p><p>Origin-Entity</p><p>Theme-Tool</p><p>Part-Whole</p><p>Content-Container</p></td><td class="cell"><p>BN                                + + NB   +     + + IB1   +     +     + + IBk   +     +          +   + + NB   +     +     +    +        + + J48</p><p>BN                + +</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></tr></table><p>cause-effect relation is 97.6% (the classifier pre­dicts the class 'true' for 75 of the 80 examples), and on content-container the system attains 78.9%, markedly better than B4.</p></section><section number="4" title="Conclusion"><p>We have shown that a machine learning approach us­ing shallow and easily computable features performs quite well on this task. The system using Word­Net features based on the provided disambiguated word senses outperforms the cluster-based system. It would be interesting to compare both systems to a more realistic WN-based system that uses predicted word senses by a Word Sense Disambiguation sys­tem.</p><p>However we end by noting that the amount of training and test data in this shared task should be considered too small to base any reliable conclu­sions on. In a realistic scenario (e.g. when high-precision relation classification would be needed as a component of a question-answering system), more training material would have been gathered, and the examples would not have been seeded by a limited number of queries - especially the negative exam­ples are very artificial now due to their similarity to the positive cases, and the fact that they are down-sampled very unrealistically. Rather, the focus of the task should be on detecting positive instances of the relations in vast amounts of text (i.e. vast amounts of implicit negative examples). Positive training exam­ples should be as randomly sampled from raw text as possible. The seven relations are common enough to warrant a focused effort to annotate a reasonable amount of randomly selected text, gathering several hundreds of positive cases of each relation.</p><table caption="Table 5: Test scores for the seven relations of the WN-based system trained on 140 examples (B4)." 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>B4</p></td><td class="cell"><p>Pre</p></td><td class="cell"><p>Rec</p></td><td class="cell"><p>F</p></td><td class="cell"><p>Acc</p></td><td class="cell"><p>Total</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>Cause-Effect</p></td><td class="cell"><p>69.0</p></td><td class="cell"><p>70.7</p></td><td class="cell"><p>69.9</p></td><td class="cell"><p>68.8</p></td><td class="cell"><p>80</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>Instrument-Agency</p></td><td class="cell"><p>69.8</p></td><td class="cell"><p>78.9</p></td><td class="cell"><p>74.1</p></td><td class="cell"><p>73.1</p></td><td class="cell"><p>78</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>Product-Producer</p></td><td class="cell"><p>79.7</p></td><td class="cell"><p>75.8</p></td><td class="cell"><p>77.7</p></td><td class="cell"><p>71.0</p></td><td class="cell"><p>93</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>Origin-Entity</p></td><td class="cell"><p>71.0</p></td><td class="cell"><p>61.1</p></td><td class="cell"><p>65.7</p></td><td class="cell"><p>71.6</p></td><td class="cell"><p>81</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>Theme-Tool</p></td><td class="cell"><p>69.0</p></td><td class="cell"><p>69.0</p></td><td class="cell"><p>69.0</p></td><td class="cell"><p>74.6</p></td><td class="cell"><p>71</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>Part-Whole</p></td><td class="cell"><p>73.1</p></td><td class="cell"><p>73.1</p></td><td class="cell"><p>73.1</p></td><td class="cell"><p>80.6</p></td><td class="cell"><p>72</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>Content-Container</p></td><td class="cell"><p>78.1</p></td><td class="cell"><p>65.8</p></td><td class="cell"><p>71.4</p></td><td class="cell"><p>73.0</p></td><td class="cell"><p>74</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>Avg</p></td><td class="cell"><p>72.8</p></td><td class="cell"><p>70.6</p></td><td class="cell"><p>71.5</p></td><td class="cell"><p>73.2</p></td><td class="cell"><p>78.4</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></section><references><p>D. W. Aha, D. Kibler, M. Albert. 1991. Instance-based learning algorithms. <i>Machine Learning, </i>6:37-66.</p><p>C. Atkeson, A. Moore, S. Schaal. 1997. Locally weighted learning. <i>Artificial Intelligence Review, </i>11(1-5):11-73.</p><p>R. H. Baayen, R. Piepenbrock, H. van Rijn. 1993. <i>The CELEX lexical data base on CD-ROM. </i>Linguistic Data Consortium, Philadelphia, PA.</p><p>S. Buchholz. 2002. <i>Memory-Based Grammatical Rela­tion Finding. </i>PhD thesis, University of Tilburg.</p><p>J. H. Clear. 1993. <i>The British national corpus. </i>MIT Press, Cambridge, MA, USA.</p><p>W. Cohen. 1995. Fast effective rule induction. In <i>Pro­ceedings of the 12th International Conference on Ma­chine Learning, </i>115-123. Morgan Kaufmann.</p><p>G. F. Cooper, E. Herskovits. 1992. A bayesian method for the induction of probabilistic networks from data.</p><p><i>Machine Learning, </i>9(4):309-347.</p><p>W. Daelemans, J. Zavrel, P. Berck, S. Gillis. 1996. Mbt: A memory-based part of speech tagger genera­tor. In <i>Proceedings of the 4th ACL/SIGDAT Workshop on Very Large Corpora, </i>14-27.</p><p>B. Decadt, W. Daelemans. 2004. Verb classification -machine learning experiments in classifying verbs into semantic classes. In <i>Proceedings of the LREC 2004 Workshop Beyond Named Entity Recognition: Seman­tic Labeling for NLP Tasks, </i>25-30, Lisbon, Portugal.</p><p>C. Fellbaum, ed. 1998. <i>WordNet: An Electronic Database. </i>MIT Press, Cambridge, MA.</p><p>W. Iba, P. Langley. 1992. Induction of one-level decision trees. <i>Proceedings ofthe Ninth International Confer­ence on Machine Learning, </i>233-240.</p><p>P. Langley, W. Iba, K. Thompson. 1992. An analysis of Bayesian classifiers. In <i>Proceedings of the Tenth An­nual Conference on Artificial Intelligence, </i>223-228. aaai Press and mit Press.</p><p>M. Marcus, S. Santorini, M. Marcinkiewicz. 1993. Building a Large Annotated Corpus of English: the Penn Treebank. <i>Computational Linguistics, </i>19(2):313-330.</p><p>J. Quinlan. 1993. c4.5: <i>Programs for Machine Learn­ing. </i>Morgan Kaufmann, San Mateo, CA.</p><p>A. Van den Bosch, W. Daelemans, A. Weijters. 1996. Morphological analysis as classification: an inductive-learning approach. In K. Oflazer, H. Somers, eds., <i>Proceedings </i><i>ofthe</i><i> Second International Conference on New Methods in Natural Language Processing,</i> <i>NeMLaP-2, Ankara, Turkey, </i>79-89.</p><p>I. H. Witten, E. Frank. 1999. <i>Data Mining: Practical Machine Learning Tools and Techniques with Java Im­plementations. </i>Morgan Kaufman, San Francisco, CA.</p></references></body></article>