<!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>AliQAn, Spanish QA System at CLEF-2008¤</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>General Terms</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>Measurement</institution>
          ,
          <addr-line>Performance, Experimentation</addr-line>
        </aff>
        <aff id="aff1">
          <label>1</label>
          <institution>S. Roger, K. Vila</institution>
          ,
          <addr-line>A. Ferr</addr-line>
        </aff>
        <aff id="aff2">
          <label>2</label>
          <institution>omez, M. Puchol-Blasco and J. Peral. Natural Language Processing and Information Systems Group. Department of Software and Computing Systems. University of Alicante</institution>
          ,
          <country country="ES">Spain</country>
        </aff>
      </contrib-group>
      <abstract>
        <p>This paper describes the participation of the system AliQAn, a monolingual opendomain Question Answering (QA) System developed in the Department of Language Processing and Information System at the University of Alicante, in the CLEF-2008 Spanish monolingual QA evaluation task. Here, we focus on explaining a couple of strong points of the current version of AliQAn: (i) our algorithm for dealing with topic-related questions, and (ii) our approach for decreasing the number of inexact answers. We have also explored the use of the Wikipedia corpora, which have proposed some new challenges for the QA task. Besides, the achieved results (overall accuracy of 19.50%) are shown and discussed in this paper.</p>
      </abstract>
      <kwd-group>
        <kwd>H</kwd>
        <kwd>3 [Information Storage and Retrieval]</kwd>
        <kwd>H</kwd>
        <kwd>3</kwd>
        <kwd>1 Content Analysis and Indexing</kwd>
        <kwd>H</kwd>
        <kwd>3</kwd>
        <kwd>3 Information Search and Retrieval</kwd>
        <kwd>H</kwd>
        <kwd>3</kwd>
        <kwd>4 Systems and Software</kwd>
        <kwd>H</kwd>
        <kwd>3</kwd>
        <kwd>7 Digital Libraries</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>Introduction</title>
      <p>¤This work has been partially supported by the framework of the project QALL-ME (FP6-IST-033860), which
is a 6th Framenwork Research Programme of the European Union (EU), the Spanish Government, project
TEXTMESS (TIN-2006-15265-C06-01), by the University of Comahue under the project 04/E062, by the Generalitat
Valenciana throught the research grants BFPI/2008/093 and BFPI06/182 and University of Matanzas.
on complex pattern matching using NLP tools. This year we have adapted our system to work
on Wikipedia and we have proposed a method to work with inexact answers. None method for
anaphora resolution has been done for the topic-related questions. A simple method has been
proposed to treat this type of questions.</p>
      <p>The rest of this paper is organized as follows: section two and three describes our algorithm
for dealing with topic-related questions and the special treatment of inexact answers respectively.
Afterwards, the handling of Wikipedia and related problems. Section ¯ve describes the obtained
results. Finally, our conclusions and future work are presented.
2</p>
    </sec>
    <sec id="sec-2">
      <title>Dealing with Topic-Related Questions</title>
      <p>Before QA@CLEF 2007, all questions could be answered in isolation without any reference to the
context (previous questions or answers). From QA@CLEF 2007 run, topic-related questions are
clusters of questions which are related to the same topic and possibly contain anaphoric references
between one question and the other questions of the same cluster.</p>
      <p>For example, the questions of QA@CLEF 2008: 008-\&gt;D¶onde viv¶³a la tribu de los Mojave?"
(Where did the Mohave tribe live?) and 009: \&gt;Qui¶enes eran sus enemigos?" (Who were their
enemies?) belong to the same cluster. On the other hand, the following example shows an
anaphoric reference between second question and third question of the one cluster: 029: \&gt;Entre
qu¶e d¶³as fue la batalla de Brunete?" (Among which days was the battle of Brunete?), 030: \&gt;D¶onde
se public¶o el reportaje de Gerda Taro sobre esta batalla?" (Where was the article of Gerda Taro
about this battle published?) and 031: &gt;A qu¶e hospital fue trasladada tras su accidente? (Which
hospital were she moved to after her accident?). In 2007, 30 questions out of 200 were topic-related
and in this year this size was enlarged to 64 out of 200 for Spanish.</p>
      <p>To treat such context-dependent questions, the underlying idea was very simple. It considers
