<!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>Experiments for tuning the values of lexical features in Question Answering for Spanish</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Manuel Pérez-Coutiño</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Manuel Montes-y-Gómez</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Aurelio López-López</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Luis Villaseñor-Pineda</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>Instituto Nacional de Astrofísica, Óptica y Electrónica (INAOE) Luis Enrique Erro No.</institution>
          <addr-line>1, CP 72840, Sta. Ma. Tonantzintla, Pue.</addr-line>
          ,
          <country country="MX">México</country>
        </aff>
      </contrib-group>
      <fpage>2</fpage>
      <lpage>9</lpage>
      <abstract>
        <p>This paper describes the prototype developed by the Language Technologies Laboratory at INAOE for Spanish monolingual QA evaluation task at CLEF 2005. Our approach is centered in the use of lexical features in order to identify possible answers to factual questions. Such method is supported by an alternative one based on pattern recognition in order to identify candidate answers to definition questions. The methods applied at different stages of the system and prototype architecture for question answering are described. The paper shows and discusses the results achieved with this approach.</p>
      </abstract>
      <kwd-group>
        <kwd>Question Answering for Spanish</kwd>
        <kwd>Lexical Context</kwd>
        <kwd>Natural Language Processing</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>Introduction</title>
      <p>
        QA systems traditionally perform a question processing stage in order to know in advance the type (semantic
class) of the answer expected by a given question and thus, reduce the searching space to only those information
fragments related to the semantic class found. Our prototype implements this stage following a direct approach
involving the next steps:
1. Question is parsed with a set of heuristic rules in order to get its semantic class.
2. Question is tagged with the MACO POS tagger [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ]
3. Question’s named entities are identified and classified using MACO.
      </p>
      <p>The first step is responsible of identify the semantic class of the expected answer. In the experiments
performed with the training data set, we found that when the number of classes was minimal (just 3 classes: date,
quantity and proper noun) it was possible to achieve similar results in precision to those achieved when we use
more than five classes, for instance person, organization, location, date, quantity and other. Steps 2 and 3
produce information that is used later in searching stage to match questions and candidate answer context,
contributing to the weighted schema.
4</p>
    </sec>
    <sec id="sec-2">
      <title>Documents Processing</title>
      <p>
        This year we experiment with a hybrid1 approach for document processing that has allowed simplifying greatly
this stage. The processing of target documents is composed of two parts, first the whole document collection is
tagged with MACO[
        <xref ref-type="bibr" rid="ref1">1</xref>
        ], gathering the POS tags as well as named entities identification and classification for each
document in the collection. The second part of this stage is performed by the JIRS [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ] passage retrieval system
(PRS), which create the index for the searching process. The index gathered by JIRS and the tagged collection
are aligned phrase by phrase for each document in the collection. This way, the system could retrieve later the
relevant passages for a given question with JIRS, and then use their tagged form for the answer extraction
process.
1 The qualification of hybrid to this approach means that the system combines shallow NLP information (POS and named
entity tagging) and statistical, language independent information encapsulated into JIRS.
      </p>
    </sec>
    <sec id="sec-3">
      <title>Searching</title>
      <p>Due to the document processing stage, searching stage is also performed in two steps. As we mention, the first
step is to retrieve the relevant passages for the given question. This step is performed by JIRS, taking as input the
question without previous processing.</p>
      <p>JIRS is a PSR specially suited for question answering systems. JIRS ranks the retrieved passages based on the
computation of a weight for each passage. The weight of a passage is related to the lager n-gram structure of the
question that can be found in the passage itself. The larger the n-gram structure, the greater the weight of the
passage. The next example illustrates this concept.</p>
      <p>Assume that the user question is “Who is the president of Mexico?” and that two passages were obtained with
the following texts: “Vicente Fox is the president of Mexico…” (p1) and “The president of Spain visited Mexico
in last February…” (p2).</p>
      <p>The original question is divided into five sets of n-grams (5 is the number of question terms without the
question word Who) the following sets are gathered:
5-gram: ''is the President of Mexico''.
4-gram: ''is the President of'', ''the President of Mexico''.
3-gram: ''is the President'', ''the President of'', ''President of Mexico''.
2-gram: ''is the'', ''the President'', ''President of'', ''of Mexico''.</p>
      <p>1-gram: ''is'', ''the'', ''President'', ''of'', ''Mexico''.</p>
      <p>Next, the five sets of n-grams from the two passages are gathered. The passage p1 contains all the n-grams of
