<!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>A Fast Forward Approach to Cross-lingual Question Answering for English and German</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Robert Strötgen</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Thomas Mandl</string-name>
          <email>mandl@uni-hildesheim.de</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>René Schneider</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>University of Hildesheim, Information Science Marienburger Platz 22 - 31141 Hildesheim</institution>
          ,
          <addr-line>Germany D-31141 Hildesheim</addr-line>
          ,
          <country country="DE">Germany</country>
        </aff>
      </contrib-group>
      <abstract>
        <p>This paper describes the development of a question answering system for monolingual and cross-lingual tasks for the languages English and German. We developed the question answering system from a document and retrieval focused perspective. The system consists of question and answering taxonomies, named entity recognition, term expansion modules, a multi-lingual search engine based on Lucene and a passage extraction and ranking component. The overall architecture and heuristics applied during development are described. We discuss the results at CLEF 2005 and show potential future work.</p>
      </abstract>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>Introduction</title>
      <p>The query processing includes the assignment of a question and expected answer type, named entity recognition,
translation and stopword removal.</p>
      <sec id="sec-1-1">
        <title>1 http://clef-qa.itc.it/</title>
        <p>
          A question taxonomy based on the questions of previous QA tracks
          <xref ref-type="bibr" rid="ref4">(Magnini et al. 2005)</xref>
          was developed. It
contains eleven question classes and several subclasses for the question types WHO, HOW, WHAT and
WHERE and the corresponding answer classes.
        </p>
        <p>An evaluation based on the CLEF QA topics form the years 2003 and 2004 showed that overall, for 73% of the
questions, the answer category was assigned correctly. For further 14%, the categorization was partly correct and
for another14% of the questions, a wrong category was assigned. The taxonomy was most reliable for the
question types WHEN, WITH WHAT and FOR WHAT. Questions starting with WHAT were categorized worst.
An evaluation revealed a recognition rate of 60% for correct recognition and 42% for correct categorization into
the following four classes: Person (PER), Organization (ORG), Place (LOC) und Miscellaneous (MISC).
Named entity recognition was applied to the queries and to the document corpus.
2.3</p>
        <sec id="sec-1-1-1">
          <title>Query Translation</title>
          <p>The key component for cross-lingual QA is a translation utility. As underlying systems, we used Babelfish,
FreeTranslation and Linguatec4. To avoid a large influence of wrongly translated named entities, we replaced all
named entities found in the query except for the category MISC with a dummy which was not translated by the
translation tools. In addition, the named entities were sent to the translation tool without context subsequently.
All translated sentences and terms were collected and only stopwords were removed.
2.4</p>
        </sec>
        <sec id="sec-1-1-2">
          <title>Term Expansion</title>
          <p>For retrieving German answers, the translated keywords were expanded using GermaNet5. However, to avoid the
addition of too many senses, the expansion was only carried out, when GermaNet included only one meaning of
the word under question. For English, the synonym function of WordNet6 was used to expand all translated
terms. The effect of term expansion has not been evaluated for our system yet.
3</p>
        </sec>
      </sec>
    </sec>
    <sec id="sec-2">
      <title>Searching and Passage Retrieval</title>
      <p>
        For stemming, indexing and retrieval we employed Lucene7 as it has been used in
        <xref ref-type="bibr" rid="ref1">(Hackl et al. 2005)</xref>
        . The
system searched with the keywords provided and first returned documents. These were split into passages of size
of at least 200 including the remainder until the next punctuation mark.
      </p>
      <sec id="sec-2-1">
        <title>2 http://www.alias-i.com/lingpipe/</title>
        <p>
          3 http://www.ldc.upenn.edu/
4 http://babelfish.altavista.com/, http://www.freetranslation.com/, http://www.linguatec.net/online/ptwebtext/
5 http://www.sfs.nphil.uni-tuebingen.de/lsd/
6 http://wordnet.princeton.edu/doc
7 http://lucene.apache.org/
These passages were again indexed as documents by Lucene and ranked according to a scoring algorithm which
rewards the frequency of occurrence of keywords in the passage
          <xref ref-type="bibr" rid="ref3">(Light et al. 2001)</xref>
          . The same set of keywords
was used for retrieval and ranking. The top ranked passages are returned. A user interface which allows question
input and which shows the top three passages has also been developed.
        </p>
        <p>A few heuristics were implemented to improve performance. We focused on named entities especially.
· If named entity is the expected answer type and there are documents in the answer set which contain named
entities of the appropriate type, then only these documents are forwarded to the passage extraction.
· If named entity is the expected answer type the most frequent named entities of the expected type within all
passages are determined and the first passages containing these named entities are returned.
· If no answer with named entities is found, then the first 90 characters of the most highly ranked passage are
returned.
· Trivial answers are not returned. Answers are considered trivial if they contain only one word, if they
consist in the name of a known news agency of if the answer string is a subset of the question string.
· When the expected answer type is named entity, then all named entities in the first 20 passages are extracted
and the most frequent named entity is returned.</p>
        <p>The confidence weight returned by the system is the retrieval status value returned by Lucene for the returned
passage. NIL is returned when no document is found by Lucene and in this case, a confidence value of 1.0 is
assigned.
4</p>
      </sec>
    </sec>
    <sec id="sec-3">
      <title>Experiments and Results</title>
      <p>The quality of the results was only satisfying for definition questions. For this first participation and considering