the enrichment of dependent questions by adding some noun phrases of the ¯rst question of each
cluster and the noun of the answer for this question. By reasons of simplicity and for avoid
introducing noise; we only considered the co-reference between the ¯rst question and other of the
same cluster. The algorithm employed contained the following steps:</p>
      <sec id="sec-2-1">
        <title>1. Answering the ¯rst question of one cluster without special treatment.</title>
      </sec>
      <sec id="sec-2-2">
        <title>2. Extracting the set of noun phrases from question and answer.</title>
      </sec>
      <sec id="sec-2-3">
        <title>3. Adding this set of noun phrases to all dependent questions.</title>
      </sec>
      <sec id="sec-2-4">
        <title>4. Handling and extracting the answers from these expanded questions.</title>
        <p>For instance, if we consider the question 008, the system returns the answer \Arizona"(step 1).
Step 2 produces the noun phrases \la tribu de los Mojave" (Mohave tribe) and \Arizona". Then
(step 3), it obtains the noun phrases that correspond to the 009 question: \sus enemigos" (their
enemies). Finally, in step 4, the previous extended set with all the noun phrases is used to ¯nd
the answer of question 009.</p>
        <p>For the ¯nal answers to topic-related questions we obtain the following criteria:
² If the answer to the extended question (following the steps previously described) was nil,
then nil was returned as ¯nal answer.
² In the opposite case, we have ranked the answers (with or without extension) in a decreasing
order, thus returning the ¯rst three ones of the ranking.
3</p>
      </sec>
    </sec>
    <sec id="sec-3">
      <title>Inexact Treatment</title>
      <p>This year, the algorithm to treat the inexact answers has been modi¯ed only for the questions
which expected answer type as group, person, ¯rst name, place, country and city. In theses
cases, we considered that the answers are able to contain one or more noun phrases. Before
explaining the general algorithm used for handling theses answers, we will de¯ne some variables:
Set N P = np1; np2; : : : ; npn where npi 8i = 1::n are consecutive proper names of the head of
the di®erent noun phrases (included embebed noun phrases). Set ­ = fN P jN P 2 head of the
noun phrases of the answerg. For example, let considere the sentence \la Sociedad Espan~ola de
Vexilolog¶³a" (the Spanish Society of Vexillology), in this case the cardinality of ­ (j­j) is 2 and
its elements are: \Spanish Society" and \Vexillology".</p>
      <p>The algorithm begins by ¯nding the set ­ for all noun phrases of the answer. If j­j &gt; 1 then
the elements of ­ are ranking according to its weight. The weight is increased or decreased in
accordance with many di®erent criteria and whether it belongs to speci¯c dictionary or it does not.
Criteria and dictionary are de¯ned according to expected answer type. After this, the algorithm
selects the element with bigger score and it returns the head of the noun phrase corresponding to
this element. On the other hand, if the j j = 1, then it only returns the corresponding head of
­
the noun phrase. In the previous example, we suppose that the weight of \Spanish Society" is N1
and the weight of \Vexillology" is N2. If N1 &gt; N2, then algorithm returns "the Spanish Society"
else it returns \Vexillology".
4</p>
    </sec>
    <sec id="sec-4">
      <title>Exploring Wikipedia</title>
      <p>Compared to traditional CLEF corpora (based on articles from newspapers), Wikipedia is a very
large document collection and has not enough redundancy. In spite of that fact, the articles from
newspapers have a fair amount of redundancy because they are usually published, with pretty
much relevance, in di®erent days, by di®erent people and using di®erent expressions. Wikipedia
collections use hyperlinks to avoid information repetition (i.e. data which is sensitive to be repeated
is replaced by links to the original source).</p>
      <p>An Information Retrieval (IR) system needs to be more precise in order to ¯lter the fair
amount of irrelevant information due to the size of the Wikipedia collections. At the same time,
an IR system needs to have high coverage to deal with the low redundancy of these corpora. In
addition, Wikipedia, unlike newspaper collections, is highly structured. This structure gives a lot
of information about the article topic in the form of tables, references and links. Hence, an IR
system needs to consider this structure to take advantage of this information.</p>
      <p>
        Bearing these considerations in mind, we aim to adapt two IR systems (namely, IR-n [
        <xref ref-type="bibr" rid="ref5">5</xref>
        ]
and JIRS [
        <xref ref-type="bibr" rid="ref4">4</xref>
        ]) in order to (i) be able to use very large document collections, and (ii) face up to
