<!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>Question Answering for Machine Reading with Lexical Chain</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Ling Cao</string-name>
          <email>C@1</email>
          <xref ref-type="aff" rid="aff0">0</xref>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Xipeng Qiu</string-name>
          <email>xpqiu@fudan.edu.cn</email>
          <xref ref-type="aff" rid="aff0">0</xref>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Xuanjing Huang</string-name>
          <email>xjhuang@fudan.edu.cn</email>
          <xref ref-type="aff" rid="aff0">0</xref>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>Fudan University</institution>
          ,
          <addr-line>Shanghai 201203</addr-line>
          ,
          <country country="CN">China</country>
        </aff>
        <aff id="aff1">
          <label>1</label>
          <institution>School of Computer Science and Technology</institution>
        </aff>
      </contrib-group>
      <abstract>
        <p>Question answering for machine reading (QA4MR) is a task to understand the meaning communicated by a text. In this paper, we present our system in QA4MRE1. The system follows the steps of reading comprehension as a language learner. Lexical chain is used to estimate the semantic relation between texts. Natural language processing (NLP) techniques are also widely used, such as: POS tagging, name entity recognition, coreference. On the QA4MRE test dataset, our system achieves the c@1 measure of 0.28 and 0.26 for the two submissions, respectively.</p>
      </abstract>
      <kwd-group>
        <kwd>Question Answering</kwd>
        <kwd>Machine Reading</kwd>
        <kwd>Lexical Chain</kwd>
        <kwd>WordNet</kwd>
        <kwd>Natural Language Processing</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>-</title>
      <p>
        Machine Reading [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ] is the automatic, unsupervised understanding of texts, which
builds a bridge between natural language and knowledge understandable by machines.
The Machine Reading task focus on the deep understanding of small number of texts,
which is different from text mining [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ], where the system reads and extract
knowledge from hundreds or thousands of texts.
      </p>
      <p>
        Question answering for machine reading (QA4MR) [
        <xref ref-type="bibr" rid="ref12">12</xref>
        ] is a task to answer
questions by reading of single documents. To understand the meaning of a text on
semantic level, system should identify a set of multiple choices related to it, where
correct answers require inference in all kinds, i.e., lexical (acronymy, synonymy,
hyperonymy), syntactic (nominalization / verbalization, causative, paraphrase,
active/passive), discourse (coreference, anaphora ellipsis) [
        <xref ref-type="bibr" rid="ref3">3</xref>
        ].
      </p>
      <p>Here is an example for QA4MRE task:</p>
    </sec>
    <sec id="sec-2">
      <title>Text:</title>
      <p>Annie Lennox: Why I am an HIVAIDS activist, I'm going to share with you the
story as to how I have become an HIV/AIDS campaigner. And this is the name of my
1 http://celct.fbk.eu/QA4MRE/
campaign, SING Campaign.</p>
    </sec>
    <sec id="sec-3">
      <title>Question:</title>
      <p>Who is the founder of the SING campaign?</p>
    </sec>
    <sec id="sec-4">
      <title>Candidate Answers:</title>
      <p>1) Nelson Mandela
2)Youssou N’Dour
3)Michel Sidibe
4)Zackie Archmat
5)Annie Lennox
By machine reading, the answer “Annie Lennox” could be chosen.</p>
      <p>In this paper, we propose a method for question answering for machine reading
system with lexical chain. Our system is similar to the scenario of humans learning a
new language and dealing with reading comprehension tests. Humans always do
reading comprehensions in 3 steps:
1. Locating: Reading the question and extracting sentences from the passage
which may related to the question.
2. Answering: Reading these sentences in details to select which sentences are
most likely to be the answer.
3. Choosing: Reading all the choices and choosing the one has the same
meaning as the answer.</p>
      <p>
        So our system explores the possibilities of following the above steps as a language
learner doing Reading Comprehensions. Lexical chain [
        <xref ref-type="bibr" rid="ref6">6</xref>
        ], proposed by LCC,
performs well in finding topic relations between words based on WordNet. Our
system uses lexical chain to estimate the semantic relation between texts.
      </p>
      <p>The rest of the paper is organized in the following way: Section 2 is to present a
