<!DOCTYPE article PUBLIC "-//NLM//DTD JATS (Z39.96) Journal Archiving and Interchange DTD v1.0 20120330//EN" "JATS-archivearticle1.dtd">
<article xmlns:xlink="http://www.w3.org/1999/xlink">
  <front>
    <journal-meta />
    <article-meta>
      <title-group>
        <article-title>Document Expansion for Cross-Lingual Passage Retrieval</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Eneko Agirre</string-name>
          <email>e.agirre@ehu.es</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Olatz Ansa</string-name>
          <email>olatz.ansa@ehu.es</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Xabier Arregi</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Maddalen Lopez de Lacalle</string-name>
          <email>m.lopezdelacalle@elhuyar.com</email>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Arantxa Otegi</string-name>
          <email>arantza.otegi@ehu.es</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Xabier Saralegi</string-name>
          <email>x.saralegi@elhuyar.com</email>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>IXA NLP Group, University of the Basque Country. Donostia</institution>
          ,
          <addr-line>Basque Country</addr-line>
        </aff>
        <aff id="aff1">
          <label>1</label>
          <institution>R&amp;D, Elhuyar Foundation. Usurbil</institution>
          ,
          <addr-line>Basque Country</addr-line>
        </aff>
      </contrib-group>
      <abstract>
        <p>This article describes the participation of the joint Elhuyar-IXA group in the ResPubliQA exercise at QA&amp;CLEF 2010. In particular, we participated in the English-English monolingual task and in the BasqueEnglish cross-lingual one. Our focus was threefold: (1) to check to what extent information retrieval (IR) can achieve good results in passage retrieval without question analysis and answer validation, (2) to check dictionary techniques for Basque to English retrieval when faced with the lack of parallel corpora for Basque in this domain, and (3) to check the contribution of semantic relatedness based on WordNet to expand the passages to related words. Our results show that IR provides good results in the monolingual task, that our performance drop in the cross-lingual system was much greater than in previous CLIR experiments, and that expansion improves the results in the monolingual task.</p>
      </abstract>
      <kwd-group>
        <kwd>Cross-lingual passage retrieval</kwd>
        <kwd>semantic relatedness</kwd>
        <kwd>word cooccurrences</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>1 Introduction</title>
      <p>Like last year, the team consisted of two different groups: the Elhuyar Foundation,
and the IXA NLP group. Last year we participated in the CLEF 2009 ResPubliQA
task by submitting two English-English monolingual runs and two Basque-English
cross-lingual runs. It should be mentioned that we were the only team who
participated in a cross-lingual task.</p>
      <p>Following the positive experience of last year's participation it seemed interesting
to continue sharing our experience and knowledge on QA-oriented (CL)IR. Like last
year, we participated in the English-English monolingual task and Basque-English
cross-lingual task.</p>
      <p>With respect to the Basque-English task, we met the challenge of retrieving
English passages for Basque questions. We tackled this problem by translating the
lexical units of the questions into English. The main setback is that no parallel corpus
was available for this pair of languages, given that there is no Basque version of the
JRC-Acquis and the Europarl collections. So we explored an approach which does not
use parallel corpora when translating queries, which could also be interesting for
other less resourced languages. In our opinion, bearing in mind the idiosyncrasy of
the European Union, it is worthwhile tackling the search for passages that answer
questions formulated in non-official languages.</p>
      <p>
        Question answering systems typically rely on a passage retrieval system. Given
that passages are shorter than documents, vocabulary mismatch problems are more
significant than in full document retrieval. Most of the previous work on expansion
techniques has focused on pseudo-relevance feedback and other query expansion
techniques. In particular, WordNet has been used previously to expand the terms in
the query with little success [
        <xref ref-type="bibr" rid="ref1 ref2 ref3">1, 2, 3</xref>
        ]. The main problem is ambiguity, and the limited