the above-commented new Wikipedia challenges. Speci¯cally, in this paper, our e®ort has been
directed towards solving the ¯rst goal.
      </p>
      <p>
        In addition, we would like to point out that several problems derived from the codi¯cation
of the no-latin characters in Wikipedia were solved from the viewpoint of our QA system. The
source of these problems is that the Wikipedia collections was coded in UTF-8, while our QA
system uses ISO encoding to perform the morpho-syntactic labelling of documents via MACO [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ]
and SUPAR [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ] NLP tools.
      </p>
      <p>An example that illustrates this problem is shown in the following question from QA@CLEF
2008: 048- \&gt;Qu¶e cargo ocupaba Hideki T¹oj¹o antes del ataque a Pearl Harbor?" (What position
did Hideki T¹oj¹o hold before the Pearl Harbor attack?) the \¹o" character was codi¯ed as \?" by
our system.</p>
      <p>Our proposed solution for our QA system consists of controlling the correspondences between
the two encodings for non-latin characters. Even though it is a very simple solution, good results
are obtained. Nevertheless, as future work we wish to adapt our system and its related tools to
directly work the UTF-8 encoding.
5</p>
    </sec>
    <sec id="sec-5">
      <title>Results</title>
      <p>This section describes the table related with the results and the evaluation of our system in
CLEF-2008. The proposed system was applied to the set of 200 questions.</p>
      <p>The University submitted four runs to QA@CLEF, two runs for Spanish-Spanish (spsp) and
two runs for English-Spanish (ensp). We participate with the monolingual runs. Regrettably,
there was an error in the submitting of the runs, one run of spsp was overwritten with one run of
ensp. Therefore, we only look the good run.</p>
      <p>Table 1 shows the results for this run and the e®ect that the errors and problems produced
our system performance. It is important to remark that it is our ¯rst participation with the new
characteristic: Wikipedia and topic-related questions.</p>
      <p>
        On the other hand, AliQAn system had a high percentage of inexact answers in previous years.
This kind of answers has been improved in this participation: of 24 in the year 2005 [6] and 15 in
the year 2006 [
        <xref ref-type="bibr" rid="ref3">3</xref>
        ] to 4 this year (2008), which all correspond a list questions1.
6
      </p>
    </sec>
    <sec id="sec-6">
      <title>Conclusion and Future Work</title>
      <p>This paper summarizes our participation in the CLEF-2008 monolingual task with our monolingual
open-domain QA System (AliQAn). This year, the main contributions were:
1It is important to say that list questions are not supported by our system.
² Algorithm for resolving topic-related questions. The essence of this algorithm is to extend
every question (qi) by adding some noun phrases and the noun of the answer of the ¯rst
question of the same cluster which qi depends on.
² Approach for decreasing the number of inexact answers. This approach assigns certain
weight (determined by using speci¯c dictionaries) to the heads of each answer's noun phrase
according to an expected answer type and it returns the head of the noun phrase with the
greatest weight. We have obtained excellent results with a decrease of 20 inexact answers
with regard to the year 2005.
² Using Wikipedia with our IR &amp; QA systems. On one hand, our IR system has been adapted
for making possible the use Wikipedia with very large document collections. On the other
hand, several problems derived from the codi¯cation of the non-latin characters in Wikipedia
have been resolved in order to properly use it together with our QA system.</p>
      <p>All questions given in this track, except the list questions, have been treated by our system
and only one has been unsupported. Our paper only includes one run for the Spanish monolingual
QA task and it has achieved an overall accuracy of 19.50%. Finally, we would like to point out
that this is the ¯rst time we deal with Wikipedia and topic-related questions for our participation
in the CLEF QA task.</p>
      <p>Our future work is focused on the multilingual task, the adaptation of the NLP tools related
