<?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="359"/><title>HERMIT: Flexible Clustering for the SemEval-2 WSI Task</title><pubinfo>Proceedings of the 5th International Workshop on Semantic Evaluation, ACL 2010,pages 359-362, Uppsala, Sweden, 15-16 July 2010. ©2010 Association for Computational Linguistics</pubinfo><author surname="Jurgens" givenname="David"><org  name="University of California" country="USA" city="San Diego"/></author><author surname="Stevens" givenname="Keith"><org  name="University of California" country="USA" city="San Diego"/></author></firstpageheader><frontmatter><p><b>HERMIT: Flexible Clustering for the SemEval-2 WSI Task</b></p><p><b>David Jürgens Keith Stevens</b></p><p>University of California, Los Angeles University of California, Los Angeles Los Angeles, California, USA Los Angeles, California, USA</p><p>jurgens@cs.ucla.edu kstevens@cs.ucla.edu</p></frontmatter><abstract>A single word may have multiple un­specified meanings in a corpus. Word sense induction aims to discover these dif­ferent meanings through word use, and knowledge-lean algorithms attempt this without using external lexical resources. We propose a new method for identify­ing the different senses that uses a flexi­ble clustering strategy to automatically de­termine the number of senses, rather than predefining it. We demonstrate the effec­tiveness using the SemEval-2 WSI task, achieving competitive scores on both the V-Measure and Recall metrics, depending on the parameter configuration. </abstract></header><body><section number="1" title="Introduction"><p>The Word Sense Induction task of SemEval 2010 compares several sense induction and discrimina­tion systems that are trained over a common cor­pus. Systems are provided with an unlabeled train­ing corpus consisting of 879,807 contexts for 100 polysemous words, with 50 nouns and 50 verbs. Each context consists of several sentences that use a single sense of a target word, where at least one sentence contains the word. Systems must use the training corpus to induce sense representations for the many word senses and then use those represen­tations to produce sense labels for the same 100 words in unseen contexts from a testing corpus.</p><p>We perform this task by utilizing a distribu­tional word space formed using dimensionality reduction and a hybrid clustering method. Our model is highly scalable; the dimensionality of the word space is reduced immediately through a pro­cess based on random projections. In addition, an online part of our clustering algorithm maintains only a centroid that describes an induced word sense, instead of all observed contexts, which lets the model scale to much larger corpora than those used in the SemEval-2 WSI task.</p></section><section number="2" title="The Word Sense Induction Model"><p>We perform word sense induction by modeling individual contexts in a high dimensional word space. Word senses are induced by finding con­texts which are similar and therefore likely to use the same sense of the target word. We use a hybrid clustering method to group similar contexts.</p><subsection number="2.1" title="Modeling Context"><p>For a word, each of its contexts are represented by the words with which it co-occurs. We approx­imate this high dimensional co-occurrence space with the Random Indexing (RI) word space model (Kanerva et al, 2000). RI represents the occur­rence of a word with an <i>index vector, </i>rather than a set of dimensions. An index vector is a fixed, sparse vector that is orthogonal to all other words' index vectors with a high probability; the total number of dimensions in the model is fixed at a small value, e.g. 5,000. Orthogonality is obtained by setting a small percentage of the vector's values to ±1 and setting the rest to 0.</p><p>A context is represented by summing the index vectors corresponding to the <b><i>n </i></b>words occurring to the left and right of the polysemous word. Each occurrence of the polysemous word in the entire corpus is treated as a separate context. Contexts are represented by a compact first-order occur­rence vector; using index vectors to represent the occurrences avoids the computational overhead of other dimensional reduction techniques such as the SVD.</p></subsection><subsection number="2.2" title="Identifying Related Contexts"><p>Clustering separates similar context vectors into dissimilar clusters that represent the distinct senses of a word. We use an efficient hybrid of online K-Means and Hierarchical Agglomerative<page local="2" global="360"/></p><p>Clustering (HAC) with a threshold. The thresh­old allows for the final number of clusters to be determined by data similarity instead of having to specify the number of clusters.</p><p>The set of context vectors for a word are clus­tered using K-Means, which assigns a context to the most similar cluster centroid. If the near­est centroid has a similarity less than the <i>cluster threshold </i>and there are not <i>K </i>clusters, the context forms a new cluster. We define the similarity be­tween contexts vectors as the cosine similarity.</p><p>Once the corpus has been processed, clusters are repeatedly merged using HAC with the aver­age link criteria, following (Pedersen and Bruce. 1997). Average link clustering defines cluster sim­ilarity as the mean cosine similarity of the pair-wise similarity of all data points from each clus­ter. Cluster merging stops when the two most sim­ilar clusters have a similarity less than the clus­ter threshold. Reaching a similarity lower than the cluster threshold signifies that each cluster repre­sents a distinct word sense.</p></subsection><subsection number="2.3" title="Applying Sense Labels"><p>Before training and evaluating our model, all occurrences of the 100 polysemous words were stemmed in the corpora. Stemming was required due to a polysemous word being used in multiple lexical forms, e.g. plural, in the corpora. By stem­ming, we avoid the need to combine contexts for each of the distinct word forms during clustering.</p><p>After training our WSI model on the training corpus, we process the test corpus and label the context for each polysemous word with an induced sense. Each test context is labeled with the name of the cluster whose centroid has the highest co­sine similarity to the context vector. We represent the test contexts in the same method used for train­ing; index vectors are re-used from training.</p></subsection></section><section number="3" title="Evaluation and Results"><p>The WSI task evaluated the submitted solutions with two methods of experimentation: an unsuper­vised method and a supervised method. The unsu­pervised method is measured according to the V-Measure and the F-Score. The supervised method is measured using recall.</p><subsection number="3.1" title="Scoring"><p>The first measure used is the V-Measure (Rosen­berg and Hirschberg, 2007), which compares the clusters of target contexts to word classes. This measure rates the homogeneity and completeness of a clustering solution. Solutions that have word clusters formed from one word class are homoge­neous; completeness measures the degree to which a word class is composed of target contexts allo­cated to a single cluster.</p><p>The second measure, the F-Score, is an ex­tension from information retrieval and provides a contrasting evaluation metric by using a different interpretation of homogeneity and completeness. For the F-Score, the precision and recall of all pos­sible context pairs are measured, where a word class has the expected context pairs and a provided solution contains some word pairs that are correct and others that are unexpected. The F-Score tends to discount smaller clusters and clusters that can­not be assigned to a word class (Manandhar et al.. 2010).</p></subsection><subsection number="3.2" title="Parameter Tuning"><p>Previous WSI evaluations provided a test corpus, a set of golden sense labels, and a scoring mecha­nism, which allowed models to do parameter tun­ing prior to providing a set of sense labels. The SemEval 2010 task provided a trial corpus that contains contexts for four verbs that are not in the evaluation corpus, which can be used for train­ing and testing. The trial corpus also came with a set of golden sense assignments. No golden stan­dard was provided for the training or test corpora, which limited any parameter tuning.</p><p>HERMIT exposes three parameters: cluster threshold, the maximum number of clusters and the window size for a context. An initial anal­ysis from the trial data showed that the window size most affected the scores; small window sizes resulted in higher V-Measure scores, while larger window sizes maximized the F-Score. Because contexts are represented using only first-order fea­tures, a smaller window size should have less over­lap, which potentially results in a higher number of clusters. We opted to maximize the V-Measure score by using a window size of ±1.</p><p>Due to the limited number of training instances, our precursory analysis with the trial data did not show significant differences for the remaining two parameters; we arbitrarily selected a clustering threshold of <b>.15 </b>and a maximum of <b>15 </b>clusters per word without any parameter tuning.</p><p>After the release of the testing key, we performed a post-hoc analysis to evaluate the effects of parameter tuning on the scores.<page local="3" global="361"/> We include two alternative parameter configurations that were op­timized for the F-Score (HERMIT-F) and the su­pervised evaluations (HERMIT-S). The HERMIT-F variation used a threshold of 0.85 and a win­dow size of ±10 words. The HERMIT-S variation used a threshold of 0.85 and a window size of ±1 words. We did not vary the maximum number of clusters, which was set at 15.</p><p>For each evaluation, we provide the scores of seven systems: the three HERMIT configurations, the highest and lowest scoring submitted systems, the Most Frequent Sense (MFS) baseline, and a Random baseline provided by the evaluation team. We provide the scores for each experiment when evaluating all words, nouns, and verbs. We also include the system's rank relative to all submitted systems and the average number of senses gen­erated for each system; our alternative HERMIT configurations are given no rank.</p></subsection><subsection number="3.3" title="Unsupervised Evaluation"><p>Table 1 : V-Measure for the unsupervised evalua­tion</p><p>The unsupervised evaluation considers a golden sense labeling to be word classes and a set of in­duced word senses as clusters of target contexts (Manandhar et al, 2010). Tables 1 and 2 display the results for the unsupervised evaluation when measured according to the V-Measure and the F-Score, respectively. Our system provides the best V-Measure of all submitted systems for this eval­uation. This is in part due to the average number of senses our system generated (10.78), which favors more homogenous clusters. Conversely, this configuration does poorly when measured by F-Score, which tends to favor systems that generate fewer senses per word.</p><p>When configured for the F-Score, HERMIT-F performs well; this configuration would have ranked third for the F-Score if it had been submit­ted. However, its performance is also due to the relatively few senses per word it generates, 1.54. The inverse performance of both optimized con­figurations is reflective of the contrasting nature of the two performance measures.</p></subsection><subsection number="3.4" title="Supervised Evaluation"><p>The supervised evaluation simulates a super­vised Word Sense Disambiguation (WSD) task. The induced sense labels for the test corpus are split such that the first set is used for mapping in­duced senses to golden senses and the remaining sense labels are treated as sense labels provided by a WSD system, which allows for evaluation. Five splits are done at random to avoid any biases created due to the separation of the mapping cor­pus and the evaluation corpus; the resulting score for this task is the average recall over the five di­visions. Two sets of splits were used for evalua­tion: one with 80% of the senses as the mapping portion and 20% as the evaluation portion and one with 60% as the mapping portion corpus and 40% for evaluation.</p><p>The results for the 80/20 split and 60/40 split are displayed in tables 3 and 4, respectively. In both supervised evaluations, our submitted system<page local="4" global="362"/></p><table caption="Table 3: Supervised recall for the 80/20 split" 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><td class="cell"></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>System</p></td><td class="cell"><p>All</p></td><td class="cell"><p>Noun</p></td><td class="cell"><p>Verb</p></td><td class="cell"><p>Rank</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>HIGH</p></td><td class="cell"><p>62.44</p></td><td class="cell"><p>59.43</p></td><td class="cell"><p>66.82</p></td><td class="cell"><p>1</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>MFS</p></td><td class="cell"><p>58.67</p></td><td class="cell"><p>53.22</p></td><td class="cell"><p>66.620</p></td><td class="cell"><p>15</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>HERMIT-S</p></td><td class="cell"><p>58.48</p></td><td class="cell"><p>54.18</p></td><td class="cell"><p>64.78</p></td><td class="cell"><p></p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>HERMIT</p></td><td class="cell"><p>58.34</p></td><td class="cell"><p>53.56</p></td><td class="cell"><p>65.30</p></td><td class="cell"><p>17</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>Random</p></td><td class="cell"><p>57.25</p></td><td class="cell"><p>51.45</p></td><td class="cell"><p>65.69</p></td><td class="cell"><p>19</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>HERMIT-F</p></td><td class="cell"><p>56.44</p></td><td class="cell"><p>53.00</p></td><td class="cell"><p>61.46</p></td><td class="cell"><p></p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>LOW</p></td><td class="cell"><p>18.72</p></td><td class="cell"><p>1.55</p></td><td class="cell"><p>43.76</p></td><td class="cell"><p>28</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></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>System</p></td><td class="cell"><p>All</p></td><td class="cell"><p>Nouns</p></td><td class="cell"><p>Verbs</p></td><td class="cell"><p>Rank</p></td><td class="cell"><p>Senses</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>HERMIT-S</p></td><td class="cell"><p>16.2</p></td><td class="cell"><p>16.7</p></td><td class="cell"><p>15.3</p></td><td class="cell"><p></p></td><td class="cell"><p>10.83</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>HERMIT</p></td><td class="cell"><p>16.1</p></td><td class="cell"><p>16.7</p></td><td class="cell"><p>15.6</p></td><td class="cell"><p>1</p></td><td class="cell"><p>10.78</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>Random</p></td><td class="cell"><p>4.4</p></td><td class="cell"><p>4.6</p></td><td class="cell"><p>4.1</p></td><td class="cell"><p>18</p></td><td class="cell"><p>4.00</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>HERMIT-F</p></td><td class="cell"><p>0.015</p></td><td class="cell"><p>0.008</p></td><td class="cell"><p>0.025</p></td><td class="cell"><p></p></td><td class="cell"><p>1.54</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>MFS</p></td><td class="cell"><p>0.0</p></td><td class="cell"><p>0.0</p></td><td class="cell"><p>0.0</p></td><td class="cell"><p>27</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>LOW</p></td><td class="cell"><p>0.0</p></td><td class="cell"><p>0.0</p></td><td class="cell"><p>0.1</p></td><td class="cell"><p>28</p></td><td class="cell"><p>1.01</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 4: Supervised recall for the 60/40 split" 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><td class="cell"></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>System</p></td><td class="cell"><p>All</p></td><td class="cell"><p>Noun</p></td><td class="cell"><p>Verb</p></td><td class="cell"><p>Rank</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>HIGH</p></td><td class="cell"><p>61.96</p></td><td class="cell"><p>58.62</p></td><td class="cell"><p>66.82</p></td><td class="cell"><p>1</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>MFS</p></td><td class="cell"><p>58.25</p></td><td class="cell"><p>52.45</p></td><td class="cell"><p>67.11</p></td><td class="cell"><p>12</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>HERMIT</p></td><td class="cell"><p>57.27</p></td><td class="cell"><p>52.53</p></td><td class="cell"><p>64.16</p></td><td class="cell"><p>18</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>HERMIT-S</p></td><td class="cell"><p>57.10</p></td><td class="cell"><p>52.76</p></td><td class="cell"><p>63.46</p></td><td class="cell"><p></p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>Random</p></td><td class="cell"><p>56.52</p></td><td class="cell"><p>50.21</p></td><td class="cell"><p>65.73</p></td><td class="cell"><p>20</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>HERMIT-F</p></td><td class="cell"><p>56.18</p></td><td class="cell"><p>52.26</p></td><td class="cell"><p>61.88</p></td><td class="cell"><p></p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>LOW</p></td><td class="cell"><p>18.91</p></td><td class="cell"><p>1.52</p></td><td class="cell"><p>44.23</p></td><td class="cell"><p>28</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></tr></table><table caption="Table 2: F-Scores for the unsupervised evaluation" 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>System</p></td><td class="cell"><p>All</p></td><td class="cell"><p>Nouns</p></td><td class="cell"><p>Verbs</p></td><td class="cell"><p>Rank</p></td><td class="cell"><p>Senses</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>MFS</p></td><td class="cell"><p>63.4</p></td><td class="cell"><p>57.0</p></td><td class="cell"><p>72.7</p></td><td class="cell"><p>1</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>HIGH</p></td><td class="cell"><p>63.3</p></td><td class="cell"><p>57.0</p></td><td class="cell"><p>72.4</p></td><td class="cell"><p>2</p></td><td class="cell"><p>1.02</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>HERMIT-F</p></td><td class="cell"><p>62.1</p></td><td class="cell"><p>56.7</p></td><td class="cell"><p>69.9</p></td><td class="cell"><p></p></td><td class="cell"><p>1.54</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>Random</p></td><td class="cell"><p>31.9</p></td><td class="cell"><p>30.4</p></td><td class="cell"><p>34.1</p></td><td class="cell"><p>25</p></td><td class="cell"><p>4.00</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>HERMIT</p></td><td class="cell"><p>26.7</p></td><td class="cell"><p>30.1</p></td><td class="cell"><p>24.4</p></td><td class="cell"><p>27</p></td><td class="cell"><p>10.78</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>HERMIT-S</p></td><td class="cell"><p>26.5</p></td><td class="cell"><p>23.9</p></td><td class="cell"><p>30.3</p></td><td class="cell"><p></p></td><td class="cell"><p>10.83</p></td><td class="cell"></td></tr><tr class="row"><td class="cell"></td><td class="cell"><p>LOW</p></td><td class="cell"><p>16.1</p></td><td class="cell"><p>15.8</p></td><td class="cell"><p>16.4</p></td><td class="cell"><p>28</p></td><td class="cell"><p>9.71</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><doubt alpha="19.6" length="51" tooSmall="False" monospace="0.0">2      4      6      8     10     12 14 Window Size</doubt><p>Figure 1: A comparison for F-Score and V-Measure for different window sizes. Scores are an average using thresholds of 0.15, 0.55 and 0.75.</p><p>does moderately well. In both cases it outperforms the Random baseline and does almost as well as the MFS baseline. The submitted system outper­forms the Random baseline and approaches the MFS baseline for the 80/20 split. The HERMIT-S version, which is optimized for this task, provides similar results.</p></subsection></section><section number="4" title="Discussion"><p>The HERMIT system is easily configured to achieve close to state of the art performance for either evaluation measure on the unsupervised benchmark. This reconfigurability allows the al­gorithm to be tuned for producing a few coarse senses of a word, or many finer-grained senses.</p><p>We further investigated the performance with respect to the window size parameter on both mea­sures. Since each score can be effectively opti­mized individually, we considered whether both scores could be maximized concurrently. Figure 1 presents the impact of the window size on both measures using an average of three threshold pa­rameter configurations.</p><p>The analysis of both measures indicates that reasonable performance can be obtained from us­ing a slightly larger context window. For ex­ample, a window size of 4 has an average F-Score of 52.4 and V-Measure of 7.1. Although this configuration produces scores lower than the optimized versions, its performance would have ranked 12th according to V-Measure and 15th for F-Score. These scores are consistent with the me­dian performance of the submitted systems and of­fer a middle ground should a HERMIT user want a compromise between many fine-grained word senses and a few coarse-grained word senses.</p></section><section number="5" title="Conclusion"><p>We have shown that our model is a highly flexi­ble and tunable Word Sense Induction model. De­pending on the task, it can be optimized to gen­erate a set of word senses that range from be­ing broad and representative to highly refined. Furthermore, we demonstrated a balanced perfor­mance setting for both measures for when param­eter tuning is not possible. The model we sub­mitted and presented is only one possible config­uration available, and in the future we will be ex­ploring the effect of other context features, such as syntactic structure in the form of word ordering (Sahlgren et al., 2008) or dependency parse trees, (Pado and Lapata, 2007), and other clustering al­gorithms. Last, this model is provided as part of the S-Space Package (Jurgens and Stevens, 2010), an open source toolkit for word space algorithms.</p></section><references><p>David Jurgens and Keith Stevens. 2010. The S-Space Package: An Open Source Package for Word Space Models. In <i>Proceedings of the ACL 2010 System Deonstrations.</i></p><p>Pentti Kanerva, Jan Kristoferson, and Anders Holst. 2000. Random indexing of text samples for latent semantic analysis. InL. R. Gleitman and A. K. Josh, editors, <i>Proceedings ofthe 22nd Annual Conference of the Cognitive Science Society, </i>page 1036.</p><p>Suresh Manandhar, Ioannis P. Klapaftis, Dmitriy Dli-gach, and Sameer S. Pradhan. 2010. SemEval-2010 Task 14: Word Sense Induction &amp; Disambiguation.</p><p>In <i>Proceedings ofSemEval-2.</i></p><p>Sebastian Pado and Mirella Lapata. 2007. Dependency-Based Construction of Seman­tic Space Models. <i>Computational Linguistics, </i>33(2):161-199.</p><p>Ted Pedersen and Rebecca Bruce. 1997. Distinguish­ing word senses in untagged text. In <i>Proceedings ofthe Second Conference on Empirical Methods in Natural Language Processing, </i>pages 197-207.</p><p>Andrew Rosenberg and Julia Hirschberg. 2007. V-Measure: A Conditional Entropy-Based External Cluster Evaluation Measure. In <i>Proceedings of the 2007 Joint Conference on Empirical Meth­ods in Natural Language Processing and Com­putational Natural Language Learning (EMNLP-</i> <i>CoNLL).</i><i> </i>ACL.</p><p>Magnus Sahlgren, Anders Holst, and Pentti Kanerva. 2008. Permutations as a means to encode or­der in word space. In <i>Proceedings of the 30th Annual Meeting </i><i>ofthe</i><i> Cognitive Science Society (CogSci'08).</i></p></references></body></article>