<!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>IDRAAQ: New Arabic Question Answering system based on Query Expansion and Passage Retrieval</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Lahsen Abouenour</string-name>
          <email>abouenour@yahoo.fr</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Karim Bouzoubaa</string-name>
          <email>karim.bouzoubaa@emi.ac.ma</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Paolo Rosso</string-name>
          <email>prosso@dsic.upv.es</email>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>Mohammadia School of Engineers, Med Vth University-Agdal</institution>
          ,
          <addr-line>Rabat</addr-line>
          ,
          <country country="MA">Morocco</country>
        </aff>
        <aff id="aff1">
          <label>1</label>
          <institution>Natural Language Engineering Lab., ELiRF, Universitat Politècnica de València</institution>
          ,
          <country country="ES">Spain</country>
        </aff>
      </contrib-group>
      <abstract>
        <p>Arabic is one of the languages which are less concerned by researchers in the field of Question Answering. The paper presents core modules of a new Arabic Question Answering system called IDRAAQ. These modules aim at enhancing the quality of retrieved passages with respect to a given question. Experiments have been conducted in the framework of the main task of QA4MRE@CLEF 2012 that includes this year the Arabic language. Two runs were submitted. Both runs only use reading test documents to answer questions. The difference between the two runs exists in the answer validation process which is more relaxed in the second run. The Passage Retrieval (PR) module of our system presents multi-levels of processing in order to improve the quality of returned passage and thereafter the performances of the whole system. The PR module of IDRAAQ is based on keyword-based and structure-based levels that respectively consist in: (i) a Query Expansion (QE) process relying on Arabic WordNet semantic relations; (ii) a Distance Density N-gram Model based passage retrieval system. The latter level uses passages retrieved on the basis of QE queries and re-ranks them according to a structure-based similarity score. Named Entities are recognized by means of a mapping between the YAGO ontology and Arabic WordNet. The experiments that we conducted show that with respect to the accuracy and c@1 measure, IDRAAQ registered encouraging performances in particular with factoid questions. The same experiments allowed us to identify the lacks of the system especially when processing non factoid questions and at the Answer Validation stage. The IDRAAQ system, which is still under construction, will integrate a Conceptual Graph-based passage re-ranking introducing a semantic level to its PR module.</p>
      </abstract>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>Introduction</title>
      <p>Question Answering for Machine Reading Evaluation (QA4MRE) at CLEF 2012 is
the fourth campaign which represents an evolution of previous evaluation approaches
in Natural Language Processing (NLP), including Question Answering,
RecognizingTextual Entailment and Answer Validation. Like previous editions, the campaign
provides large document collections that serve as a background for each particular
reading test. Indeed, Machine Reading requires a deeper analysis and inference of text
and in turn may need background knowledge acquisition.</p>
      <p>The 2012 test set is composed of 4 topics, namely “Aids”, “Climate change” and
“Music and Society” -the same topics adopted last year- plus one additional new
topic, namely “Alzheimer”. This year is also particular in that two languages have
been added: Arabic and Bulgarian in addition to the previously considered languages
namely English, German, Italian, Romanian and Spanish. Materials are exactly the
same in all languages, created using parallel translations.</p>
      <p>We have participated in the main task in order to evaluate an ongoing Arabic QA
system called IDRAAQ: Information and Data Reasoning for Answering Arabic
Questions. As it is an under construction project, only two runs have been submitted.
The two runs have not considered any background collection. Answers were searched
within the documents of the reading test in concern.</p>
      <p>Section 2 presents an overview of IDRAAQ. Section 3 describes the main tools and
resources used in this system. The experiments carried out on test data sets are
discussed in Section 4 along with the results. The conclusions are drawn in Section 5.
2
2.1</p>
    </sec>
    <sec id="sec-2">
      <title>Overview of the IDRAAQ system</title>
      <sec id="sec-2-1">
        <title>System Architecture</title>
        <p>The IDRAAQ1 system is fully programmed in Java. The system also makes use of
other third party components and resources. The system is designed around the three
typical modules of a Question Answering system, namely (see Figure 1):
(i) Question analysis and classification module. In this module a question is
analyzed in order to extract its keywords, identify the structure of the expected answer
and form the query to be passed to the PR module.</p>
        <p>(ii) Passage Retrieval (PR) module. This module is one of the most important