the question (the one 5-gram, the two 4-grams, the three 3-grams, the four 2-grams and the five 1-grams of the
question). Therefore the similarity of the question with this passage is 1.</p>
      <p>The sets of n-grams of the passage p2 contain only the “the President of” 3-gram, the “the President”' and
“President of” 2-grams and the following 1-grams: “the”, “President”, “of” and “Mexico”. The similarity for this
passage give us a lower value than for p1 because the second passage is very different with respect to the original
question, although it contains all the relevant terms of the question.</p>
      <p>
        Previous evaluation of JIRS also demonstrates that it is possible to achieve coverage of over 60% for the first
20 passages. That is, the possible answer to a given question is found between the first 20 passages retrieved by
JIRS for over 60% of the training set. We refer the reader to [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ] in order to get a complete discussion of the
similarity metrics used by JIRS and its evaluation.
      </p>
      <p>Once the relevant passages are selected, the second step requires the POS tagged form of each passage in
order to gather the representation used to extract the answer. Due to some technical constraints we were unable to
finish the implementation for the alignment of the tagged collection and the JIRS index before test set release.
Therefore the tagging of relevant passages was performed online with the disadvantage of a couple of extra
hours for such processing.</p>
      <p>
        Tagged passages are represented in the same way that in [
        <xref ref-type="bibr" rid="ref4">4</xref>
        ] where each retrieved passage is modeled by the
system as a factual text object whose content refers to several named entities even when it is focused on a central
topic. As mentioned, named entities could be one of these: persons, organizations, locations, dates, quantities and
miscellaneous2. The model assumes that the named entities are strongly related to their lexical context, especially
to nouns (subjects) and verbs (actions). Thus, a passage can be seen as a set of entities and their lexical context.
Such representation is used later in order to match question’s representation with the best set of candidates
gathered from passages.
6
      </p>
    </sec>
    <sec id="sec-4">
      <title>Answer Extraction</title>
      <p>Answer extraction is performed according to the type of question, factual or definition. Next subsections detail
the processes involved in answering each one.
6.1</p>
      <sec id="sec-4-1">
        <title>Answering Factoid Questions</title>
        <p>The system makes no difference between factual and temporal restricted factual questions in order to extract
their possible answer. Given the set of retrieved passages and their representations (named entities and their
contexts) the system computes a weight for each candidate answer (named entity) based on two main factors: a)
the activation and deactivation of some features at different steps of the system, and b) the coefficient gather by
the formula 1.</p>
        <p>The features listed in table 1 allow us to configure the system in order to change its behavior, for instance,
deactivate the question classification step, allowing to the final answer selection to rely on no more information
2 The semantic classes used rely on the capability of the named entity classifier used in our experiments.
that just statistical computations. The opposite case could be, deactivate frequency features and let the final
answer selection to rely on the matching between question and candidate answers context.</p>
        <p>ω</p>
        <p>A
= tq ∗  NEq
n 
∩ NE
NEq</p>
        <p>A +</p>
        <p>Cq ∩ C</p>
        <p>Cq</p>
        <p>A + FA (Pi ) + 1 −</p>
        <p>FA (P) </p>
        <p>Pi  
k − 1  
</p>
        <sec id="sec-4-1-1">
          <title>Formula 1</title>
          <p>i=1..k; k=number of passages retrieved by JIRS</p>
          <p>Where ω A is the assigned weight for a candidate answer; tq is 1 if the semantic class of the candidate answer
is the same that the question’s one and 0 in other case; n is a normalization factor based on the number of
activated features, NEq is the set of named entities in the question and NEA is the set of named entities in the
context of the candidate answer; Cq is the question’s context and C A is the candidate answer’s context; FA (Pi ) is
the frequency of occurrence of the candidate answer in the passage i; FA (P) is the total frequency of occurrence
P
of the candidate answer in the passages retrieved by JIRS; and 1 − i is an inverse relation for the passage
k −1
ranking.</p>
        </sec>
        <sec id="sec-4-1-2">
          <title>Context elements</title>
        </sec>
        <sec id="sec-4-1-3">
          <title>Context length</title>
        </sec>
        <sec id="sec-4-1-4">
          <title>Question Named Entities</title>
        </sec>
        <sec id="sec-4-1-5">
          <title>Context match Frequency of occurrence</title>
        </sec>
        <sec id="sec-4-1-6">
          <title>JIRS ranking Passage length</title>
        </sec>
      </sec>
      <sec id="sec-4-2">
        <title>Function</title>
        <p>Activate question classification step