context available to disambiguate the word in the query effectively. As an alternative,
we felt intuitively that passages would provide sufficient context to disambiguate and
expand the terms in the passage. In fact, we did not do explicit word sense
disambiguation, but rather applied a state-of-the-art semantic relatedness method [
        <xref ref-type="bibr" rid="ref4">4</xref>
        ]
in order to select the best terms to expand the documents.
      </p>
    </sec>
    <sec id="sec-2">
      <title>2 System Overview</title>
      <sec id="sec-2-1">
        <title>2.1 Question pre-processing</title>
        <p>
          We analysed the Basque questions by re-using the linguistic processors included in
the Ihardetsi question-answering system [
          <xref ref-type="bibr" rid="ref5">5</xref>
          ]. This system uses two general linguistic
processors: the lemmatizer/tagger named Morfeus [
          <xref ref-type="bibr" rid="ref6">6</xref>
          ], and the Named Entity
Recognition and Classification (NERC) processor called Eihera [
          <xref ref-type="bibr" rid="ref7">7</xref>
          ]. The use of the
lemmatizer/tagger is particularly suited to Basque, as it is an agglutinative language.
It provides the corresponding lemma and part of speech of each lexical unit, which
also includes both single words and multiword units (MWU). The numerical and
temporal expressions are also captured by the lemmatizer/tagger. The NERC
processor, Eihera, captures entities such as persons, organizations and locations. The
questions thus analyzed are passed to the translation module once the function words
are removed. In the case of English, queries were just tokenized without further
analysis.
        </p>
      </sec>
      <sec id="sec-2-2">
        <title>2.2 Translation of the query terms (Basque-English runs)</title>
        <p>
          Once the questions had been linguistically processed, they were translated into
English using a dictionary-based method. According to the literature, parallel
corporabased translation methods provide the best translation quality, but these are scarce for
small languages like Basque or even for major languages in certain domains. So, a
dictionary-based translation approach was chosen. To tackle translation ambiguity
produced by the dictionary translation, some techniques have been proposed in the
literature, such as structured query-based techniques [
          <xref ref-type="bibr" rid="ref8 ref9">8, 9</xref>
          ] and co-occurrences-based
techniques [
          <xref ref-type="bibr" rid="ref10 ref11 ref12">10, 11, 12</xref>
          ]. According to previous pieces of work [
          <xref ref-type="bibr" rid="ref13">13</xref>
          ], structured queries
offer better MAP than co-occurrences-based methods on Basque-English CLIR
experiments only when dealing with long queries [
          <xref ref-type="bibr" rid="ref13">13</xref>
          ]. However, the questions to
evaluate in ResPubliQA are short, and structured queries were not supported in the
retrieval algorithm used (see Section 2.4), so we adopted a co-occurrences-based
translation selection strategy. The dictionary-based translation process designed
comprises two main steps, taking the keywords (named entities, MWU and single
words tagged as noun, adjective or verb) of the question as source words:
1. Obtaining translation candidates: In the first step the translation candidates of
each source word are obtained from a bilingual eu-en dictionary comprising the
Basque-English Morris dictionary1, and the Euskalterm terminology bank2 which
includes 38,184 MWUs. After that, Out-Of-Vocabulary words are solved by
searching for their cognates in the target collection. The cognate detection is done in
two phases. First, several transliteration rules are applied to the source word. Then,
the Longest Common Subsequence Ratio is calculated with respect to all the words
from the target collection. Those that reach a previously established threshold (0.9)
are selected as translation candidates.
        </p>
        <p>
          2. Solving ambiguous candidates: The selection of the best translation for each
source keyword is performed by an algorithm based on the maximum association
degree, explained on detail in [
          <xref ref-type="bibr" rid="ref14">14</xref>
          ]. The association degree is computed by calculating
co-occurrences of word pairs in the target collection. The algorithm obtains the set of
translation candidates that maximizes the association degree between each other in
the target collection. This maximization problem is solved by an Expectation
Maximization-type greedy algorithm made up of initialization, iteration and
normalization steps:
        </p>
        <p>Initially, all the translation candidates provided by the dictionary are equally