to our system to directly work the UTF-8 encoding and the incorporation of knowledge to the
phases that can be useful to increase the performance of our system.
[6] S. Roger, S. Ferra¶ndez, A. Ferr¶andez, J. Peral, F. Llopis, A. Aguilar, and D. Toma¶s. Aliqan,
spanish qa system at clef-2005. In CLEF, pages 457{466, 2005.</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          [1]
          <string-name>
            <given-names>S.</given-names>
            <surname>Acebo</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Ageno</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Climent</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Farreres</surname>
          </string-name>
          , L. Padr¶o,
          <string-name>
            <given-names>R.</given-names>
            <surname>Placer</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Rodriguez</surname>
          </string-name>
          ,
          <string-name>
            <surname>M.</surname>
          </string-name>
          <article-title>Taul¶e, and</article-title>
          <string-name>
            <given-names>J.</given-names>
            <surname>Turno</surname>
          </string-name>
          . MACO:
          <string-name>
            <surname>Morphological Analyzer Corpus-Oriented. ESPRIT</surname>
          </string-name>
          BRA-7315
          <string-name>
            <surname>Aquilex</surname>
            <given-names>II</given-names>
          </string-name>
          , Working Paper 31,
          <year>1994</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          [2]
          <string-name>
            <given-names>A.</given-names>
            <surname>Ferr</surname>
          </string-name>
          ¶andez, M. Palomar, and
          <string-name>
            <given-names>L.</given-names>
            <surname>Moreno</surname>
          </string-name>
          .
          <article-title>An Empirical Approach to Spanish Anaphora Resolution</article-title>
          .
          <source>Machine Translation. Special Issue on Anaphora Resolution In Machine Translation</source>
          ,
          <volume>14</volume>
          (
          <issue>3</issue>
          /4):
          <volume>191</volume>
          {
          <fpage>216</fpage>
          ,
          <year>December 1999</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          [3]
          <string-name>
            <given-names>S.</given-names>
            <surname>Ferr</surname>
          </string-name>
          ¶andez, P. L¶
          <string-name>
            <surname>opez-Moreno</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          <string-name>
            <surname>Roger</surname>
            ,
            <given-names>A</given-names>
          </string-name>
          . Ferra¶ndez, J.
          <string-name>
            <surname>Peral</surname>
            ,
            <given-names>X.</given-names>
          </string-name>
          <string-name>
            <surname>Alvarado</surname>
            , E. Noguera, and
            <given-names>F.</given-names>
          </string-name>
          <string-name>
            <surname>Llopis</surname>
          </string-name>
          .
          <article-title>Monolingual and cross-lingual qa using aliqan and brili systems for clef 2006</article-title>
          . In CLEF, pages
          <volume>450</volume>
          {
          <fpage>453</fpage>
          ,
          <year>2006</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          [4]
          <string-name>
            <surname>J. M. G</surname>
          </string-name>
          <article-title>¶omez, M. Montes-G¶omez</article-title>
          , E. Sanchis,
          <string-name>
            <given-names>L.</given-names>
            <surname>Villaseor-Pineda</surname>
          </string-name>
          , and
          <string-name>
            <given-names>P.</given-names>
            <surname>Rosso</surname>
          </string-name>
          .
          <article-title>Language independent passage retrieval for question answering</article-title>
          .
          <source>In Fourth Mexican International Conference on Arti¯cial Intelligence MICAI 2005, Lecture Notes in Computer Science</source>
          , pages
          <volume>816</volume>
          {
          <fpage>823</fpage>
          ,
          <string-name>
            <surname>Monterrey</surname>
          </string-name>
          , Mexico,
          <year>2005</year>
          . Springer-Verlag GmbH.
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          [5]
          <string-name>
            <given-names>F.</given-names>
            <surname>Llopis</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J. L.</given-names>
            <surname>Vicedo</surname>
          </string-name>
          ,
          <article-title>and</article-title>
          <string-name>
            <given-names>A.</given-names>
            <surname>Ferr</surname>
          </string-name>
          <article-title>¶andez. Passage selection to improve question answering</article-title>
          .
          <source>In In Proceedings of the COLING 2002 Workshop on Multilingual Summarization and Question Answering</source>
          , pages
          <fpage>1</fpage>
          <lpage>{</lpage>
          6,
          <string-name>
            <surname>Taipei</surname>
          </string-name>
          , Taiwan,
          <year>2002</year>
          .
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>