brief overview of related works. Section 3 provides the architecture of our system.
Section 4 introduced lexical chain in details. We present our experiments and results
in section 5, and conclude in section 6.
2</p>
      <sec id="sec-4-1">
        <title>Related Works</title>
        <p>
          QA4MR [
          <xref ref-type="bibr" rid="ref12">12</xref>
          ] is related to some topics in the fields of information retrieval and
natural language processing (NLP), such as question answering [
          <xref ref-type="bibr" rid="ref11">11</xref>
          ], reading
comprehension [
          <xref ref-type="bibr" rid="ref9">9</xref>
          ] and recognizing textual entailment [
          <xref ref-type="bibr" rid="ref7">7</xref>
          ].
        </p>
        <p>
          Question answering (QA) [
          <xref ref-type="bibr" rid="ref8">8</xref>
          ] is the task of automatically answering a question
posed in natural language. In contrast to QA4MR, QA systems are designed to extract
answers in large corpus. QA systems seldom focus on the deeply understanding of
corpus. What’s more, QA systems tend to answer every question as they can even
though they might not confident about the correctness of the answers.
        </p>
        <p>
          Reading comprehension (RC) [
          <xref ref-type="bibr" rid="ref9">9</xref>
          ] system attempts to understand a document and
returns an answer sentence when posed with a question. RC resembles the ad hoc
question answering (QA) task that aims to extract an answer from a collection of
documents when posed with a question. However, since RC focuses only on a single
document, the system needs to draw upon external knowledge sources to achieve deep
analysis of passage sentences for answer sentence extraction.
        </p>
        <p>
          Recognizing Textual Entailment (RTE) [
          <xref ref-type="bibr" rid="ref7">7</xref>
          ] has been proposed recently as a generic
task that captures major semantic inference needs across many NLP applications. This
task requires to recognize, given two text fragments, whether the meaning of one text
is entailed (can be inferred) from the other text. Semantic understanding and logic
understanding of text is indispensable for RTE system.
3
        </p>
      </sec>
      <sec id="sec-4-2">
        <title>System Overview</title>
        <p>The framework of our QA4MR system is presented in Fig. 1.</p>
        <p>In our system, text (including passage, question and choices) is sent to preprocessing
module initially.
2 http://cogcomp.cs.illinois.edu/page/software_view/18
And this is the name of my campaign, SING Campaign.</p>
        <p>And yes, my SING Campaign has supported Treatment Action Campaign in the way
that I have tried to raise awareness and to try to also raise funds.</p>
        <p>SING Campaign is basically just me and about three or four wonderful people who
help to support me.</p>
        <p>It is worth to say that we can find out that the founder of SING campaign is the
author of the passage (Annie Lennox) only in the sentences above. If without the
recognition of name entities, the following sentence might mislead the answer of this
question semantically, which is talking about the foundation of a campaign, but not
SING campaign:
I was very very fortunate, a couple of years later, to have met Zackie Achmat, the
founder of Treatment Action Campaign, an incredible campaigner and activist.</p>
        <p>Sentences extracted by locating module are then submitted to answering module,
with the question. Answering module, as its name implies, gives the answer to the
question. Instead of giving an answer directly, answering module reads every
sentence from input and select which one is most likely to be the answer. The method
of the selection is by lexical chain. Details of lexical chain are presented in section 3.</p>
        <p>In the last step, answer sentences extracted by answering module are submitted to
choosing module with the choices of the question. Choosing module gives the final
result by name entity matching and lexical chain.
4</p>
      </sec>
      <sec id="sec-4-3">
        <title>Lexical Chain</title>
        <p>
          As is mention in previous, lexical chain [
          <xref ref-type="bibr" rid="ref6">6</xref>
          ] is used in answering module and choosing
module to estimate semantic relation between texts. WordNet [
          <xref ref-type="bibr" rid="ref5">5</xref>
          ] [
          <xref ref-type="bibr" rid="ref10">10</xref>
          ] relations
including: Hypernym, Hyponym, Synonym, Meronym, Holonym, Attribute, Cause,
Entailment. In addition, to build connection between synsets of different POS, gloss
relation, defined by 6 is used.
        </p>
        <p>
          Following lexical chain [
          <xref ref-type="bibr" rid="ref6">6</xref>
          ], which is put forward by LCC, system scores the