likely.</p>
        <p>In the iteration step, the weight of each translation candidate is iteratively updated
according to the association degree it has regarding the rest of the source word
translation candidates. This association degree is pondered using the weights obtained
on the previous iteration. The association degree between two translation candidates
is measured by the Log-likelihood ratio using the target collection as a corpus. A
factor is included in order to increase the association degree between translation
candidates whose source words are near each other in the source query, and whose
source words belong to the same MWU.</p>
        <p>Finally, after re-computing each term weight, all of them are normalized. The
algorithm stops when the difference between the term weights corresponding to
previous and current iteration become lower than a predefined threshold.
1 English/Basque dictionary including 67,000 entries and 120,000 senses.
2 Terminological dictionary including 100,000 terms in Basque with equivalences in Spanish,</p>
        <p>French, English and Latin.
2.3 Document Pre-processing and Expansion
Given that the aim of the task was to retrieve a paragraph that contains an answer for
each question, we first split the document collection into paragraphs.</p>
        <p>
          One of the main features of our system is that the passages are expanded based on
their related concepts according to the background information in WordNet [
          <xref ref-type="bibr" rid="ref15">15</xref>
          ]. We
selected those concepts that are most closely related to the passage as a whole. For
this purpose, we used a technique based on random walks over the graph
representation of WordNet 3.0 concepts and relations [
          <xref ref-type="bibr" rid="ref4">4</xref>
          ], whose implementation is
publicly available3.
        </p>
        <p>
          Given a passage and the graph-based representation of WordNet, we obtained a
ranked list of WordNet concepts as follows:
1. We first pre-processed the passage to obtain the lemmas and parts of speech
of the open category words using the OpenNLP open source software4. It
should be noted that the lemmatizer/tagger Morfeus used for Basque
questions works only with the Basque language.
2. We then assigned a uniform probability distribution to the terms found in the
passage. The rest of the nodes were initialized to zero.
3. We computed personalized PageRank [
          <xref ref-type="bibr" rid="ref16">16</xref>
          ] over the graph, using the previous
distribution as the reset distribution, and producing a probability distribution
over WordNet concepts. The higher the probability for a concept, the more
related it is to the given passage.
        </p>
        <p>In order to select the expansion terms, we chose the 100 highest scoring concepts,
and got all the words that lexicalize the given concept. An example of a document
expansion is shown in Fig. 1.</p>
        <p>We applied the expansion strategy only to passages which had more than 10
words, for two reasons: the first one was that most of the shorter passages were found
not to contain relevant information for the task (e.g. “Article 2” or “Having regard to
the proposal from the Commission”), and the second was that we thus saved some
computation time.</p>
        <p>
          The same expansion strategy has been used in some of our previous work with
promising results [
          <xref ref-type="bibr" rid="ref17">17</xref>
          ].
        </p>
      </sec>
      <sec id="sec-2-3">
        <title>2.4 Including Expansions in a Retrieval System</title>
        <p>
          Once we had the list of words for document expansion, we created one index for the
words in the original documents and another index with the expansion terms. We used
the MG4J search engine [
          <xref ref-type="bibr" rid="ref18">18</xref>
          ] as it enables several indices over the same document
collection to be combined. This way, we were able to use the original words only, or
to include the expansion words during retrieval as well.
        </p>
        <p>
          We used the BM25 ranking function, which has two free parameters (b and k1)
[
          <xref ref-type="bibr" rid="ref19">19</xref>
          ]. In the implementation of BM25 of the MG4J search engine, the two indices are
3 http://ixa2.si.ehu.es/ukb/
4 http://opennlp.sourceforge.net/
combined linearly, where the relative weight of the expanded index can be specified
setting up the free λ parameter. Further information about the scoring function and
the combination of the index we used can be found in [
          <xref ref-type="bibr" rid="ref17">17</xref>
          ].
        </p>
      </sec>
    </sec>
    <sec id="sec-3">
      <title>3 Experimental Setup</title>
      <p>We participated in the English-English monolingual task and the Basque-English