Defines the number of classes to use in question and named entity
classification.</p>
        <p>Define the elements included as part of a name entity context. They
could be: named entities, common names, verbs, adjectives, adverbs,
etc.</p>
        <p>Number of elements at left and right of a named entity to include in the
context.</p>
        <p>Defines if the passages without question’s named entities will be
allowed.</p>
        <p>Intersection
Number of times that a named entity appears as candidate answer in the
same passage.</p>
        <p>Position of passage as retuned by JIRS.</p>
        <p>Number of phrases in the passage retrieved.</p>
        <p>Once the system computes the weight for all candidate answers, these are ranked by decreasing sort order,
taking as answer the one with the greatest weight. Section 7 describes some experiments performed with training
data set and the results achieved with both, training and test sets.
6.2</p>
      </sec>
      <sec id="sec-4-3">
        <title>Answering Definitions</title>
        <p>
          Our system uses an alternative method to answer definition questions. This method makes use of some
regularities of language and some stylistic conventions of news letters to capture the possible answer for a given
definition question. A similar approach was presented in [
          <xref ref-type="bibr" rid="ref6 ref7">6,7</xref>
          ].
        </p>
        <p>The process of answering a definition question considers to main tasks. First, the definition extraction, which
detects the text segments that contains the description or meaning of a term (in particular those related with the
name of a person or an organization). Then, the definition selection, where the most relevant description of a
given question term is identified and the final answer of the system is generated.</p>
      </sec>
      <sec id="sec-4-4">
        <title>6.2.1 Definition Extraction</title>
        <p>The language regularities and the stylistic conventions of news letters are captured by two basic lexical patterns.
These patterns allow constructing two different definition catalogs. The first one includes a list of pairs of
acronym-meaning. The other one consists of a list of referent-description couples.</p>
        <p>In order to extract the acronym-meaning pairs we use an extraction pattern based on the use of parentheses.</p>
        <p>In this pattern, w1 is a lowercase non stopword, &lt;meaning&gt; is a sequence of words starting with an uppercase
letter (that can also include some stopwords), and &lt;acronym&gt; indicates a single word also starting with an
uppercase letter.</p>
        <p>By means of this pattern we could identify pairs like [PARM – Partido Auténtico de la Revolución Mexicana].
In particular this pair was catch from the following paragraph:
“El Partido Auténtico de la Revolución Mexicana (PARM) nombró hoy, sábado, a Álvaro
Pérez Treviño candidato presidencial de ese organismo para las elecciones federales del 21 de
agosto de 1994”.</p>
        <p>In contrast, the extraction of referent-description pairs is guided by the occurrence of a special kind of
appositive phrases. This information was encapsulated in the following extraction pattern.</p>
        <p>w1 w2 &lt;description&gt; , &lt;referent&gt; ,</p>
        <p>Where w1 may represent any word, except for a preposition, w2 is a determiner, &lt;description&gt; is a free
sequence of words, and &lt;referent&gt; indicates a sequence of words starting with an uppercase letter or being in the
stopwords list.</p>
        <p>Applying this extraction pattern over the below paragraph we could find the pair [Alain Lombard - El director
de la Orquesta Nacional de Burdeos].</p>
        <p>“El director de la Orquesta Nacional de Burdeos, Alain Lombard, ha sido despedido por el
Ayuntamiento de esta ciudad, que preside Alain Juppé, tras un informe que denuncia malos
funcionamientos y gastos excesivos”.
(i)
(ii)</p>
      </sec>
      <sec id="sec-4-5">
        <title>6.2.2 Definition Selection</title>
        <p>The main quality of the extraction patterns is their generality. However, this generality causes the patterns to
often extract non relevant information, i.e., information that does not indicate a relation acronym-meaning or
concept-description. For instance, when using the extraction pattern (i) to analyze the following news we obtain
the incorrect definition pair [Ernie - AFS]. In this case the resultant pair does not express an acronym-meaning
relation; instead it indicates a person-nationality association.</p>
        <p>Ernie Els (AFS) se mantiene en cabeza de la lista de ganancias de la "Orden de Mérito" de
golf, con más de 17 millones de pesetas, mientras que el primer español es Miguel Angel
Martín, situado en el puesto decimoséptimo, con 4.696.020.</p>
        <p>Given that the catalogs contains a mixture of correct and incorrect relation pairs, it is necessary to do an
additional process in order to select the most probable answer for a given definition question. The proposed approach
is supported on the idea that, on the one hand, the correct information is more abundant than the incorrect one,
and on the other hand, that the correct information is redundant.</p>
        <p>Thus, the process of definition selection considers the following two criteria:
1. The more frequent definition in the catalog has the highest probability to be the correct answer.
2. The largest and therefore more specific definitions tend to be the more pertinent answers.</p>
        <p>The following example illustrates the process. Assume that user question is “who is Félix Ormazabal?”, and
that the definition catalog contains the records showed below. Then, the method selects the description “diputado
general de Alava” as the most probable answer. This decision is based on the fact that this answer is the more
frequent description related to Félix Ormazabal in the catalog.</p>
        <p>Félix Ormazabal: Joseba Egibar:
Félix Ormazabal: candidato alavés:
Félix Ormazabal: diputación de este territorio:
Félix Ormazabal: presidente del PNV de Alava y candidato a diputado general:
Félix Ormazabal: nuevo diputado general
Félix Ormazabal: diputado Foral de Alava
Félix Ormazabal: través de su presidente en Alava
Félix Ormazaba : diputado general de Alava
Félix Ormazabal: diputado general de Alava</p>
        <p>Félix Ormazabal: diputado general de Alava</p>
      </sec>
    </sec>
    <sec id="sec-5">
      <title>Experiments and Results</title>
      <p>This section discusses some training experiments and the decision criteria used to select the configuration of the
experiments evaluated at QA@CLEF2005 monolingual track for Spanish. Given that we have used the same
modules for answering definitions in all our runs for monolingual QA, including those described in
“INAOEUPV Joint Participation at CLEF 2005: Experiments in Monolingual Question Answering”, the discussion on
these results has been documented in that paper. Thus the rest of this document is intended to discus the results
on factual question answering.</p>
      <sec id="sec-5-1">
        <title>7.1 Training Experiments</title>
        <p>
          As we mention earlier, the approach used in our system is similar to the one used last year [
          <xref ref-type="bibr" rid="ref5">5</xref>
          ], an analysis of
such system show us that it was necessary to experiment with different values for the parameters involved in the
answer extraction stage (see table 1). For instance, last year the system relied in a document model considering
only four elements (just nouns and/or verbs) at left and right for the named entities context. This year we
performed several experiments using context lengths from four elements to the whole passage retrieved, we also
experiment with different elements: nouns, proper nouns, verbs, adjectives and adverbs. Table 2 shows some
configurations tested with the training set. Then, Figure 2 shows the results achieved with the training set
applying the configurations showed in table 2. Notice that these results correspond to the factual question answering.
We participate in the evaluation with two runs, both were gathered using the same configuration of experiment 7
(see table 2). The first one inao051eses analyzes the first 800 passages retrieved by JIRS, while our second run
inao052eses analyzes only the first 100 passages retrieved by JIRS. Table 3 shows the results of the evaluation.
        </p>
        <p>Despite the fact that our results (for factual questions) were over 10% better than last year, we believe that the
approach described is near to its limits of accuracy. A shallow analysis of the results shows that the proposed
system is suited for questions with some stylistic characteristics whose answer is commonly found in the near
context of some reformulation of the question into the passages. While for others, more elaborated factual
questions is unable to identify the right answer. That is the case of questions whose expected answer is an object or
some abstract entity which can not be identified a priori by a shallow NLP or without a knowledge base.</p>
        <p>Another point to note is that in some cases, the statistical factor given by the frequency of occurrence of a
candidate answer becomes a secondary aspect that could yield to a wrong selection of an answer.</p>
        <p>A detailed analysis of these results will help us to take the next direction in our research.
2322.5
2424.5
19 19</p>
        <p>20</p>
        <p>We have begun some experiments in order to get the right configuration for each question online, that is, to
select automatically the appropriate configuration for a given question based on question’s attributes. Another
direction in our research is to include more features that allow us to perform a better selection and discrimination
of candidate answers, more over, that allow to consider objects and abstract entities that are currently excluded
by the methodology.</p>
      </sec>
    </sec>
    <sec id="sec-6">
      <title>Conclusions</title>
      <p>This work has presented an approach for QA in Spanish centered in the use of lexical features for factual
questions resolution that is complemented with a pattern matching approach for definition question resolution. The
results achieved in the monolingual track for Spanish have improved our last year performance by over 10% on
factual questions and over 30% on definition questions. It is important to note that the approach was able to
answer over 30% of temporal restricted factual questions without additions or modifications to the proposed
approach.</p>
      <p>After a shallow analysis of these results we have begun to work in two directions: first the inclusion of other