components of a Q/A system. The quality of the results returned by such system
depends mainly on the quality of the PR module. Indeed, this module uses the query
formed by the previous module and extracts a list of passages from an Information
Retrieval process (generally a Search Engine such as Google2 or Yahoo!3). Thereafter,
1 The word “IDRAAQ” in Arabic has the following meanings and senses: to understand, to
recognize, to reach an objective, knowledge, intelligence, etc.
2 http://www.google.com
3 http://www.yahoo.com
this module has to perform a ranking process in order to improve the relevance of the
candidate passages according to the user question.</p>
        <p>(iii) Answer Validation (AV) module. This module tries to validate an answer from
a list of candidate answers relying on passages that are provided by the previous
module.</p>
        <sec id="sec-2-1-1">
          <title>Question Analysis Module</title>
        </sec>
        <sec id="sec-2-1-2">
          <title>CLEF question</title>
        </sec>
        <sec id="sec-2-1-3">
          <title>Passage Retrieval Module</title>
          <p>1 Keyword-based Level
2 Structure-based Level</p>
        </sec>
        <sec id="sec-2-1-4">
          <title>Answer Validation Module</title>
        </sec>
        <sec id="sec-2-1-5">
          <title>Candidate Passages</title>
        </sec>
        <sec id="sec-2-1-6">
          <title>ID of right answer</title>
          <p>Since the PR module provides candidate passages in which the Answer Validation
module tries searching the right answer, the performance of the IDRAAQ system is
mainly dependant on this module and on the quality of its returned passages. As
illustrated in Figure 1, the PR module of IDRAAQ is formed by two implemented levels:
keyword-based level (Label 1) and structure-based level (Label 2). The former
integrates a semantic QE process and the latter uses a Distance Density N-gram based PR
tool.</p>
          <p>
            Another level (third level) is under construction within the IDRAAQ system: the
semantic reasoning level. It is based on comparing representations of question and
candidate passages in terms of Conceptual Graphs (CGs)
            <xref ref-type="bibr" rid="ref9">(Sowa, 1984)</xref>
            through
projection and generalization operations. Since this level is on its building and testing
stage, we did not consider the corresponding process in the current edition of
QA4MRE. Therefore, in the following sub sections we only provide details about the
first two levels.
2.2
          </p>
        </sec>
      </sec>
      <sec id="sec-2-2">
        <title>Keyword-based level</title>
        <p>
          This level is concerned with a semantic Query Expansion (QE) process. Each
question keyword is substituted by its semantically related terms that are extracted from
the Arabic WordNet (AWN)
          <xref ref-type="bibr" rid="ref6">(Elkateb et al., 2006)</xref>
          . In AWN, four relations are used in
this level: synonymy, hyponymy, hypernymy and SUMO-AWN relations. SUMO
        </p>
      </sec>
      <sec id="sec-2-3">
        <title>Question</title>
        <p>STPW1
...</p>
        <p>STPWn
W1
W2
.....</p>
        <p>Wi
....</p>
        <p>Wn
?</p>
        <p>HYPR(SWi)
SWi</p>
        <p>w1, …,Wi, …,wk</p>
        <p>HYPO(SWi)
HYPO(HYPO(SWi))
HYPR(HYPR(SUMO(Wi)))
HYPR(SUMO(Wi))
SUMO(Wi)</p>
        <p>HYPO(SUMO(Wi))</p>
        <p>HYPO(HYPO(SUMO(Wi)))
(Suggested Upper Merged Ontology) is a high level ontology mapped with AWN
synsets4. Figure 2 is an illustration of the objective of our QE process.</p>
      </sec>
      <sec id="sec-2-4">
        <title>AWN hierarchy</title>
        <p>HYPR(HYPR(SWi))</p>
        <p>As illustrated in Figure 2, from each question, we only consider non stopwords
(STPWn) in the QE process. Concretely, the AWN-based QE process accepts as input
an Arabic word (non stop words extracted from the question), say Wi and generates
the following terms:
a. Morphological variants of Wi using “AL KHALIL” system5;
b. Words that share the same AWN synsets (SWi) with Wi (the synonyms
w1,. ..wk);
4 In AWN a synset is a group of synonyms that can be used in a specific context. Each word
can have many senses according to the synset to which it belongs.
5 http://sourceforge.net/projects/alkhalil/
c. Words that share the AWN synsets that are hyponyms of each SWi; Let us
refer to these synsets by HYPO(SWi);
d. Words that share the AWN synsets that are hypernyms of each SWi; These
synsets are referred to by HYPR(SWi);
e. Words that appear in the definition of the SUMO concept which is
equivalent to each SWi.</p>
        <p>The same process is again performed for words related to HYPO(SWi) and