cross-lingual task. For the monolingual run, we did not analyze the English questions,
we carried out the passage retrieval only after expanding the documents, as explained
in Sections 2.3 and 2.4. For the bilingual runs, we first analyzed the questions (see
Section 2.1), then we translated the question terms from Basque to English (see
Section 2.2), and, finally, we retrieved the relevant passages for the translated query
terms (see Sections 2.3 and 2.4). For both languages, stop words were removed from
the queries and a stemming pre-process based on the Porter algorithm was applied to
the query and document words.</p>
      <p>As we were interested in the performance of passage retrieval on its own, we did
not carry out any answer validation, and we just chose the first passage returned by
the passage retrieval module as the response. We did not leave any question
unanswered.</p>
      <p>For both tasks, the only difference between the two runs submitted is the use (or
not) of the expansion in the passage retrieval phase. In other words, in the first run
(referenced as “run 1” in the tables throughout this paper), apart from the original
words that were in the passages, we also used the expanded words during the
retrieval. In the second run (referenced as “run 2” in the tables throughout this paper),
we only used the original words that were in the passages.</p>
      <p>
        The BM25 parameters and the λ parameter (see Section 2.4) for both languages
were fixed after a training phase with the question set from the previous edition of
ResPubliQA [
        <xref ref-type="bibr" rid="ref20">20</xref>
        ]. Table 1 lists the parameter values used for each run.
run 1
run 2
run 1
run 2
      </p>
      <p>b
0.17
0.09
0.35
This section describes the results obtained in our ResPubliQA 2010 participation and
discusses the performance of our document expansion approach and the translation of
query terms approach.</p>
      <p>
        Table 2 shows the official results of the four runs we submitted. The Mean
Reciprocal Rank (MRR) measure is also shown in the table. We use * to indicate
statistical significance at 99% confidence level, based on the Paired Randomization
Test [
        <xref ref-type="bibr" rid="ref21">21</xref>
        ].
      </p>
      <p>MRR
0.6067*</p>
      <sec id="sec-3-1">
        <title>4.1 Analysis of the Document Expansion Approach</title>
        <p>Regarding monolingual results (“English-English” row in Table 2), we can see that
the number of correct answers is higher in run 1 than in run 2. Since the only
difference between the two runs was that run 1 used expanded words of the passages,
the results indicate that the use of document expansion is beneficial. It should be
noted that the improvement in MRR in run 1 compared with run 2 is statistically
significant. To be precise, the correct answer set in run 1 was 130, and 123 in run 2,
where the intersection of both sets was 121 (see Table 3).</p>
        <p>
          The results of cross-lingual runs (“Basque-English” row in Table 2) show that the
use of the expanded words did not improve the results, but the differences between
both runs are not statistically significant. To our surprise, 72 questions were correctly
answered without expansion, 6 more than when it was used. However, the answers to
5 questions were only found by the run enriched with expansions (see Table 3). As we
obtained improvements using expansions in the training phase and also at
ResPubliQA 2009 [
          <xref ref-type="bibr" rid="ref14">14</xref>
          ], further analysis of our cross-lingual approach is needed in
order to determine why the use of expanded words is favourable only for some
settings.
        </p>
        <p>Fig. 1 shows an example of a document expansion which was effective for
answering the English question number 32 of the training set: “Into which plant may
genes be introduced and not raise any doubts about unfavourable consequences for
people's health?”</p>
        <p>In the second part of the example we can see some words that we obtained after