features that allow us to respond questions whose answer is not necessarily expressed as a reformulation of the
question into the target documents. Currently our work in this direction is based on the study of a syntactic
analysis of the retrieved passages, and in the inclusion of external knowledge. The second direction of research is
the automatic selection of features online in order to get the best performance of the system given a question.
Acknowledgements. This work was done under partial support of CONACYT (Project Grants U39957-Y and
43990), SNI-Mexico, and the Human Language Technologies Laboratory of INAOE. We also like to thanks to
the CLEF as well as EFE agency for the resources provided.</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          1.
          <string-name>
            <surname>Carreras</surname>
            ,
            <given-names>X.</given-names>
          </string-name>
          and
          <string-name>
            <surname>Padró</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          <article-title>A Flexible Distributed Architecture for Natural Language Analyzers</article-title>
          .
          <source>In Proceedings of the LREC'02</source>
          ,
          <string-name>
            <surname>Las Palmas de Gran Canaria</surname>
          </string-name>
          , Spain,
          <year>2002</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          2.
          <string-name>
            <surname>Gómez-Soriano</surname>
            ,
            <given-names>J.M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Montes-</surname>
            y-Gómez,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Sanchis-Arnal</surname>
            ,
            <given-names>E.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Rosso</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          <article-title>A Passage Retrieval System for Multilingual Question Answering</article-title>
          , to appear
          <source>in the 8th International Conference on Text, Speech and Dialog</source>
          , TSD,
          <string-name>
            <surname>Springer</surname>
            <given-names>LNAI</given-names>
          </string-name>
          ,
          <year>2005</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          3.
          <string-name>
            <surname>Magnini</surname>
            <given-names>B.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Vallin</surname>
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Ayache</surname>
            <given-names>C.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Erbach</surname>
            <given-names>G.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Peñas</surname>
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Rijke</surname>
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Rocha</surname>
            <given-names>P.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Simov</surname>
            <given-names>K.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Sutcliffe</surname>
            <given-names>R.</given-names>
          </string-name>
          ,
          <source>Overview of the CLEF 2004 Multilingual Question Answering Track, in Working Notes for the Cross Language Evaluation Forum Workshop</source>
          , (CLEF-
          <year>2004</year>
          ),
          <article-title>Carol Peters</article-title>
          and Francesca Borri (Eds.),
          <year>September 2004</year>
          , Bath, England, ISTI-CNR,
          <year>Italy 2004</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          4.
          <string-name>
            <surname>Pérez-Coutiño</surname>
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Solorio</surname>
            <given-names>T.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Montes-</surname>
          </string-name>
          y
          <string-name>
            <surname>-Gómez</surname>
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>López-López</surname>
            <given-names>A</given-names>
          </string-name>
          . and
          <string-name>
            <surname>Villaseñor-Pineda</surname>
            <given-names>L.</given-names>
          </string-name>
          ,
          <article-title>Toward a Document Model for Question Answering Systems</article-title>
          .
          <source>In Advances in Web Intelligence. LNAI3034 SpringerVerlag</source>
          <year>2004</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          5.
          <string-name>
            <surname>Pérez-Coutiño</surname>
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Solorio</surname>
            <given-names>T.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Montes-</surname>
          </string-name>
          y
          <string-name>
            <surname>-Gómez</surname>
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>López-López</surname>
            <given-names>M.</given-names>
          </string-name>
          and
          <string-name>
            <surname>Villaseñor-Pineda</surname>
            <given-names>L.</given-names>
          </string-name>
          ,
          <article-title>"Question Answering for Spanish Supported by Lexical Context Annotation"</article-title>
          , to appear
          <source>in proceedings of the 5th Workshop of the Cross-Language Evaluation Forum (CLEF</source>
          <year>2004</year>
          ),
          <string-name>
            <surname>Peters</surname>
            <given-names>C</given-names>
          </string-name>
          , et al. (Eds.),
          <year>September 2004</year>
          , Bath, England, Springer-Verlag
          <year>2005</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          6.
          <string-name>
            <surname>Ravichandran</surname>
            <given-names>D.</given-names>
          </string-name>
          and Hovy E.
          <article-title>Learning Surface Text Patterns for a Question Answering System</article-title>
          .
          <source>In ACL Conference</source>
          ,
          <year>2002</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          7.
          <string-name>
            <surname>Saggion</surname>
            ,
            <given-names>H. Identifying</given-names>
          </string-name>
          <article-title>Definitions in Text Collections for Question Answering</article-title>
          .
          <source>LREC</source>
          <year>2004</year>
          .
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>