HYPR(SWi). Note that in order to avoid endless recursive process we move just 2
levels up and down in the AWN hierarchy starting from the synset SWi. In this way,
for each question keyword, we generate a list of words that represent the context of
the keyword in the AWN hierarchy as well as semantically related terms in other
similar contexts in this hierarchy.</p>
        <p>This process extracts the words belonging to the context of the expanded word by
moving up and down in the AWN hierarchy. In order to catch other contexts that are
semantically related to the context of the original word (i.e., Wi), we rely on the
SUMO concept (SUMO(Wi)) which is linked to SWi. In SUMO, each concept has a
definition which involves many other SUMO concepts. By moving to the synsets that
are equivalent to these latter concepts, we can get other semantically related words.</p>
        <p>The semantic QE process illustrated in Figure 1 results in a number of new terms.
These terms are used to form new queries by substituting a keyword in the question
by its related terms. Note that in the case of Named Entities (NEs) keywords, we
substitute the keyword just by its synonyms. The hypernyms are just added before the
keyword in the question. This is due to the fact that a hypernym of a NE is usually its
category (for instance person, country, etc.).</p>
        <p>IDRAAQ uses an enriched version of AWN. This enrichment mainly concerns
NEs, noun hyponymy relations and verbs. As factoid questions represent high
percentage of processed questions, a mapping between AWN and the large English NE
ontology called YAGO6 was done and was part of the considered AWN release.
2.3</p>
      </sec>
      <sec id="sec-2-5">
        <title>Structure-based level</title>
        <p>
          The objective of this level is filtering the passages that would be returned after
applying level 1. As mentioned above, for each question, different new queries are
generated according to the terms extracted from AWN. These queries are important in
number but are not all relevant for the question that may lead in considering irrelevant
passages. Thus, the structure-based level introduces a new criterion to efficiently
rerank passages: the Distance N-gram Density
          <xref ref-type="bibr" rid="ref7">(Gomez et al., 2005)</xref>
          . This model
considers sequence of n adjacent words (n-gram) extracted from a sentence or a question.
All possible n-grams of the question are searched. It also assigns them a score
according to the n-grams and weight that appear in the retrieved passages.
6
        </p>
        <p>Yet Another Great Ontology: available at
http://www.mpi-inf.mpg.de/YAGOnaga/YAGO/downloads.html</p>
        <p>If a passage contains one or more related terms (those generated by the
AWNbased QE process) then it is retrieved. However, the relevancy of this passage
depends on the structure in which these terms appear. The more this structure is similar
to the one of the question, the more relevant the passage is considered.</p>
        <p>
          In the IDRAAQ system, this model is implemented through the Java Information
Retrieval System (JIRS)
          <xref ref-type="bibr" rid="ref7">(Gomez et al., 2005)</xref>
          . This language independent system
underwent some adaptations in order to be used in the context of the Arabic language
          <xref ref-type="bibr" rid="ref5">(Benajiba et al. 2007)</xref>
          . The main modifications were made on the Arabic
languagerelated files (text encoding, stop-words, list of characters for text normalization,
Arabic special characters, question words, etc.).
        </p>
        <p>The JIRS is integrated in the PR module of IDRAAQ following many steps:</p>
        <sec id="sec-2-5-1">
          <title>Step 1: extract related queries of a question;</title>
          <p>Step 2: the list of queries is formatted using the JIRS input file;
Step 3: documents are also formatted using the SGML JIRS format so that
a collection of documents is built;
Step 4: the collection built in step 3 is indexed using the corresponding
JIRS process;
Step 5: the JIRS “PassageSearch” process is performed on the indexed
collection and using the input file. We customize the system to only the
first five passages are retrieved for each query in the input file;
Step 6: over all the queries, the five passages, with the best JIRS
similarity score, are considered in the Answer Validation module.
3</p>
        </sec>
      </sec>
    </sec>
    <sec id="sec-3">
      <title>Evaluation</title>
      <p>The 2012 test set is composed of 4 topics; each topic includes 4 reading tests. Each
reading test consists of one document, accompanied by 10 questions, each with a set
of five answer options per question. Therefore, for each language task, there are in
total:
16 test documents (4 documents for each of the four topics)
160 questions (10 questions for each document)
800 choices/options (5 for each question)</p>
      <sec id="sec-3-1">
        <title>Questions have the following characteristics:</title>
        <p>They are in the form of multiple choice, where for each question, 5 possible