semantic relation between words by the total score of each relation path. Equation (1)
shows how system scores words:
where:
I is the initial score.
        </p>
        <p>WRi is the weight of the relation presented in table 1.</p>
        <p>MGci can be calculated by equation (3).</p>
        <p>Relation(si, sj) = ∑ Score(ri)</p>
        <p>i
length(r)
Score(r) = I × ∏
i=1
(WRi * MGCi)
(1)
(2)</p>
        <p>Mandela......</p>
        <p>With WordNet gloss relation, system finds out that musician is a kind of profession.
As the gloss of musician#2 is “artist who composes or conducts music as a
profession”. While mother is not a kind of profession.
5</p>
      </sec>
      <sec id="sec-4-4">
        <title>Experiments and Results</title>
        <p>The evaluation measure of QA4MR task is C@13. This measure rewards systems that,
while maintaining the number of correct answers are able to reduce the incorrect ones
by leaving some questions unanswered.</p>
        <p>C@1 measure is presented in Equation (4):</p>
        <p>(nr + nu * (nr / n))
C @1 = (4)</p>
        <p>n
nr: is the number of correctly answered questions
nu: is the number of unanswered questions
n: is the total number of questions</p>
        <p>
          We evaluates 2 runs on the dataset of QA4MRE 2011[
          <xref ref-type="bibr" rid="ref3">3</xref>
          ]. The significant difference
between two runs is the processing of locating module. The first run keeps the
question unanswered if system failed in locating, that is, failed to recognize any name
entity in the question, while the second run send all sentences in the passage to
answering module. And also, the length of the lexical chain in the second run is less
than the first run by 1.
0.28
        </p>
        <p>Run 2
0.26</p>
        <p>Best
0.57</p>
        <p>Worst
0.02</p>
        <p>Average</p>
        <p>0.21</p>
        <p>Topics</p>
        <p>AIDS
Climate Change
Music and Society</p>
        <p>Run 1</p>
        <p>Run 2
0.28
0.19
Table 2 shows the overall C@1 measure of our two results, comparing with the best
run, the worst run and the average C@1 measure for QA4MRE. Table 3 illustrates
more details about the C@1 measure of each topic. Table 4, Fig. 2 and Fig. 3 show
the result of both run at question-answering level. According to Fig. 2 and Fig. 3,
system does not performance well without the locating of name entities.</p>
        <p>Notice that 30 questions are not answered in both runs, for two reasons. One is that
current approach gives up all questions about date, time and digit such as: For how
long did people applaud at performances of the Bolivar Youth Orchestra? The other is
our current approach do not use background collection, which leads to the failure in
answering questions such as: What is Nelson Mandela's country of origin?
( post-apartheid Rainbow Nation).
6</p>
      </sec>
      <sec id="sec-4-5">
        <title>Conclusions and Future Works</title>
        <p>This paper introduced the architecture of our system in QA4MRE task. System
chooses correct answers by name entity locating and lexical chain. Experiments
revealed that name entity locating reduce the rate of wrong answers misleaded by
lexical relation, and lexical chain estimate the semantic relation of texts by scoring the
lexical relation of words.</p>
        <p>Our current approach gets an overall c@1 measure as 0.28. In the future, we will
have two further works to do. One is developing a module recognizing date, time and
digit. The other is trying to use world knowledge in our system, including background
collection, and web-based resources such as Wikipedia.</p>
      </sec>
      <sec id="sec-4-6">
        <title>Acknowledgement</title>
        <p>This work was (partially) funded by NSFC (No. 61003091 and No. 61073069) and