the focus on named entities, this seems acceptable. The results are shown in table 1.
The weak performance is probably due to several reasons. The time and effort dedicated to evaluation was
mainly aimed at system stability and the integration of all tools. Parameter tuning based on previous CLEF
experiments were not carried out so far. In addition, this year CLEF required a very short answer. Our system
returns passages of at least the length 200 and no further processing is done to extract a short answer. This was
probably an advantage for our system for definition questions, where the performance was good.
5</p>
    </sec>
    <sec id="sec-4">
      <title>Outlook</title>
    </sec>
    <sec id="sec-5">
      <title>Acknowledgements</title>
      <p>The system for QA can be improved by further integrating the question analysis and the search process. So far,
the knowledge gained from the question in not fully exploited. Furthermore, the system needs to be evaluated
more thoroughly.</p>
      <p>We would like to acknowledge the work of several students from the University of Hildesheim who
implemented the components of the QA system as part of their course work8.</p>
      <p>We also want to thank Maarten de Rijke for his comments on an earlier version of our QA approach.</p>
      <sec id="sec-5-1">
        <title>8 http://www.uni-hildesheim.de/~rschneid/psws04odqa.html</title>
      </sec>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          <string-name>
            <surname>Hackl</surname>
          </string-name>
          , René; Mandl, Thomas; Womser-Hacker,
          <source>Christa</source>
          (
          <year>2005</year>
          )
          <article-title>: Mono-</article-title>
          and
          <string-name>
            <surname>Cross-lingual Retrieval</surname>
          </string-name>
          Experiments at the University of Hildesheim. In: Peters, Carol; Clough, Paul; Gonzalo, Julio; Kluck, Michael; Jones, Gareth; Magnini, Bernard (eds):
          <article-title>Multilingual Information Access for Text, Speech and Images: Results of the Fifth CLEF Evaluation Campaign</article-title>
          . Berlin et al.: Springer [LNCS 3491] pp.
          <fpage>165</fpage>
          -
          <lpage>169</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          <string-name>
            <surname>Harabagiu</surname>
          </string-name>
          , Sanda &amp; Moldovan,
          <string-name>
            <surname>Dan</surname>
          </string-name>
          (
          <year>2003</year>
          )
          <article-title>: Question Answering</article-title>
          .
          <source>In: The Oxford Handbook of Computational Linguistics</source>
          . Oxford; New York: Oxford University Press,
          <year>2003</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          <string-name>
            <surname>Light</surname>
          </string-name>
          , Marc; Mann, Gideon S.; Riloff, Ellen; Breck,
          <string-name>
            <surname>Eric</surname>
          </string-name>
          (
          <year>2001</year>
          )
          <article-title>: Analyses for elucidating current question answering technology</article-title>
          .
          <source>In: Journal of Natural Language Engineering</source>
          , Special Issue on Question Answering Fall-Winter
          <year>2001</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          <string-name>
            <surname>Magnini</surname>
          </string-name>
          , Bernardo; Alessandro Vallin, Christelle Ayache, Gregor Erbach, Anselmo Peñas, Maarten de Rijke, Paulo Rocha, Kiril Simov and Richard Sutcliffe (
          <year>2005</year>
          )
          <article-title>: Multiple Language Question Answering (QA@CLEF). Overview of the CLEF 2004 Multilingual Question Answering Track</article-title>
          .
          <source>In: Working Notes 5th Workshop of the Cross-Language Evaluation Forum</source>
          ,
          <string-name>
            <surname>CLEF</surname>
          </string-name>
          <year>2004</year>
          . Bath, England, http://clef.isti.cnr.it/2004/working_notes/WorkingNotes2004/35.pdf
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          <string-name>
            <surname>Mandl</surname>
          </string-name>
          , Thomas; Schneider, René; Schnetzler, Pia; Womser-Hacker,
          <source>Christa</source>
          (
          <year>2005</year>
          ):
          <article-title>Evaluierung von Systemen für die Eigennamenerkennung im cross-lingualen Information Retrieval</article-title>
          . In:
          <article-title>Gesellschaft für linguistische Datenverarbeitung</article-title>
          .
          <source>Beiträge der GLDV-Frühjahrstagung. Bonn</source>
          ,
          <volume>30</volume>
          .3. -
          <fpage>01</fpage>
          .
          <fpage>04</fpage>
          .
          <string-name>
            <surname>Frankfurt</surname>
          </string-name>
          <article-title>a</article-title>
          . M. et al. Peter-Lang.
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          <string-name>
            <surname>Mandl</surname>
          </string-name>
          , Thomas; Womser-Hacker,
          <source>Christa</source>
          (
          <year>2005</year>
          ):
          <article-title>The Effect of Named Entities on Effectiveness in Cross-Language Information Retrieval Evaluation</article-title>
          .
          <source>In: Proceedings ACM SAC Symposium on Applied Computing (SAC)</source>
          .
          <article-title>Information Access and Retrieval (IAR) Track</article-title>
          . Santa Fe, New Mexico, USA. March 13.-
          <fpage>17</fpage>
          .
          <year>2005</year>
          . S.
          <volume>1059</volume>
          -
          <fpage>1064</fpage>
          .
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>