answers are given;
They are designed so that focus on testing the comprehension of one single
document;
Test the reasoning capabilities of systems, which means that inferences,
relative clauses, elliptic expressions, meronymy, metonymy, temporal and
spatial reasoning, and reasoning on quantities may be exploited;
They may involve background knowledge, i.e., information that is not
present in the test document given. In such cases, information from the
Background collections is needed to fill in the knowledge gap to answer the
question.</p>
        <p>Questions may be of the following types:
1. FACTOID: Where or When or By--Whom
2. CAUSAL: What was the cause/result of Event X?
3. METHOD: How did X do Y? Or: In what way did X come about?
4. PURPOSE: Why was X brought about? Or: What was the reason for
doing X?
5. WHICH IS TRUE: Here one must select the correct alternative from a
number of statements, e.g. What can a 14 year old girl do?
The IDRAAQ system applies for each question the preprocessing stage, the
keywordbased stage and the structure-based stage. The answer checking process matches
candidate answers with returned passages. The first run that we have submitted uses a
strict answer checking process while the second introduces a relaxation especially
when the answer is composed of more than two words.</p>
        <p>
          Each test receives an evaluation score between 0 and 1 using c@1 (
          <xref ref-type="bibr" rid="ref8">Peñas et al.,
2011</xref>
          ). This measure, already tried in previous CLEF QA Tracks, encourages systems
to reduce the number of incorrect answers while maintaining the number of correct
ones by leaving some questions unanswered. Systems receive evaluation scores from
two different perspectives:
1. At the question-answering level: correct answers are counted individually
without grouping them;
2. At the reading-test level: figures both for each reading test as a whole and
for each separate topic are given.
        </p>
        <p>Thus, two measures have been considered as follows:</p>
        <p>Overall Accuracy which is calculated using the formula:</p>
        <p>Accuracy = nr/n
where:
nr: is the number of correctly answered questions
n: is the total number of questions
where:
nu: is the number of unanswered questions
Obtained results also presents number of unanswered question with right and wrong
candidate answers. However, in both runs, we did not consider this possibility in the
submitted outputs.
As shown in Table 1 above, the overall accuracy reaches 0.13 in the second run. This
accuracy is calculated over the 160 questions. If we only consider the 70 answered
questions (21+49 in Table 1), the accuracy is 0.30 in the case of run #2.
Regarding the c@1 measure, Table 2 shows the overall of 0.21 as of the second run
(versus 0.13 for the first run). With respect to this measure, our system registered
different performances over the four topics. Indeed, from Table 2 the maximum value
was reached over Topic #1 (i.e. AIDS) in the two runs (0.25 in run #1 versus 0.36 in
run #2).</p>
        <p>At reading-test level, our system reached its best value of c@1 measure when