applying the expansion process explained in Section 2.3 to the original passage also
shown in the example. As we can see, there are some new words among the expanded
words that are not in the original passage, such as unfavourable or consequence.
Those two words were in the question referred to above (number 32). That could be
why our system answered that question correctly when using the expanded words, but
not when using the original words alone.
original passage: Whereas the Commission, having examined each of the objections raised in  
the light of Directive 90/220/EEC, the information submitted in the dossier and the opinion of  
the Scientific Committee on Plants, has reached the conclusion that there is no reason to  
believe that there will be any adverse effects on human health or the environment from the  
introduction into  maize of  the gene  coding for  phosphinotricine­acetyl­transferase and  the  
truncated gene coding for beta­lactamase;
some   expanded   words:  cistron   factor   gene   coding   cryptography   secret_writing   ...   acetyl  
acetyl_group acetyl_radical ethanoyl_group ethanoyl_radical beta_lactamase penicillinase ...  
ec  eec   eu  europe   european_community  european_economic_community   european_union  ...  
directive   directing   directional   guiding   citizens_committee   committee   environment   environs  
surround surroundings corn ... maize zea_mays health wellness health adverse contrary homo  
human   human_being   man   adverse   inauspicious   untoward   gamboge   ...   unfavorable  
unfavourable  ... set_up expostulation objection remonstrance remonstration dissent protest  
believe   light   lightly   belief   feeling   impression   notion   opinion   ...   reason   reason_out   argue  
jurisprudence law consequence effect event issue outcome result upshot ...</p>
      </sec>
      <sec id="sec-3-2">
        <title>4.2 Analysis of the Query Terms Translation Approach</title>
        <p>
          Compared with the monolingual run, the cross-lingual task yielded worse results.
50% of the monolingual performance was achieved for run 1, and 58% for run 2 (see
table 3). This drop in performance for the cross-lingual task is worse than the one
reported in a similar CLIR experiment [
          <xref ref-type="bibr" rid="ref22">22</xref>
          ] with the same cross-lingual method,
where 74% of monolingual results were achieved. In that work, the drop in
performance in our system was produced mainly because of the lack of recall of the
dictionary. The source word appeared on the dictionary, but translations for the
corresponding sense did not. This case falls between ambiguity and
Out-OfVocabulary word. In the experiment carried out in this paper, in addition to the
dictionary recall problem, many Out-Of-Vocabulary words corresponding to
acronyms were detected. This adversely affects the retrieval performance since the
cognate-based method does not solve them. Irrespective of the translation method, the
accumulation of errors (i.e. question analysis, automatic lemmatization and entities
detection) is another factor which explains the deterioration in the system
performance in the cross-lingual task.
        </p>
        <p>Despite this difference between the monolingual and cross-lingual task, some
questions were answered correctly only in the cross-lingual runs (see Table 4).</p>
        <p>We compared the translations of the test questions provided by our system with the
source English questions. Our system translations helped to retrieve the correct
passage in those cases because of the following isolated reasons:
a) Some relevant Out-Of-Vocabulary words are translated by cognate detection
as they appear spelled in the correct passage (e.g. “Zimmerman” was
translated to “Zimmermann” instead of “Zimmerman” as in the source
English question).
b) Some words are translated as they appear in the correct passage, but different
from spelling in the source English question (e.g. in question number 42, the
Basque keyword “zuzendari” was translated by our system into “manager”
which appears in the correct passage, instead of “director” as in the source
English question).
c) The wrong translation of a word helps to retrieve the appropriate passage
because it appears accidentally in the passage.
d) The translations provided by our system give a better distribution of weights
by allowing the chance retrieval of the appropriate passage.</p>
      </sec>
    </sec>
    <sec id="sec-4">
      <title>5 Conclusions</title>
      <p>This paper describes the participation of the joint Elhuyar-IXA team at ResPubliQA
2010. For that purpose we used a system which works with passage retrieval alone,
without any question analysis and answer validation steps.</p>
      <p>Our English-English results show that good results can be achieved by means of