Shanghai Committee of Science and Technology (No. 10511500703).</p>
      </sec>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          1.
          <string-name>
            <surname>Etzioni</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          <string-name>
            <surname>Banko</surname>
            , and
            <given-names>M. J.</given-names>
          </string-name>
          <string-name>
            <surname>Cafarella</surname>
          </string-name>
          .
          <article-title>Machine reading</article-title>
          .
          <source>In Proceedings of the 21th National Conference on Artificial Intelligence (AAAI</source>
          )
          <year>2006</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          2.
          <string-name>
            <surname>Ah-hwee Tan</surname>
          </string-name>
          , Text Mining:
          <article-title>The state of the art and the challenges</article-title>
          ,
          <source>in Proceedings of the PAKDD 1999 Workshop on Knowledge Disocovery from Advanced Databases</source>
          ,
          <year>1999</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          3.
          <source>Question Answering for Machine Reading Evaluation at CLEF</source>
          <year>2011</year>
          . http://celct.fbk.eu/QA4MRE/
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          4.
          <string-name>
            <surname>Bengtson</surname>
            , Eric and
            <given-names>Dan</given-names>
          </string-name>
          <string-name>
            <surname>Roth</surname>
          </string-name>
          .
          <article-title>Understanding the Value of Features for Coreference Resolution</article-title>
          .
          <source>In proc. EMNLP-08</source>
          .
          <year>2008</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          5.
          <string-name>
            <given-names>Christiane</given-names>
            <surname>Fellbaum</surname>
          </string-name>
          (
          <year>1998</year>
          , ed.)
          <source>WordNet : An Electronic Lexical Database</source>
          . Cambridge, MA: MIT Press.
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          6.
          <string-name>
            <surname>Dan</surname>
            <given-names>I. Moldovan</given-names>
          </string-name>
          and
          <string-name>
            <given-names>Adrian</given-names>
            <surname>Novischi</surname>
          </string-name>
          .
          <year>2002</year>
          .
          <article-title>Lexical chains for Question Answering</article-title>
          .
          <source>In Proceedings of COLING</source>
          , Taipei, Taiwan,
          <year>August</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          7.
          <string-name>
            <given-names>Danilo</given-names>
            <surname>Giampiccolo</surname>
          </string-name>
          , Bernardo Magnini, Ido Dagan,
          <string-name>
            <given-names>Bill</given-names>
            <surname>Dolan</surname>
          </string-name>
          .
          <year>2007</year>
          .
          <article-title>The Third PASCAL Recognizing Textual Entailment Challenge</article-title>
          ,
          <source>In Proceedings of the ACL-PASCAL Workshop on Textual Entailment and Paraphrasing</source>
          , Prague, Czech Republic.
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          8.
          <string-name>
            <surname>Ellen</surname>
            <given-names>M.</given-names>
          </string-name>
          <string-name>
            <surname>Voorhees</surname>
          </string-name>
          .
          <article-title>Overview of the TREC 2002 Question Answering Track (</article-title>
          <year>2002</year>
          ).
          <source>In Proceedings of the Eleventh Text REtrieval Conference</source>
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          9.
          <string-name>
            <given-names>Lynette</given-names>
            <surname>Hirschman</surname>
          </string-name>
          , Marc Light, Eric Breck, John D. Burger, Deep Read:
          <article-title>a reading comprehension system</article-title>
          ,
          <source>in Proceedings of the 37th annual meeting of the Association for Computational Linguistics on Computational Linguistics</source>
          , p.
          <fpage>325</fpage>
          -
          <lpage>332</lpage>
          , June 20-26,
          <year>1999</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          10.
          <string-name>
            <surname>George</surname>
            <given-names>A</given-names>
          </string-name>
          .
          <string-name>
            <surname>Miller</surname>
          </string-name>
          (
          <year>1995</year>
          ).
          <article-title>WordNet : A Lexical Database for English</article-title>
          .
          <source>Communications of the ACM</source>
          Vol.
          <volume>38</volume>
          , No.
          <volume>11</volume>
          :
          <fpage>39</fpage>
          -
          <lpage>41</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          11. John Prager, Eric Brown, Anni Coden, and
          <string-name>
            <given-names>Dragomir</given-names>
            <surname>Radev</surname>
          </string-name>
          .
          <article-title>Question-answering by predictive annotation</article-title>
          .
          <source>In Proceedings, 23rd Annual International ACM SIGIR Conference on Research and Development in Information Retrieval</source>
          , Athens, Greece,
          <year>July 2000</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          12.
          <string-name>
            <surname>Lucy</surname>
            <given-names>Vanderwende</given-names>
          </string-name>
          , Answering and Questioning for Machine Reading, American Association for Artificial Intelligence,
          <year>March 2007</year>
          .
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>