answering questions belonging to topic #1 (i.e., AIDS). Figure 3 illustrates a comparison
between the best c@1 measures obtained over the four topics with respect to this
level. Topic #3 is the one for which lower performances have been reached.
Let us analyze questions for which our system succeeds and those for which it fails,
i.e., questions belonging to the above topics (i.e., topic #1 and #3).</p>
        <p>From this analysis, most of the answered questions are factoid ones (When, Who,
What, etc.). This shows that using Arabic WordNet mapped with YAGO (which
contains high number of Named Entities) has a positive impact on system performances
especially when processing factoid questions.</p>
        <p>0,6
0,5
0,4
0,3
0,2
0,1
0</p>
        <p>S
D
I
A
e
g
n
a
h
C
e
t
m
a
li
C
y
it
e
c
o
s
d
n
a
c
i
s
u
M
r
e
m
i
e
h
z
l
A
On the other hand, the questions where the system fails to get a correct answer falls
into five categories:</p>
        <p>Questions that are not factoid such as LIST questions (questions starting with
Give a list of ...) and REASON questions (questions starting with Why ...);
Questions with translation errors. For instance, in reading-test #4 question #4
the translation of “What is the mechanism by which HIV-positive Brazilians
receive free ARV drugs?” is “ ءاST UVTWXYZا^U_ZVاءVW[\ز`اab c[YdefYZا تWVZhا iهWk
؟WًnWok c\^pqpZا تWrو^Vt[Z ةدWwYZا c\^نxW_ZXاcpanW”ywYhZiاch is not an
understandable Arabic question. This remark can also be applied on reading-test
documents.</p>
        <p>Questions not starting with question stopword (such as What, When, etc.).
For example, reading-test #6 question #3 “ بW_rhا هi Wk ،cV[\زا^_Zا ck}~[Z Wp€وو
؟خWyYZا ^V‚eZ cVfVƒ^Zا” (According to the Bragzoilviearnnment, what is one the
main reasons for climate change?)
Questions with long candidate answers. For instance, questions #3 and #4 in
reading-test #13 “ ض^YT cTW…bا ^`† Uk ‡tˆ\ نأ يU‹Z~اYiƒ\ا‹‚Zا مW yZا }ه Wk
؟^Y\WهŽZا” (What type of diet may reduce the riskf oAlzheimer's disease?) and
“؟–[_Zا i€ تWT}d… —q\SZ U\‹Zا ^Y\W‘ه^ŽYZاZ c\‹‚eZا ’VTWnأ لWYderWT …}\ ” ا”ذ W(WYhZy
are feeding tubes not always recommended for Alzheimer's patients who
have difficulties with swallowing?).
4</p>
      </sec>
    </sec>
    <sec id="sec-4">
      <title>Conclusion</title>
      <p>The current edition of QA4MRE has considered for the first time the Arabic
language. We took advantage from this opportunity to test our semantic QE process
combined with the Distance N-gram Density model. The obtained results are
encouraging in particular for factoid questions. The analysis of IDRAAQ system
performances allowed us to identify the category of questions in which the system fails to
validate the right answer.</p>
      <p>
        According to previous preliminary experiments
        <xref ref-type="bibr" rid="ref1 ref2">(Abouenour et al., 2009)</xref>
        , the
integration of the third level based on Conceptual Graphs and semantic similarity would
improve the performances of the system at the PR module as well as the Answer
Validation module. Indeed, representing knowledge in the question and candidate
passages would help in comparing them at a semantic level which is more advanced than
the keyword and structure levels that we have considered in this experiment. The
CLEF 2012 Gold standard for the Arabic language will help us in pre-testing the
capabilities of the system with the third level as well as the use of background collection
and other resources for answering the questions.
      </p>
      <p>The perspective of the current work is preparing the system in order to participate
in the next edition of QA4MRE for Arabic in an aim of reaching maturity of the best
well-known QA systems for other languages.</p>
    </sec>
    <sec id="sec-5">
      <title>Acknowledgment</title>
      <p>The European Commission as part of the WIQ-EI IRSES-Project (grant no.
269180) within the FP 7 Marie Curie People Framework has partially funded the
work of the third author. His work was carried out also in the framework of the
MICINN Text-Enterprise (TIN2009-13391-C04-03) research project and the
Microcluster VLC/Campus (International Campus of Excellence) on Multimodal Intelligent
Systems.</p>
      <p>Abouenour L., Bouzoubaa K. and Rosso, P. (2010b). Using the Yago ontology as a
resource for the enrichment of Named Entities in Arabic WordNet. Workshop on
Language Resources (LRs) and Human Language Technologies (HLT) for Semitic
Languages Status, Updates, and Prospects, LREC’10 Conference, Malta.</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          <string-name>
            <given-names>Abouenour L.</given-names>
            ,
            <surname>Bouzoubaa</surname>
          </string-name>
          <string-name>
            <given-names>K.</given-names>
            and
            <surname>Rosso</surname>
          </string-name>
          <string-name>
            <surname>P.</surname>
          </string-name>
          (
          <year>2009a</year>
          ).
          <article-title>Three-level approach for Passage Retrieval in Arabic Question /Answering Systems</article-title>
          .
          <source>In Proc. of the 3rd International Conference on Arabic Language Processing CITALA2009</source>
          , Rabat, Morocco.
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          <string-name>
            <given-names>Abouenour L.</given-names>
            ,
            <surname>Bouzoubaa</surname>
          </string-name>
          <string-name>
            <given-names>K.</given-names>
            and
            <surname>Rosso</surname>
          </string-name>
          ,
          <string-name>
            <surname>P.</surname>
          </string-name>
          (
          <year>2009b</year>
          ).
          <article-title>Structure-based evaluation of an Arabic semantic Query Expansion using the JIRS Passage Retrieval system</article-title>
          .
          <source>In Proc. Workshop</source>
          on Computational Approaches to Semitic Languages, E-ACL-
          <year>2009</year>
          , Athens, Greece, April,
          <year>2009</year>
          .
          <article-title>Published by the Association for Computational Linguistics (ACL</article-title>
          ), pp.
          <fpage>62</fpage>
          -
          <lpage>68</lpage>
          , Stroudsburg, PA, USA.
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          <string-name>
            <given-names>Abouenour L.</given-names>
            ,
            <surname>Bouzoubaa</surname>
          </string-name>
          <string-name>
            <given-names>K.</given-names>
            and
            <surname>Rosso</surname>
          </string-name>
          ,
          <string-name>
            <surname>P.</surname>
          </string-name>
          (
          <year>2010a</year>
          ).
          <article-title>An evaluated semantic QE and structure-based approach for enhancing Arabic Q/A. In the Special Issue on "Advances in Arabic Language Processing" for the IEEE</article-title>
          <source>International Journal on Information and Communication Technologies (IJICT)</source>
          , ISSN:
          <fpage>0973</fpage>
          -
          <lpage>5836</lpage>
          ,
          <string-name>
            <given-names>Serial</given-names>
            <surname>Publications</surname>
          </string-name>
          .
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          <string-name>
            <surname>Abouenour</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          (
          <year>2011</year>
          ).
          <article-title>On the Improvement of Passage Retrieval in Arabic Question/Answering (Q/A) Systems</article-title>
          . Lecture Notes in Computer Science,
          <year>2011</year>
          , Volume
          <volume>6716</volume>
          /
          <year>2011</year>
          ,
          <fpage>336</fpage>
          -
          <lpage>341</lpage>
          , DOI: 10.1007/978-3-
          <fpage>642</fpage>
          -22327-3_
          <fpage>50</fpage>
          .
          <string-name>
            <given-names>R.</given-names>
            <surname>Muñoz</surname>
          </string-name>
          et al. (Eds.),
          <source>NLDB'11</source>
          . Springer-Verlag, Berlin-Heidelberg.
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          <string-name>
            <given-names>Benajiba Y.</given-names>
            ,
            <surname>Rosso</surname>
          </string-name>
          <string-name>
            <given-names>P.</given-names>
            and
            <surname>Gómez</surname>
          </string-name>
          ,
          <string-name>
            <surname>J.M.</surname>
          </string-name>
          (
          <year>2007</year>
          ).
          <article-title>Adapting JIRS Passage Retrieval System to the Arabic</article-title>
          .
          <source>In Proc. 8th Int. Conf. on Comput. Linguistics and Intelligent Text Processing, CICLing-2007</source>
          , Springer-Verlag,
          <source>LNCS(4394)</source>
          , pp.
          <fpage>530</fpage>
          -
          <lpage>541</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          <string-name>
            <surname>Elkateb</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Black</surname>
            ,
            <given-names>W.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Vossen</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Farwell</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Rodríguez</surname>
            ,
            <given-names>H.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Pease</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Alkhalifa</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          (
          <year>2006</year>
          ).
          <article-title>Arabic WordNet and the Challenges of Arabic</article-title>
          .
          <source>In proceedings of Arabic NLP/MT Conference</source>
          , London, U.K.
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          <string-name>
            <given-names>Gomez J. M.</given-names>
            ,
            <surname>Montes-Gomez</surname>
          </string-name>
          <string-name>
            <given-names>M.</given-names>
            ,
            <surname>Sanchis</surname>
          </string-name>
          <string-name>
            <given-names>E.</given-names>
            ,
            <surname>Villasenor-Pineda L</surname>
          </string-name>
          . and
          <string-name>
            <surname>Rosso</surname>
            <given-names>P.</given-names>
          </string-name>
          (
          <year>2005</year>
          ).
          <article-title>Language independent passage retrieval for question answering</article-title>
          .
          <source>In Fourth Mexican International Conference on Artificial IntelligenceMICAI 2005, Lecture Notes in Computer Science</source>
          , pages
          <fpage>816</fpage>
          -
          <lpage>823</lpage>
          , Monterrey, Mexico,
          <year>2005</year>
          . Springer Verlag.
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          <string-name>
            <surname>Peñas</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          and
          <string-name>
            <surname>Rodrigo</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          <article-title>A Simple Measure to Assess Non-response</article-title>
          .
          <source>In Proceedings of 49th Annual</source>
          <article-title>Meeting of the Association for Computational LinguisticsHuman Language Technologies (ACL-HLT</article-title>
          <year>2011</year>
          ), Portland, Oregon, USA, June 19- 24,
          <year>2011</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          <string-name>
            <surname>Sowa John F.</surname>
          </string-name>
          (
          <year>1984</year>
          ).
          <source>Conceptual Structures: Information Processing in Mind and Machine. Addison-Wesley Company.</source>
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>