this simple strategy. After expanding the passages based on semantic relatedness and
tuning the retrieval system parameters, we obtained improvements for the
EnglishEnglish task. The drop in performance in the Basque-English bilingual runs is
significant, and is caused by the accumulation of errors in the analysis and translation
of the query. The use of expanded words was not effective for the cross-lingual task.
A   possible   reason   is   the   following:   the   co­occurrence­based   translation   selection 
algorithm uses as the target collection the one without expanded words to calculate 
the   association   degree   between   translation   candidates,   and   consequently,   the   final 
translations are adapted to the original collection. Then, when expanded  words are 
added to the passages, instead of helping the retrieval, they could add noise.</p>
    </sec>
    <sec id="sec-5">
      <title>Acknowledgments</title>
      <p>This work has been supported by KNOW2 (TIN2009-14715-C04-01),
imFUTOURnet (IE08-233) and KYOTO (ICT-2007-211423). Arantxa Otegi's work
is funded by a PhD grant from the Basque Government.</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          1.
          <string-name>
            <surname>Kim</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Seo</surname>
            ,
            <given-names>H.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Rim</surname>
          </string-name>
          , H.:
          <article-title>Information retrieval using word senses: root sense tagging approach</article-title>
          .
          <source>In: Proceedings of SIGIR</source>
          . (
          <year>2004</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          2.
          <string-name>
            <surname>Liu</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Yu</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Meng</surname>
            ,
            <given-names>W.</given-names>
          </string-name>
          :
          <article-title>Word Sense Disambiguation in Queries</article-title>
          .
          <source>In: Proceedings of the 14th ACM Conference on Information and Knowledge Management</source>
          ,
          <string-name>
            <surname>CIKM.</surname>
          </string-name>
          (
          <year>2005</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          3.
          <string-name>
            <surname>Pérez-Agüera</surname>
            ,
            <given-names>J.R.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Zaragoza</surname>
          </string-name>
          , H.:
          <article-title>Query Clauses and Term Independence</article-title>
          .
          <source>Evaluating Systems for Multilingual and Multimodal Information Access, 9th Workshop of the CrossLanguage Evaluation Forum, Lecture Notes in Computer Science</source>
          , pp.
          <fpage>369</fpage>
          -
          <lpage>376</lpage>
          .
          <source>ISSN 0302- 9743 ISBN 978-3-642-04446</source>
          . (
          <year>2009</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          4.
          <string-name>
            <surname>Agirre</surname>
            ,
            <given-names>E.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Soroa</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Alfonseca</surname>
            ,
            <given-names>E.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Hall</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Kravalova</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Pasca</surname>
            ,
            <given-names>M.:</given-names>
          </string-name>
          <article-title>A study on similarity and relatedness using distributional and WordNet-based approaches</article-title>
          . In:
          <article-title>Proceedings of the annual meeting of the North American Chapter of the Association of Computational Linguistics (NAACL), Boulder</article-title>
          , USA (
          <year>2009</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          5.
          <string-name>
            <surname>Ansa</surname>
            ,
            <given-names>O.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Arregi</surname>
            ,
            <given-names>X.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Otegi</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Soraluze</surname>
          </string-name>
          . A.:
          <article-title>Ihardetsi: A Basque Question Answering System at QA@CLEF 2008</article-title>
          .
          <article-title>Evaluating Systems for Multilingual and Multimodal Information Access</article-title>
          ,
          <source>9th Workshop of the Cross-Language Evaluation Forum, Lecture Notes in Computer Science</source>
          , pp.
          <fpage>369</fpage>
          -
          <lpage>376</lpage>
          .
          <source>ISSN 0302-9743 ISBN 978-3-642-04446</source>
          . (
          <year>2009</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          6.
          <string-name>
            <surname>Ezeiza</surname>
            ,
            <given-names>N.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Aduriz</surname>
            ,
            <given-names>I.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Alegria</surname>
            ,
            <given-names>I.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Arriola</surname>
            ,
            <given-names>J.M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Urizar</surname>
          </string-name>
          , R.:
          <article-title>Combining Stochastic and RuleBased Methods for Disambiguation in Agglutinative Languages</article-title>
          .
          <source>In: COLING-ACL</source>
          , pp.
          <fpage>380</fpage>
          -
          <lpage>384</lpage>
          . (
          <year>1998</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          7.
          <string-name>
            <surname>Alegria</surname>
            ,
            <given-names>I.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Arregi</surname>
            ,
            <given-names>O.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Balza</surname>
            ,
            <given-names>I.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Ezeiza</surname>
            ,
            <given-names>N.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Fernandez</surname>
            ,
            <given-names>I.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Urizar</surname>
          </string-name>
          . R.:
          <article-title>Development of a Named Entity Recognizer for an Agglutinative Language</article-title>
          . In: IJCNLP, (
          <year>2004</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          8.
          <string-name>
            <surname>Darwish</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Oard</surname>
            ,
            <given-names>D.W.</given-names>
          </string-name>
          :
          <article-title>Probabilistic Structured Query Methods</article-title>
          .
          <source>In: Proceedings of the 26th annual international ACM SIGIR Conference on Research and Development in Information Retrieval</source>
          , pp.
          <fpage>338</fpage>
          -
          <lpage>344</lpage>
          . (
          <year>2003</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          9.
          <string-name>
            <surname>Pirkola</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          :
          <article-title>The effects of query structure and dictionary setups in dictionary-based crosslanguage information retrieval</article-title>
          .
          <source>In: Proceedings of the 21st annual international ACM SIGIR Conference on Research and Development in Information Retrieval</source>
          , pp.
          <fpage>55</fpage>
          -
          <lpage>63</lpage>
          . (
          <year>1998</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          10.
          <string-name>
            <surname>Ballesteros</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Bruce Croft</surname>
            ,
            <given-names>W.</given-names>
          </string-name>
          :
          <article-title>Resolving Ambiguity for Cross-language Retrieval</article-title>
          .
          <source>In: Proceedings of the 21st annual international ACM SIGIR Conference on Research and Development in Information Retrieval</source>
          , pp.
          <fpage>64</fpage>
          -
          <lpage>71</lpage>
          . (
          <year>1998</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          11.
          <string-name>
            <surname>Gao</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Nie</surname>
            ,
            <given-names>J.Y.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Xun</surname>
            ,
            <given-names>E.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Zhang</surname>
          </string-name>
          , J.,
          <string-name>
            <surname>Zhou</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Huang</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          :
          <article-title>Improving Query Translation for Cross-language Information Retrieval Using Statistical Models</article-title>
          .
          <source>In Proceedings of the 24th annual international ACM SIGIR conference on Research and development in information retrieval</source>
          , pp.
          <fpage>96</fpage>
          -
          <lpage>104</lpage>
          . (
          <year>2001</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          12.
          <string-name>
            <surname>Monz</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Dorr</surname>
            ,
            <given-names>B.J.:</given-names>
          </string-name>
          <article-title>Iterative translation disambiguation for cross-language information retrieval</article-title>
          .
          <source>In: Proceedings of the 28th annual international ACM SIGIR Conference on Research and Development in Information Retrieval</source>
          , pp.
          <fpage>520</fpage>
          -
          <lpage>527</lpage>
          . (
          <year>2005</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          13.
          <string-name>
            <surname>Saralegi</surname>
            ,
            <given-names>X.</given-names>
          </string-name>
          , López de Lacalle, M.:
          <article-title>Comparing Different Approaches to Treat Translation Ambiguity in CLIR: Structured Queries v. Target Co-occurrence-Based Selection</article-title>
          .
          <source>In: 6th TIR workshop</source>
          . (
          <year>2009</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          14.
          <string-name>
            <surname>Agirre</surname>
            ,
            <given-names>E.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Ansa</surname>
            ,
            <given-names>O.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Arregi</surname>
            ,
            <given-names>X.</given-names>
          </string-name>
          , Lopez de Lacalle,
          <string-name>
            <given-names>M.</given-names>
            ,
            <surname>Otegi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            ,
            <surname>Saralegi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>X.</given-names>
            ,
            <surname>Zaragoza</surname>
          </string-name>
          . H.:
          <article-title>Elhuyar-IXA: semantic relatedness and cross-lingual passage retrieval</article-title>
          .
          <source>Working Notes of the Cross-Lingual Evaluation Forum</source>
          , Corfu,
          <string-name>
            <surname>Greece.</surname>
          </string-name>
          (
          <year>2009</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref15">
        <mixed-citation>
          15.
          <string-name>
            <surname>Fellbaum</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          :
          <article-title>WordNet: An Electronic Lexical Database and Some of its Applications</article-title>
          . MIT Press, Cambridge, Mass. (
          <year>1998</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref16">
        <mixed-citation>
          16.
          <string-name>
            <surname>Haveliwala</surname>
          </string-name>
          , T. H.:
          <article-title>Topic-sensitive PageRank</article-title>
          .
          <source>In: Proceedings of WWW'02</source>
          , pages
          <fpage>517</fpage>
          -
          <lpage>526</lpage>
          . (
          <year>2002</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref17">
        <mixed-citation>
          17.
          <string-name>
            <surname>Agirre</surname>
            ,
            <given-names>E.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Arregi</surname>
            ,
            <given-names>X.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Otegi</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          :
          <article-title>Document Expansion Based on WordNet for Robust IR</article-title>
          .
          <source>In: Proceedings of the 23rd International Conference on Computational Linguistics (COLING)</source>
          . To appear (
          <year>2010</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref18">
        <mixed-citation>
          18.
          <string-name>
            <surname>Boldi</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Vigna</surname>
            ,
            <given-names>S.:</given-names>
          </string-name>
          <article-title>MG4J at TREC 2005</article-title>
          . In: Voorhees,
          <string-name>
            <given-names>E.M.</given-names>
            ,
            <surname>Buckland</surname>
          </string-name>
          ,
          <string-name>
            <surname>L.P</surname>
          </string-name>
          . (eds.)
          <source>The Fourteenth Text Retrieval Conference (TREC</source>
          <year>2005</year>
          )
          <article-title>Proceedings</article-title>
          , number SP 500-266 in Special Publications. NIST. http://mg4j.dsi.unimi.it/. (
          <year>2005</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref19">
        <mixed-citation>
          19.
          <string-name>
            <surname>Robertson</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Zaragoza</surname>
          </string-name>
          , H.:
          <article-title>The Probabilistic Relevance Framework: BM25 and Beyond</article-title>
          .
          <source>Foundations and Trends in Information Retrieval</source>
          ,
          <volume>3</volume>
          (
          <issue>4</issue>
          ):
          <fpage>333</fpage>
          -
          <lpage>389</lpage>
          . (
          <year>2009</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref20">
        <mixed-citation>
          20.
          <string-name>
            <surname>Peñas</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Forner</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Sutcliffe</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Rodrigo</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Forăscu</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Alegria</surname>
            ,
            <given-names>I.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Giampiccolo</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Moreau</surname>
            ,
            <given-names>N.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Osenova</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          : Overview of ResPubliQA 2009:
          <article-title>Question Answering Evaluation over European Legislation</article-title>
          .
          <source>Working Notes for the CLEF 2009 Workshop</source>
          . (
          <year>2009</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref21">
        <mixed-citation>
          21.
          <string-name>
            <surname>Smucker</surname>
            ,
            <given-names>M. D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Allan</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Carterette</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          :
          <article-title>A comparison of statistical significance tests for information retrieval evaluation</article-title>
          .
          <source>In: Proceedings of CIKM</source>
          <year>2007</year>
          , Lisbon, Portugal. (
          <year>2007</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref22">
        <mixed-citation>
          22.
          <string-name>
            <surname>Saralegi</surname>
            ,
            <given-names>X.</given-names>
          </string-name>
          , Lopez de Lacalle, M.:
          <article-title>Dictionary and Monolingual Corpus-based Query Translation for Basque-English CLIR</article-title>
          .
          <source>In the 7th International Conference on Language Resources and Evaluations (LREC)</source>
          .
          <source>Malta</source>
          . (
          <year>2010</year>
          )
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>